/* ========================================
   PROFESSIONAL LUXURY DESIGN SYSTEM
   Top-tier clothing brand aesthetics
   ======================================== */

/* === ENHANCED TYPOGRAPHY === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    /* Luxury Color Palette */
    --primary-burgundy: #6B0F1A;
    --accent-gold: #D4AF37;
    --ivory: #F0F8FF;
    /* AliceBlue - Light Blue as requested */
    --warm-gray: #E6F3FF;
    /* Light Blue Tint */
    --charcoal: #2C2C2C;
    --light-gray: #DAE8F5;
    /* Blue-tinted gray */
    --border-color: #D1D1CC;

    /* Typography */
    --font-luxury: 'Playfair Display', serif;
    --font-clean: 'Montserrat', sans-serif;

    /* Spacing (Professional Scale) */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-xxl: 6rem;

    /* Shadows (Subtle & Elegant) */
    --shadow-soft: 0 2px 12px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(107, 15, 26, 0.12);
}

/* === GLOBAL REFINEMENTS === */
html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

body {
    font-family: var(--font-clean);
    color: var(--charcoal);
    background: var(--warm-gray);
    line-height: 1.7;
    letter-spacing: 0.3px;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-luxury);
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--primary-burgundy);
    line-height: 1.3;
}

/* === PROFESSIONAL NAVIGATION === */
.navbar {
    background: rgba(255, 254, 247, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 2px solid var(--accent-gold);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    white-space: nowrap;
    /* Prevent wrapping */
}

.nav-logo a {
    text-decoration: none;
}

.nav-logo h1 {
    font-family: var(--font-luxury);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-burgundy);
    flex-shrink: 0;
    margin: 0;
    transition: color 0.3s ease;
}

.nav-logo:hover h1 {
    color: var(--accent-gold);
}

.nav-link {
    font-family: var(--font-clean);
    font-size: 0.85rem;
    /* Slightly smaller for better fit */
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--charcoal);
    padding: 0.5rem 0.5rem;
    /* Reduced padding */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-burgundy);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-burgundy);
}

.nav-icons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* === LUXURY HERO SECTION === */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--warm-gray) 0%, var(--ivory) 100%);
}

.slide-content {
    max-width: 600px;
}

.slide-title {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--primary-burgundy);
}

.slide-description {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: var(--charcoal);
    opacity: 0.9;
    margin-bottom: var(--space-lg);
}

/* === PREMIUM BUTTONS === */
.btn {
    font-family: var(--font-clean);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border-radius: 0;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn:active {
    transform: scale(0.97);
}

.btn-primary {
    background: var(--primary-burgundy);
    color: var(--ivory);
    border-color: var(--primary-burgundy);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-burgundy);
    border-color: var(--primary-burgundy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-burgundy);
    border-color: var(--primary-burgundy);
}

.btn-secondary:hover {
    background: var(--primary-burgundy);
    color: var(--ivory);
}

/* === ELEGANT PRODUCT CARDS === */
.product-card {
    background: white;
    border: 1px solid var(--light-gray);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-burgundy);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--warm-gray);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

.product-info {
    padding: var(--space-md);
}

.product-title a {
    font-family: var(--font-clean);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.3s;
}

.product-title a:hover {
    color: var(--primary-burgundy);
}

.product-price {
    margin-top: var(--space-sm);
}

.price-current {
    font-family: var(--font-clean);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-burgundy);
}

.price-original {
    font-size: 1rem;
    color: var(--charcoal);
    opacity: 0.5;
    text-decoration: line-through;
    margin-left: var(--space-sm);
}

/* === SOPHISTICATED SECTIONS === */
.section-title {
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: var(--space-xl);
    color: var(--primary-burgundy);
}

.section-subtitle {
    font-family: var(--font-clean);
    font-size: 1.1rem;
    font-weight: 300;
    text-align: center;
    color: var(--charcoal);
    opacity: 0.7;
    margin-top: -2rem;
    margin-bottom: var(--space-xl);
    letter-spacing: 0.5px;
}

/* === CATEGORY CARDS === */
.category-card {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
    transition: opacity 0.4s;
}

.category-card:hover::before {
    opacity: 0.8;
}

.category-content {
    position: absolute;
    bottom: var(--space-lg);
    left: var(--space-lg);
    right: var(--space-lg);
    z-index: 2;
    color: white;
}

.category-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: white;
}

/* =========================================
   Premium Luxury Footer - Redesigned
   ========================================= */
.footer {
    background-color: var(--primary-burgundy);
    color: var(--ivory);
    padding: 5rem 0 2rem;
    position: relative;
    margin-top: 5rem;
    border-top: 4px solid var(--accent-gold);
}

.footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

