* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*1️⃣ Royal Plum (Main Brand Color)

#6D2E8C

2️⃣ Soft Rose Pink (Accent Color)

#E75480

3️⃣ Blush Background

#FCEAF3

4️⃣ Lavender Mist

#E9D7F5

5️⃣ Deep Wine (Footer / Dark Mode)

#2B0A3D



:root {
    --primary: #c0e08d;
    --primary-dark: #8cad56;
    --secondary: #0c1501;
    --accent: #F39C12;
    --bg-light: #ffffff9b;
    --bg-white: #ffffff;
    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
    --text-light: #7A7A7A;
    --border: #c0e08b93;
    --shadow: rgba(144, 174, 97, 0.4);
    --success: #2d7a2d;
    --success-bg: #e7f5e7;
    --error: #a83232;
    --error-bg: #ffe4ef78;
}

change my color


*/


:root {

    /* 🎨 Brand Colors */
    --primary: #6D2E8C;          /* Royal Plum */
    --primary-dark: #2e123f;     /* Darker Plum */
    --secondary: #2B0A3D;        /* Deep Wine */
    --accent: #E75480;           /* Soft Rose Pink */

    /* 🌸 Backgrounds */
    --bg-light: #FCEAF3;         /* Blush Background */
    --bg-soft: #E9D7F5;          /* Lavender Mist */
    --bg-white: #FFFFFF;

    /* 🖋 Text */
    --text-dark: #2E003E;        /* Deep Purple Text */
    --text-medium: #5A3C6E;
    --text-light: #8E7A9A;

    /* 📦 Borders & Shadow */
    --border: #E9D7F5;
    --shadow: rgba(109, 46, 140, 0.18);

    /* ✅ Status Colors */
    --success: #2F8F46;
    --success-bg: #EAF7EF;

    --error: #C03A5B;
    --error-bg: #FDEAF1;
}


body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========== HEADER / NAVBAR ========== */
.header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.top-bar {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 1px;
    flex: 1;
}

/* Search Bar */
.search-container {
    flex: 2;
    max-width: 600px;
    margin: 0 30px;
    position: relative;
}

.search-bar {
    width: 100%;
    padding: 12px 45px 12px 20px;
    border: 2px solid var(--border);
    border-radius: 25px;
    font-size: 15px;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.search-bar:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(192, 224, 141, 0.2);
}

.search-container.search-active .search-bar {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(192, 224, 141, 0.2), 0 0 20px rgba(192, 224, 141, 0.3);
    animation: searchPulse 0.6s ease;
}

@keyframes searchPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

.search-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: auto;
    width: 25px;
    height: 25px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.search-icon:hover {
    color: var(--primary);
}

.search-icon * {
    pointer-events: none;
}

/* FIXED: Close button inside search box on mobile */
.search-close {
    display: none;
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--text-medium);
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.search-close:hover {
    color: var(--error);
}

@media (max-width: 768px) {
    .search-container.expanded .search-close {
        display: block;
    }
}

/* NEW: Search Suggestions Dropdown */
.search-suggestions {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-top: none;
    border-radius: 0 0 15px 15px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 8px 20px var(--shadow);
    z-index: 1000;
    margin-top: -5px;
}

.search-suggestions.active {
    display: block;
}

.suggestion-item {
    padding: 12px 20px;
    cursor: pointer;
    transition: background 0.2s ease;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: rgba(192, 224, 141, 0.1);
}

.suggestion-icon {
    color: var(--text-light);
    font-size: 16px;
}

.suggestion-text {
    flex: 1;
}

.suggestion-name {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 14px;
}

.suggestion-price {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 13px;
}

.search-results-info {
    text-align: center;
    padding: 20px;
    color: var(--text-medium);
    font-size: 16px;
    display: none;
}

.search-results-info.active {
    display: block;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-dark);
    padding: 5px;
    z-index: 1002;
    position: relative;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1100;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 350px;
    height: 100%;
    background: var(--bg-white);
    z-index: 1101;
    overflow-y: auto;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    padding: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.mobile-menu-content {
    padding: 20px;
}

