/* ============================================
   Premium Black & White Fashion Store Theme
   ============================================ */

:root {
    --primary-black: #000000;
    --primary-white: #FFFFFF;
    --gray-light: #FAFAFA;
    --gray-medium: #E8E8E8;
    --gray-dark: #888888;
    --gray-darker: #333333;
    --accent: #000000;
    --text-primary: #000000;
    --text-secondary: #666666;
    --border-color: #E0E0E0;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
}

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

img, video, iframe {
    max-width: 100%;
    height: auto;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background-color: var(--primary-white);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 80px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    box-sizing: border-box;
}

/* ============================================
   Header & Navigation
   ============================================ */

.main-header {
    background: var(--primary-white);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    transition: var(--transition);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.main-header.transparent-header {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(0px);
}

.main-header.transparent-header .navbar {
    color: var(--primary-white);
}

.main-header.transparent-header .logo h1,
.main-header.transparent-header .nav-menu a,
.main-header.transparent-header .cart-icon {
    color: var(--primary-white);
}

.main-header.transparent-header .nav-menu a::after {
    background: var(--primary-white);
}

.main-header.transparent-header .cart-icon {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.main-header.transparent-header .cart-icon:hover {
    background: var(--primary-white);
    color: var(--primary-black);
    border-color: var(--primary-white);
}

.main-header.transparent-header .cart-count {
    background: var(--primary-white);
    color: var(--primary-black);
}

.main-header.transparent-header .cart-icon:hover .cart-count {
    background: var(--primary-black);
    color: var(--primary-white);
}

.main-header.transparent-header .mobile-menu-toggle span {
    background: var(--primary-white);
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
}

.main-header.transparent-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.main-header.transparent-header.scrolled .logo h1,
.main-header.transparent-header.scrolled .nav-menu a,
.main-header.transparent-header.scrolled .cart-icon {
    color: var(--primary-black);
}

.main-header.transparent-header.scrolled .nav-menu a::after {
    background: var(--primary-black);
}

.main-header.transparent-header.scrolled .cart-icon {
    border-color: var(--border-color);
    background: var(--primary-white);
}

.main-header.transparent-header.scrolled .cart-icon:hover {
    background: var(--primary-black);
    color: var(--primary-white);
    border-color: var(--primary-black);
}

.main-header.transparent-header.scrolled .cart-count {
    background: var(--primary-black);
    color: var(--primary-white);
}

.main-header.transparent-header.scrolled .mobile-menu-toggle span {
    background: var(--primary-black);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    position: relative;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-black);
    letter-spacing: 2px;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 50px;
    align-items: center;
    margin: 0;
    padding: 0;
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition);
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-black);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    text-decoration: none;
    color: var(--primary-black);
    transition: var(--transition);
    background: var(--primary-white);
}

.cart-icon:hover {
    background: var(--primary-black);
    color: var(--primary-white);
    border-color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cart-icon svg {
    width: 20px;
    height: 20px;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-black);
    color: var(--primary-white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    min-width: 20px;
}

.cart-icon:hover .cart-count {
    background: var(--primary-white);
    color: var(--primary-black);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 10px;
    z-index: 10000;
    position: relative;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--primary-black);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-black);
    color: var(--primary-white);
    text-align: center;
    overflow: hidden;
    margin-top: -80px;
    padding-top: 80px;
    z-index: 1;
}

/* Ensure hero doesn't interfere with menu on mobile */
@media (max-width: 768px) {
    .hero {
        z-index: 0;
    }
    
    body.menu-open .hero {
        z-index: 0;
        pointer-events: none;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 40px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 3px;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero p {
    font-size: 22px;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 18px 50px;
    background: var(--primary-white);
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--primary-white);
    transition: var(--transition);
    cursor: pointer;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-black);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn:hover {
    color: var(--primary-white);
    border-color: var(--primary-black);
}

.btn-outline {
    background: transparent;
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
}

.btn-outline::before {
    background: var(--primary-white);
}

.btn-outline:hover {
    background: var(--primary-white);
    color: var(--primary-black);
}

.btn-outline:hover span {
    color: var(--primary-black);
    z-index: 2;
}

/* ============================================
   Products Section
   ============================================ */

.section {
    padding: 100px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 700;
    letter-spacing: 3px;
    position: relative;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--primary-black);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.product-card {
    background: var(--primary-white);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
    overflow: hidden;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--primary-black);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
    pointer-events: none;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-black);
}

.product-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    background: var(--gray-light);
    display: block;
    transition: var(--transition);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 22px;
    background: var(--primary-white);
    position: relative;
    z-index: 2;
}