/* Footer Brand Column */
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 300px;
}

/* Footer Headings */
.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--ivory);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--accent-gold);
    margin-top: 0.3rem;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivory);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--accent-gold);
    color: var(--primary-burgundy);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* =========================================
   ULTRA-FINAL FOUNDER FIX (DEFINITIVE)
   Forces Vertical Stacking on ALL mobile screens
   ========================================= */

@media (max-width: 768px) {

    .founders-grid-premium {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 12px;
    }

    .founder-card-premium {
        border-radius: 14px;
    }

    .founder-img-wrapper {
        aspect-ratio: 1 / 1;
    }

    .founder-photo {
        max-height: 320px;
    }

    .founder-info {
        padding: 1.5rem;
    }

    .founder-name {
        font-size: 1.4rem;
    }

    .founder-bio {
        font-size: 0.9rem;
    }
}



/* Special fix for viewports narrower than 350px (e.g. 157px) */
@media (max-width: 350px) {
    .container {
        padding: 0 5px !important;
    }

    .founder-info {
        padding: 1rem 8px !important;
    }

    .founder-name {
        font-size: 1.1rem !important;
    }

    .founder-bio {
        font-size: 0.8rem !important;
    }

    /* Force all text elements in the app to wrap on tiny screens */
    h1,
    h2,
    h3,
    h4,
    p,
    span,
    div,
    a {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }
}

/* Override Consolidation: Moved to End of File */

/* === RESPONSIVE EXCELLENCE === */
@media (max-width: 1200px) {
    .slide-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .slide-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .category-card {
        height: 350px;
    }
}

/* === REFINED BADGES === */
.badge {
    font-family: var(--font-clean);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
    border-radius: 0;
}

.badge-new {
    background: var(--primary-burgundy);
    color: white;
}

.badge-sale {
    background: var(--accent-gold);
    color: var(--charcoal);
}

/* === SMOOTH INTERACTIONS === */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* === PROFESSIONAL SPACING === */
/* =========================================
   About Page - Professional Corporate Format
   ========================================= */

.about-narrative {
    padding: 5rem 0;
    text-align: center;
    background-color: #fff;
}

.narrative-content {
    max-width: 900px;
    margin: 0 auto;
}

.section-subtitle {
    font-family: var(--font-clean);
    font-size: 0.9rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 1rem;
}

.section-title-large {
    font-size: 3.5rem;
    color: var(--primary-burgundy);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-family: var(--font-luxury);
}

@media (max-width: 768px) {
    .section-title-large {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .section-title-large {
        font-size: 2rem;
    }
}

.narrative-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* Mission & Vision */
.mission-vision-section {
    padding: 0 0 5rem 0;
    background-color: #fff;
}

.mv-grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background: var(--ivory);
    padding: 3rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 12px;
}

.mv-card {
    flex: 1;
    text-align: center;
    padding: 1.5rem 2.5rem;
}

.mv-card h3 {
    font-size: 1.8rem;
    color: var(--primary-burgundy);
    margin-bottom: 1.2rem;
    font-family: var(--font-luxury);
}

.mv-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.mv-divider {
    width: 1px;
    background-color: var(--accent-gold);
    opacity: 0.3;
}

@media (max-width: 768px) {
    .mv-grid {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
    }

    .mv-divider {
        width: 100%;
        height: 1px;
    }

    .mv-card {
        padding: 1rem 0;
    }
}

/* === PREMIUM FOUNDERS SECTION (Vertical Grid) === */
/* ===== FOUNDERS SECTION ===== */
.founders-section-premium {
    padding: 4rem 0;
    background: #fcfcfc;
}

.founders-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: auto;
    padding: 0 1rem;
}

