/* ========================================
   CHICCUERO LUXURY DESIGN SYSTEM
   Enhanced CSS for Modern E-commerce
   Inspired by premium brands, exceeding Mokobara
   ======================================== */

/* === MOKOBARA-STYLE HEADER === */
.header-mokobara {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid #f0f0f0;
}

/* Announcement Bar - Mokobara Style */
.announcement-bar-mokobara {
    background: #000000;
    color: #ffffff;
    padding: 10px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 400;
    transition: all 0.3s ease;
    overflow: hidden;
}

.announcement-text {
    display: flex;
    align-items: center;
    gap: 12px;
}

.announcement-text .separator {
    opacity: 0.5;
}

.announcement-close-mokobara {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 4px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.announcement-close-mokobara:hover {
    opacity: 1;
}

/* Main Header */
.header-mokobara-main {
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

/* DESKTOP: Logo left | Nav center | Icons right */
.header-mokobara-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    height: 70px;
}

/* Left: Logo */
.header-mokobara-logo {
    justify-self: start;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-mokobara-logo-img {
    height: 54px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
}

.header-mokobara-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #000000;
    font-weight: 400;
}

.header-mokobara.scrolled .header-mokobara-logo-img {
    height: 44px;
}

/* Center: Nav */
.header-mokobara-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Hamburger — hidden on desktop */
.menu-toggle-mokobara {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #000000;
    align-items: center;
    justify-content: center;
}

/* Left wrapper — unused on desktop, hidden */
.header-mokobara-left {
    display: none;
}

/* Desktop-only row — not used */
.header-mokobara-nav-desktop {
    display: none;
}

.header-mokobara-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-mokobara-link {
    text-decoration: none;
    color: #000000;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease, opacity 0.3s ease;
    white-space: nowrap;
}

.header-mokobara-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #c12329;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-mokobara-link:hover::after,
.header-mokobara-link.active::after {
    width: 100%;
}

.header-mokobara-link:hover {
    color: #c12329;
    opacity: 1;
}

.header-mokobara-link.active {
    color: #c12329;
}

/* Right: Icons */
.header-mokobara-icons {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-mokobara-icon-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: #000000;
    padding: 8px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.header-mokobara-icon-btn:hover {
    opacity: 0.6;
}

.header-mokobara-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #000000;
    color: #ffffff;
    font-size: 9px;
    font-weight: 600;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* Account Dropdown - Mokobara Style */
.header-mokobara-account {
    position: relative;
}

.account-dropdown-mokobara {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 1001;
}

.header-mokobara-account:hover .account-dropdown-mokobara {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.account-dropdown-link {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #000000;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: background 0.2s ease;
    border-bottom: 1px solid #f5f5f5;
}

.account-dropdown-link:last-child {
    border-bottom: none;
}

.account-dropdown-link:hover {
    background: #fafafa;
}

.account-dropdown-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 8px 0;
}

/* Scrolled State */
.header-mokobara.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    /* Switch to: Hamburger | Logo (center) | Icons */

    /* Hide desktop nav links, show only hamburger */
    .header-mokobara-links {
        display: none;
    }

    /* Show hamburger button */
    .menu-toggle-mokobara {
        display: flex;
    }

    /* Reorder grid using CSS order: hamburger(nav)=1 | logo=2 | icons=3 */
    .header-mokobara-nav {
        order: 1;
        justify-self: start;
    }

    .header-mokobara-logo {
        order: 2;
        justify-self: center;
    }

    .header-mokobara-icons {
        order: 3;
    }

    /* 3-col grid: nav(auto) | logo(1fr) | icons(auto) */
    .header-mokobara-container {
        padding: 0 20px;
        height: 60px;
        grid-template-columns: auto 1fr auto;
    }

    .announcement-bar-mokobara {
        padding: 8px 20px;
        font-size: 10px;
    }

    .header-mokobara-icons {
        gap: 12px;
    }

    .header-mokobara-logo-text {
        font-size: 20px;
    }

    .header-mokobara-logo-img {
        height: 44px;
    }
}

@media (max-width: 768px) {
    .header-mokobara-container {
        height: 56px;
    }
    
    .announcement-bar-mokobara {
        padding: 8px 16px;
        font-size: 9px;
    }
    
    .announcement-text {
        gap: 8px;
    }
    
    .header-mokobara-icons {
        gap: 10px;
    }
    
    .header-mokobara-icon-btn {
        padding: 6px;
    }
    
    .header-mokobara-logo-img {
        height: 54px;
    }
    
    .header-mokobara-logo-text {
        font-size: 18px;
    }
}

/* === OLD HEADER STYLES (Keep for backward compatibility) === */
.announcement-bar {
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 10px 20px;
    text-align: center;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.announcement-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.announcement-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--primary-white);
    cursor: pointer;
    padding: 5px;
    transition: opacity 0.3s ease;
}

.announcement-close:hover {
    opacity: 0.7;
}

.announcement-bar.hidden {
    height: 0;
    padding: 0;
    opacity: 0;
    overflow: hidden;
}

