@import './base.css';


/* ── Section ── */
.our-bestseller {
    padding: 50px 30px !important;
    margin-top: 0px !important;
    background-color: #f4f8ec;
}

    /* ── Heading row ── */
    .our-bestseller .heading {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 30px;
    }

        .our-bestseller .heading h3 {
            color: var(--color-primary);
            font-size: 40px;
            font-weight: 600;
            line-height: 120%;
            letter-spacing: -0.8px;
        }

        .our-bestseller .heading .view-all {
            color: var(--color-primary);
            font-size: 15px;
            font-weight: 500;
            text-decoration: none;
            border-bottom: 1px solid currentColor;
            padding-bottom: 2px;
            transition: opacity 0.2s;
        }

            .our-bestseller .heading .view-all:hover {
                opacity: 0.7;
            }

/* ── Skeleton loader ── */
@keyframes pl-shimmer {
    0% {
        background-position: -600px 0;
    }

    100% {
        background-position: 600px 0;
    }
}

.skeleton-pulse {
    background: linear-gradient(90deg, #e4e9d8 25%, #f2f5ea 50%, #e4e9d8 75%);
    background-size: 1200px 100%;
    animation: pl-shimmer 1.4s infinite linear;
    border-radius: 6px;
}

.skeleton-card {
    display: flex;
    flex-direction: column;
    padding-bottom: 30px;
}

.skeleton-img {
    width: 100%;
    height: 330px;
    border-radius: 8px;
}

.skeleton-line {
    display: block;
    margin-top: 10px;
    height: 14px;
}

/* ── 3-column grid ── */
.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ── Product card ── */
.product-card {
    display: flex;
    flex-direction: column;
    padding-bottom: 30px;
}

    /* ── Image container ── */
    .product-card .img-container {
        position: relative;
        width: 100%;
        height: 330px;
        overflow: hidden;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

        .product-card .img-container img {
            position: absolute;
            z-index: 4;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: all 0.3s ease;
        }

        /* Badge */
        .product-card .img-container span {
            position: absolute;
            z-index: 5;
            top: 0;
            left: 0;
            padding: 6px 20px;
            border-radius: 8px 0;
            background: var(--color-secondary);
            color: var(--color-primary);
            font-size: 14px;
            font-weight: 500;
            line-height: 150%;
        }

    /* Wishlist heart */
    .product-card .wishlist {
        display: flex;
        width: 45px;
        height: 45px;
        padding: 11px;
        justify-content: center;
        align-items: center;
        position: absolute;
        right: 16px;
        top: 16px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 12px 24px 0 rgba(0, 0, 0, 0.2);
        z-index: 5;
        cursor: pointer;
        transition: transform 0.2s ease;
    }

        .product-card .wishlist:hover {
            transform: scale(1.1);
        }

    /* Hover overlay + buttons */
    .product-card .hover-actions {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 12px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 6;
        border-radius: 8px;
    }

        .product-card .hover-actions::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.66);
            z-index: -1;
            border-radius: 8px;
        }

    .product-card .img-container:hover .hover-actions {
        opacity: 1;
        visibility: visible;
    }

    .product-card .action-btn {
        padding: 12px 24px;
        background-color: var(--color-secondary);
        color: var(--color-primary);
        font-weight: 600;
        cursor: pointer;
        border-radius: 6px;
        transition: all 0.3s ease;
        min-width: 160px;
        text-align: center;
        font-size: 14px;
        border: none;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        position: relative;
        z-index: 7;
    }

        .product-card .action-btn:hover {
            background: #f5d976;
        }

        .product-card .action-btn.primary {
            background: var(--color-primary);
            color: var(--color-white);
        }

            .product-card .action-btn.primary:hover {
                background: #78070a;
            }

    /* ── Card text content ── */
    .product-card h3 {
        color: var(--color-black);
        font-size: 20px;
        font-weight: 500;
            color: var(--color-black);
        font-size: 20px;
        font-weight: 500;
        line-height: 130%;
        letter-spacing: -0.2px;
        margin-top: 10px;
    }

    .product-description {
        color: #696969;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.5;
        margin-top: 10px;
        transition: all 0.3s ease;
    }

        .product-description.clamped {
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

    .read-more-btn {
        color: #90090C;
        cursor: pointer;
        font-weight: 600;
        font-size: 13px;
        margin-top: 4px;
        display: inline-block;
    }

        .read-more-btn:hover {
            text-decoration: underline;
        }

    .product-card .star {
        margin-top: 10px;
        display: flex;
        align-items: center;
        gap: 4px;
    }

        .product-card .star span {
            color: #696969;
            font-size: 12px;
            font-weight: 400;
            line-height: 150%;
            margin-left: 8px;
        }

    .product-card h4 {
        color: var(--color-black);
        font-size: 20px;
        font-weight: 600;
        line-height: 130%;
        letter-spacing: -0.2px;
        margin-top: 10px;
    }

    /* Mobile add-to-cart button — hidden on desktop */
    .product-card .cart-mobile {
        display: none;
    }

/* ── Responsive ── */
@media (max-width: 767px) {
    .card-grid {
        grid-template-columns: 1fr;
    }

    .filter-text,
    .sort-text {
        display: none;
    }

    .bredcrumb {
        background: url(../images/Ourproductb.png) no-repeat center;
        background-size: cover;
        height: 200px;
        margin-top: 122px;
    }

    .product-card .cart-mobile {
        display: flex;
        padding: 9px 16px;
        justify-content: center;
        align-items: center;
        gap: 8px;
        border-radius: 4px;
        background: var(--color-primary);
        color: var(--color-white);
        font-size: 14px;
        font-weight: 500;
        line-height: 150%;
        margin-top: 20px;
        text-align: center;
        text-decoration: none;
        transition: background 0.3s ease;
    }

        .product-card .cart-mobile:hover {
            background-color: #78070a;
        }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bredcrumb {
    background: url(../images/Ourproductb.png) no-repeat center;
    background-size: cover;
    height: 200px;
}

    .bredcrumb .content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        color: var(--color-white);
    }

        .bredcrumb .content h3,
        .bredcrumb .content h3 a {
            color: var(--color-primary);
            text-decoration: none;
            text-align: center;
            font-variant-numeric: ordinal;
            font-feature-settings: "dlig" on;
            /* Paragraph/Medium */
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 150%;
            /* 24px */
        }

            .bredcrumb .content h3 span {
                color: var(--Greys-800, #686868);
                text-align: center;
                /* Paragraph/regular */
                font-size: 16px;
                font-style: normal;
                font-weight: 400;
                line-height: 150%;
                /* 24px */
            }

        .bredcrumb .content h2 {
            color: var(--color-primary);
            text-align: center;
            /* Display/semiBold-5 */
            font-size: 40px;
            font-style: normal;
            font-weight: 600;
            line-height: 120%;
            /* 48px */
            letter-spacing: -0.8px;
        }


.our-bestseller .filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    padding-bottom: 32px;
}

    .our-bestseller .filter .filter-btn {
        display: flex;
        height: 40px;
        padding: 12px 24px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 6px;
        border: 1px solid var(--color-primary);
        transition: all 0.3s ease;
    }

        .our-bestseller .filter .filter-btn span {
            color: var(--color-primary);
            text-align: center;
            font-variant-numeric: ordinal;
            font-feature-settings: 'dlig' on;
            /* Other/Buttontext */
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 120%;
            /* 19.2px */
        }

    .our-bestseller .filter h3 {
        color: var(--color-black);
        text-align: center;
        /* Heading/Medium-h5 */
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        /* 24px */
    }

.our-bestseller .filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    padding-bottom: 32px;
    position: relative;
}

    .our-bestseller .filter .filter-btn {
        display: flex;
        height: 40px;
        padding: 12px 24px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 6px;
        border: 1px solid var(--color-primary);
        transition: all 0.3s ease;
        cursor: pointer;
    }

        .our-bestseller .filter .filter-btn:hover {
            background-color: var(--color-primary);
        }

            .our-bestseller .filter .filter-btn:hover span,
            .our-bestseller .filter .filter-btn:hover svg path {
                color: white;
                stroke: white;
                fill: white;
            }

        .our-bestseller .filter .filter-btn span {
            color: var(--color-primary);
            text-align: center;
            font-variant-numeric: ordinal;
            font-feature-settings: 'dlig' on;
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 120%;
        }

    .our-bestseller .filter h3 {
        color: var(--color-black);
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
    }

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 60px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 20;
}

    .dropdown-menu.show {
        opacity: 1;
        visibility: visible;
    }

