@keyframes inventory-pulse {
    0% {
        opacity: 0.5;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.badge-live .icon:before,
.badge-live .icon:after {
    width: 9px;
    height: 9px;
    border-radius: 9px;
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    margin: 8px 8px 8px 0px;
}

.badge-live .icon:before {
    animation: inventory-pulse 2s linear infinite;
}

.inventory--low .badge-live .icon:before,
.inventory--low .badge-live .icon:after {
    background: #F4AF29;
}

.badge-live.green .icon:before,
.badge-live.green .icon:after {
    background: #54c63a;
}

.badge-live.red .icon:before,
.badge-live.red .icon:after {
    background: #ea2020;
}

@keyframes btn-payment {
    0% {
        left: 0;
        opacity: 0;
    }

    5% {
        opacity: 0;
    }

    48% {
        opacity: .2;
    }

    80% {
        opacity: 0;
    }

    100% {
        left: 82%;
    }
}

.badge-live {
    display: block;
    margin-top: 20px;
    margin-bottom: 0;
}

.badge-live .text {
    display: inline-block;
    background: #fff;
    font-size: 0.8rem;
    border-radius: 4.0rem;
    text-align: center;
}

.badge-live.green .text {
    color: #3fbb22;
}

.badge-live.red .text {
    color: #f72727;
}

.badge-live.outline .text {
    padding: 0px 15px;
}

.badge-live.outline.green .text {
    border: solid 2px #54c63a;
}

.badge-live.outline.red .text {
    border: solid 2px #c63a3a;
}

.badge-live .icon {
    display: inline-block;
    width: 18px;
    height: 17px;
    position: relative;
}

.product-page {
    background: #fff;
}

.main-image-wrap {
    background: #f7f7f7 url('../img/loader.webp') center top no-repeat;
    background-size: 100% auto;
    min-height: 450px;
}

.main-image-wrap img {
    width: 100%;
    display: block;
}

.product-title {
    font-size: 1.2rem;
}

.product-sub-title {
    color: var(--color-text2);
    font-size: 0.8rem;
    font-weight: 400;
}

.product-review-bar {
    background: #FBF7EB;
    border-radius: 8px;
    padding: 5px 10px;
    display: inline-block;
    font-size: 14px;
}

.product-review-bar .review-link:hover {
    opacity: 0.85;
}

.product-review-bar .stars i {
    font-size: 14px;
}

.custom-price-box {
    font-family: var(--font-heading-family);
}

.old-price {
    color: var(--color-text2);
    font-size: 1.1rem;
    font-weight: 400;
}

.sale-price {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: 500;
}

.sale-price .price-only {
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-top: -11px;
    margin-left: 5px;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 300;
}

.buy-bullets {
    margin-bottom: 37px;
}

.buy-bullets>div {
    display: flex;
    gap: 5px;
    align-items: center;
    margin-top: 5px;
}

.buy-bullets i {
    color: var(--color-text);
    font-size: 1.1rem;
    margin-left: 0px;
    margin-right: 5px;
}

.buy-bullets span {
    display: inline-block;
    color: var(--color-text);
    font-size: 0.9rem;
}

.product-benefits {
    margin: 15px auto 45px;
}

.benefits-box {
    border: 1px solid #d9d9d9;
    border-radius: 24px;
    padding: 0px 28px;
    background: #fff;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 15px 0;
    border-bottom: 1px solid #e8e8e8;
}

.benefit-icon {
    flex-shrink: 0;
    color: #111;
}

.benefit-icon i {
    font-size: 1.1rem;
}

.benefit-content h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: #111;
    letter-spacing: .2px;
}

.thumbs-wrap {
    position: sticky;
    top: 100px;
}

.thumb-item {
    border: 2px solid #fff;
    border-radius: 6px;
    cursor: pointer;
    overflow: hidden;
}

.thumb-item.active-thumb {
    border: 2px solid var(--color-black-light);
    box-shadow: 0px 5px 5px -3px rgb(0 0 0 / 55%);
}

.product-thumb {
    width: 100%;
    display: block;
}

.video-thumb-inner {
    position: relative;
}

.video-thumb-inner i {
    position: absolute;
    top: 0px;
    background: rgba(0, 0, 0, 0.4);
    bottom: 0px;
    left: 0px;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
}

.qty-wrap {
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 0px 0px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--color-black-light);
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
}