/* === ENHANCED HEADER === */
.header {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-container {
    padding: 0 40px;
    max-width: 1800px;
}

.header-left {
    gap: 30px;
}

.header-left a {
    position: relative;
    padding: 8px 0;
}

.header-left a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-black);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-left a:hover::after {
    width: 100%;
}

.header-logo-img {
    height: 44px;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .header-logo-img {
    height: 36px;
}

.header-right {
    gap: 28px;
}

/* Enhanced Badge Animation */
.header-badge {
    animation: badgePulse 2s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* === SCROLL REVEAL ANIMATIONS === */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-on-scroll.delay-1 { transition-delay: 0.1s; }
.reveal-on-scroll.delay-2 { transition-delay: 0.2s; }
.reveal-on-scroll.delay-3 { transition-delay: 0.3s; }
.reveal-on-scroll.delay-4 { transition-delay: 0.4s; }

/* === LUXURY PRODUCT CARD === */
.product-card-luxury {
    position: relative;
    background: var(--primary-white);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-luxury:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.product-card-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--gray-light);
}

.product-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-card-image-secondary {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-luxury:hover .product-card-image-secondary {
    opacity: 1;
}

.product-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 6px 12px;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    z-index: 2;
}

.product-card-badge.sale {
    background: #c53030;
}

.product-card-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: var(--primary-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.product-card-luxury:hover .product-card-wishlist {
    opacity: 1;
    transform: translateY(0);
}

.product-card-wishlist:hover {
    transform: scale(1.1);
}

.product-card-wishlist.active svg {
    fill: var(--primary-black);
    stroke: var(--primary-black);
}

.product-card-quick-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-luxury:hover .product-card-quick-actions {
    opacity: 1;
    transform: translateY(0);
}

.product-card-quick-add {
    width: 100%;
    padding: 12px;
    background: var(--primary-white);
    border: none;
    color: var(--primary-black);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-card-quick-add:hover {
    background: var(--primary-black);
    color: var(--primary-white);
}

.product-card-info {
    padding: 16px;
}

.product-card-title {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: var(--primary-black);
    line-height: 1.4;
}

.product-card-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-card-price-current {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-black);
}

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

.product-card-discount {
    font-size: 12px;
    color: #c53030;
    font-weight: 500;
}

/* === COLLECTION CARD (MOKOBARA-STYLE) === */
.collection-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/5;
}

.collection-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.collection-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 50%);
    transition: background 0.4s ease;
}

.collection-card:hover .collection-card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%);
}

.collection-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    color: var(--primary-white);
}

.collection-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.collection-card-subtitle {
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.9;
}

.collection-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-white);
    color: var(--primary-black);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-card:hover .collection-card-cta {
    opacity: 1;
    transform: translateY(0);
}

.collection-card-cta:hover {
    background: var(--primary-black);
    color: var(--primary-white);
}

/* === SECTION HEADINGS === */
.section-heading {
    text-align: center;
    margin-bottom: 48px;
}

.section-heading-subtitle {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray-text);
    margin-bottom: 12px;
    font-weight: 400;
}

.section-heading-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--primary-black);
}

.section-heading-description {
    font-size: 16px;
    color: var(--gray-text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-heading-divider {
    width: 60px;
    height: 1px;
    background: var(--primary-black);
    margin: 24px auto 0;
}

/* === RESPONSIVE GRID LAYOUTS === */
.grid-collections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 40px;
}

.grid-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 40px;
}

/* === EDITORIAL SECTION === */
.editorial-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    max-width: 1800px;
    margin: 80px auto;
    overflow: hidden;
}

.editorial-image {
    position: relative;
    overflow: hidden;
}

.editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.editorial-image:hover img {
    transform: scale(1.05);
}

.editorial-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    background: var(--gray-light);
}

.editorial-label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray-text);
    margin-bottom: 20px;
}

.editorial-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-black);
}

.editorial-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 32px;
}

.editorial-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--primary-black);
    color: var(--primary-white);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.editorial-cta:hover {
    background: var(--gray-text);
    transform: translateX(8px);
}

/* === HORIZONTAL SCROLL CAROUSEL === */
.carousel-section {
    position: relative;
    padding: 60px 0;
}

.carousel-container {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    display: flex;
    gap: 24px;
    padding: 0 40px;
    scroll-behavior: smooth;
}

.carousel-track .product-card-luxury {
    flex: 0 0 calc(25% - 18px);
    scroll-snap-align: start;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--primary-white);
    border: 1px solid var(--gray-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

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

.carousel-nav.prev { left: 20px; }
.carousel-nav.next { right: 20px; }

/* === INSTAGRAM FEED SECTION === */
.instagram-section {
    padding: 80px 0;
    background: var(--gray-light);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 40px;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

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

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

.instagram-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.instagram-item-overlay svg {
    width: 32px;
    height: 32px;
    color: var(--primary-white);
}

/* =========================================================
   PREMIUM FOOTER — ChicCuero
========================================================= */

.footer-luxury {
    background: #0a0a0a;
    color: #fff;
    font-family: inherit;
}

/* ---- Newsletter Strip ---- */
.footer-newsletter-strip {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 64px 40px;
}

.footer-newsletter-strip-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
}

.footer-newsletter-eyebrow {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 14px;
}

.footer-newsletter-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.2;
}