.product-name {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-price {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-price .old-price {
    font-size: 18px;
    color: var(--text-secondary);
    text-decoration: line-through;
    font-weight: 400;
}

.product-price .sale-price {
    color: var(--primary-black);
    font-weight: 700;
}

/* ============================================
   Filters
   ============================================ */

.filters {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 12px 30px;
    background: var(--primary-white);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-decoration: none;
    display: inline-block;
    font-weight: 400;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-black);
    color: var(--primary-white);
    border-color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   Products Page (Modern Toolbar Layout)
   ============================================ */

.products-page .section-title.products-title {
    margin-bottom: 45px;
}

/* Products grid: 3 per row on desktop for a clean, consistent gallery */
@media (min-width: 1025px) {
    .products-page .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 26px;
    }
}

/* Make products-page cards a bit more compact than global cards */
.products-page .product-image {
    /* Do not crop images on products page */
    object-fit: contain;
    background: var(--gray-light);
    padding: 12px;
    height: 340px;
}

.products-page .product-info {
    padding: 18px;
}

.products-page .product-name {
    font-size: 17px;
}

.products-page .product-price {
    font-size: 19px;
}

.products-header {
    margin-bottom: 25px;
}

.products-breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.products-breadcrumbs a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.products-breadcrumbs a:hover {
    color: var(--primary-black);
}

.products-breadcrumbs-sep {
    opacity: 0.7;
}

.products-toolbar {
    border: 1px solid var(--border-color);
    background: var(--primary-white);
    box-shadow: var(--shadow-sm);
    padding: 18px 18px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 35px;
}

.products-toolbar-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.products-toolbar-left {
    flex: 1 1 auto;
    min-width: 280px;
}

.products-toolbar-right {
    flex: 0 0 auto;
    justify-content: flex-end;
}

.products-control {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 180px;
}

.products-control-search {
    min-width: 260px;
    flex: 1 1 260px;
}


.products-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.products-select,
.products-search {
    height: 46px;
    border: 1px solid var(--border-color);
    background: var(--primary-white);
    color: var(--text-primary);
    padding: 0 14px;
    outline: none;
    transition: var(--transition);
    font-family: inherit;
    letter-spacing: 0.5px;
}

.products-control-search {
    position: relative;
}

.products-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--primary-white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    max-height: 280px;
    overflow-y: auto;
}

.products-suggestion {
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    padding: 14px 14px;
    cursor: pointer;
    font-family: inherit;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.products-suggestion:hover {
    background: var(--gray-light);
}

.products-select:focus,
.products-search:focus {
    border-color: var(--primary-black);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.products-select:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.products-clear {
    height: 46px;
    padding: 0 22px;
}

.products-results-meta {
    height: 46px;
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
    border: 1px dashed var(--border-color);
    color: var(--text-secondary);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.product-taxonomy {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.8px;
}

.products-empty {
    text-align: center;
    color: var(--text-secondary);
    padding: 60px 0;
    border: 1px dashed var(--border-color);
    background: var(--gray-light);
}

/* ============================================
   Product Detail Page
   ============================================ */

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
}

.product-images {
    position: sticky;
    top: 100px;
}

.product-main-image {
    width: 100%;
    height: 700px;
    object-fit: contain;
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
    background: var(--gray-light);
    padding: 16px;
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.product-thumbnail {
    width: 100%;
    height: 120px;
    object-fit: contain;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    background: var(--gray-light);
    padding: 8px;
}

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

.product-details h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.product-price-large {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-price-large .old-price {
    font-size: 28px;
    color: var(--text-secondary);
    text-decoration: line-through;
    font-weight: 400;
}

.variant-selector {
    margin-bottom: 30px;
}

/* Variant dropdowns (reuse products select styling) */
.product-detail-page .variant-selector .products-select {
    width: 100%;
}

.variant-selector label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.5px;
}

.variant-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.variant-option {
    padding: 12px 24px;
    border: 1px solid var(--border-color);
    background: var(--primary-white);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    min-width: 80px;
}

.variant-option:hover {
    border-color: var(--primary-black);
}

.variant-option.selected {
    background: var(--primary-black);
    color: var(--primary-white);
    border-color: var(--primary-black);
}

.variant-option.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    text-decoration: line-through;
}

.add-to-cart-btn {
    width: 100%;
    padding: 20px;
    background: var(--primary-black);
    color: var(--primary-white);
    border: 2px solid var(--primary-black);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    margin-top: 30px;
}

.add-to-cart-btn:hover {
    background: transparent;
    color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.add-to-cart-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* ============================================
   Cart Page
   ============================================ */

.cart-page {
    /* Shared height for left items panel + right summary panel (desktop) */
    --cart-panel-height: 720px;
}

.cart-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
}

/* Cart page uses the same header structure as products page */
.cart-page .cart-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.cart-page .cart-content {
    margin-top: 10px;
}

.cart-header {
    margin-bottom: 50px;
}

.cart-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cart-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Make cart items list scrollable so the cart page doesn't get too long */
@media (min-width: 1025px) {
    .cart-items {
        /* ~3 items visible, then scroll */
        max-height: var(--cart-panel-height);
        overflow-y: auto;
        padding-right: 10px; /* room for scrollbar */
    }
}

/* Softer scrollbar (optional, supported in most modern browsers) */
.cart-items {
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.25) transparent;
}
.cart-items::-webkit-scrollbar {
    width: 10px;
}
.cart-items::-webkit-scrollbar-track {
    background: transparent;
}
.cart-items::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.25);
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: content-box;
}
.cart-items::-webkit-scrollbar-thumb:hover {
    background: rgba(0,0,0,0.35);
    border: 2px solid transparent;
    background-clip: content-box;
}