.form-cart .qty-btn {
    color: #fff;
}

.qty-input {
    width: 50px;
    border: none;
    text-align: center;
    font-size: 20px;
    outline: none;
}

.btn-add-cart,
.btn-buy-now {
    border: none;
    background: var(--color-black-light);
    color: #fff;
    border-radius: 10px;
    padding: 10px 30px;
    font-weight: 500;
    letter-spacing: .5px;
    width: 100%;
}

.btn-buy-now {
    width: 100%;
}

#custom-buy-now button {
    color: #ffffff !important;
    width: 100%;
    background: var(--color-black);
    border: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    position: relative;
    padding: 10px 0px;
    border-radius: 8px;
    margin-top: 12px;
    text-transform: uppercase !important;
    text-decoration: none;
    box-shadow: 0px 5px 5px -3px rgb(0 0 0 / 55%);
    transition: all 0.2s ease;
}

#custom-buy-now button:active {
    box-shadow: none;
}

#custom-buy-now i {
    font-size: 1rem;
}

#custom-buy-now button span {
    color: #ffffff !important;
}

#custom-buy-now button:after {
    content: "";
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(to right, #fff0, #ffffff08 1%, #fff9 30%, #ffffffd9 50% 70%, #ffffffd9 71%, #fff0);
    width: 15%;
    height: 100%;
    transform: skew(-10deg);
    animation: btn-payment 1.5s;
    animation-iteration-count: infinite;
    animation-delay: 1s;
}

#custom-buy-now .buy-now-desc {
    display: block;
    color: #fff;
    background-color: #ee0777;
    border: solid 0px #a7a7a7;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    margin-top: -10px;
    padding-top: 15px;
    padding-bottom: 3px;
    border-radius: 8px;
}

#wa-buy-now {
    background: linear-gradient(90deg, rgb(26, 182, 86) 0%, #1EA651 100%);
    color: #ffffff !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 100%;
    border: none !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 0px !important;
    margin: 20px auto 20px;
    padding: 10px 0px;
    position: relative;
    box-shadow: 0px 3px 5px -3px rgb(0 0 0 / 55%);
    transition: all 0.2s ease;
}

#wa-buy-now:active {
    box-shadow: none;
}

#wa-buy-now i {
    font-size: 1rem;
}

.basic__step-container {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    box-shadow: none;
    line-height: 1.14285714em;
    border-radius: .28571429rem;
    border: 1px solid rgba(34, 36, 38, .15);
    font-size: 14px;
    box-sizing: border-box;
    width: 100%;
}

.basic__step-container .step-box__basic {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    flex-direction: column;
    vertical-align: middle;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 0;
    padding: 10px 4px 10px 4px;
    background: #fff;
    color: rgba(0, 0, 0, .87);
    box-shadow: none;
    border-radius: 0;
    border: none;
    border-right: 1px solid rgba(34, 36, 38, .15);
    -webkit-transition: background-color .1s ease, opacity .1s ease, color .1s ease, box-shadow .1s ease;
    transition: background-color .1s ease, opacity .1s ease, color .1s ease, box-shadow .1s ease;
    box-sizing: inherit;
    width: 33.333%;
}

.basic__step-container .step-box__basic .icon__step-box i {
    font-size: 1.5rem;
}

.basic__step-container .step-box__basic .content__step-box {
    text-align: center;
    margin-top: 10px;
}

.basic__step-container .step-box__basic:after {
    display: none;
    position: absolute;
    z-index: 2;
    content: '';
    top: 50%;
    right: 0;
    border: medium none;
    background-color: #fff;
    width: 1.14285714em;
    height: 1.14285714em;
    border-style: solid;
    border-color: rgba(34, 36, 38, .15);
    border-width: 0 1px 1px 0;
    -webkit-transition: background-color .1s ease, opacity .1s ease, color .1s ease, box-shadow .1s ease;
    transition: background-color .1s ease, opacity .1s ease, color .1s ease, box-shadow .1s ease;
    -webkit-transform: translateY(-50%) translateX(50%) rotate(-45deg);
    transform: translateY(-50%) translateX(50%) rotate(-45deg);
}

