@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* -------------------------------------------------------------
   1. BRAND DESIGN SYSTEM & RESET (PREMIUM LIGHT THEME)
   ------------------------------------------------------------- */
:root {
    /* Color Palette */
    --color-gold: #97795D;
    --color-gold-light: #B49A80;
    --color-brown-medium: #6B503C;
    --color-brown-dark: #39281D;
    
    /* Premium Light Mode Backgrounds */
    --color-bg-dark: #FAF8F5;       /* Elegant Warm Cream/Alabaster */
    --color-bg-card: #FFFFFF;       /* Pure White Cards */
    --color-bg-input: #F3EFEA;      /* Light Beige Inputs */
    
    /* Premium Light Mode Typography */
    --color-text-primary: #2C2621;   /* Rich Charcoal Brown */
    --color-text-secondary: #5C524A; /* Soft Bronze Brown */
    --color-text-muted: #8E847C;     /* Muted Earthy Gray */
    
    /* Borders & States */
    --color-border: #E8E2D9;         /* Very fine light warm border */
    --color-error: #d04d4d;
    --color-success: #3c9b60;
    
    /* Layout Constants */
    --header-height: 80px;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    
    /* Language Defaults */
    --dir: rtl;
    --font-family: 'Cairo', 'Inter', sans-serif;
    --text-align-start: right;
    --text-align-end: left;
}

html[lang="en"] {
    --dir: ltr;
    --font-family: 'Inter', 'Cairo', sans-serif;
    --text-align-start: left;
    --text-align-end: right;
}

html[lang="ar"] {
    --dir: rtl;
    --font-family: 'Cairo', 'Inter', sans-serif;
    --text-align-start: right;
    --text-align-end: left;
}

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

body {
    direction: var(--dir);
    font-family: var(--font-family);
    background-color: var(--color-bg-dark);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

button, input, select, textarea {
    font-family: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-light);
}

/* -------------------------------------------------------------
   2. REUSABLE UI ELEMENTS & LAYOUT UTILITIES
   ------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.text-start { text-align: var(--text-align-start); }
.text-end { text-align: var(--text-align-end); }
.text-center { text-align: center; }

/* Grid systems */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 992px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    .grid-4 { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    .section { padding: 48px 0; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--color-gold);
    color: #FFFFFF;
    border: 1px solid var(--color-gold);
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.btn-text {
    padding: 0;
    color: var(--color-gold);
    font-weight: 600;
    border-bottom: 1px solid transparent;
}

.btn-text:hover {
    border-bottom-color: var(--color-gold);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 2px;
}
.badge-discount {
    background-color: var(--color-gold);
    color: #FFFFFF;
}
.badge-featured {
    background-color: var(--color-brown-medium);
    color: #FFFFFF;
}

/* White Header / Navbar */
header {
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95); /* Clean white background */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 60px;
    max-height: 60px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    color: var(--color-text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--color-gold);
}

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

.icon-btn {
    font-size: 20px;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    color: var(--color-text-primary);
}

.icon-btn:hover {
    color: var(--color-gold);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--color-gold);
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-switch {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.lang-switch:hover {
    color: var(--color-gold);
}

/* -------------------------------------------------------------
   3. STOREFRONT HOMEPAGE (index.php)
   ------------------------------------------------------------- */
.hero {
    height: 85vh;
    /* Updated to use generated 4K hero image and custom radial shadows for readability */
    background: linear-gradient(180deg, rgba(250, 248, 245, 0.45) 0%, rgba(250, 248, 245, 0.95) 100%), 
                url('../images/hero_premium.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
}

.hero-content {
    max-width: 600px;
}

.hero-subtitle {
    color: var(--color-gold);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
    color: var(--color-brown-dark);
}

.hero-desc {
    color: var(--color-text-secondary);
    font-size: 16px;
    margin-bottom: 32px;
}

/* About / Story Section */
.story-section {
    background-color: #FFFFFF;
    border-bottom: 1px solid var(--color-border);
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--color-brown-medium);
}

.story-text p {
    color: var(--color-text-secondary);
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-image img {
    border: 1px solid var(--color-border);
    padding: 12px;
    border-radius: var(--border-radius-md);
    background-color: var(--color-bg-dark);
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

/* -------------------------------------------------------------
   4. PRODUCT CARDS & GRID
   ------------------------------------------------------------- */
.product-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold);
    box-shadow: 0 12px 24px rgba(151,121,93,0.08); /* warm goldish glow */
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background-color: #f7f7f7;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 12px;
    color: var(--color-gold);
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 600;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--color-text-primary);
}

