
#product_root {height: 95%;}

.product-gallery {
    height: 450px;
    min-height: 350px !important; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-gallery img {
    width: 100%;
    object-fit: contain;
    margin-bottom: 10px;
}
.summary.entry-summary {
    padding: 20px;
    display: flex;
    flex-direction: column;
}
.quantity {
    display: flex;
    align-items: center;
    max-width: 140px;
    margin-bottom: 10px;
}
.quantity .qty {
    text-align: center;
    width: 30px;
    margin: 0;
    border: 1px solid #ccc;
    padding: 5px;
    font-size: 16px;
}
.quantity button {
    width: 30px;
    height: 30px;
    background: #eee;
    border: 1px solid #ccc;
    cursor: pointer;
}
.quantity button:hover {
    background: #ddd;
}
.single_add_to_cart_button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.variations {
    margin-bottom: 15px;
}
.variations td.label {
    padding-right: 10px;
}
.variations select {
    width: 100%;
    padding: 5px;
}

.product-add-to-cart {
    display: flex;
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    padding: 10px;
}

.product-add-to-cart form{
    display: flex;
    background: var(--primary-color);
    color: white;
    width: 100%;
    justify-content: space-between;
    padding: 4px 16px;
    border-radius: 16px;
    align-items: center;
    height: 60px;

}


.product-add-to-cart form button{
    display: flex;
    justify-content: space-between;
    opacity: 1;
    background: none;
    border: none
}

button.single_add_to_cart_button.button.alt.ajax_add_to_cart {
    display: flex;
    gap: 10px;
    font-size: 14px;
    font-weight: 900;
    align-items: center;
    cursor: pointer;
    color: black
}

.single_add_to_cart_button:disabled {
    opacity: 1;
    cursor: not-allowed;
    color: #505050
}

.product-add-to-cart .product-price {color: var(--primary-color); font-size: 14px; font-weight: 900; text-align: end;}



.ajax-product-template {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-sheet-content{
    overflow: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.quantity {
    display: flex;
    align-items: center;
    max-width: 96px;
    margin-bottom: 10px;
    height: 40px;
    margin: 0;
    background-color: white;
    border-radius: 14px;
}

.quantity button.minus,.quantity button.plus {
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--primary-color);
    font-weight: 900;
    font-size: 20px;
    margin-bottom: 3px;
}

/* Remove number input arrows */
.quantity input[type=number]::-webkit-outer-spin-button,
.quantity input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity input[type=number] {
    -moz-appearance: textfield;
    outline: none !important;
    border: none;
    font-size: 16px;
}


.quantity button:hover {
    background: none
}

.input-text.qty.text{
    height: 30px
}


.variations,.reset_variations {
    display: none;
}

.variation-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.variation-buttons button {
    padding: 8px 16px;
    border: none;
    background: #f0f0f0;
    cursor: pointer;
    border-radius: 16px;
    color: #aaa;
    min-width: 100px
}

.variation-buttons button.active {
    background: var(--primary-color);
    color: #fff;
}

a.added_to_cart.wc-forward{
    display: none;
}

#simple-button-div, #var-button-div {
    max-width: 80%; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 10px; 
    background: white; 
    color: black; 
    height: 40px; 
    border-radius: 16px; 
    padding: 0 10px;
    cursor: pointer;
    transition: 0.2s;
}

#simple-button-div:hover, #var-button-div:hover {
    background: #fafafa; 
    padding: 14px;
}

.float-cart{
    position: fixed; 
    z-index: 1; 
    bottom: 100px; 
    left: 20px; 
    scale: 0.2;
    opacity: 0;
    visibility: 0;
    transition: 0.1s ease;
}

.open-float {
    scale: 1.1 ;
    opacity: 1;
    visibility: 1;
}

.wishlist-icon-wrapper {
    top: 20px;
    right: 20px;
    z-index: 1000;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    touch-action: manipulation;
    pointer-events: auto;
    background-color: #fafafafa !important;
    border-radius: 50px;
    padding: 8px;
    transition: 0.2s;
}

.close-bottom-sheet {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1000;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    touch-action: manipulation;
    pointer-events: auto;
    background-color: #fafafafa;
    border-radius: 50px;
    padding: 8px;
    transition: 0.2s;
}

.close-bottom-sheet:hover {
    background-color: #f0f0f0fa;
}


.wishlist-icon , .close-bottom-sheet svg{
  background: #fff;
  padding: 2px;
  border-radius: 50px;
}

.close-bottom-sheet svg path{
  fill: var(--primary-color) !important;
}

.product-price del {
    color: #777 !important
}

/* @media(max-width: 400px){
    .product-price {display: none}
} */