.basic__step-container .step-box__basic:after {
    display: block;
}

.basic__step-container .step-box__basic:last-child:after {
    display: none;
}

.basic__step-container .step-box__basic .title__content {
    font-weight: 700;
}

.basic__step-container .step-box__basic .description__content {
    font-size: 13px !important;
    font-weight: 400;
    margin-top: 4px;
    color: rgba(0, 0, 0, .87);
}

.product-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #eee;
}

.product-accordion .accordion-button {
    background: transparent;
    padding: 25px 0;
    font-size: 1.1rem;
    box-shadow: none !important;
}

.product-accordion .accordion-body {
    padding: 0 0 25px;
}

.custom-reviews {
    background: #f5f5f5;
}

.reviews-heading {
    font-size: 1.5rem;
}

.review-summary-box,
.review-card,
.review-form-box {
    background: #fff;
    border-radius: 24px;
    padding: 25px 40px 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .05);
}

.avg-rating {
    font-size: 1.9rem;
    font-weight: 700;
    color: #3c4b64;
}

.summary-stars i,
.review-stars i,
.interactive-stars i,
.rating-label i {
    color: #f7b500;
}

.review-total {
    font-size: 1.1rem;
    font-weight: 700;
    color: #3c4b64;
}

.rating-progress-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
}

.progress {
    height: 10px;
    border-radius: 50px;
    background: #e5e5e5;
}

.progress-bar {
    background: #f7b500;
}

.write-review-btn,
.submit-review-btn {
    background: #ee0777;
    color: #fff;
    border: none;
    padding: 16px 42px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.write-review-btn:hover,
.submit-review-btn:hover {
    color: #fff;
    background: #c10761;
}

.cancel-btn {
    padding: 16px 42px;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 600;
}

.review-success-message {
    max-width: 800px;
    margin: auto;
}

.review-success-message .success-icon {
    font-size: 70px;
    color: #ee0777;
    line-height: 1;
}

.review-success-message h4 {
    color: #ee0777;
    font-size: 1.4rem;
    font-weight: 700;
}

.review-success-message p {
    color: #ee0777;
    font-size: 1rem;
}

.interactive-stars i {
    font-size: 28px;
    cursor: pointer;
    color: #F7B500;
    margin-right: 5px;
}

.submit-review-btn {
    background: #ee0777;
    border-color: #ee0777;
    color: #fff;
}

.submit-review-btn:hover {
    background: #c10761;
    border-color: #c10761;
}

.swiper {
	padding-top:42px;
}

.review-card {
    text-align: left;
    height: 100%;
    min-height: 400px;
    position: relative;
}

.review-avatar {
    width: 90px;
    height: 90px;
    margin: -60px auto 20px;
    overflow: hidden;
    border-radius: 50%;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-author {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
}

.review-stars {
    text-align: center;
    margin-bottom: 20px;
}

.review-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.review-text {
    color: var(--color-black-light);
    font-size: 0.9rem;
    line-height: 1.4rem;
}

.review-images {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.review-images img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
}

.review-form-box h2 {
    font-size: 2rem;
}

.review-form-box label {
    display: block;
    margin-bottom: 6px;
    font-size: 1rem;
    font-weight: 500;
}

.review-form-box .form-control {
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 18px;
}

.review-form-box textarea.form-control {
    min-height: 180px;
}

.interactive-stars i {
    font-size: 24px;
    cursor: pointer;
    margin-right: 5px;
}

.swiper-button-prev,
.swiper-button-next {
    color: var(--color-black);
    top: var(--swiper-navigation-top-offset, 18%);
}

.cod-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 99999;
}

.cod-modal.active {
    display: block;
}

.cod-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
}

.cod-box {
    position: relative;
    width: 960px;
    max-width: 95%;
	overflow: scroll;
    height: 95%;
    background: #fff;
    margin: 5% auto 0px;
    border-radius: 16px;
    padding: 20px;
    animation: pop 0.25s ease;
}

@keyframes pop {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cod-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.cod-header h5 {
    margin-bottom: 0px;
}

#closeCod {
    background: var(--color-black);
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 10px 3px !important;
    height: auto !important;
    line-height: 0px;
}

