 /* Container & Wrapper */
    .product-slider-wrap {
        width: 100%;
        padding: 10px 0 20px;
        box-sizing: border-box;
    }

    .product-slider-wrap .owl-stage {
        display: flex !important;
    }

    .product-slider-wrap .owl-item {
        display: flex !important;
        height: auto !important;
    }

    .product-slider-wrap .item {
        width: 100%;
        display: flex;
    }

    /* Section heading for the related-products slider */
    .product-slider-wrap .slider-heading {
        font-size: 22px;
        font-weight: 700;
        color: #1e293b;
        margin: 0 0 16px;
        text-align: center;
    }

    /* Product Card Layout */
    .product-slider-wrap .product-card {
        width: 100%;
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        margin: 0;
    }

    .product-slider-wrap .product-card:hover {
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
        border-color: #cbd5e1;
    }

    /* Product Image Box Fix */
    .product-slider-wrap .product-image {
        width: 100% !important;
        height: 140px !important;
        /* Height kam kar ke proportion fit kiya gaya h */
        max-height: 140px !important;
        background: #f8fafc !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 8px !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        border-radius: 8px 8px 0 0 !important;
    }

    .product-slider-wrap .product-image a {
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .product-slider-wrap .product-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        /* Image poori fill ho jayegi */
        border-radius: 8px !important;
    }

    /* Product Content */
    .product-slider-wrap .product-content {
        padding: 12px 14px;
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .product-slider-wrap .product-name {
        font-size: 14px;
        line-height: 1.35;
        font-weight: 700;
        color: #1e293b;
        margin: 0 0 6px;
        text-decoration: none;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 38px;
    }

    .product-slider-wrap .product-name:hover {
        color: #0b5d2a;
    }

    .product-slider-wrap .product-description {
        font-size: 12px;
        line-height: 1.4;
        color: #64748b;
        margin: 0 0 8px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 34px;
    }

    .product-slider-wrap .product-price {
        font-size: 17px;
        line-height: 1.2;
        font-weight: 800;
        color: #0b5d2a;
        margin: 0 0 10px;
    }

    /* Product Actions (Buttons Bottom Par Pin Honge) */
    .product-slider-wrap .product-actions {
        margin-top: auto;
    }

    .product-slider-wrap .qty-cart-row {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .product-slider-wrap .qty-box {
        display: flex;
        align-items: center;
        border: 1px solid #cbd5e1;
        border-radius: 6px;
        overflow: hidden;
        height: 36px;
        flex-shrink: 0;
    }

    .product-slider-wrap .qty-btn {
        width: 28px;
        height: 100%;
        font-size: 16px;
        border: 0;
        background: #f1f5f9;
        color: #0b5d2a;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .product-slider-wrap .qty-btn:hover {
        background: #e2e8f0;
    }

    .product-slider-wrap .qty-input {
        width: 28px;
        height: 100%;
        font-size: 13px;
        font-weight: 600;
        text-align: center;
        border: 0;
        border-left: 1px solid #cbd5e1;
        border-right: 1px solid #cbd5e1;
        padding: 0;
        color: #0f172a;
    }

    .product-slider-wrap .add-cart-btn {
        flex: 1;
        height: 36px;
        border: 0;
        border-radius: 6px;
        background: #0b5d2a;
        color: #fff;
        font-size: 12.5px;
        font-weight: 700;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        white-space: nowrap;
        padding: 0 8px;
    }

    .product-slider-wrap .add-cart-btn:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

    .product-slider-wrap .add-cart-btn:hover {
        background: #08491f;
    }

    .product-slider-wrap .view-detail {
        display: block;
        text-align: center;
        margin-top: 8px;
        font-size: 11.5px;
        font-weight: 600;
        color: #0b5d2a;
        text-decoration: none;
    }

    .product-slider-wrap .view-detail:hover {
        text-decoration: underline;
    }

    /* Owl Carousel Custom Nav Arrows */
    .product-slider-wrap .owl-nav button.owl-prev,
    .product-slider-wrap .owl-nav button.owl-next {
        position: absolute;
        top: 40%;
        transform: translateY(-50%);
        width: 34px;
        height: 34px;
        background: #fff !important;
        border-radius: 50% !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
        color: #0f172a !important;
        font-size: 18px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .product-slider-wrap .owl-nav button.owl-prev {
        left: -12px;
    }

    .product-slider-wrap .owl-nav button.owl-next {
        right: -12px;
    }

    @media(max-width: 767px) {
        .product-slider-wrap .product-image {
            height: 150px;
        }
    }

    .product-slider-wrap .owl-stage {
        display: flex !important;
    }

    .product-slider-wrap .owl-item {
        box-sizing: border-box !important;
    }

    .product-slider-wrap .item {
        width: 100%;
    }

    /* Empty state when no related products exist */
    .product-slider-wrap .no-products {
        text-align: center;
        color: #64748b;
        font-size: 13px;
        padding: 20px 0;
    }

    @media(max-width:991px) {
        .product-slider-wrap.few-products .owl-carousel {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media(max-width:575px) {
        .product-slider-wrap.few-products .owl-carousel {
            grid-template-columns: 1fr;
        }
    }

    /* Premium Product Detail */
    .premium-product-detail {
        padding: 55px 0 70px;
        background: linear-gradient(180deg, #f7faf7, #fff)
    }

    .product-detail-card {
        background: #fff;
        border: 1px solid #e5ece6;
        border-radius: 24px;
        box-shadow: 0 15px 45px rgba(20, 70, 35, .09);
        padding: 28px
    }

    .premium-gallery {
        position: sticky;
        top: 95px
    }

    .premium-main {
        position: relative;
        background: #f7faf7;
        border: 1px solid #e7eee8;
        border-radius: 20px;
        overflow: hidden
    }

    .premium-main .swiper-slide {
        padding: 25px
    }

    .premium-main .image.item {
        height: 455px;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .premium-main img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        mix-blend-mode: multiply;
        transition: .4s
    }

    .premium-main .swiper-slide:hover img {
        transform: scale(1.04)
    }

    .gallery-badge,
    .gallery-sku {
        position: absolute;
        z-index: 4;
        top: 17px;
        padding: 7px 12px;
        border-radius: 30px;
        font-size: 11px;
        font-weight: 800
    }

    .gallery-badge {
        left: 17px;
        background: #0b5d2a;
        color: #fff
    }

    .gallery-sku {
        right: 17px;
        background: #fff;
        border: 1px solid #e1e8e2;
        color: #526158;
        border-radius: 8px
    }

    .premium-thumbs {
        margin-top: 14px
    }

    .premium-thumbs .swiper-slide {
        width: 78px !important;
        height: 78px;
        padding: 5px;
        background: #fff;
        border: 1px solid #e1e8e2;
        border-radius: 12px
    }

    .premium-thumbs .swiper-slide-thumb-active,
    .premium-thumbs .swiper-slide:hover {
        border-color: #0b5d2a;
        box-shadow: 0 5px 15px rgba(11, 93, 42, .12)
    }

    .premium-thumbs .image.item {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .premium-thumbs img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 8px
    }

    .premium-info {
        padding: 10px 8px 10px 34px
    }

    .eyebrow {
        display: inline-flex;
        gap: 7px;
        align-items: center;
        padding: 6px 11px;
        border-radius: 30px;
        background: #edf7ef;
        border: 1px solid #d8ecdc;
        color: #0b5d2a;
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .7px;
        margin-bottom: 14px
    }

    .premium-title {
        font-size: 36px;
        line-height: 1.15;
        font-weight: 800;
        color: #17251c;
        margin: 0 0 8px
    }

    .premium-subtitle {
        font-size: 20px;
        color: #34483a;
        font-weight: 700;
        margin-bottom: 15px
    }

    .premium-desc {
        font-size: 15px;
        line-height: 1.75;
        color: #64748b;
        margin-bottom: 20px
    }

    .meta-row {
        display: flex;
        flex-wrap: wrap;
        gap: 9px;
        margin-bottom: 20px
    }

    .meta-pill {
        padding: 8px 11px;
        border: 1px solid #e5ebe6;
        background: #f8faf8;
        border-radius: 9px;
        color: #526158;
        font-size: 12px;
        font-weight: 600
    }

    .meta-pill i {
        color: #0b5d2a;
        margin-right: 5px
    }

    /* Product Detail Price Box */
    .premium-info .price-box {
        width: 100%;
        padding: 15px 18px;
        background: linear-gradient(135deg, #f0f8f1, #fff);
        border: 1px solid #d9eadb;
        border-radius: 14px;
        margin-bottom: 20px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 5px 20px;
        box-sizing: border-box
    }

    .premium-info .detail-price-content {
        grid-column: 1;
        grid-row: 1;
        display: flex;
        align-items: center;
        gap: 18px;
        min-width: 0
    }

    .premium-info .detail-mrp-block,
    .premium-info .detail-selling-block {
        display: flex;
        flex-direction: column;
        justify-content: center
    }

    .premium-info .detail-price-label {
        font-size: 10px;
        line-height: 1.2;
        text-transform: uppercase;
        color: #718078;
        font-weight: 800;
        letter-spacing: .5px;
        margin-bottom: 3px
    }

    .premium-info .detail-mrp {
        font-size: 17px;
        line-height: 1.15;
        font-weight: 600;
        color: #94a3b8;
        text-decoration: line-through;
        white-space: nowrap
    }

    .premium-info .detail-selling-price {
        font-size: 28px;
        line-height: 1.1;
        font-weight: 850;
        color: #0b5d2a;
        white-space: nowrap
    }

    .premium-info .detail-discount-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: px 6px;
        background: #fff1f1;
        border: 1px solid #ffd0d0;
        border-radius: 7px;
        color: #d93025;
        font-size: 12px;
        line-height: 1;
        font-weight: 800;
        white-space: nowrap
    }

    .premium-info .detail-saving {
        grid-column: 1;
        grid-row: 2;
        margin: 0;
        color: #0b5d2a;
        font-size: 11px;
        line-height: 1.3;
        font-weight: 700
    }

    .premium-info .detail-saving i {
        margin-right: 4px
    }

    .premium-info .price-note {
        grid-column: 2;
        grid-row: 1 / span 2;
        padding-left: 18px;
        border-left: 1px solid #dce8df;
        text-align: right;
        font-size: 11px;
        line-height: 1.5;
        color: #718078;
        white-space: nowrap
    }

    .highlights {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-bottom: 20px
    }

    .highlight {
        border: 1px solid #edf1ed;
        border-radius: 12px;
        padding: 12px 8px;
        text-align: center
    }

    .highlight i {
        display: block;
        color: #0b5d2a;
        font-size: 17px;
        margin-bottom: 5px
    }

    .highlight strong {
        display: block;
        font-size: 12px;
        color: #25352a
    }

    .highlight span {
        font-size: 10px;
        color: #94a3b8
    }

    .product-purchase-box {
        margin: 2px 0 20px;
        padding: 15px;
        background: #f8fbf8;
        border: 1px solid #e3ebe4;
        border-radius: 14px
    }

    .quantity-label {
        font-size: 11px;
        font-weight: 800;
        color: #526158;
        text-transform: uppercase;
        letter-spacing: .6px;
        margin-bottom: 9px
    }

    .purchase-row {
        display: grid;
        grid-template-columns: 112px 1fr 1fr;
        gap: 10px;
        align-items: stretch
    }

    .detail-qty-box {
        height: 52px;
        display: flex;
        align-items: center;
        border: 1px solid #cfdad1;
        border-radius: 10px;
        background: #fff;
        overflow: hidden
    }

    .detail-qty-btn {
        width: 34px;
        height: 100%;
        border: 0;
        background: #f1f6f2;
        color: #0b5d2a;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer
    }

    .detail-qty-btn:hover {
        background: #e5f0e7
    }

    .detail-qty-input {
        width: 44px;
        height: 100%;
        border: 0;
        border-left: 1px solid #e1e8e2;
        border-right: 1px solid #e1e8e2;
        text-align: center;
        font-size: 15px;
        font-weight: 800;
        color: #17251c;
        background: #fff
    }

    .premium-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 11px;
        margin-bottom: 17px
    }

    .product-detail-actions .premium-btn {
        min-height: 52px
    }

    .product-detail-actions .premium-btn i {
        font-size: 15px
    }

    .premium-btn {
        min-height: 50px;
        border-radius: 10px;
        font-size: 13px;
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: .25s;
        cursor: pointer
    }

    .premium-btn-buy {
        background: #f2b134;
        color: #17251c  !important;
        border: 1px solid #e0a329;
        box-shadow: 0 6px 15px rgba(224, 163, 41, .12)
    }
    .tf-btn .text-style {
        color: #17251c  !important;
    }

    .premium-btn-buy:hover {
        background: #e3a328;
        color: #17251c;
        transform: translateY(-1px)
    }

    .premium-btn-primary {
        background: #0b5d2a;
        color: #fff;
        border: 1px solid #0b5d2a
    }

    .premium-btn-primary:hover {
        background: #08491f;
        color: #fff;
        transform: translateY(-1px)
    }

    .premium-btn-secondary {
        background: #fff;
        color: #0b5d2a;
        border: 1px solid #0b5d2a
    }

    .premium-btn-secondary:hover {
        background: #edf7ef
    }

    .brochure {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        color: #b42318;
        font-size: 12px;
        font-weight: 700;
        text-decoration: none;
        margin-bottom: 18px
    }

    .share-row {
        border-top: 1px solid #edf0ed;
        padding-top: 15px;
        display: flex;
        align-items: center;
        gap: 12px
    }

    .share-row p {
        margin: 0;
        color: #64748b;
        font-size: 12px;
        font-weight: 700
    }

    @media(max-width:991px) {
        .premium-gallery {
            position: relative;
            top: auto
        }

        .premium-info {
            padding: 30px 5px 5px
        }
    }

    @media(max-width:767px) {
        .product-detail-card {
            padding: 14px;
            border-radius: 17px
        }

        .premium-main .image.item {
            height: 320px
        }

        .premium-title {
            font-size: 28px
        }

        .premium-subtitle {
            font-size: 17px
        }

        .highlights,
        .premium-actions {
            grid-template-columns: 1fr
        }

        .purchase-row {
            grid-template-columns: 105px 1fr
        }

        .purchase-row .detail-buy-now {
            grid-column: 1 / -1
        }

        .premium-info .price-box {
            display: grid;
            grid-template-columns: 1fr;
            gap: 8px;
            padding: 14px
        }

        .premium-info .detail-price-content {
            grid-column: 1;
            grid-row: auto;
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap
        }

        .premium-info .detail-selling-price {
            font-size: 24px
        }

        .premium-info .detail-mrp {
            font-size: 15px
        }

        .premium-info .detail-discount-badge {
            font-size: 11px;
            padding: 7px 9px
        }

        .premium-info .detail-saving {
            grid-column: 1;
            grid-row: auto
        }

        .premium-info .price-note {
            grid-column: 1;
            grid-row: auto;
            padding-left: 0;
            padding-top: 8px;
            border-left: 0;
            border-top: 1px solid #dce8df;
            text-align: left;
            white-space: normal
        }
    }