.cart-item {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    gap: 30px;
    padding: 30px;
    border: 1px solid var(--border-color);
    align-items: center;
    transition: var(--transition);
    background: var(--primary-white);
}

/* Slightly more compact cart items on desktop so more fits in the scroll area */
@media (min-width: 1025px) {
    .cart-item {
        grid-template-columns: 120px 1fr auto;
        gap: 22px;
        padding: 22px;
    }

    .cart-item-image {
        width: 120px;
        height: 120px;
    }

    .cart-item-name {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .cart-item-variant {
        margin-bottom: 10px;
        font-size: 13px;
    }
}

.cart-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-black);
}

.cart-item-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 1px solid var(--border-color);
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-item-variant {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.cart-item-price,
.cart-item-unit-price,
.cart-item-subtotal {
    font-size: 20px;
    font-weight: 600;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.cart-item.is-updating {
    opacity: 0.7;
    pointer-events: none;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--border-color);
    padding: 8px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: none;
    background: var(--primary-white);
    color: var(--primary-black);
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.quantity-btn:hover {
    background: var(--primary-black);
    color: var(--primary-white);
}

.quantity-input {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 16px;
    font-weight: 600;
}

.remove-item-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    padding: 5px 0;
}

.remove-item-btn:hover {
    color: var(--primary-black);
}

.cart-summary {
    background: var(--primary-white);
    padding: 36px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 100px;
    height: fit-content;
    display: flex;
    flex-direction: column;
}

/* Match cart summary height to the left panel height on desktop */
@media (min-width: 1025px) {
    .cart-summary {
        min-height: var(--cart-panel-height);
    }
}

.cart-summary h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    margin-bottom: 0;
    font-size: 16px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}

.summary-row.total {
    font-size: 24px;
    font-weight: 700;
    padding-top: 18px;
    border-top: 2px solid var(--border-color);
    border-bottom: 0;
    margin-top: 14px;
    padding-bottom: 24px; /* extra space below total */
}

/* Center the checkout button inside the order summary */
.cart-summary .checkout-btn {
    width: auto;
    min-width: 260px;
    max-width: 320px;
    margin: 10px auto 0;
    display: flex;
    justify-content: center;
    text-align: center;
}

.cart-summary .cart-continue-link {
    margin-top: 18px;
}

.cart-summary-footer {
    margin-top: auto; /* pushes footer to the bottom so heights feel balanced */
    padding-top: 22px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.6;
}

.cart-summary-footer .cart-summary-note {
    margin-bottom: 10px;
}

.cart-summary-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.checkout-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary-black);
    color: var(--primary-white);
    border: 2px solid var(--primary-black);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    margin-top: 30px;
    text-decoration: none; /* remove default link underline */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.checkout-btn:hover {
    background: transparent;
    color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.checkout-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: currentColor;
}

.cart-continue-link {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: var(--text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    transition: var(--transition);
}

.cart-continue-link:hover {
    color: var(--primary-black);
}

/* Featured products carousel (cart page) */
.cart-featured-section {
    background: var(--gray-light);
}

.cart-featured-header {
    margin-bottom: 25px;
}

.section-title.cart-featured-title {
    font-size: 40px;
    margin-bottom: 0;
}

.section-title.cart-featured-title::after {
    bottom: -16px;
}

.featured-product-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--primary-white);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
}

.featured-product-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-black);
    box-shadow: var(--shadow-md);
}