.cod-product {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.cod-product h6 {
    font-size: 0.9rem;
}

.cod-product img {
    width: 60px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
}

.cod-product p {
    margin-bottom: 0px;
}

.cod-product .sale-price {
    font-size: 1.3rem;
}

.cod-product .old-price {
    font-size: 1rem;
}

.shipping-card input[type="radio"] {
    display: none;
}

.shipping-card-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 18px;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.25s ease;
    background: #fff;
}

.shipping-card-label:hover {
    border-color: transparent;
    transform: translateY(-2px);
}

.shipping-price {
    font-weight: 700;
    font-size: 16px;
    color: var(--color-black);
}

.btn-check:checked+.shipping-card-label {
    border-color: #d5ebff;
    background: rgba(13, 110, 253, 0.06);
    box-shadow: 0px 0px 4px 0px rgba(13, 110, 253, 0.12);
}

.btn-check:checked+.shipping-card-label .shipping-price {
    color: #0d6efd;
}

.cod-box label {
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.2rem;
}

.cod-box input {
    width: 100%;
    margin-bottom: 15px;
    padding: 8px 10px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    box-shadow: 5px 6px 14px -15px var(--color-black);
}

.cod-box input::placeholder {
    font-size: 0.8rem;
}

.cod-total-box {
    background: linear-gradient(135deg, #ffffff, #ececec);
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 8px 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.cod-total-label {
    font-size: 0.9rem;
    font-weight: 500;
}

.cod-total-amount {
    font-family: var(--font-heading-family);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1;
    color: var(--color-black);
    letter-spacing: -1px;
}

.cod-total-note {
    margin-top: 6px;
    font-size: 13px;
    color: #6c757d;
}

.cod-submit {
    position: relative;
    width: 100%;
    padding: 12px;
    background: var(--color-black);
    font-weight: 500;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 4px 4px 5px -4px var(--color-black);
    transition: 0.2s ease;
}

.cod-submit:active {
    box-shadow: none;
}

.cod-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    display: none;
    margin-left: 8px;
    vertical-align: middle;
}

.cod-submit.loading .btn-spinner {
    display: inline-block;
}

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

.cancel-codForm {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: underline;
    position: relative;
    z-index: 999;
    cursor: pointer;
}

.success-popup-box {
    width: 100%;
    max-width: 500px;
    background: #fff;
    border-radius: 20px;
    padding: 10px 10px;
    text-align: center;
    animation: popupScale .35s ease;
}

.success-icon {
    border-radius: 50%;
    color: #ee0777;
    font-size: 48px;
    font-weight: bold;
}

.success-popup-box h2 {
    font-size: 34px;
    margin-bottom: 10px;
    color: #111827;
}

.success-text {
    font-size: 0.9rem;
    color: var(--color-black-light);
    border-top: solid 1px #dedede;
    background: #fff5fa;
    margin: 0px;
    padding: 12px 10px;
}

.success-order-id {
    background: #f3f4f6;
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-size: 18px;
}

.success-order-id span {
    font-weight: 700;
    color: #ee0777;
}

.order-details {
    border: solid 1px #ececec;
    border-radius: 10px;
}

.order-details label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-black-light);
    margin: 0px;
}

.order-details p {
    font-weight: 600;
}

.continue-btn {
    width: auto;
    border: none;
    background: #ee0777;
    color: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: .3s;
}

.continue-btn:hover {
    background: #cb146c;
}

