/*
 Theme Name: Astra Child
 Theme URI: https://example.com/astra-child
 Description: Astra 的子主题
 Author: Eva
 Author URI: https://example.com
 Template: astra
 Version: 1.0
*/

/* 这里添加自定义的 CSS */

/*暂时的*/
.wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button--full-width{
    background-color: #AAABAB !important;
    cursor: not-allowed !important;
}

button.single_add_to_cart_button.disabled {
     background-color: #AAABAB !important; /* 灰色背景 */
    cursor: not-allowed;    /* 禁用时的光标 */
}

.ast-on-card-button{
    opacity:0 !important;
}

.woocommerce-js div.product form.cart div.quantity{
    display: none !important;
}

.single-product div.product p.price, .single-product div.product span.price{
     display: none;
}

.ast-header-break-point .main-header-menu{
    background-color: #f9f9f900 !important;
}


/** 对部分产品添加图标 0730 **/
ul.products li.product {
  position: relative; /* 容器相对定位 */
}
.product-icon {
  position: absolute;
  top: 20px;
  right: 0;
  width: 50px;
  height: 50px;
  z-index: 10;
}
.product-icon img {
  display: block;
  width: 100%;
  height: auto;
}

