/* SEYLS Fashion - Modern Bold Minimalist Design */

/* Import Google Fonts for bold typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

:root {
    /* Core Brand Colors */
    --primary-black: #000000;
    --pure-white: #ffffff;
    --soft-white: #fafafa;
    --light-gray: #f5f5f5;
    --medium-gray: #e5e5e5;
    --dark-gray: #333333;
    --text-primary: #000000;
    --text-secondary: #666666;
    --text-muted: #999999;
    
    /* Typography Scale */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Spacing Scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--pure-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Modern Typography System */
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--primary-black);
}

.display-1 { font-size: clamp(3rem, 8vw, 6rem); }
.display-2 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
.display-3 { font-size: clamp(2rem, 5vw, 3.5rem); }
.display-4 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
.display-5 { font-size: clamp(1.5rem, 3vw, 2rem); }
.display-6 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: var(--primary-black);
    margin-bottom: var(--space-md);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: clamp(1.125rem, 2vw, 1.25rem); }
h6 { font-size: clamp(1rem, 1.5vw, 1.125rem); }

p, .lead {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.lead {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    font-weight: 400;
    color: var(--text-primary);
}

/* Bold Text Elements */
.text-bold { font-weight: 700; }
.text-bolder { font-weight: 800; }
.text-black { font-weight: 900; }

/* Modern Navigation */
.navbar {
    background-color: var(--pure-white) !important;
    border-bottom: 1px solid var(--medium-gray);
    padding: var(--space-md) 0;
    transition: all var(--transition-normal);
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    color: var(--primary-black) !important;
    text-decoration: none;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
}

.navbar-brand:hover {
    transform: scale(1.05);
    color: var(--primary-black) !important;
}

/* Navbar Logo Styling */
.navbar-logo {
    height: auto;
    max-height: 60px;
    width: auto;
    max-width: 200px;
    transition: all var(--transition-normal);
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-secondary) !important;
    padding: var(--space-sm) var(--space-md) !important;
    margin: 0 var(--space-xs);
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-black) !important;
    background-color: var(--light-gray);
    transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
    color: var(--primary-black) !important;
    background-color: var(--light-gray);
    font-weight: 700;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: var(--primary-black);
}