@keyframes popupScale {
    from {
        transform: scale(.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.product-details-box table th {
    background: #f8f9fa;
    font-weight: 600;
}

@media(max-width:991px) {

    .review-summary-box,
    .review-card,
    .review-form-box {
        padding: 25px;
    }

    .write-review-btn,
    .submit-review-btn,
    .cancel-btn {
        width: 100%;
        margin-top: 10px;
    }
}

@media(max-width:768px) {

    .thumbs-wrap {
        flex-direction: row !important;
        overflow-x: auto;
        position: relative;
        top: 0;
    }

    .product-title {
        font-size: 1.4rem;
    }

    .btn-add-cart {
        width: 100%;
    }

    .qty-wrap {
        width: 100%;
        justify-content: space-between;
    }

    .benefits-box {
        border-radius: 18px;
        padding: 0px 20px;
    }

    .benefit-item {
        gap: 14px;
        padding: 15px 0;
    }

    .benefit-content h4 {
        font-size: 0.9rem;
    }

    .benefit-icon i {
        font-size: 1.1rem;
    }

}

/* Modern product detail refresh */
.product-page {
    --product-ink: #2d2520;
    --product-muted: #8b8179;
    --product-line: #ececec;
    --product-soft: #f8f4ef;
    --product-soft-2: #fbf8f4;
    --product-accent: #6f5947;
    --product-accent-dark: #4b3a2e;
    background:
        radial-gradient(circle at 95% 35%, rgba(111, 89, 71, 0.08), transparent 26rem),
        linear-gradient(180deg, #ffffff 0%, #ffffff 68%);
    color: var(--product-ink);
    padding: 48px 0 0;
}

.product-shell {
    max-width: 1440px;
    padding-inline: clamp(18px, 4vw, 64px);
}

.product-hero-grid {
    --bs-gutter-x: clamp(28px, 5vw, 72px);
    --bs-gutter-y: 32px;
}

.product-gallery-grid {
    --bs-gutter-x: clamp(18px, 2.5vw, 34px);
    --bs-gutter-y: 18px;
}

.main-image-wrap {
    background: #f3ede7;
    border-radius: 18px;
    min-height: 0;
    box-shadow: 0 20px 70px rgba(45, 37, 32, 0.08);
    isolation: isolate;
}

.main-image-wrap img {
    aspect-ratio: 4 / 5.2;
    height: auto;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.001);
    transition: opacity 0.35s ease, transform 0.45s ease;
}

.main-image-wrap.media-loading img {
    opacity: 0.72;
    transform: scale(1.015);
}

.thumbs-wrap {
    top: 116px;
    gap: 14px !important;
    max-height: calc(100vh - 132px);
    overflow: auto;
    padding: 8px 4px 8px 0;
    scrollbar-width: thin;
}

.thumb-item {
    border: 1px solid transparent;
    border-radius: 10px;
    background: var(--product-soft);
    box-shadow: none;
    opacity: 0.78;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.thumb-item:hover,
.thumb-item.active-thumb {
    border-color: #b6977f;
    box-shadow: 0 8px 24px rgba(45, 37, 32, 0.12);
    opacity: 1;
    transform: translateY(-1px);
}

.thumb-item img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
}

.product-summary {
    position: sticky;
    top: 116px;
    padding: clamp(4px, 1vw, 16px) 0 40px;
    animation: productFadeUp 0.45s ease both;
}

@keyframes productFadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-sub-title {
    color: var(--product-muted);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.product-title {
    color: var(--product-ink);
    font-family: var(--font-heading-family);
    font-size: clamp(2.15rem, 3.1vw, 4rem);
    font-weight: 400 !important;
    letter-spacing: 0;
    line-height: 1.03;
    margin-bottom: 16px !important;
    max-width: 12ch;
}

.product-review-bar {
    background: transparent;
    border-radius: 0;
    padding: 0;
    font-size: 13px;
    margin-bottom: 22px !important;
}

.product-review-bar .stars i {
    color: #9d7a5f !important;
    font-size: 13px;
}

.custom-price-box {
    border-bottom: 1px solid var(--product-line);
    margin-bottom: 18px;
    padding-bottom: 20px;
}

.custom-price-box .gap-3 {
    gap: 16px !important;
}

.sale-price {
    color: var(--product-ink);
    font-size: clamp(2rem, 3vw, 2.9rem);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.1;
    margin-top: 8px;
}

.sale-price .price-only {
    align-self: center;
    color: var(--product-ink);
    font-family: var(--font-body-family);
    font-size: 0.78rem;
    font-weight: 600;
    margin: 6px 0 0 8px;
}

.old-price {
    color: #b4aba4;
    font-size: 1rem;
}

.discount-badge {
    background: #efe6df;
    color: var(--product-accent);
    font-weight: 600;
    letter-spacing: 0;
}

.product-short-copy {
    color: var(--product-muted);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.98rem;
    font-weight: 400;
    line-height: 1.75;
    max-width: 620px;
}

.product-short-copy p {
    margin-bottom: 16px;
}

.badge-live {
    align-items: center;
    display: flex;
    gap: 8px;
    margin: 4px 0 20px;
}

.badge-live .icon {
    height: 16px;
    width: 16px;
}

.badge-live .icon:before,
.badge-live .icon:after {
    margin: 4px 0 0 4px;
}

.badge-live .text {
    background: transparent;
    color: #3a9b42;
    font-size: 0.86rem;
    letter-spacing: 0.02em;
}

.product-benefits {
    margin: 0 0 26px;
}

.benefits-box {
    align-items: stretch;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--product-line);
    border-top: 1px solid var(--product-line);
    border-radius: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 14px 0;
}

.benefit-item {
    border-bottom: 0;
    border-right: 1px solid var(--product-line);
    gap: 12px;
    padding: 8px 16px;
}

.benefit-item:first-child {
    padding-left: 0;
}

.benefit-item:last-child {
    border-right: 0;
    padding-right: 0;
}

.benefit-icon {
    align-items: center;
    background: var(--product-soft);
    border-radius: 999px;
    color: var(--product-ink);
    display: flex;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.benefit-icon i {
    font-size: 1rem;
}

.benefit-content h4 {
    color: #5f554d;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.45;
}

.product-attributes {
    margin-bottom: 24px;
}

.attribute-row {
    border-bottom: 1px solid var(--product-line);
    color: var(--product-muted);
    font-size: 0.85rem;
    gap: 10px;
    justify-content: space-between;
    padding: 10px 0;
}

.attribute-row strong {
    color: var(--product-ink);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.product-purchase-row,
.variations_button {
    margin: 0 0 18px;
}

.qty-wrap {
    background: #fff;
    border: 1px solid var(--product-line);
    border-radius: 999px;
    gap: 0 !important;
    height: 52px;
    min-width: 158px;
    padding: 0 10px;
}

.qty-btn {
    background: transparent;
    border-radius: 999px;
    color: var(--product-ink) !important;
    font-size: 1.4rem;
    height: 38px;
    transition: background 0.2s ease, transform 0.2s ease;
    width: 38px;
}

.qty-btn:hover {
    background: var(--product-soft);
    transform: translateY(-1px);
}

.qty-input {
    background: transparent;
    color: var(--product-ink);
    font-size: 0.95rem;
    font-weight: 500;
    height: 48px;
}

.btn-add-cart,
.single_add_to_cart_button {
    background: linear-gradient(135deg, #735b48 0%, #4b3a2e 100%) !important;
    border: 0 !important;
    border-radius: 999px !important;
    box-shadow: 0 14px 28px rgba(75, 58, 46, 0.18);
    color: #fff !important;
    min-height: 52px;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn-add-cart:hover,
.single_add_to_cart_button:hover {
    box-shadow: 0 18px 34px rgba(75, 58, 46, 0.24);
    transform: translateY(-2px);
}

#custom-buy-now button,
#wa-buy-now {
    background: #fff !important;
    border: 1px solid #bda792 !important;
    border-radius: 999px !important;
    box-shadow: none;
    color: var(--product-accent-dark) !important;
    font-size: 0.76rem !important;
    letter-spacing: 0.16em !important;
    min-height: 48px;
    overflow: hidden;
    padding: 12px 18px;
}

#custom-buy-now button span,
#custom-buy-now button i,
#wa-buy-now span,
#wa-buy-now i {
    color: var(--product-accent-dark) !important;
}

#custom-buy-now button:hover,
#wa-buy-now:hover {
    background: var(--product-soft-2) !important;
}

#custom-buy-now button:after {
    display: none;
}

#custom-buy-now .buy-now-desc {
    background: transparent;
    color: var(--product-muted);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    margin: 8px 0 0;
    padding: 0;
    text-transform: uppercase;
}

#wa-buy-now {
    margin: 14px auto 22px;
}

.delivery-widget__auto {
    margin: 0 0 10px;
}

.basic__step-container {
    border-color: var(--product-line);
    border-radius: 0;
}

.basic__step-container .step-box__basic {
    padding: 14px 8px;
}

.basic__step-container .step-box__basic .icon__step-box i {
    color: var(--product-ink);
    font-size: 1.35rem;
}

.basic__step-container .step-box__basic .title__content,
.basic__step-container .step-box__basic .description__content {
    color: var(--product-ink) !important;
    font-size: 0.78rem !important;
}

.product-accordion .accordion-item {
    background: transparent;
    border-bottom: 1px solid var(--product-line);
}

.product-accordion .accordion-button {
    color: var(--product-accent-dark);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    padding: 18px 0;
}

.product-accordion .accordion-body {
    color: var(--product-muted);
    line-height: 1.75;
}

.share-product {
    margin: 32px 0 !important;
}

.share-product h5 {
    color: var(--product-muted);
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.share-product a {
    color: var(--product-accent-dark) !important;
    transition: color 0.2s ease, transform 0.2s ease;
}

.share-product a:hover {
    color: #111 !important;
    transform: translateY(-2px);
}

.related-products-section {
    margin-bottom: 60px;
    margin-top: 70px;
}

.related-products-title {
    font-size: clamp(1.45rem, 2vw, 2rem);
    font-weight: 400;
    letter-spacing: 0;
    margin-bottom: 28px;
}

.custom-reviews {
    background: linear-gradient(180deg, #fff 0%, #fffcf8 100%);
}

.reviews-heading {
    color: var(--product-ink);
    font-size: clamp(1.45rem, 2vw, 2rem);
    font-weight: 400;
    letter-spacing: 0;
}

.review-summary-box,
.review-card,
.review-form-box {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--product-line);
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(45, 37, 32, 0.06);
}

.review-card {
    min-height: 360px;
}

.avg-rating,
.review-total,
.review-title,
.review-author {
    color: var(--product-ink);
}

.review-text {
    color: var(--product-muted);
    line-height: 1.7;
}

.write-review-btn,
.submit-review-btn,
.continue-btn {
    background: var(--product-accent-dark);
    border-radius: 999px;
    box-shadow: 0 14px 28px rgba(75, 58, 46, 0.16);
}

.write-review-btn:hover,
.submit-review-btn:hover,
.continue-btn:hover {
    background: #3b2e25;
}

.variations_form {
    margin-bottom: 18px;
}

.variations {
    margin-bottom: 18px;
    width: 100%;
}

.variations th,
.variations td {
    display: block;
    padding: 0 0 8px;
}

.variations label {
    color: var(--product-ink);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.variations select {
    appearance: none;
    background: #fff;
    border: 1px solid var(--product-line);
    border-radius: 999px;
    color: var(--product-ink);
    min-height: 48px;
    padding: 0 18px;
    width: 100%;
}

.reset_variations {
    color: var(--product-muted);
    display: inline-block;
    font-size: 0.78rem;
    margin-top: 8px;
}

@media(max-width:991px) {
    .product-page {
        padding-top: 28px;
    }

    .product-summary {
        position: static;
        padding-bottom: 24px;
    }

    .product-title {
        max-width: none;
    }

    .benefits-box {
        grid-template-columns: 1fr;
    }

    .benefit-item,
    .benefit-item:first-child,
    .benefit-item:last-child {
        border-bottom: 1px solid var(--product-line);
        border-right: 0;
        padding: 12px 0;
    }

    .benefit-item:last-child {
        border-bottom: 0;
    }
}

@media(max-width:768px) {
    .product-shell {
        padding-inline: 14px;
    }

    .product-gallery-grid {
        --bs-gutter-y: 14px;
    }

    .main-image-wrap {
        border-radius: 14px;
    }

    .thumbs-wrap {
        gap: 10px !important;
        padding: 2px 0 8px;
		top:10px
    }

    .thumb-item {
        flex: 0 0 72px;
    }

    .product-title {
        font-size: clamp(1.9rem, 9vw, 2.55rem);
    }

    .product-purchase-row {
        align-items: stretch !important;
        flex-direction: column;
    }

    .qty-wrap {
        width: 100%;
    }

    .basic__step-container {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .basic__step-container .step-box__basic {
        min-width: 0;
        width: auto;
    }
}

@media(prefers-reduced-motion: reduce) {
    .product-summary,
    .main-image-wrap img,
    .thumb-item,
    .btn-add-cart,
    .single_add_to_cart_button,
    .qty-btn,
    .share-product a {
        animation: none !important;
        transition: none !important;
    }
}