#filterDropdown {
    left: 0;
}

#sortDropdown {
    right: 0;
}

.dropdown-menu ul {
    list-style: none;
    padding: 8px 0;
    margin: 0;
}

.dropdown-menu li {
    padding: 12px 24px;
    font-size: 14px;
    color: var(--color-black);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    .dropdown-menu li:hover {
        background-color: #f5f5f5;
        color: var(--color-primary);
    }

.our-bestseller .filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    padding-bottom: 32px;
    position: relative;
}

    .our-bestseller .filter .filter-btn {
        display: flex;
        height: 40px;
        padding: 12px 24px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 6px;
        border: 1px solid var(--color-primary);
        transition: all 0.3s ease;
        cursor: pointer;
        background: white;
    }

        .our-bestseller .filter .filter-btn:hover {
            background-color: var(--color-primary);
        }

            .our-bestseller .filter .filter-btn:hover span,
            .our-bestseller .filter .filter-btn:hover svg path {
                color: white;
                stroke: white;
                fill: white;
            }

        .our-bestseller .filter .filter-btn span {
            color: var(--color-primary);
            text-align: center;
            font-size: 16px;
            font-weight: 500;
            line-height: 120%;
        }

    .our-bestseller .filter h3 {
        color: var(--color-black);
        text-align: center;
        font-size: 16px;
        font-weight: 500;
        line-height: 150%;
    }