.mobile-category {
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.mobile-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px;
    cursor: pointer;
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 5px;
    transition: background 0.2s ease;
}

.mobile-category-header:hover {
    background: rgba(192, 224, 141, 0.2);
}

.mobile-category-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
}

.mobile-category-toggle {
    font-size: 12px;
    color: rgba(156, 181, 117, 0.879);
    transition: transform 0.3s ease;
}

.mobile-category.expanded .mobile-category-toggle {
    transform: rotate(180deg);
}

.mobile-category-products {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 15px;
}

.mobile-category.expanded .mobile-category-products {
    max-height: 1000px;
}

.mobile-product-item {
    padding: 12px 10px;
    cursor: pointer;
    border-left: 2px solid transparent;
    transition: all 0.2s ease;
    font-size: 14px;
    color: var(--text-medium);
}

.mobile-product-item:hover {
    border-left-color: var(--primary);
    background: rgba(192, 224, 141, 0.1);
    color: var(--text-dark);
    padding-left: 15px;
}

/* ========== HERO SLIDER ========== */
.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin-bottom: 60px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

.btn {
    display: inline-block;
    padding: 12px 35px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--shadow);
}

/* ========== CATEGORY NAVIGATION ========== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.category-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    border-top: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 99;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.category-nav::-webkit-scrollbar {
    height: 4px;
}

.category-nav::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.category-buttons {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    gap: 1rem;
    flex-wrap: nowrap;
}

.category-btn {
    padding: 0.6rem 1.5rem;
    background: var(--bg-white);
    border: 2px solid var(--border);
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.category-btn:hover {
    background: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow);
}

.category-btn.active {
    background: var(--primary-dark);
    color: var(--bg-white);
    border-color: var(--primary-dark);
}

/* ========== MAIN CONTENT ========== */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.category-section {
    margin-bottom: 4rem;
    scroll-margin-top: 180px;
}

.category-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

/* ========== PRODUCT GRID ========== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    border: 1px solid var(--border);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(144, 174, 97, 0.4);
}

.product-card.hidden {
    display: none;
}

.discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #FF3366, #FF6B9D);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(255, 51, 102, 0.3);
}

.product-image-container {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    position: relative;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-info {
    padding: 25px;
    text-align: center;
}

.product-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 50px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.stock-badge {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.stock-badge.in-stock {
    background: var(--success-bg);
    color: var(--success);
}

.stock-badge.out-of-stock {
    background: var(--error-bg);
    color: var(--error);
}

.price-section {
    margin-bottom: 15px;
}

.original-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 10px;
    font-weight: 400;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #769c39;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.star {
    color: #D3D3D3;
    font-size: 1.2rem;
}

.star.filled {
    color: #FFD700;
}

.product-size {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.view-details-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-details-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(144, 174, 97, 0.4);
}

/* ========== PRODUCT DETAIL MODAL ========== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 36, 36, 0.95);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
    padding: 2rem 1rem;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--bg-white);
    max-width: 900px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    animation: slideUpModal 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

@keyframes slideUpModal {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: var(--bg-white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.close-modal:hover {
    background: var(--primary);
    color: var(--bg-white);
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    overflow-y: auto;
}

.modal-gallery {
    background: var(--bg-light);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image-container {
    width: 100%;
    aspect-ratio: 1;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.image-thumbnails {
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    padding: 0.5rem 0;
}

.thumbnail {
    width: 70px;
    height: 70px;
    border-radius: 80px;
    cursor: pointer;
    object-fit: cover;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary);
    transform: scale(1.05);
}

.modal-details {
    padding: 2.5rem;
    overflow-y: auto;
}

.modal-product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.modal-stock-badge {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.modal-stock-badge.in-stock {
    background: var(--success-bg);
    color: var(--success);
}

.modal-stock-badge.out-of-stock {
    background: var(--error-bg);
    color: var(--error);
}

.modal-price-section {
    margin-bottom: 1.5rem;
}

.modal-original-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 10px;
}

.modal-price {
    font-size: 2rem;
    font-weight: 700;
    color: #769c39;
}

/* NEW: Action Buttons (Copy + Order) - MOVED AFTER PRICE */
.modal-action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.copy-btn,
.order-btn {
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.copy-btn {
    background: var(--bg-white);
    color: var(--primary-dark);
    border: 2px solid var(--primary);
}

.copy-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow);
}