.product-name a:hover {
    color: var(--color-gold);
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-original {
    text-decoration: line-through;
    color: var(--color-text-muted);
    font-size: 14px;
}

.price-active {
    font-weight: 700;
    color: var(--color-brown-medium);
    font-size: 18px;
}

/* -------------------------------------------------------------
   5. SHOP CATALOG PAGE (shop.php)
   ------------------------------------------------------------- */
.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }
}

/* Filters Sidebar */
.filters-sidebar {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 24px;
    border-radius: var(--border-radius-md);
    height: fit-content;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.filter-group {
    margin-bottom: 32px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 8px;
    color: var(--color-brown-medium);
}

.filter-list {
    list-style: none;
}

.filter-item {
    margin-bottom: 12px;
}

.filter-link {
    font-size: 14px;
    color: var(--color-text-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-link.active, .filter-link:hover {
    color: var(--color-gold);
    font-weight: 600;
}

.search-input-wrapper {
    position: relative;
}

.search-input {
    width: 100%;
    background-color: var(--color-bg-input);
    border: 1px solid var(--color-border);
    padding: 12px 16px;
    padding-left: 40px; /* spacing for search icon */
    border-radius: var(--border-radius-sm);
    color: var(--color-text-primary);
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: var(--color-gold);
    background-color: #FFFFFF;
}

/* -------------------------------------------------------------
   6. SINGLE PRODUCT DETAIL PAGE (product.php)
   ------------------------------------------------------------- */
.product-details-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
}

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

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.main-image-wrapper {
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.main-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--color-brown-dark);
}

.product-price-large {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.product-price-large .price-active {
    font-size: 28px;
    color: var(--color-gold);
}

.product-desc {
    color: var(--color-text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 24px;
}

/* Sizing Selector */
.size-section {
    margin-bottom: 32px;
}

.size-header {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.size-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.size-btn {
    border: 1px solid var(--color-border);
    background-color: #FFFFFF;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
    color: var(--color-text-primary);
}

.size-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.size-btn.active {
    background-color: var(--color-gold);
    color: #FFFFFF;
    border-color: var(--color-gold);
}

.purchase-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.purchase-actions .btn {
    flex: 1;
}

/* Better Together / Bundle Suggestion */
.bundle-box {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 24px;
    border-radius: var(--border-radius-md);
    margin-top: 48px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.bundle-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-brown-medium);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bundle-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bundle-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px dashed var(--color-border);
    padding-bottom: 12px;
}

.bundle-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.bundle-item-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bundle-item-img {
    width: 60px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--color-border);
}

.bundle-item-details h4 {
    font-size: 14px;
    font-weight: 600;
}

.bundle-item-price {
    color: var(--color-gold);
    font-size: 13px;
    font-weight: 700;
}

/* -------------------------------------------------------------
   7. SHOPPING CART & CHECKOUT (cart.php, checkout.php)
   ------------------------------------------------------------- */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

@media (max-width: 992px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }
}

.cart-table-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.cart-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-border);
    padding: 16px 0;
}

.cart-item-row:first-child {
    padding-top: 0;
}

.cart-item-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cart-item-desc {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-item-thumb {
    width: 80px;
    height: 106px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--color-border);
}

.cart-item-meta h3 {
    font-size: 16px;
    font-weight: 600;
}