.featured-product-media {
    background: var(--gray-light);
    border-bottom: 1px solid var(--border-color);
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.featured-product-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.featured-product-placeholder {
    color: var(--text-secondary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-product-body {
    padding: 18px;
}

.featured-product-name {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.featured-product-price {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.empty-cart {
    text-align: center;
    padding: 100px 20px;
}

.empty-cart h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 20px;
}

.empty-cart p {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* ============================================
   Checkout Page
   ============================================ */

.checkout-container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 40px;
}

.checkout-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.checkout-section {
    margin-bottom: 50px;
}

.checkout-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

/* New checkout layout (matches Products/Cart header structure) */
.checkout-page .checkout-shell {
    max-width: 1100px;
    margin: 0 auto;
}

/* checkout now uses the global .alert component */

.checkout-page .checkout-panel {
    border: 1px solid var(--border-color);
    background: var(--primary-white);
    box-shadow: var(--shadow-sm);
    padding: 22px 22px;
}

.checkout-page .checkout-right {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 100px;
    align-self: start;
}

.checkout-page .checkout-items {
    margin-bottom: 22px;
    border-bottom: 1px solid var(--border-color);
}

.checkout-page .checkout-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.checkout-page .checkout-item:first-child {
    border-top: 0;
}

.checkout-page .checkout-item-name {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    margin-bottom: 6px;
}

.checkout-page .checkout-item-meta {
    font-size: 12px;
    color: var(--text-secondary);
    letter-spacing: 0.4px;
}

.checkout-page .checkout-item-sep {
    margin: 0 6px;
    opacity: 0.7;
}

.checkout-page .checkout-item-price {
    font-weight: 600;
    white-space: nowrap;
}

.checkout-page .checkout-note {
    margin-top: 14px;
    padding: 14px 16px;
    background: var(--gray-light);
    border: 1px dashed var(--border-color);
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.6;
}

.checkout-page .checkout-payment-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 16px;
    border: 1px solid var(--border-color);
    background: var(--primary-white);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 12px;
}

.checkout-page .checkout-cta {
    margin-top: 18px;
    display: grid;
    gap: 12px;
}

.checkout-page .checkout-cta .checkout-btn {
    width: 100%;
    justify-content: center;
}

@media (max-width: 1024px) {
    .checkout-page .checkout-right {
        position: static;
        top: auto;
    }
}

/* ============================================
   Order Success Page
   ============================================ */

.order-success-page .order-success-card {
    max-width: 820px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    background: var(--primary-white);
    box-shadow: var(--shadow-sm);
    padding: 26px 26px;
}

.order-success-page .order-success-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cfe8d6;
    background: #f0f9f4;
    color: #2e7d32;
    margin: 0 auto 16px;
}

.order-success-page .order-success-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* ============================================
   Contact Page
   ============================================ */

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-info p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 2;
}

.contact-info strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.contact-form {
    background: var(--gray-light);
    padding: 50px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    background: var(--primary-white);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-black);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary-black);
    color: var(--primary-white);
    border: 2px solid var(--primary-black);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.btn-submit:hover {
    background: transparent;
    color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   Footer
   ============================================ */

.main-footer {
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 80px 0 30px;
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
    display: block;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

.footer-section h3,
.footer-section h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: var(--gray-medium);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--primary-white);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--gray-medium);
    font-size: 14px;
    margin-bottom: 12px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--gray-medium);
    transition: var(--transition);
}

.contact-info-item:hover svg {
    color: var(--primary-white);
}

.contact-info-item span,
.contact-info-item a {
    color: var(--gray-medium);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-item:hover span,
.contact-info-item:hover a {
    color: var(--primary-white);
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links .social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-darker);
    transition: var(--transition);
    padding: 0;
    border-radius: 0;
}

.social-links .social-icon svg {
    width: 24px;
    height: 24px;
    color: var(--gray-medium);
    transition: var(--transition);
}

.social-links .social-icon:hover {
    border-color: var(--primary-white);
    background: var(--primary-white);
}

.social-links .social-icon:hover svg {
    color: var(--primary-black);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--gray-darker);
    color: var(--gray-dark);
    font-size: 14px;
}

.footer-bottom a {
    color: var(--gray-medium);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--primary-white);
}

/* ============================================
   Alerts & Messages
   ============================================ */

.alert {
    --alert-bg: var(--primary-white);
    --alert-border: var(--border-color);
    --alert-text: var(--text-primary);
    --alert-accent: var(--primary-black);

    position: relative;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 18px;
    margin-bottom: 24px;
    border: 1px solid var(--alert-border);
    background: var(--alert-bg);
    color: var(--alert-text);
    box-shadow: var(--shadow-sm);
    letter-spacing: 0.2px;
    line-height: 1.6;
}

.alert::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--alert-accent);
}

.alert::after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--alert-accent);
    flex: 0 0 auto;
    margin-top: 6px;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.04);
}

.alert strong {
    font-weight: 700;
}

.alert a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.alert-success {
    --alert-bg: #f0f9f4;
    --alert-border: #cfe8d6;
    --alert-text: #145a32;
    --alert-accent: #2e7d32;
}

.alert-error {
    --alert-bg: #fef2f2;
    --alert-border: #f3caca;
    --alert-text: #7a1f2b;
    --alert-accent: #c62828;
}