/* Modern Buttons */
.btn {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    padding: var(--space-sm) var(--space-lg);
    border: none;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

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

.btn-dark:hover {
    background-color: var(--dark-gray);
    border-color: var(--dark-gray);
    color: var(--pure-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-outline-dark:hover {
    background-color: var(--primary-black);
    color: var(--pure-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-light {
    background-color: var(--pure-white);
    color: var(--primary-black);
    border: 2px solid var(--pure-white);
}

.btn-light:hover {
    background-color: var(--light-gray);
    border-color: var(--light-gray);
    color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:linear-gradient(129deg, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 0%) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--pure-white);
    max-width: 1200px;
    padding: 0 var(--space-lg);
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(3rem, 8vw, 6rem) !important;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-lg);
    color: var(--pure-white) !important;
    text-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

.hero-title span,
.hero-title .fst-italic {
    color: var(--pure-white) !important;
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: var(--space-xl);
    color: var(--pure-white) !important;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Modern Cards */
.card {
    border: none;
    border-radius: var(--radius-lg);
    background-color: var(--pure-white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    overflow: hidden;
    position: relative;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-img-top {
    transition: transform var(--transition-slow);
    height: 400px;
    object-fit: cover;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card-body {
    padding: var(--space-lg);
}

.card-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-black);
    margin-bottom: var(--space-sm);
}

.card-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Product Cards */
.product-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background-color: var(--pure-white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

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

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

.product-overlay .btn {
    transform: translateY(20px);
    transition: transform var(--transition-normal);
}

.product-card:hover .product-overlay .btn {
    transform: translateY(0);
}

/* Modern Forms */
.form-control {
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-sm);
    padding: var(--space-sm) var(--space-md);
    font-size: 1rem;
    transition: all var(--transition-normal);
    background-color: var(--pure-white);
}

.form-control:focus {
    border-color: var(--primary-black);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Sections */
.section-padding {
    padding: var(--space-4xl) 0;
}

.section-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: var(--space-xl);
    letter-spacing: -0.02em;
    color: var(--primary-black);
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    text-align: center;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.6;
}

/* Background Sections */
.bg-dark-section {
    background-color: var(--primary-black);
    color: var(--pure-white);
}

.bg-light-section {
    background-color: var(--soft-white);
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    cursor: pointer;
}

.gallery-item img {
    transition: transform var(--transition-slow);
    width: 100%;
    height: auto;
    display: block;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--pure-white);
    padding: var(--space-lg);
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: var(--space-lg);
    left: var(--space-lg);
    z-index: 1000;
}

.whatsapp-button .btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366; /* Official WhatsApp green */
    border: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.whatsapp-button .btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background-color: #128C7E; /* Darker WhatsApp green on hover */
}

.whatsapp-button .btn:active {
    transform: scale(0.95);
}

/* WhatsApp button animation */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    }
}

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

.whatsapp-button .btn {
    animation: whatsappPulse 2s infinite;
}

/* WhatsApp button tooltip */
.whatsapp-button .btn::before {
    content: "Chat with us on WhatsApp";
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1001;
}

.whatsapp-button .btn::after {
    content: "";
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1001;
}

.whatsapp-button .btn:hover::before,
.whatsapp-button .btn:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Ensure button stays above all content */
.whatsapp-button {
    z-index: 9999 !important;
}

/* Social Media Icons */
.footer .d-flex.gap-3 svg {
    width: 24px;
    height: 24px;
    transition: all var(--transition-normal);
}

.footer .d-flex.gap-3 a:hover svg {
    transform: scale(1.1);
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* Toast Styles */
.toast {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.toast-header {
    border-bottom: none;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

/* Cart Styles */
.cart-item {
    border-bottom: 1px solid var(--medium-gray);
    padding: var(--space-md) 0;
}

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

/* Filter Styles */
.filter-btn {
    border-radius: var(--radius-sm);
    border: 2px solid var(--medium-gray);
    background: var(--pure-white);
    color: var(--text-secondary);
    font-weight: 600;
    padding: var(--space-sm) var(--space-md);
    transition: all var(--transition-normal);
}

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

/* Team Member Cards */
.team-member {
    text-align: center;
    padding: var(--space-lg);
}

.team-member img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: var(--space-md);
    border: 4px solid var(--light-gray);
    transition: all var(--transition-normal);
}

.team-member:hover img {
    border-color: var(--primary-black);
    transform: scale(1.05);
}

/* Contact Info */
.contact-info {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.contact-info:hover {
    background-color: var(--light-gray);
}

.contact-info i {
    margin-right: var(--space-md);
    color: var(--text-secondary);
    font-size: 1.5rem;
}

/* Newsletter Form */
.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

/* Utility Classes */
.text-primary { color: var(--primary-black) !important; }
.bg-primary { background-color: var(--primary-black) !important; }
.border-primary { border-color: var(--primary-black) !important; }

/* Hover Effects */
.hover-lift {
    transition: transform var(--transition-normal);
}

.hover-lift:hover {
    transform: translateY(-8px);
}

/* Image Overlay Effects */
.image-overlay {
    position: relative;
    overflow: hidden;
}

.image-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.image-overlay:hover::after {
    opacity: 1;
}

/* Responsive Design */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-title {
        font-size: clamp(4rem, 8vw, 7rem);
    }
    
    .section-title {
        font-size: clamp(3rem, 5vw, 4rem);
    }
}

/* Desktop (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .hero-title {
        font-size: clamp(3.5rem, 7vw, 6rem);
    }
    
    .section-title {
        font-size: clamp(2.5rem, 4vw, 3.5rem);
    }
}

/* Tablet Landscape (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-title {
        font-size: clamp(3rem, 6vw, 5rem);
    }
    
    .section-title {
        font-size: clamp(2.25rem, 3.5vw, 3rem);
    }
    
    .navbar-nav .nav-link {
        padding: var(--space-sm) var(--space-md) !important;
        font-size: 0.85rem;
    }
    
    .navbar-logo {
        max-height: 55px;
        max-width: 180px;
    }
    
    .card-body {
        padding: var(--space-md);
    }
}

/* Tablet Portrait (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    :root {
        --space-xs: 0.25rem;
        --space-sm: 0.5rem;
        --space-md: 1rem;
        --space-lg: 1.5rem;
        --space-xl: 2rem;
        --space-2xl: 2.5rem;
        --space-3xl: 3rem;
        --space-4xl: 4rem;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
    }
    
    .section-title {
        font-size: clamp(2rem, 3vw, 2.5rem);
    }
    
    .navbar-logo {
        max-height: 50px;
        max-width: 160px;
    }
    
    .section-padding {
        padding: var(--space-3xl) 0;
    }
    
    .hero-section {
        min-height: 85vh;
    }
    
    .navbar-nav .nav-link {
        margin: var(--space-xs) 0;
        text-align: center;
        padding: var(--space-sm) var(--space-md) !important;
    }
    
    .card-body {
        padding: var(--space-md);
    }
    
    .btn {
        padding: var(--space-sm) var(--space-lg);
        font-size: 0.9rem;
    }
    
    .whatsapp-button {
        bottom: var(--space-lg);
        left: var(--space-lg);
    }
    
    .whatsapp-button .btn {
        width: 55px;
        height: 55px;
    }
}

/* Mobile Landscape (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    :root {
        --space-xs: 0.25rem;
        --space-sm: 0.5rem;
        --space-md: 0.75rem;
        --space-lg: 1rem;
        --space-xl: 1.5rem;
        --space-2xl: 2rem;
        --space-3xl: 2.5rem;
        --space-4xl: 3rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    
    .section-title {
        font-size: clamp(1.75rem, 3vw, 2.25rem);
    }
    
    .navbar-logo {
        max-height: 50px;
        max-width: 160px;
    }
    
    .section-padding {
        padding: var(--space-3xl) 0;
    }
    
    .hero-section {
        min-height: 80vh;
    }
    
    .navbar-brand {
        font-size: 1.75rem;
    }
    
    .navbar-nav .nav-link {
        margin: var(--space-xs) 0;
        text-align: center;
        padding: var(--space-sm) var(--space-md) !important;
        font-size: 0.8rem;
    }
    
    .card-body {
        padding: var(--space-md);
    }
    
    .btn {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.85rem;
    }
    
    .whatsapp-button {
        bottom: var(--space-md);
        left: var(--space-md);
    }
    
    .whatsapp-button .btn {
        width: 50px;
        height: 50px;
    }
    
    .display-4 {
        font-size: clamp(1.5rem, 3vw, 2rem);
    }
    
    .display-6 {
        font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    }
}

/* Mobile Portrait (up to 575px) */
@media (max-width: 575px) {
    :root {
        --space-xs: 0.25rem;
        --space-sm: 0.5rem;
        --space-md: 0.75rem;
        --space-lg: 1rem;
        --space-xl: 1.25rem;
        --space-2xl: 1.5rem;
        --space-3xl: 2rem;
        --space-4xl: 2.5rem;
    }
    
    .container {
        padding-left: var(--space-md);
        padding-right: var(--space-md);
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
        line-height: 1.2;
    }
    
    .navbar-logo {
        max-height: 45px;
        max-width: 140px;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    .section-padding {
        padding: var(--space-3xl) 0;
    }
    
    .hero-section {
        min-height: 75vh;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 2vw, 1.125rem);
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .navbar-nav .nav-link {
        margin: var(--space-xs) 0;
        text-align: center;
        padding: var(--space-sm) var(--space-md) !important;
        font-size: 0.75rem;
    }
    
    .card-body {
        padding: var(--space-md);
    }
    
    .btn {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.8rem;
    }
    
    .btn-lg {
        padding: var(--space-md) var(--space-lg);
        font-size: 0.9rem;
    }
    
    .whatsapp-button {
        bottom: var(--space-md);
        left: var(--space-md);
    }
    
    .whatsapp-button .btn {
        width: 45px;
        height: 45px;
    }
    
    .display-4 {
        font-size: clamp(1.25rem, 3vw, 1.75rem);
    }
    
    .display-6 {
        font-size: clamp(1rem, 2vw, 1.25rem);
    }
    
    .lead {
        font-size: clamp(0.95rem, 2vw, 1.125rem);
    }
    
    .team-member img {
        width: 150px;
        height: 150px;
    }
    
    .gallery-item {
        margin-bottom: var(--space-sm);
    }
    
    .product-card .card-img-top {
        height: 250px;
    }
    
    .card-img-top {
        height: 300px;
    }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
    .hero-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    .navbar-logo {
        max-height: 40px;
        max-width: 120px;
    }
    
    .section-title {
        font-size: clamp(1.25rem, 3vw, 1.75rem);
    }
    
    .btn {
        padding: var(--space-xs) var(--space-sm);
        font-size: 0.75rem;
    }
    
    .btn-lg {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.85rem;
    }
    
    .whatsapp-button .btn {
        width: 40px;
        height: 40px;
        animation: whatsappPulse 2s infinite, whatsappBounce 3s infinite;
    }
    
    .team-member img {
        width: 120px;
        height: 120px;
    }
    
    .product-card .card-img-top {
        height: 200px;
    }
    
    .card-img-top {
        height: 250px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-black);
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --text-secondary: #000000;
        --text-muted: #333333;
        --medium-gray: #000000;
    }
}

/* Performance Optimizations */
.card-img-top,
.product-card .card-img-top,
.gallery-item img,
.team-member img {
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Image Loading States */
.card-img-top,
.product-card .card-img-top,
.gallery-item img {
    background-color: var(--light-gray);
    background-image: linear-gradient(90deg, var(--light-gray) 25%, var(--medium-gray) 50%, var(--light-gray) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.card-img-top.loaded,
.product-card .card-img-top.loaded,
.gallery-item img.loaded {
    background: none;
    animation: none;
}

/* Smooth Image Transitions */
.card-img-top,
.product-card .card-img-top,
.gallery-item img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-img-top.loaded,
.product-card .card-img-top.loaded,
.gallery-item img.loaded {
    opacity: 1;
}

/* Grid Responsive Improvements */
@media (max-width: 991px) {
    .row.g-4 {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1rem;
    }
    
    .row.g-5 {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 1.5rem;
    }
}

@media (max-width: 575px) {
    .row.g-4 {
        --bs-gutter-x: 0.75rem;
        --bs-gutter-y: 0.75rem;
    }
    
    .row.g-5 {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1rem;
    }
}

/* Navigation Mobile Improvements */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: var(--pure-white);
        border-top: 1px solid var(--medium-gray);
        margin-top: var(--space-sm);
        padding-top: var(--space-sm);
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        border-radius: var(--radius-sm);
        margin: var(--space-xs) var(--space-sm);
    }
}

/* Form Responsive Improvements */
@media (max-width: 575px) {
    .input-group {
        flex-direction: column;
    }
    
    .input-group .form-control {
        border-radius: var(--radius-sm);
        margin-bottom: var(--space-sm);
    }
    
    .input-group .btn {
        border-radius: var(--radius-sm);
        width: 100%;
    }
    
    .newsletter-form .input-group {
        flex-direction: row;
    }
    
    .newsletter-form .form-control {
        margin-bottom: 0;
        border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    }
    
    .newsletter-form .btn {
        border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
        width: auto;
    }
}

/* Modal Responsive Improvements */
@media (max-width: 575px) {
    .modal-dialog {
        margin: var(--space-sm);
    }
    
    .modal-content {
        border-radius: var(--radius-lg);
    }
    
    .modal-body {
        padding: var(--space-md);
    }
}

/* Offcanvas Responsive Improvements */
@media (max-width: 575px) {
    .offcanvas {
        width: 100% !important;
    }
}

/* Gallery Responsive Grid */
@media (max-width: 767px) {
    .gallery-item {
        margin-bottom: var(--space-sm);
    }
}

@media (max-width: 575px) {
    .gallery-item {
        margin-bottom: var(--space-xs);
    }
}

/* Product Grid Responsive */
@media (max-width: 991px) {
    .product-card .card-img-top {
        height: 280px;
    }
}

@media (max-width: 767px) {
    .product-card .card-img-top {
        height: 250px;
    }
}

@media (max-width: 575px) {
    .product-card .card-img-top {
        height: 220px;
    }
}

/* Team Member Responsive */
@media (max-width: 767px) {
    .team-member img {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 575px) {
    .team-member img {
        width: 150px;
        height: 150px;
    }
}

/* Statistics Responsive */
@media (max-width: 767px) {
    .display-2 {
        font-size: clamp(2rem, 4vw, 3rem);
    }
}

@media (max-width: 575px) {
    .display-2 {
        font-size: clamp(1.5rem, 3vw, 2.5rem);
    }
}

/* Collections Mobile Responsive */
@media (max-width: 767px) {
    .card-title {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .card-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .card-body {
        padding: var(--space-md);
    }
}

@media (max-width: 575px) {
    .card-title {
        font-size: 1rem;
        line-height: 1.2;
        margin-bottom: var(--space-xs);
    }
    
    .card-text {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: var(--space-sm);
    }
    
    .card-body {
        padding: var(--space-sm);
    }
    
    .btn {
        font-size: 0.8rem;
        padding: var(--space-xs) var(--space-sm);
    }
}

/* Footer Responsive */
@media (max-width: 767px) {
    .footer .row > div {
        margin-bottom: var(--space-lg);
    }
}

@media (max-width: 575px) {
    .footer .row > div {
        margin-bottom: var(--space-md);
        text-align: center;
    }
    
    .footer .d-flex {
        justify-content: center;
    }
}

/* Header Light Theme (white bg, black text/icons) */
.site-header { background: #ffffff; border-bottom: 1px solid var(--medium-gray); }
.brand-text { color: var(--primary-black); }
.menu-toggle, .icon-btn { color: var(--primary-black); }
.menu-toggle i, .icon-btn i { color: var(--primary-black); }
.menu-dropdown { background: var(--pure-white); border-color: var(--medium-gray); box-shadow: var(--shadow-md); }
.menu-item { color: var(--text-primary); border-bottom: 1px solid var(--medium-gray); }
.menu-item:hover { background: var(--light-gray); }

/* Tight left/right padding to match sample */
.header-inner { padding-left: 0; padding-right: 0; }

/* Pin right-side icons to the far right */
.header-inner { display: flex; }
.header-left { margin-left: auto; }

/* Dropdown below left block */
.menu-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: var(--pure-white);
    border: 1px solid var(--medium-gray);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    padding: 0;
    display: none;
    z-index: 1050;
}

.menu-dropdown.open { display: block; }

.menu-item {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--medium-gray);
}

.menu-item:last-child { border-bottom: none; }
.menu-item:hover { background: var(--light-gray); }
.menu-item.active { color: var(--primary-black); }

/* Responsive tweaks */
@media (max-width: 575px) {
    .site-header .header-inner { height: 64px; }
    .menu-dropdown { width: 200px; }
    .brand-text { font-size: 0.95rem; }
}

/* Refined brand logo sizing for professional look */
.brand-logo {
    max-height: 44px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 575px) {
    .brand-logo { max-height: 34px; }
}

/* Improve clickability/feedback of hamburger on all devices */
.menu-toggle { cursor: pointer; }
.menu-toggle:active { transform: scale(0.98); }

/* Center logo horizontally while keeping hamburger on the left */
.site-header .header-inner { position: relative; }
.header-left .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

/* Sample header exact styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 30px;
    border-bottom: 1px solid #eee;
    background: #fff;
    z-index: 1000;
}
.left-section {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}
.menu-icon { font-size: 22px; cursor: pointer; }
.logo { font-size: 18px; font-weight: bold; letter-spacing: 1px; text-transform: uppercase; }
.header-icons { display: flex; gap: 18px; font-size: 18px; cursor: pointer; }
.nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 220px; background: #fff; border: 1px solid #eee; margin: 0; padding: 0; box-shadow: 0 4px 8px rgba(0,0,0,0.08); }
.nav.active { display: flex; }
.nav a { text-decoration: none; color: #000; padding: 12px 20px; transition: background 0.3s; border-bottom: 1px solid #eee; }
.nav a:last-child { border-bottom: none; }
.nav a:hover { background: #f5f5f5; }
.logo img { max-height: 28px; display: block; }

/* Ensure dropdown overlays hero section */
.header { position: relative; z-index: 3000; }
.nav { z-index: 4000; }

/* Increase main menu height */
.header { padding: 18px 30px; }

/* Two-line logo styling */
.logo { display: inline-flex; flex-direction: column; line-height: 1; }
.logo-sub { font-size: 12px; font-weight: 500; letter-spacing: 0.5px; margin-top: 4px; text-transform: none; }

/* Minimal icon button reset for header icons */
.icon-btn { background: transparent; border: none; padding: 0; color: inherit; }
.icon-btn i { font-size: 18px; }

/* Ensure header icons are visible on white background */
.header-icons .icon-btn i { color: #000; }
.header-icons .icon-btn { color: #000; }

/* Top promo bar */
.top-banner { background: #000; color: #fff; font-size: 0.95rem; padding: 8px 0; }
.top-banner .container { text-align: center; }

/* Position hero CTA at bottom inside hero */
.hero-section { position: relative; }
.hero-bottom-cta {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
}

/* Ensure hero CTA button fits text */
.hero-bottom-cta .btn {
    min-width: 220px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    white-space: nowrap;
}

/* Mobile Featured Collections Slider */
.mfc-slider-wrapper { margin-top: var(--space-md); }
.mfc-slider { position: relative; overflow: hidden; }
.mfc-track { display: flex; transition: transform 0.35s ease; will-change: transform; }
.mfc-slide { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-sm); min-width: 100%; padding: var(--space-xs) 0; }
.mfc-item { width: 100%; }
.mfc-item--placeholder { visibility: hidden; }
.mfc-img { aspect-ratio: 4 / 5; border-radius: var(--radius-md); overflow: hidden; background: var(--light-gray); box-shadow: var(--shadow-sm); }
.mfc-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.mfc-img:hover img { transform: scale(1.03); }
.mfc-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; border: none; border-radius: 50%; background: rgba(0,0,0,0.6); color: #fff; display: grid; place-items: center; z-index: 2; }
.mfc-prev { left: 6px; }
.mfc-next { right: 6px; }
.mfc-dots { display: flex; justify-content: center; gap: 6px; margin-top: var(--space-sm); }
.mfc-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--medium-gray); transition: transform 0.2s ease, background 0.2s ease; }
.mfc-dot.active { background: var(--primary-black); transform: scale(1.2); }

/* Tablet breakpoint included; hide slider only on >= 992px */
@media (min-width: 992px) { .mfc-slider-wrapper { display: none !important; } }

/* Slightly increase spacing between hamburger and logo */
.left-section { gap: 16px; }