.cart-item-meta p {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-top: 4px;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.qty-btn {
    padding: 6px 12px;
    font-weight: 600;
    cursor: pointer;
    background-color: var(--color-bg-input);
}

.qty-btn:hover {
    color: var(--color-gold);
}

.qty-val {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 700;
    background-color: #FFFFFF;
}

.cart-item-price {
    font-weight: 700;
    color: var(--color-gold);
}

.cart-summary-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 24px;
    height: fit-content;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 14px;
}

.summary-row.total {
    border-top: 1px solid var(--color-border);
    padding-top: 16px;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-gold);
}

.coupon-box {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.coupon-box input {
    flex: 1;
    background-color: var(--color-bg-input);
    border: 1px solid var(--color-border);
    padding: 10px 14px;
    border-radius: var(--border-radius-sm);
    font-size: 13px;
    color: var(--color-text-primary);
}

.coupon-box input:focus {
    border-color: var(--color-gold);
    background-color: #FFFFFF;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text-secondary);
}

.form-control {
    width: 100%;
    background-color: var(--color-bg-input);
    border: 1px solid var(--color-border);
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    color: var(--color-text-primary);
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--color-gold);
    background-color: #FFFFFF;
}

/* -------------------------------------------------------------
   8. WHITE FOOTER & MAP INFO
   ------------------------------------------------------------- */
footer {
    background-color: #FFFFFF; /* Pure White background */
    border-top: 1px solid var(--color-border);
    padding: 60px 0 30px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.01);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 40px;
}

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

.footer-about h3, .footer-links h3, .footer-contact h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--color-brown-medium);
    font-weight: 700;
}

.footer-about p {
    color: var(--color-text-secondary);
    font-size: 14px;
    line-height: 1.8;
}

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

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

.footer-links-list a {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.footer-links-list a:hover {
    color: var(--color-gold);
}

.footer-contact p {
    color: var(--color-text-secondary);
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-contact a {
    color: var(--color-gold);
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 30px;
    font-size: 13px;
    color: var(--color-text-muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 576px) {
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* -------------------------------------------------------------
   9. AUTOMATED HERO SLIDER STYLES
   ------------------------------------------------------------- */
.hero-slider-section {
    position: relative;
    height: 85vh;
    overflow: hidden;
    background-color: var(--color-bg-dark);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-slider .slide.active {
    opacity: 1;
    z-index: 2;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--color-border);
    color: var(--color-text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.slider-arrow:hover {
    background-color: var(--color-gold);
    color: #FFFFFF;
    border-color: var(--color-gold);
}

.prev-arrow {
    left: 24px;
}
html[dir="rtl"] .prev-arrow {
    left: auto;
    right: 24px;
}

.next-arrow {
    right: 24px;
}
html[dir="rtl"] .next-arrow {
    right: auto;
    left: 24px;
}

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

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(44, 38, 33, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background-color: var(--color-gold);
    width: 24px;
    border-radius: 4px;
}

/* -------------------------------------------------------------
   10. MOBILE HAMBURGER MENU RESPONSIVENESS (MOBILE-FIRST)
   ------------------------------------------------------------- */
.mobile-menu-toggle {
    display: none;
    border: none;
    background: none;
    outline: none;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block !important;
    }
    
    #navbar-menu {
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background-color: #FFFFFF;
        border-bottom: 1px solid var(--color-border);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        width: 100%;
        box-shadow: 0 10px 15px rgba(0,0,0,0.03);
        z-index: 999;
    }
    
    #navbar-menu.open {
        max-height: 300px;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
        padding: 24px 0;
        gap: 20px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-desc {
        font-size: 14px;
    }
    
    /* About Brand Story Mobile Stacking */
    .story-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
        text-align: center;
    }
    
    .story-image img {
        margin: 0 auto;
        max-width: 100%;
        max-height: 450px;
        object-fit: cover;
    }
}