.alert-info {
    --alert-bg: #f7f7f7;
    --alert-border: var(--border-color);
    --alert-text: var(--text-primary);
    --alert-accent: var(--primary-black);
}

.alert-warning {
    --alert-bg: #fff8e6;
    --alert-border: #f2dfb2;
    --alert-text: #6b4f00;
    --alert-accent: #b7791f;
}

/* ============================================
   Toast Notifications (JS)
   ============================================ */

.toast-container {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 999999;
    display: grid;
    gap: 10px;
    width: min(360px, calc(100vw - 36px));
    pointer-events: none;
}

.toast {
    --toast-bg: var(--primary-white);
    --toast-border: var(--border-color);
    --toast-text: var(--text-primary);
    --toast-accent: var(--primary-black);

    pointer-events: auto;
    position: relative;
    display: grid;
    grid-template-columns: 10px 1fr auto;
    gap: 12px;
    align-items: start;
    padding: 12px 12px 12px 14px;
    border: 1px solid var(--toast-border);
    background: var(--toast-bg);
    color: var(--toast-text);
    box-shadow: var(--shadow-lg);
    animation: toastIn 160ms ease-out;
}

.toast::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--toast-accent);
}

.toast-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--toast-accent);
    margin-top: 6px;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.04);
}

.toast-message {
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 0.2px;
}