.dropdown-menu li {
    padding: 12px 24px;
    font-size: 14px;
    color: var(--color-black);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    .dropdown-menu li:hover {
        background-color: #f5f5f5;
        color: var(--color-primary);
    }

/* Offcanvas Styles */
.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

    .offcanvas-overlay.show {
        opacity: 1;
        visibility: visible;
    }

.offcanvas-filter {
    position: fixed;
    top: 0;
    left: -400px;
    width: 380px;
    height: 94vh;
    background: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

    .offcanvas-filter.show {
        left: 0;
    }

.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid #eee;
}

    .offcanvas-header h2 {
        margin: 0;
        font-size: 20px;
        font-weight: 600;
        color: var(--color-black);
    }

.close-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
    line-height: 1;
}

    .close-btn:hover {
        color: var(--color-primary);
    }

.offcanvas-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.filter-section {
    margin-bottom: 24px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

    .filter-section:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

.filter-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 16px;
}

    .filter-section-header span {
        font-weight: 600;
        color: var(--color-black);
        font-size: 16px;
    }

.chevron {
    transition: transform 0.3s;
}

.filter-section.collapsed .chevron {
    transform: rotate(-90deg);
}

.filter-section.collapsed .filter-options {
    display: none;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

    .checkbox-label input[type="checkbox"] {
        width: 18px;
        height: 18px;
        cursor: pointer;
        accent-color: var(--color-primary);
    }

/* Price Range Styles */
.price-range {
    margin-bottom: 16px;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

    .price-inputs input {
        flex: 1;
        padding: 8px 12px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 14px;
        width: 100%;
    }

    .price-inputs span {
        color: #999;
    }

.price-slider {
    position: relative;
    height: 30px;
    margin-bottom: 16px;
}

.slider {
    position: absolute;
    width: 100%;
    height: 5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
}

    .slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 18px;
        height: 18px;
        background: var(--color-primary);
        border-radius: 50%;
        cursor: pointer;
        pointer-events: auto;
        margin-top: -6px;
    }

    .slider::-webkit-slider-runnable-track {
        height: 5px;
        background: #ddd;
        border-radius: 5px;
    }

.price-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.price-preset {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 20px;
    background: white;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

    .price-preset:hover {
        border-color: var(--color-primary);
        color: var(--color-primary);
    }

.offcanvas-footer {
    padding: 24px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 12px;
}

.clear-btn,
.apply-btn {
    flex: 1;
    padding: 14px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.clear-btn {
    background: #f5f5f5;
    color: var(--color-black);
}

    .clear-btn:hover {
        background: #e5e5e5;
    }

.apply-btn {
    background: var(--color-primary);
    color: white;
}

    .apply-btn:hover {
        background: #4a231f;
    }








/* ===== PRODUCT DETAILS RESPONSIVE STYLES ===== */
.product-details-wrapper {
    width: 100%;
    margin: 0 auto;
}


/* Gallery Styles */
.product-gallery {
    position: sticky;
    top: 20px;
}

.main-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f8f8;
}

.main-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.img-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.wishlist-icon,
.share-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #FFFBEF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

    .wishlist-icon:hover,
    .share-icon:hover {
        transform: scale(1.1);
        background: #ffe69b;
    }

/* Thumbnail Slider */
.thumbnail-slider {
    margin-top: 20px;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

    .thumbnail-slider::-webkit-scrollbar {
        height: 4px;
    }

    .thumbnail-slider::-webkit-scrollbar-thumb {
        background: var(--color-primary);
        border-radius: 4px;
    }

.thumbnail-container {
    display: flex;
    gap: 12px;
    padding: 5px 0;
    justify-content: space-around;
}

.thumbnail-item {
    flex: 0 0 auto;
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

    .thumbnail-item.active {
        border-color: var(--color-primary);
        transform: scale(1.05);
    }

    .thumbnail-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Product Content */
.product-content {
    padding-left: 30px;
}

.bestseller {
    display: inline-block;
    padding: 6px 16px;
    background: #FFD042;
    color: var(--color-primary);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.product-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

    .product-title h2 {
        font-size: clamp(20px, 4vw, 28px);
        font-weight: 500;
        color: #000;
        margin: 0;
    }

.stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    background: #FFECE9;
    color: #FF3B30;
    border-radius: 38px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.review {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.stars {
    display: flex;
    gap: 4px;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 5px;
}

    .price-row h3 {
        font-size: clamp(20px, 4vw, 24px);
        font-weight: 500;
        color: #000;
        margin: 0;
    }

.linethru {
    color: #686868;
    font-size: 16px;
    text-decoration: line-through;
}

.off {
    color: #189E33;
    font-size: 14px;
    font-weight: 500;
    background: #E8F5E9;
    padding: 4px 8px;
    border-radius: 4px;
}

.mrp {
    color: #686868;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Size Section */
.size-section {
    margin: 25px 0;
}

    .size-section h3 {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 15px;
    }

.size-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.size-box {
    background: #fff;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .size-box:hover,
    .size-box.active {
        border-color: var(--color-primary);
        background: #FFF5F5;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(144, 9, 12, 0.1);
    }

.size-weight {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
}

.size-price {
    font-weight: 700;
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.size-compare {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.size-original {
    color: #999;
    font-size: 13px;
    text-decoration: line-through;
}

.size-discount {
    color: #189E33;
    font-size: 12px;
    font-weight: 500;
}

/* Offers Section */
.offers-section {
    margin: 25px 0;
}

    .offers-section h3 {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 15px;
    }

.offers-flex {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.offer-card {
    background: #FAFAFA;
    border: 1px solid #e2e0e0;
    border-radius: 12px;
    padding: 16px 26px;
    transition: all 0.3s ease;
}

    .offer-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

.offer-badge {
    display: inline-block;
    background: #FFD042;
    color: var(--color-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.offer-details p {
    color: #686868;
    font-size: 13px;
    margin: 4px 0;
}

.offer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px dashed #DDD;
}

.offer-code {
    font-weight: 700;
    font-size: 15px;
    color: #333;
}

.copy-btn {
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    background: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .copy-btn:hover {
        background: var(--color-primary);
        color: white;
    }

/* Delivery Features */
.delivery-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 25px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

    .feature svg {
        width: 40px;
        height: 40px;
    }

    .feature span {
        font-size: 13px;
        color: #333;
        font-weight: 500;
    }

/* Product Actions */
.product-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 40px;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 2px solid #e0e0e0;
    border-radius: 40px;
    padding: 4px;
    background: white;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .qty-btn:hover {
        background: #f5f5f5;
    }

.qty-value {
    min-width: 40px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
}

.add-to-cart-btn,
.buy-now-btn {
    flex: 1;
    min-width: 140px;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-to-cart-btn {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

    .add-to-cart-btn:hover {
        background: var(--color-primary);
        color: white;
    }

        .add-to-cart-btn:hover svg path {
            stroke: white;
        }

.buy-now-btn {
    background: var(--color-primary);
    border: 2px solid var(--color-primary);
    color: white;
}

    .buy-now-btn:hover {
        background: #78070a;
        border-color: #78070a;
    }

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Large Desktop */
@media (min-width: 1200px) {
    .product-details-wrapper {
        padding: 0 30px 50px 30px;
    }
}

/* Tablet Landscape */
@media (max-width: 991px) {
    .product-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .product-gallery {
        position: relative;
        top: 0;
    }

    .size-boxes {
        grid-template-columns: repeat(2, 1fr);
    }

    .offers-flex {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {


    .delivery-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .product-actions {
        flex-direction: column;
    }

    .quantity-control {
        width: 100%;
        justify-content: center;
    }

    .add-to-cart-btn,
    .buy-now-btn {
        width: 100%;
    }

    .product-title {
        flex-direction: column;
        align-items: flex-start;
    }

    .thumbnail-item {
        width: 70px;
        height: 70px;
    }
}

/* Mobile Large */
@media (max-width: 576px) {
    .product-details-wrapper {
        padding: 10px;
    }

    .product-card {
        padding: 0px !important;
    }

    .review-content {
        padding-left: 0px !important;
        border: none !important;
    }

    .review-item {
        display: flex;
        gap: 0 !important;
    }

    .offers-flex {
        display: flex;
        justify-content: space-between;
        margin-top: 10px;
        flex-direction: column;
        gap: 20px;
    }

    .offers-flex {
        grid-template-columns: 1fr;
    }

    .delivery-features {
        text-align: left;
    }

    .feature {
        flex-direction: column;
        justify-content: flex-start;
    }

    .product-details-bradecruumbs {
        margin-top: 122px;
    }

    .img-icon {
        top: 10px;
        right: 10px;
    }

    .wishlist-icon,
    .share-icon {
        width: 36px;
        height: 36px;
    }

    .thumbnail-item {
        width: 60px;
        height: 60px;
    }

    .price-row h3 {
        font-size: 22px;
    }

    .our-bestseller .filter .filter-btn {
        display: flex;
        height: 40px;
        padding: 12px 12px!important;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 6px;
        border: 1px solid var(--color-primary);
        transition: all 0.3s ease;
        cursor: pointer;
        background: white;
    }
}

/* Mobile Small */
@media (max-width: 375px) {
    .review {
        flex-direction: column;
        align-items: flex-start;
    }

    .price-row {
        flex-wrap: wrap;
    }

    .add-to-cart-btn,
    .buy-now-btn {
        font-size: 14px;
        padding: 12px 20px;
    }
}
