/* Reset & Variables */
:root {
    --bg-color: #FAFAFA; /* Off-white for luxury feel */
    --text-primary: #121212;
    --text-secondary: #555555;
    --accent-color: #121212;
    --border-color: #E5E5E5;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --spacing-section: 120px;
    --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Preloader Styles */
#preloader {
    
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    width: 300px;
    height: auto;
    color: #84275F;
}

/* New SVG logo image for preloader */
#preloader .preloader-logo {
    display: none;
}

.preloader-logo-image {
    width: 300px;
    height: auto;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    animation: loaderLogoIn 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Preloader Animation */
.preloader-logo .logo-icon path {
    opacity: 0;
    transform: translateX(-20px) scale(0.9);
    transform-origin: center;
    animation: iconAssemble 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.preloader-logo .logo-icon path:nth-child(1) { animation-delay: 0.1s; }
.preloader-logo .logo-icon path:nth-child(2) { animation-delay: 0.2s; }
.preloader-logo .logo-icon path:nth-child(3) { animation-delay: 0.3s; }
.preloader-logo .logo-icon path:nth-child(4) { animation-delay: 0.4s; }

.preloader-logo .logo-text path {
    opacity: 0;
    transform: translateY(20px);
    animation: textAssemble 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Stagger animation for text letters */
.preloader-logo .logo-text path:nth-child(1) { animation-delay: 0.5s; }
.preloader-logo .logo-text path:nth-child(2) { animation-delay: 0.55s; }
.preloader-logo .logo-text path:nth-child(3) { animation-delay: 0.6s; }
.preloader-logo .logo-text path:nth-child(4) { animation-delay: 0.65s; }
.preloader-logo .logo-text path:nth-child(5) { animation-delay: 0.7s; }
.preloader-logo .logo-text path:nth-child(6) { animation-delay: 0.75s; }
.preloader-logo .logo-text path:nth-child(7) { animation-delay: 0.8s; }
.preloader-logo .logo-text path:nth-child(8) { animation-delay: 0.85s; }
.preloader-logo .logo-text path:nth-child(9) { animation-delay: 0.9s; }

@keyframes iconAssemble {
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes textAssemble {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loaderLogoIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

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

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

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.small-container {
    max-width: 800px;
}

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

.section-padding {
    padding: var(--spacing-section) 0;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: -0.02em;
}

.title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.subtitle {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    margin-bottom: 20px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.section-subtitle {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--text-primary);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--text-primary);
    color: #fff;
}

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

.btn-outline {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: var(--text-primary);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 50px;
    z-index: 1000;
    transition: background-color 0.3s ease, padding 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff; /* White text by default for video background */
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    color: var(--text-primary); /* Black text on scroll */
    padding: 20px 50px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.nav-container {
    width: 100%;
    max-width: 1600px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 40px;
    width: auto;
    transition: filter 0.3s ease;
    filter: brightness(0) invert(1);
}

.navbar.scrolled .nav-logo img {
    filter: none;
}

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

.icon-link {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.phone-text {
    letter-spacing: 0.04em;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255,255,255,0.12);
}

.navbar.scrolled .lang-switch {
    border-color: rgba(0,0,0,0.18);
    background: rgba(0,0,0,0.04);
}

.lang-btn {
    border: none;
    background: transparent;
    color: inherit;
    padding: 8px 10px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    cursor: pointer;
    text-transform: uppercase;
    line-height: 1;
}

.lang-btn.is-active {
    background: rgba(255,255,255,0.26);
}

.navbar.scrolled .lang-btn.is-active {
    background: rgba(0,0,0,0.08);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-menu-header {
    position: absolute;
    top: 30px;
    right: 30px;
}

.mobile-menu-close {
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
}

.mobile-menu-list {
    text-align: center;
}

.mobile-nav-link {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    transition: color 0.3s;
}

.mobile-nav-link:hover {
    color: var(--text-secondary);
}

/* Cart Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    justify-content: flex-end;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-container {
    width: 400px;
    height: 100%;
    background-color: #fff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
}

.cart-overlay.active .cart-container {
    transform: translateX(0);
}

.cart-header {
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
}

.cart-close {
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
}

.cart-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    background-color: #f9f9f9;
}

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

.cart-item-title {
    font-size: 1rem;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.cart-item-price {
    display: none;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.cart-item-remove {
    font-size: 0.8rem;
    text-decoration: underline;
    cursor: pointer;
    color: #999;
}

.cart-footer {
    padding: 30px;
    border-top: 1px solid var(--border-color);
    background-color: #f9f9f9;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.empty-cart-msg {
    text-align: center;
    color: var(--text-secondary);
    margin-top: 50px;
}

.contact-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.55);
    z-index: 3600;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.contact-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.contact-modal {
    width: min(560px, 100%);
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    overflow: hidden;
    transform: translateY(10px) scale(0.98);
    transition: transform 0.3s ease;
    position: relative;
    padding: 26px 22px;
}

.contact-modal-overlay.active .contact-modal {
    transform: translateY(0) scale(1);
}

.contact-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.9);
    border-radius: 999px;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.contact-modal-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 6px;
}

.contact-modal-text {
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.contact-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-modal-actions .btn {
    min-width: 220px;
    text-align: center;
}

.product-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.55);
    z-index: 3500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.product-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.product-modal {
    width: min(920px, 100%);
    max-height: 90vh;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    overflow: hidden;
    transform: translateY(10px) scale(0.98);
    transition: transform 0.3s ease;
    position: relative;
}

.product-modal-overlay.active .product-modal {
    transform: translateY(0) scale(1);
}

.product-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.9);
    border-radius: 999px;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.product-modal-body {
    display: grid;
    grid-template-columns: 1fr;
    max-height: 90vh;
}

.product-modal-media {
    
    background: #f9f9f9;
    display: none;
    align-items: center;
    justify-content: center;
}

.product-modal-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 90vh;
}

.product-modal-info {
    padding: 60px 32px 34px;
    overflow: auto;
}

.product-modal-meta {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 10px;
}

.product-modal-category {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.product-modal-price {
    display: none;
    font-size: 1rem;
    font-family: var(--font-heading);
    color: var(--text-primary);
    margin-bottom: 14px;
}

.product-modal-title {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    margin-bottom: 6px;
}

.product-modal-description {
    display: grid;
    gap: 14px;
}

.product-modal-text {
    color: var(--text-primary);
}

.product-modal-ideal {
    color: var(--text-secondary);
}

.product-modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.product-modal-action {
    flex: 1;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid var(--text-primary);
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-modal-add {
    background: var(--text-primary);
    color: #fff;
}

.product-modal-add:hover {
    opacity: 0.9;
}

.product-modal-buy:hover {
    background: var(--text-primary);
    color: #fff;
}

.btn-buy-now {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    height: 45px;
    padding: 0 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    color: var(--text-primary);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.btn-buy-now:hover {
    background: var(--text-primary);
    color: #fff;
}

.btn-buy-now:active {
    transform: scale(0.98);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .menu-toggle { display: flex; }
    .title { font-size: 4rem; }
    .nav-menu { display: none; }
    .nav-logo { 
        position: static; 
        transform: none; 
        white-space: nowrap;
    }
    .nav-logo img {
        height: 32px;
    }
    .nav-container { 
        justify-content: space-between; 
        gap: 10px;
    }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
   
    
    /* Hide icon text on mobile */
    .icon-text { display: none; }
    
    .search-icon, .account-icon {
        display: none; 
    }

    .section-padding{
        padding: 20px 0;
    }
}

@media (max-width: 768px) {
    .title { font-size: 3rem; }
    .hero-content { padding: 0 20px; }
    
    /* Single column for products on mobile */
    .product-grid { grid-template-columns: repeat(1, 1fr) !important }
    
   
    .navbar { padding: 15px 20px; }
    
    .nav-logo img {
        height: 28px;
    }
    
    /* Ensure footer columns stack nicely */
    .footer-col {
        text-align: center;
    }
    
    .footer-col ul li {
        margin-bottom: 10px;
    }
    
    .newsletter-form {
        justify-content: center;
    }

    .cart-container {
        width: 100%; /* Full width on mobile */
    }

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

    .product-modal-media img {
        max-height: 45vh;
    }

    .product-modal-info {
        padding: 56px 18px 22px;
    }

    .product-modal-actions {
        flex-direction: column;
    }

    .why-point {
        padding: 16px 16px;
    }

    .why-point-title {
        font-size: 1.1rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-actions .btn {
        width: 100%;
        min-width: 0;
    }
}
/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Removed background-color to ensure video is visible */
    z-index: 1; /* Ensure stacking context */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Place behind content */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4); /* Darken video slightly more */
    z-index: 0; /* Above video, below content */
}

.hero-content {
    position: relative;
    z-index: 10; /* Top most in hero */
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content .title {
    font-size: 6vw; /* Responsive font size */
}

.hero-content .description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: white;
}

/* Philosophy */
.philosophy-img {
    margin-top: 60px;
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: grayscale(20%);
}

.why-points {
    margin-top: 22px;
    display: grid;
    gap: 14px;
    text-align: left;
    font-weight: bold;
}

.why-point {
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 18px 20px;
 
}

.why-point-head {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 8px;
}

.why-point-emoji {
    font-size: 1.1rem;
    line-height: 1;
}

.why-point-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-primary);
}

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

/* Category Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.cat-btn {
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    padding: 10px 20px;
    border-bottom: 1px solid transparent;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.cat-btn.active, .cat-btn:hover {
    color: var(--text-primary);
    border-bottom: 1px solid var(--text-primary);
}

/* Products */
.section-header {
    display: flex;
    justify-content: center; /* Centered */
    text-align: center;
    align-items: flex-end;
    margin-bottom: 40px;
    padding-bottom: 0;
    border-bottom: none;
}

.view-all {
    display: none; /* Removed based on user request */
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

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

.product-divider {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 10px 0 30px;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.product-divider::before,
.product-divider::after {
    content: '';
    height: 1px;
    flex: 1;
    background: rgba(0,0,0,0.12);
}

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

.product-image {
    position: relative;
    height: 400px; /* Slightly shorter for better mobile fit */
    background-color: #fff; /* White background for clean look */
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #eee; /* Subtle border */
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: none;
}

/* New Quick Add Button (Icon) */
.btn-quick-add-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    color: var(--text-primary);
    opacity: 1; /* Always visible */
    transform: translateY(0);
}

.btn-quick-add-icon:hover {
    background: var(--text-primary);
    color: #fff;
    transform: scale(1.1);
}

.btn-quick-add-icon:active {
    transform: scale(0.95);
}

.product-info {
    text-align: center;
}

.product-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 5px;
    display: block;
}

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

.product-price {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-primary);
    display: none;
}

/* Mood Section */
.mood-section {
    height: 80vh;
    background: url(/assets/images/mood.jpg) no-repeat center center/cover;
    display: flex;

    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: #fff;
    margin-top: var(--spacing-section);
}

.mood-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

.mood-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.mood-content h2 {
    font-size: 3rem;
    font-style: italic;
    margin-bottom: 40px;
}

.business-cta {
    background: var(--text-primary);
    color: #fff;
    margin-top: var(--spacing-section);
}

.business-cta .section-subtitle {
    color: rgba(255,255,255,0.72);
}

.business-cta .section-title {
    color: #fff;
}

.business-cta .section-text {
    color: rgba(255,255,255,0.82);
}

.cta-actions {
    margin-top: 26px;
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn {
    min-width: 220px;
    text-align: center;
}

/* Footer */
.footer {
    background-color: #f5f5f5;
    padding: 100px 0 40px;
    margin-top: var(--spacing-section);
    display: flex;
    text-align: center;
}

.footer-grid {
    display: grid;
   
    gap: 40px;
    margin-bottom: 80px;
}

.footer-col h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 25px;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--text-primary);
}

.footer-social {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    justify-content: center;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 999px;
    color: var(--text-secondary);
    transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.footer-social a:hover {
    color: var(--text-primary);
    border-color: rgba(0,0,0,0.2);
    background-color: rgba(0,0,0,0.03);
}

.footer-social svg {
    display: block;
}

.newsletter p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    border-bottom: 1px solid var(--text-primary);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 0;
    outline: none;
    font-family: var(--font-body);
}

.newsletter-form button {
    background: transparent;
    border: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding-top: 40px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Icon */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.bar {
    width: 25px;
    height: 2px;
    background-color: currentColor; /* Inherit color from navbar */
    transition: all 0.3s ease;
}