.toast-close {
    border: 1px solid var(--border-color);
    background: transparent;
    color: inherit;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.toast-close:hover {
    background: var(--gray-light);
}

.toast--success {
    --toast-bg: #f0f9f4;
    --toast-border: #cfe8d6;
    --toast-text: #145a32;
    --toast-accent: #2e7d32;
}

.toast--error {
    --toast-bg: #fef2f2;
    --toast-border: #f3caca;
    --toast-text: #7a1f2b;
    --toast-accent: #c62828;
}

.toast--info {
    --toast-bg: #f7f7f7;
    --toast-border: var(--border-color);
    --toast-text: var(--text-primary);
    --toast-accent: var(--primary-black);
}

.toast.is-leaving {
    animation: toastOut 180ms ease-in forwards;
}

@keyframes toastIn {
    from { transform: translateY(-6px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

@keyframes toastOut {
    from { transform: translateY(0); opacity: 1; }
    to   { transform: translateY(-6px); opacity: 0; }
}

/* ============================================
   Modal Confirm (JS)
   ============================================ */

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    z-index: 999998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-card {
    width: min(520px, 100%);
    border: 1px solid var(--border-color);
    background: var(--primary-white);
    box-shadow: var(--shadow-lg);
    padding: 22px 22px;
    animation: modalIn 140ms ease-out;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.modal-message {
    color: var(--text-secondary);
    line-height: 1.7;
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 18px;
    flex-wrap: wrap;
}

.modal-btn {
    height: 44px;
    padding: 0 18px;
    border: 1px solid var(--border-color);
    background: var(--primary-white);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.modal-btn:hover {
    background: var(--gray-light);
}

.modal-btn-primary {
    background: var(--primary-black);
    border-color: var(--primary-black);
    color: var(--primary-white);
}

.modal-btn-primary:hover {
    background: transparent;
    color: var(--primary-black);
}

@keyframes modalIn {
    from { transform: translateY(8px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

/* ============================================
   Home Page Sections
   ============================================ */

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--primary-white);
    cursor: pointer;
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-indicator span {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Promo Banner */
.promo-banner {
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 40px 0;
    text-align: center;
}

.promo-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.promo-content p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.promo-btn {
    display: inline-block;
    color: var(--primary-white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 2px solid var(--primary-white);
    padding-bottom: 5px;
    transition: var(--transition);
}

.promo-btn:hover {
    padding-bottom: 8px;
    letter-spacing: 3px;
}

/* Categories Section */
.categories-section {
    background: var(--gray-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-card {
    text-decoration: none;
    color: inherit;
    display: block;
    background: var(--primary-white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-black);
}

.category-image {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
    background: var(--gray-light);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    transition: var(--transition);
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-info {
    padding: 30px;
    text-align: center;
}

.category-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.category-info p {
    color: var(--text-secondary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.section-link {
    color: var(--text-primary);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.5px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.section-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-black);
    transition: var(--transition);
}

.section-link:hover::after {
    width: 100%;
}

/* New Arrivals Section */
.new-arrivals-section {
    background: var(--primary-white);
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
    width: 100%;
}

.carousel-slide {
    min-width: calc(33.333% - 20px);
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .carousel-slide {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .carousel-slide {
        min-width: 100%;
    }
}

.carousel-controls {
    display: flex;
    gap: 10px;
}

.carousel-btn {
    width: 45px;
    height: 45px;
    border: 1px solid var(--border-color);
    background: var(--primary-white);
    color: var(--primary-black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 50%;
}

.carousel-btn:hover {
    background: var(--primary-black);
    color: var(--primary-white);
    border-color: var(--primary-black);
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dot.active {
    background: var(--primary-black);
    width: 30px;
    border-radius: 5px;
}

/* Features Section */
.features-section {
    background: var(--gray-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.feature-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--primary-white);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-black);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-black);
    border-radius: 50%;
    color: var(--primary-black);
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background: var(--primary-black);
    color: var(--primary-white);
    transform: rotate(360deg);
}

.feature-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Best Sellers Section */
.bestsellers-section {
    background: var(--gray-light);
    position: relative;
    overflow: hidden;
}

.bestsellers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-color), transparent);
}

/* Best Seller Carousel - Modern Design */
.bestseller-carousel-wrapper {
    position: relative;
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.bestseller-carousel-container {
    overflow: hidden;
    position: relative;
    flex: 1;
    margin: 0 20px;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100%;
}

.bestseller-carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0;
    width: 100%;
    max-width: 100%;
}

.bestseller-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    opacity: 0.3;
    transform: scale(0.85);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: blur(2px);
    display: flex;
    justify-content: center;
}

.bestseller-slide.active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
    z-index: 2;
}

.bestseller-card {
    background: var(--primary-white);
    border: 2px solid var(--primary-black);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.bestseller-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.bestseller-badge svg {
    width: 16px;
    height: 16px;
}

.bestseller-image-link {
    display: block;
    overflow: hidden;
    background: var(--gray-light);
    position: relative;
}

.bestseller-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.bestseller-slide.active .bestseller-image {
    transform: scale(1.05);
}

.bestseller-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--primary-white);
    position: relative;
}

.bestseller-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-black);
}

.bestseller-name {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    color: var(--primary-black);
}

.bestseller-category {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-weight: 500;
}

.bestseller-price {
    margin-bottom: 40px;
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.bestseller-old-price {
    font-size: 24px;
    color: var(--text-secondary);
    text-decoration: line-through;
    font-weight: 400;
}

.bestseller-current-price {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-black);
    letter-spacing: 1px;
}

.bestseller-view-btn {
    display: inline-block;
    padding: 18px 50px;
    background: var(--primary-black);
    color: var(--primary-white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--primary-black);
    transition: var(--transition);
    width: fit-content;
    position: relative;
    overflow: hidden;
}

.bestseller-view-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-white);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.bestseller-view-btn:hover::before {
    width: 300px;
    height: 300px;
}

.bestseller-view-btn span {
    position: relative;
    z-index: 1;
}

.bestseller-view-btn:hover {
    color: var(--primary-black);
}

.bestseller-nav-btn {
    width: 60px;
    height: 60px;
    background: var(--primary-white);
    border: 2px solid var(--primary-black);
    color: var(--primary-black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

.bestseller-nav-btn:hover {
    background: var(--primary-black);
    color: var(--primary-white);
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.bestseller-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.bestseller-prev {
    order: 1;
    flex-shrink: 0;
}

.bestseller-carousel-container {
    order: 2;
    flex: 1;
    min-width: 0;
}

.bestseller-next {
    order: 3;
    flex-shrink: 0;
}

.bestseller-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
    width: 100%;
}

.bestseller-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-black);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.bestseller-indicator.active {
    background: var(--primary-black);
    width: 40px;
    border-radius: 6px;
}

.bestseller-indicator:hover {
    background: var(--primary-black);
    transform: scale(1.2);
}

/* About Section */
.about-section {
    background: var(--primary-black);
    color: var(--primary-white);
}

.about-section .section-title {
    color: var(--primary-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    padding-right: 40px;
}

.about-text p {
    color: rgba(255, 255, 255, 0.9);
}

.about-image {
    position: relative;
}

.about-image img {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.3)) 
            drop-shadow(0 0 60px rgba(255, 255, 255, 0.2))
            drop-shadow(0 0 90px rgba(255, 255, 255, 0.1));
    transition: filter 0.3s ease;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-white);
    z-index: 1;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.2),
                0 0 80px rgba(255, 255, 255, 0.1);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.about-btn {
    background: var(--primary-white) !important;
    color: var(--primary-black) !important;
    border-color: var(--primary-white) !important;
}

.about-btn::before {
    display: none;
}

.about-btn span {
    position: relative;
    z-index: 2;
    color: var(--primary-black);
    transition: color 0.3s ease;
}

.about-btn:hover {
    background: transparent !important;
    border-color: var(--primary-white) !important;
}

.about-btn:hover span {
    color: var(--primary-white) !important;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 100px 0;
    text-align: center;
}

.newsletter-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.newsletter-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid var(--primary-white);
    background: transparent;
    color: var(--primary-white);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form .btn {
    padding: 18px 40px;
    background: var(--primary-white);
    color: var(--primary-black);
    border: 2px solid var(--primary-white);
}

.newsletter-form .btn:hover {
    background: transparent;
    color: var(--primary-white);
}

/* Instagram Section */
.instagram-section {
    background: var(--gray-light);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.instagram-item {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--gray-light);
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

/* Instagram Carousel (Mobile Only) */
.instagram-carousel-wrapper {
    display: none;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    width: 100%;
}

.instagram-carousel-track {
    display: flex;
    gap: 15px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.instagram-carousel-slide {
    min-width: calc(50% - 7.5px);
    flex-shrink: 0;
}

.instagram-carousel-slide .instagram-item {
    width: 100%;
    height: 100%;
}

.instagram-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.instagram-carousel-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    background: var(--primary-white);
    color: var(--primary-black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 50%;
    padding: 0;
}

.instagram-carousel-btn:hover {
    background: var(--primary-black);
    color: var(--primary-white);
    border-color: var(--primary-black);
}

.instagram-carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cart-content {
        grid-template-columns: 1fr;
    }
    
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form .btn {
        width: 100%;
    }
    
    .bestseller-carousel-wrapper {
        gap: 15px;
    }
    
    .bestseller-carousel-container {
        margin: 0 10px;
        overflow: hidden;
    }
    
    .bestseller-card {
        grid-template-columns: 1fr;
    }
    
    .bestseller-image {
        height: 400px;
    }
    
    .bestseller-content {
        padding: 40px;
    }
    
    .bestseller-name {
        font-size: 36px;
    }
    
    .bestseller-current-price {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        position: relative;
    }
    
    /* Override desktop nav-menu styles on mobile */
    .nav-menu {
        position: fixed !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        align-items: flex-start !important;
    }
    
    * {
        max-width: 100%;
    }
    
    .container {
        padding: 0 20px;
        width: 100%;
        box-sizing: border-box;
    }
    
    body {
        padding-top: 70px;
    }
    
    .hero {
        margin-top: -70px;
        padding-top: 70px;
        z-index: 0;
    }
    
    body.menu-open .hero {
        z-index: 0;
        pointer-events: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 100% !important;
        height: calc(100vh - 70px) !important;
        background: var(--primary-white) !important;
        flex-direction: column !important;
        padding: 60px 40px !important;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: var(--shadow-lg) !important;
        z-index: 999999 !important;
        overflow-y: auto !important;
        display: flex !important;
        will-change: left;
    }
    
    /* Use attribute selector for maximum specificity */
    .nav-menu[data-menu-open="true"],
    .nav-menu.active[data-menu-open="true"],
    body.menu-open .nav-menu[data-menu-open="true"] {
        left: 0 !important;
    }
    
    .transparent-header .nav-menu {
        background: rgba(0, 0, 0, 0.95) !important;
        backdrop-filter: blur(20px);
        z-index: 999999 !important;
    }
    
    /* Ensure menu works on homepage with transparent header */
    .main-header.transparent-header .nav-menu {
        z-index: 999999 !important;
    }

    .transparent-header .nav-menu a {
        color: var(--primary-white);
    }

    /* Use attribute selector - highest specificity */
    .nav-menu[data-menu-open="true"],
    .nav-menu.active[data-menu-open="true"],
    body.menu-open .nav-menu[data-menu-open="true"],
    body.menu-open .nav-menu.active {
        left: 0 !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    
    body.menu-open {
        overflow: hidden;
    }
    
    body.menu-open::before {
        /* Disable the dark backdrop overlay when the mobile menu is open */
        content: none !important;
        display: none !important;
    }
    
    .nav-menu li {
        margin-bottom: 30px;
        list-style: none;
    }
    
    .nav-menu a {
        font-size: 18px;
        padding: 15px 0;
        display: block;
        width: 100%;
    }
    
    .nav-menu li {
        margin-bottom: 30px;
    }
    
    .nav-menu a {
        font-size: 18px;
        padding: 10px 0;
        display: block;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 18px;
    }

    .section-title {
        font-size: 36px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 22px;
    }

    .product-image {
        height: 320px;
    }

    .product-info {
        padding: 18px;
    }

    /* Products page: cleaner gallery grid */
    .products-page .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .products-page .product-image {
        height: 280px;
        padding: 10px;
    }

    /* Products page: toolbar must not overflow on mobile */
    .products-toolbar {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 16px;
        gap: 14px;
    }

    .products-toolbar-group,
    .products-toolbar-left,
    .products-toolbar-right {
        width: 100%;
        min-width: 0;
    }

    .products-toolbar-group {
        gap: 12px;
    }

    .products-control,
    .products-control-search {
        width: 100%;
        min-width: 0;
        flex: 1 1 auto;
    }

    .products-select,
    .products-search,
    .products-clear {
        width: 100%;
    }

    .products-results-meta {
        width: 100%;
        justify-content: center;
        text-align: center;
        white-space: normal;
        height: auto;
        padding: 12px 14px;
        line-height: 1.35;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        grid-template-columns: 100px 1fr;
    }
    
    .cart-item-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        margin-top: 20px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .newsletter-content h2 {
        font-size: 32px;
    }
    
    .instagram-grid {
        display: none;
    }
    
    .instagram-carousel-wrapper {
        display: block;
    }
    
    .instagram-carousel-slide {
        min-width: calc(50% - 7.5px);
    }
    
    .bestseller-carousel-wrapper {
        gap: 0;
    }
    
    .bestseller-carousel-container {
        margin: 0 -20px;
        max-width: none;
        width: calc(100% + 40px);
        overflow: visible;
    }
    
    .bestseller-nav-btn {
        z-index: 20;
    }
    
    .carousel-wrapper {
        overflow: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .carousel-track {
        max-width: 100%;
    }
    
    .bestseller-nav-btn {
        width: 50px;
        height: 50px;
    }
    
    .bestseller-name {
        font-size: 28px;
    }
    
    .bestseller-current-price {
        font-size: 28px;
    }
    
    .bestseller-content {
        padding: 30px;
    }
    
    /* Home Page Mobile Optimizations */
    .hero-content {
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 32px;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }
    
    .hero p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .promo-banner {
        padding: 30px 0;
    }
    
    .promo-content h3 {
        font-size: 24px;
    }
    
    .promo-content p {
        font-size: 14px;
    }
    
    .carousel-controls {
        gap: 8px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .bestseller-carousel-wrapper {
        gap: 8px;
        margin-top: 40px;
        padding: 0;
    }
    
    .bestseller-carousel-container {
        margin: 0;
        width: 100%;
        max-width: calc(100% - 96px);
        overflow: hidden;
        flex: 1;
    }
    
    .bestseller-nav-btn {
        width: 40px;
        height: 40px;
        z-index: 20;
        flex-shrink: 0;
        position: relative;
        display: flex !important;
    }
    
    .bestseller-carousel-track {
        display: flex;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 0;
        width: 100%;
    }
    
    .bestseller-slide {
        min-width: 100%;
        width: 100%;
        flex-shrink: 0;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
    
    .bestseller-slide.active {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
    
    .bestseller-card {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
    }
    
    .bestseller-image {
        height: 250px;
        min-height: 250px;
    }
    
    .bestseller-content {
        padding: 30px 20px;
        min-height: auto;
    }
    
    .bestseller-badge {
        top: 15px;
        left: 15px;
        padding: 8px 15px;
        font-size: 10px;
    }
    
    .bestseller-name {
        font-size: 22px;
        margin-bottom: 10px;
        letter-spacing: 1px;
        line-height: 1.3;
    }
    
    .bestseller-category {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .bestseller-price {
        margin-bottom: 20px;
    }
    
    .bestseller-old-price {
        font-size: 16px;
    }
    
    .bestseller-current-price {
        font-size: 28px;
    }
    
    .bestseller-view-btn {
        padding: 12px 25px;
        font-size: 11px;
        width: 100%;
        text-align: center;
    }
    
    .bestseller-content::before {
        display: none;
    }
    
    .features-grid {
        gap: 25px;
    }
    
    .feature-item {
        padding: 30px 20px;
    }
    
    .about-content {
        gap: 30px;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .about-image {
        width: 100%;
    }
    
    .about-image img {
        height: 250px;
        width: 100%;
        object-fit: cover;
    }
    
    .instagram-grid {
        display: none;
    }
    
    .instagram-carousel-wrapper {
        display: block;
    }
    
    .instagram-carousel-slide {
        min-width: calc(50% - 7.5px);
    }
    
    .footer-content {
        gap: 40px;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .footer-logo img {
        max-width: 150px;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-links .social-icon {
        width: 45px;
        height: 45px;
    }
    
    .social-links .social-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 70vh;
        min-height: 500px;
    }

    .hero h1 {
        font-size: 32px;
    }

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

    .product-image {
        height: 300px;
    }

    .products-page .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .products-page .product-image {
        height: 260px;
        padding: 10px;
    }

    .products-toolbar {
        padding: 14px;
        gap: 12px;
    }

    .products-label {
        font-size: 10px;
        letter-spacing: 1.5px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .promo-content h3 {
        font-size: 24px;
    }
    
    .newsletter-content h2 {
        font-size: 28px;
    }
    
    .instagram-grid {
        display: none !important;
    }
    
    .instagram-carousel-wrapper {
        display: block !important;
    }
}