.copy-btn svg {
    width: 16px;
    height: 16px;
}

.order-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    box-shadow: 0 4px 15px var(--shadow);
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(144, 174, 97, 0.4);
}

.order-btn:disabled {
    background: #d0d0d0;
    cursor: not-allowed;
    opacity: 0.6;
}

.order-btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

.order-btn svg {
    width: 16px;
    height: 16px;
}

.modal-size {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.modal-star-rating {
    display: flex;
    gap: 8px;
    margin-bottom: 2rem;
}

.modal-star-rating .star {
    font-size: 1.4rem;
}

/* NEW: Expandable Description */
.modal-description-container {
    position: relative;
}

.modal-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.modal-description.collapsed {
    max-height: 4.5em;
    position: relative;
}

.modal-description.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2em;
    background: linear-gradient(transparent, var(--bg-white));
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--primary-dark);
    font-weight: 600;
    cursor: pointer;
    padding: 5px 0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: none;
}

.read-more-btn.visible {
    display: inline-block;
}

.read-more-btn:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* NEW: Copy Success Notification */
.copy-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--success);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    font-weight: 600;
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.copy-notification.show {
    opacity: 1;
    transform: translateY(0);
}

/* ========== INFO BANNER ========== */
.info-banner {
    background: linear-gradient(135deg, #d4eab5, #f7f6d39b);
    padding: 40px 0;
    margin: 80px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.info-item {
    padding: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.info-icon i {
    font-size: 22px;
}

.info-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
}

.info-desc {
    font-size: 13px;
    color: var(--text-light);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--secondary);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: rgb(255, 255, 255);
}

.footer-section {
    text-align: center;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-links span {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 15px;
}

.social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.payment-icon {
    padding: 8px 16px;
    background: white;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dark);
}

.footer-bottom {
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .info-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn { 
        display: block; 
    }

    .nav-container {
        padding: 15px 20px;
    }

    .logo {
        font-size: 28px;
        order: 2;
        flex: 1;
        text-align: center;
    }

    .mobile-menu-btn {
        order: 1;
    }

    .search-container {
        order: 3;
        margin: 0;
        max-width: 40px;
    }

    .search-bar {
        display: none;
    }
    
    .search-icon {
        position: static;
        transform: none;
        cursor: pointer;
        padding: 2px;
        pointer-events: auto;
    }
    .search-container.expanded {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        max-width: 100%;
        background: var(--bg-white);
        padding: 15px 20px;
        z-index: 1001;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .search-container.expanded .search-bar {
        display: block;
        padding-right: 90px;
    }

    .search-container.expanded .search-icon {
        position: absolute;
        right: 60px;
        top: 50%;
        transform: translateY(-50%);
        padding: 2px;
    }

    .search-container.expanded .search-close {
        right: 28px;
    }
    
    .hero-slider { 
        height: 350px; 
    }
    
    .category-section { 
        scroll-margin-top: 200px;
    }

    .category-buttons { 
        padding: 1rem 1rem; 
    }

    .category-btn {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1rem;
    }

    .product-image-container { 
        height: 220px;
        padding: 16px;
    }

    .product-info { 
        padding: 1rem; 
    }

    .product-name { 
        font-size: 1rem;
        min-height: 40px;
    }

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

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

    .view-details-btn {
        padding: 12px;
        font-size: 0.9rem;
    }

    .modal-body { 
        grid-template-columns: 1fr; 
    }

    .modal-gallery { 
        padding: 1.5rem; 
    }

    .modal-details { 
        padding: 1.5rem; 
    }

    .modal-product-name { 
        font-size: 1.5rem; 
    }

    .modal-price { 
        font-size: 1.5rem; 
    }

    .modal-action-buttons {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .copy-notification {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .info-grid { 
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-grid { 
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .container { 
        padding: 0 20px; 
    }

    main { 
        padding: 2rem 1rem; 
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-image-container { 
        height: 300px; 
    }

    .info-grid { 
        grid-template-columns: 1fr; 
    }

    .payment-methods {
        flex-wrap: wrap;
    }
}

/* ========== GRANDMASTER UPGRADE OVERRIDES ========== */

body.page-enter {
    opacity: 0;
    transform: translateY(10px);
}

body.page-leave {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

body {
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.dot {
    border: none;
    padding: 0;
}

.section-heading-wrap {
    max-width: 1400px;
    margin: 0 auto 18px;
    padding: 0 2rem;
}

.section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 6px;
    color: var(--primary-dark)
}

.section-subtext {
    color: var(--text-medium);
    font-size: 0.98rem;
}

.discovery-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 0;
}

.best-sellers-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0 2rem 1rem;
    scroll-snap-type: x mandatory;
}

.best-sellers-track .compact-card {
    width: 280px;
    min-width: 280px;
    scroll-snap-align: start;
}

.best-sellers-container .product-card {
    display: block;
    width: 260px;
    min-width: 260px;
}

.best-sellers-container .product-image-container {
    width: 100%;
    min-width: 100%;
    height: 220px;
}

.best-sellers-container .product-info {
    width: 100%;
    text-align: center;
}

.compact-card .product-image-container {
    height: 220px;
    padding: 20px;
}

.compact-card .product-info {
    padding: 18px;
}

.compact-card .view-details-btn {
    padding: 11px;
    font-size: 0.82rem;
}

#productContainer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 2.2rem;
}

.products-sentinel {
    width: 100%;
    height: 40px;
}

.sentinel-hidden {
    display: none;
}

.product-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    z-index: 12;
}

.tag-trending {
    background: rgba(243, 156, 18, 0.15);
    color: #b36d00;
}

.tag-new {
    background: rgba(74, 171, 84, 0.16);
    color: #23692d;
}

.tag-sale {
    background: rgba(255, 78, 117, 0.16);
    color: #b33257;
}

.product-card {
    overflow: hidden;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.empty-products {
    width: 100%;
    text-align: center;
    color: var(--text-medium);
    font-size: 1rem;
    padding: 1.2rem 0;
}

.search-suggestions {
    border-radius: 14px;
    margin-top: 8px;
    border: 1px solid var(--border);
    border-top: 1px solid var(--border);
    max-height: min(70vh, 470px);
}

.suggestion-item,
.view-all-results {
    width: 100%;
    border: none;
    background: transparent;
    text-align: left;
    font-family: 'Outfit', sans-serif;
}

.suggestion-item {
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.suggestion-thumb {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.suggestion-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}

.suggestion-name {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.suggestion-category {
    color: var(--text-light);
    font-size: 0.78rem;
    font-weight: 500;
}

.suggestion-price {
    color: var(--primary-dark);
    font-size: 0.86rem;
    font-weight: 700;
}

.search-hit {
    background: rgba(243, 156, 18, 0.24);
    color: inherit;
    padding: 0 2px;
    border-radius: 4px;
}

.suggestion-empty {
    padding: 14px;
    color: var(--text-medium);
    font-size: 0.88rem;
}

.view-all-results {
    padding: 12px 14px;
    border-top: 1px solid var(--border);
    color: var(--primary-dark);
    font-weight: 700;
    cursor: pointer;
}

.keyboard-active {
    background: rgba(192, 224, 141, 0.14);
}

body.search-overlay-active {
    overflow: hidden;
}

.product-page-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 110px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    margin-bottom: 1.3rem;
    color: var(--text-medium);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb .active {
    color: var(--text-dark);
    font-weight: 600;
}

.product-page-layout {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(144, 174, 97, 0.12);
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
    gap: 2rem;
    padding: 2rem;
}

.product-page-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-main-image-container {
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-thumbnails {
    margin-top: 0;
}

.product-page-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    line-height: 1.15;
    margin-bottom: 10px;
}

.product-page-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.detail-discount {
    background: rgba(255, 78, 117, 0.14);
    color: #b33257;
    border-radius: 999px;
    font-size: 0.75rem;
    padding: 4px 8px;
    font-weight: 700;
}

.product-page-rating {
    justify-content: flex-start;
}

.product-page-size {
    margin-bottom: 1rem;
}

.product-description-wrap {
    margin-top: 10px;
}

.product-description {
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 6px;
}

.product-description.collapsed {
    max-height: 5.4em;
    overflow: hidden;
}

.recommendation-section {
    margin-top: 2rem;
    display: grid;
    gap: 2rem;
}

.reco-block .section-heading {
    margin-bottom: 0.8rem;
}

.product-skeleton {
    background: var(--bg-white);
}

.skeleton-box {
    background: linear-gradient(90deg, #f0f0f0 25%, #f8f8f8 37%, #f0f0f0 63%);
    background-size: 400% 100%;
    animation: skeletonPulse 1.2s ease infinite;
    border-radius: 10px;
}

.skeleton-image {
    min-height: 320px;
}

.skeleton-side {
    display: grid;
    gap: 12px;
}

.skeleton-line {
    height: 24px;
}

.skeleton-line.short {
    width: 60%;
}

@keyframes skeletonPulse {
    0% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}

.sticky-order-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    display: flex;
    gap: 10px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.08);
    z-index: 999;
}

@media (min-width: 769px) {
    .sticky-order-bar {
        display: none;
    }
}

.sticky-copy {
    flex: 1;
    background: var(--bg-white);
    border: 2px solid var(--primary);
    border-radius: 10px;
    font-weight: 600;
    color: var(--primary-dark);
    padding: 12px;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
}

.sticky-order {
    flex: 2;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    padding: 12px;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
}

.sticky-order.disabled {
    background: #d0d0d0;
    cursor: not-allowed;
}

.sticky-copy:hover,
.sticky-order:hover {
    transform: translateY(-1px);
}

.mobile-category-header {
    border: none;
    width: 100%;
}

.mobile-product-item {
    width: 100%;
    border: none;
    background: transparent;
    text-align: left;
}

.order-btn.disabled {
    pointer-events: none;
    opacity: 0.7;
    background: #d0d0d0;
    box-shadow: none;
}

@media (max-width: 1024px) {
    .product-page-layout {
        grid-template-columns: 1fr;
    }

    .product-page-name {
        font-size: 1.9rem;
    }
}

@media (max-width: 768px) {
    .section-heading-wrap {
        padding: 0 1rem;
    }

    #productContainer {
        padding: 0 1rem 2rem;
    }

    .best-sellers-track {
        padding: 0 1rem 1rem;
        gap: 0.8rem;
    }

    .best-sellers-track .compact-card {
        min-width: 220px;
        width: 220px;
    }

    .best-sellers-container .product-card {
        display: block;
        width: 260px;
        min-width: 260px;
    }

    .best-sellers-container .product-image-container {
        width: 100%;
        min-width: 100%;
        height: 220px;
    }

    .best-sellers-container .product-info {
        width: 100%;
        text-align: center;
        padding: 14px;
    }

    .search-container.expanded {
        inset: 0;
        top: 0;
        position: fixed;
        padding: 16px;
        z-index: 1200;
        display: flex;
        flex-direction: column;
        max-width: none;
        margin: 0;
        border-radius: 0;
    }

    .search-container.expanded .search-bar {
        display: block;
        margin-top: 42px;
    }

    .search-container.expanded .search-suggestions {
        position: static;
        margin-top: 10px;
        max-height: calc(100vh - 140px);
        border-radius: 14px;
        border: 1px solid var(--border);
    }

    .search-container.expanded .search-icon {
        position: absolute;
        top: 60px;
        right: 62px;
    }

    .search-container.expanded .search-close {
        top: 58px;
        right: 22px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .product-card {
        display: flex;
        align-items: stretch;
        border-radius: 14px;
        min-height: 210px;
    }

    .product-image-container {
        width: 40%;
        min-width: 40%;
        height: auto;
        padding: 12px;
    }

    .product-info {
        width: 60%;
        padding: 12px 12px 10px 8px;
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 6px;
    }

    .product-name {
        min-height: 0;
        margin-bottom: 6px;
        font-size: 0.92rem;
        -webkit-line-clamp: 2;
    }

    .stock-badge {
        margin-bottom: 4px;
        padding: 4px 10px;
        font-size: 0.72rem;
    }

    .price-section {
        margin-bottom: 4px;
    }

    .product-price {
        font-size: 1.1rem;
    }

    .original-price {
        font-size: 0.8rem;
    }

    .star-rating {
        justify-content: flex-start;
        margin-bottom: 4px;
        padding-left: 32%;
        gap: 2px;
    }

    .star {
        font-size: 0.95rem;
    }

    .product-size {
        margin-bottom: 5px;
        font-size: 0.82rem;
    }

    .view-details-btn {
        font-size: 0.74rem;
        letter-spacing: 0.4px;
        padding: 8px 10px;
    }

    .discount-badge {
        top: 8px;
        left: 8px;
        font-size: 0.68rem;
        padding: 5px 10px;
    }

    .product-tag {
        top: 8px;
        right: 8px;
        font-size: 0.64rem;
        padding: 4px 8px;
    }

    .product-page-main {
        padding: 1rem 1rem 95px;
    }

    .product-page-layout {
        border-radius: 14px;
        padding: 1rem;
        gap: 1.2rem;
    }

    .product-main-image-container {
        padding: 14px;
    }

    .product-page-name {
        font-size: 1.5rem;
    }

    .modal-action-buttons {
        grid-template-columns: 1fr;
    }

    .sticky-order-bar {
        gap: 8px;
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    }

    .sticky-copy,
    .sticky-order {
        padding: 10px;
        font-size: 0.88rem;
    }
}

/* ========== CARD DESIGN SYNC (card.html + card.css) ========== */
.product-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.product-card {
    width: 100%;
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(90, 31, 122, 0.12);
    transition: 0.3s ease;
    cursor: pointer;
    border: none;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(90, 31, 122, 0.18);
}

.product-card .discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    left: auto;
    background: #e04b5a;
    color: #ffffff;
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: none;
    z-index: 2;
}

.product-image-container {
    position: relative;
    padding: 15px;
    background: #ffffff;
    text-align: center;
    height: auto;
}

.product-image-container img {
    width: 100%;
    border-radius: 15px;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.product-info {
    padding: 0 20px 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-name {
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-size: 20px;
    margin-bottom: 10px;
    color: #2e003e;
    min-height: 0;
}

.rating-stock {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    gap: 12px;
}

.rating-stock .star-rating {
    display: flex;
    justify-content: flex-start;
    gap: 2px;
    margin-bottom: 0;
}

.rating-stock .star {
    color: #d3d3d3;
    font-size: 16px;
}

.rating-stock .star.filled {
    color: #f5b301;
}

.stock-badge {
    margin-bottom: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    white-space: nowrap;
}

.stock-badge.in-stock {
    background: transparent;
    color: #2f8f46;
}

.stock-badge.out-of-stock {
    background: transparent;
    color: #c74d4d;
}

.price-weight {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    gap: 8px;
}

.price-section {
    margin-bottom: 0;
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.product-price {
    font-size: 22px;
    font-weight: 600;
    color: #2e003e;
}

.original-price {
    text-decoration: line-through;
    font-size: 16px;
    color: #999999;
    margin-left: 0;
}

.product-size {
    font-size: 15px;
    color: #555555;
    font-weight: 500;
    margin-bottom: 0;
}

.view-details-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    color: #ffffff;
    cursor: pointer;
    background: linear-gradient(90deg, #6d2e8c, #d94c78);
    box-shadow: 0 8px 20px rgba(217, 76, 120, 0.25);
    transition: 0.3s ease;
    letter-spacing: 0.4px;
    margin-top: auto;
}

.view-details-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(90deg, #6d2e8c, #d94c78);
    box-shadow: 0 8px 20px rgba(217, 76, 120, 0.25);
}

.view-details-btn:active {
    background: linear-gradient(90deg, #4e1f6a, #b63c65);
    transform: scale(0.97);
}

.best-sellers-container .product-card {
    display: flex;
    flex-direction: column;
    width: 280px;
    min-width: 280px;
}

.best-sellers-container .product-image-container {
    width: 100%;
    min-width: 100%;
}

.best-sellers-container .product-image-container img {
    border-radius: 15px;
}

.best-sellers-container .product-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.best-sellers-container .product-name {
    min-height: 2.6em;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 1024px) and (min-width: 769px) {
    .product-card:not(.compact-card) {
        width: 600px;
        display: flex;
        flex-direction: row;
    }

    .product-card:not(.compact-card) .product-image-container {
        width: 45%;
        padding: 18px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .product-card:not(.compact-card) .product-image-container img {
        width: 100%;
        max-width: 220px;
        border-radius: 15px;
    }

    .product-card:not(.compact-card) .product-info {
        width: 55%;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .product-card:not(.compact-card) .product-name {
        font-size: 18px;
    }

    .product-card:not(.compact-card) .product-price {
        font-size: 20px;
    }

    .product-card:hover,
    .view-details-btn:hover {
        transform: none;
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .product-card {
        display: flex;
        flex-direction: row;
        border-radius: 18px;
        min-height: auto;
    }

    .product-image-container {
        width: 45%;
        min-width: 45%;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .product-image-container img {
        width: 100%;
        max-width: 180px;
        border-radius: 12px;
    }

    .product-info {
        width: 55%;
        padding: 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .product-name {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .rating-stock .star {
        font-size: 14px;
        
    }

    .rating-stock .star-rating {
        padding-left: 0;
        margin-left: 0;
        margin-bottom: 0;
    }

    .stock-badge {
        font-size: 12px;
        white-space: normal;
        overflow-wrap: anywhere;
        text-align: right;
        line-height: 1.2;
        max-width: 52%;
        flex-shrink: 1;
    }

    .product-price {
        font-size: 18px;
    }

    .original-price {
        font-size: 14px;
    }

    .product-size {
        font-size: 13px;
    }

    .view-details-btn {
        padding: 10px;
        font-size: 13px;
    }

    .product-card .discount-badge {
        top: 12px;
        right: 12px;
        font-size: 11px;
        padding: 5px 8px;
    }

    .product-card:hover,
    .view-details-btn:hover {
        transform: none;
    }

    .best-sellers-track .compact-card,
    .best-sellers-container .compact-card {
        display: flex;
        flex-direction: column;
        width: 220px;
        min-width: 220px;
    }

    .best-sellers-container .compact-card .product-image-container {
        width: 100%;
        min-width: 100%;
    }

    .best-sellers-container .compact-card .product-image-container img {
        border-radius: 12px;
    }

    .best-sellers-container .compact-card .product-info {
        width: 100%;
        padding: 14px;
    }
}

@media (min-width: 1025px) {
    .product-grid {
        grid-template-columns: repeat(auto-fit, 312px);
        justify-content: center;
    }

    .product-card:not(.compact-card) {
        width: 312px;
        max-width: 312px;
    }

    .best-sellers-track .compact-card,
    .best-sellers-container .product-card {
        width: 312px;
        min-width: 312px;
        max-width: 312px;
    }
}