.footer-newsletter-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin: 0;
}

.footer-newsletter-form {
    width: 100%;
}

.footer-newsletter-input-wrap {
    display: flex;
    border: 1px solid rgba(255,255,255,0.18);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.footer-newsletter-input-wrap:focus-within {
    border-color: rgba(255,255,255,0.5);
}

.footer-newsletter-input {
    flex: 1;
    padding: 16px 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
    outline: none;
    letter-spacing: 0.3px;
}

.footer-newsletter-input::placeholder {
    color: rgba(255,255,255,0.35);
}

.footer-newsletter-btn {
    padding: 16px 28px;
    background: #fff;
    color: #0a0a0a;
    border: none;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.footer-newsletter-btn:hover {
    background: #e0e0e0;
}

.footer-newsletter-privacy {
    margin-top: 12px;
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    line-height: 1.6;
}

.footer-newsletter-privacy a {
    color: rgba(255,255,255,0.5);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-newsletter-message {
    font-size: 12px;
    margin-top: 10px;
}

/* ---- Main Body ---- */
.footer-body {
    padding: 72px 40px 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-body-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
    align-items: start;
}

/* ---- Brand Column ---- */
.footer-brand-col {
    display: flex;
    flex-direction: column;
}

.footer-logo-link {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 24px;
}

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

.footer-logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 400;
}

.footer-brand-desc {
    font-size: 13.5px;
    line-height: 1.85;
    color: rgba(255,255,255,0.48);
    margin: 0 0 32px;
    max-width: 240px;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.footer-social-link:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255,255,255,0.05);
}

/* ---- Nav Columns Grid ---- */
.footer-nav-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer-nav-heading {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    margin: 0 0 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 13.5px;
    transition: color 0.25s ease;
    display: inline-block;
    line-height: 1.5;
}

.footer-links a:hover {
    color: #fff;
}

/* Contact list with icons */
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 12px;
}

.footer-contact-list span {
    color: rgba(255,255,255,0.5);
    font-size: 13.5px;
}

.footer-contact-icon {
    margin-top: 2px;
    color: rgba(255,255,255,0.35);
    flex-shrink: 0;
}

/* Trust Badges */
.footer-trust {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: rgba(255,255,255,0.38);
    letter-spacing: 0.3px;
}

.footer-trust-item svg {
    color: rgba(255,255,255,0.35);
    flex-shrink: 0;
}

/* ---- Footer Bottom Bar ---- */
.footer-bottom {
    padding: 22px 40px;
    background: #050505;
}

.footer-bottom-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-bottom-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.3px;
}

.footer-bottom-legal {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}

.footer-bottom-legal a {
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.25s;
}

.footer-bottom-legal a:hover {
    color: rgba(255,255,255,0.75);
}

.footer-bottom-sep {
    color: rgba(255,255,255,0.15);
    font-size: 14px;
}

.footer-bottom-payments {
    display: flex;
    gap: 8px;
    align-items: center;
}

.footer-payment-icon {
    width: 40px;
    height: auto;
    border-radius: 3px;
    opacity: 0.75;
    transition: opacity 0.25s;
}

.footer-payment-icon:hover {
    opacity: 1;
}

/* === BACK TO TOP BUTTON === */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary-black);
    color: var(--primary-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* === LOADING SKELETON === */
.skeleton {
    background: linear-gradient(90deg, var(--gray-light) 25%, #e8e8e8 50%, var(--gray-light) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
}

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

/* === TOAST NOTIFICATIONS === */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    background: var(--primary-white);
    border: 1px solid var(--gray-border);
    padding: 16px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    animation: toast-slide-in 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.removing {
    animation: toast-slide-out 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes toast-slide-in {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toast-slide-out {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1200px) {
    .grid-products {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .carousel-track .product-card-luxury {
        flex: 0 0 calc(33.333% - 16px);
    }
}

@media (max-width: 992px) {
    .grid-collections {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .editorial-section {
        grid-template-columns: 1fr;
    }
    
    .editorial-content {
        padding: 60px 40px;
    }
    
    .footer-luxury-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-body-inner {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .footer-nav-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 32px;
    }

    .footer-newsletter-strip-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }
    
    .grid-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0 20px;
    }
    
    .grid-collections {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 20px;
    }
    
    .section-heading-title {
        font-size: 32px;
    }
    
    .editorial-title {
        font-size: 36px;
    }
    
    .carousel-track .product-card-luxury {
        flex: 0 0 calc(50% - 12px);
    }
    
    .footer-luxury-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-newsletter-strip,
    .footer-body {
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-bottom {
        padding-left: 20px;
        padding-right: 20px;
        flex-direction: column;
        gap: 14px;
        text-align: left;
    }

    .footer-nav-columns {
        grid-template-columns: 1fr 1fr;
        gap: 36px 20px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .footer-bottom-payments {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .grid-products {
        grid-template-columns: 1fr;
    }
    
    .carousel-track .product-card-luxury {
        flex: 0 0 calc(80%);
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