.founder-card-premium {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.founder-card-premium:hover {
    transform: translateY(-8px);
}

.founder-img-wrapper {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-info {
    padding: 2rem;
    text-align: center;
}

.founder-name {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
}

.founder-role {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #c8a24d;
    margin-bottom: 1.2rem;
}

.founder-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.founder-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #5b1b1b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-icon-circle:hover {
    background: #c8a24d;
}

/* Mobile Founder Rules Consolidated Below at End of File */

/* === VALUES SECTION === */
.values-section-minimal {
    padding: var(--space-xl) 0;
    background: #f8fbff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.value-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.value-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-burgundy), #8B0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(107, 15, 26, 0.2);
}

.value-icon i {
    font-size: 2.5rem;
    color: white;
}

.value-title {
    font-family: var(--font-luxury);
    font-size: 1.6rem;
    color: var(--primary-burgundy);
    margin-bottom: 1.2rem;
}

.value-description {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Legacy horizontal classes removed for cleanliness */

/* Stacking rules removed as we use founder-card-premium now */

@media (max-width: 768px) {
    .section-title-large {
        font-size: 2.5rem;
    }

    .mv-grid {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }

    .mv-divider {
        width: 100%;
        height: 1px;
    }

    .values-flex {
        flex-direction: column;
        align-items: center;
    }
}

section {
    padding: var(--space-xxl) 0;
}

.container {
    max-width: 1400px;
    padding: 0 var(--space-md);
}

/* === LUXURY ACCENTS === */
.text-accent {
    color: var(--accent-gold);
}

.bg-luxury {
    background: var(--warm-gray);
}

.divider {
    height: 1px;
    background: var(--border-color);
    margin: var(--space-xl) 0;
}

/* === PREMIUM WHATSAPP SUBSCRIPTION === */
.whatsapp-subscription-section {
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, #4a0a12 100%);
    padding: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
}

.whatsapp-subscription-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.whatsapp-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.whatsapp-icon-bg {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    right: -20px;
    top: -20px;
    transform: rotate(15deg);
}

.whatsapp-subscription-section h2 {
    color: var(--accent-gold);
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-family: var(--font-luxury);
}

.whatsapp-subscription-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    font-family: var(--font-clean);
}

.btn-whatsapp {
    background: var(--accent-gold);
    color: var(--primary-burgundy);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 700;
    padding: 1rem 2.5rem;
    font-family: var(--font-clean);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
}

.btn-whatsapp i {
    font-size: 1.4rem;
}

.btn-whatsapp:hover {
    background: #25D366;
    /* WhatsApp Green */
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
    .whatsapp-subscription-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-subscription-section {
        padding: 3rem 0;
    }

    .whatsapp-subscription-section h2 {
        font-size: 1.6rem;
    }

    .whatsapp-subscription-section p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .btn-whatsapp {
        padding: 0.8rem 1.5rem;
        width: 90%;
        justify-content: center;
    }
}

/* === PREMIUM ANNOUNCEMENT BAR === */
.announcement-bar {
    background-color: var(--primary-burgundy);
    color: var(--ivory);
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    z-index: 1100;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.announcement-container {
    display: flex;
    white-space: nowrap;
    animation: marquee 40s linear infinite;
}

.announcement-content {
    display: flex;
    white-space: nowrap;
}

.announcement-text {
    display: flex;
    align-items: center;
    padding: 0 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.announcement-text span {
    margin-right: 20px;
}

.separator {
    color: var(--accent-gold);
    margin: 0 15px;
    font-weight: bold;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.announcement-bar:hover .announcement-container {
    animation-play-state: paused;
}

/* === RESPONSIVE REFINEMENTS === */
@media (max-width: 1200px) {
    .nav-container {
        padding: 0 4rem;
    }
}

@media (max-width: 992px) {
    :root {
        --space-xxl: 4rem;
        --space-xl: 3rem;
    }

    .nav-container {
        padding: 0 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .nav-links {
        display: none;
        /* Handled by JS hamburger */
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    :root {
        --space-xxl: 3rem;
        --space-xl: 2.5rem;
        --space-lg: 1.5rem;
    }

    .announcement-text {
        font-size: 0.75rem;
        padding: 0 30px;
    }

    .nav-logo h1 {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        width: 100%;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* =========================================
   ULTRA-FINAL FOUNDER FIX (DEFINITIVE)
   Forces Vertical Stacking on ALL mobile screens
   ========================================= */
@media (max-width: 768px) {
    .founders-grid-premium {
        grid-template-columns: 1fr !important;
        display: block !important;
        width: 100% !important;
        padding: 0 10px !important;
    }

    .founder-card-premium {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 3rem !important;
        overflow: hidden !important;
        border-radius: 12px !important;
    }

    .founder-img-wrapper {
        width: 100% !important;
        aspect-ratio: 1/1 !important;
        display: block !important;
        margin: 0 !important;
    }

    .founder-photo {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .founder-info {
        width: 100% !important;
        display: block !important;
        padding: 1.5rem 15px !important;
        text-align: center !important;
        box-sizing: border-box !important;
        min-width: 0 !important;
    }

    .founder-name {
        font-size: 1.4rem !important;
        margin-bottom: 0.5rem !important;
        word-break: break-all !important;
        /* Aggressive for 157px */
        display: block !important;
    }

    .founder-bio {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        word-break: break-word !important;
        display: block !important;
    }
}

@media (max-width: 350px) {
    .container {
        padding: 0 5px !important;
    }

    .founder-info {
        padding: 1rem 5px !important;
    }

    .founder-name {
        font-size: 1.1rem !important;
    }

    .founder-bio {
        font-size: 0.8rem !important;
    }

    * {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }
}