/*
.slick-prev {
    left: 8%;
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.slick-next {
    right: 8%;
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
*/
.slick-prev,
.slick-next {
    width: 40px;
    /* fixed width */
    height: 40px;
    /* fixed height */
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    z-index: 10;
}

.slick-prev {
    left: 6%;
    /* your desired spacing */
}

.slick-next {
    right: 6%;
    /* same spacing */
}
.slick-next:before,
.slick-prev:before {
    /* box-shadow: 0 3px 7px #0003; */
    font-family: slick;
    font-size: 60px;
    line-height: 1;
    opacity: .75;
    color: #000000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* for quick view icon set */
/* Ensure image container is positioned */
.woocommerce ul.products li.product .astra-shop-thumbnail-wrap {
    position: relative;
}

/* Eye icon same style as cart icon */
.ast-eye-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    line-height: 36px;
    background: #fff;
    /* White background like cart */
    color: #000;
    /* Black icon */
    text-align: center;
    border-radius: 50%;
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 5;
}

/* Show on hover like Astra cart */
.woocommerce ul.products li.product:hover .ast-eye-icon {
    opacity: 0;
}
/* cart total color*/
.woocommerce-cart .cart-collaterals .cart_totals>h2,.woocommerce-cart .cart-collaterals .cross-sells>h2 {
  background:none;
}

.qqvfw-quick-view-button-wrapper {
    display: none;
}

/* selected option css */
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).button-variable-item.selected:not(.no-stock) {
    border: 1px solid #FFB302
    background-color: black;
    color: #FFB302
}

/* add looder on quick view */
.ast-eye-loader {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-top: 2px solid #0073aa;
    /* A WordPress blue accent */
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.wpcsc-size-charts-list img {
    border: 5px solid white;
    background-color: white;
    width: 35px;
    height: 35px;
    max-width: 100%
}

.wpcsc-size-chart-above-text h3 {
    color: black;
}

.woocommerce ul.products li.product .onsale {
    position: absolute;
    top: -14px;
    left: -14px;
    /* <-- left side */
    right: auto;
    z-index: 10;

    /* styling per your request */
    font-weight: 700;
    /* bold */
    font-size: 16px;
    /* bigger */
    line-height: 1;
    padding: 10px 10px;
    border: 2px solid #FFB302;
    /* optional: red outline; remove if not needed */
    box-shadow: none;
    text-transform: none;
}
.category-faq-section {
    margin: 50px auto;
    max-width: 900px;
    padding: 20px;
}


.faq-question.open {
    background: #000000;
}

.faq-answer.open {
    /* display: block; */
    max-height: 500px;
    /* large enough to fit all content */
    padding: 15px;
    /* display: block; */
}


.category-faq-section {
    margin: 50px auto;
    max-width: 900px;
    padding: 20px;
}

.faq-title {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: #000000;
    border: none;
    padding: 15px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.faq-question:hover {
    background: none;
}

/* .faq-question.open {
    background: #e2e2e2;
} */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    /* display: none;
    padding: 15px; */
    font-size: 16px;
    padding: 0 15px;
    transition: max-height 0.35s ease, padding 0.35s ease;
    color: #FFFFFF;
    background-color:#000000;
}

/*
addding css for mincart update buttons
*/

.mini-cart-qty .mini-qty-input {
    width: 60px;
}

.mini-cart-qty button {
    border-color: var(--ast-global-color-0);
    background-color: var(--ast-global-color-0);
    padding-top: 5px;
    padding-right: 10px;
    padding-bottom: 5px;
    padding-left: 10px;
    font-family: inherit;
    font-weight: 500;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1em;
    border-radius: 10px;
}

/* adjust the close button on minicart  */
.woocommerce-mini-cart-item {
    position: relative;
}
.woocommerce-mini-cart-item .remove {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 10;
    display: block;
}
.woocommerce-mini-cart-item > a:not(.remove) {
    display: block;
    padding-right: 30px; /* space for close button */
}

