/* ========================================
   ReFashion — Brazilian Fashion E-commerce
   ======================================== */

:root {
    --black: #000;
    --white: #fff;
    --rose: #C2185B;
    --rose-light: #F8E8EE;
    --gold: #D4AF37;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --nav-height: 70px;
    --announcement-height: 36px;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--gray-900); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* Container */
.container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }

/* ========================================
   Announcement Bar
   ======================================== */
.announcement-bar {
    background: var(--black);
    color: var(--white);
    height: var(--announcement-height);
    display: flex;
    align-items: center;
    overflow: hidden;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.marquee {
    display: flex;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}
.marquee span { padding-right: 40px; }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    height: var(--nav-height);
    transition: all 0.3s ease;
}
.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.logo {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--black);
}
.logo span { font-style: italic; font-weight: 400; }
.nav-links {
    display: flex;
    gap: 32px;
}
.nav-links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--gray-700);
    transition: color 0.2s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--black);
    transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after { width: 100%; }
.nav-sale { color: var(--rose) !important; font-weight: 700 !important; }
.nav-icons { display: flex; gap: 16px; align-items: center; }
.nav-icons button {
    color: var(--gray-700);
    transition: color 0.2s;
    position: relative;
}
.nav-icons button:hover { color: var(--black); }
.cart-btn { position: relative; }
.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--rose);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { width: 22px; height: 1.5px; background: var(--black); transition: all 0.3s; }

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: calc(var(--nav-height) + var(--announcement-height));
    left: 0;
    right: 0;
    background: var(--white);
    padding: 32px 24px;
    z-index: 999;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.mobile-menu.active { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 20px; }
.mobile-menu a {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ========================================
   Hero
   ======================================== */
/* ========================================
   Hero Carousel (FashionNova-style)
   ======================================== */
.hero-carousel {
    position: relative;
    height: 92vh;
    min-height: 620px;
    max-height: 920px;
    overflow: hidden;
    background: var(--black);
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: all; z-index: 2; }
.hero-slide-bg {
    position: absolute;
    inset: 0;
}
.hero-slide-bg video,
.hero-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
}
.hero-slide-overlay-dark {
    background: rgba(0,0,0,0.65);
}
.hero-slide-content {
    position: relative;
    z-index: 3;
    padding: 0 80px;
    color: var(--white);
    max-width: 750px;
    animation: slideUp 0.8s ease-out;
}
.hero-slide-center {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
    padding: 0 40px;
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-tag {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--gold);
}
.hero-tag-rose { color: var(--rose); }
.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
}
.hero-headline em { font-weight: 400; font-style: italic; }
.hero-headline-promo {
    font-family: var(--font-body);
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}
.hero-headline-promo span {
    display: block;
    font-size: 0.4em;
    font-weight: 400;
    letter-spacing: 2px;
    margin-top: 8px;
    opacity: 0.85;
}
.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 36px;
    opacity: 0.9;
}
/* Hero Countdown */
.hero-countdown {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 24px 0 36px;
}
.hc-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 16px 20px;
    min-width: 75px;
}
.hc-num {
    font-family: var(--font-body);
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.hc-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 6px;
    opacity: 0.6;
}
.hc-sep {
    font-size: 32px;
    font-weight: 700;
    align-self: center;
    opacity: 0.4;
    animation: blink 1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }
/* Hero Buttons */
.btn-hero {
    display: inline-block;
    padding: 18px 52px;
    background: var(--white);
    color: var(--black);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: 2px solid var(--white);
    transition: all 0.35s ease;
}
.btn-hero:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.btn-hero-gold { background: var(--gold); border-color: var(--gold); color: var(--black); }
.btn-hero-gold:hover { background: transparent; color: var(--gold); }
.btn-hero-rose { background: var(--rose); border-color: var(--rose); color: var(--white); }
.btn-hero-rose:hover { background: transparent; color: var(--rose); }
/* Hero Navigation */
.hero-nav { position: absolute; inset: 0; z-index: 10; pointer-events: none; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; }
.hero-arrow {
    pointer-events: all;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
}
.hero-arrow:hover { background: rgba(255,255,255,0.25); transform: scale(1.1); }
.hero-dots {
    position: absolute;
    bottom: 56px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}
.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: 2px solid rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}
.hero-dot.active { background: var(--white); border-color: var(--white); transform: scale(1.2); }
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,0.15);
    z-index: 10;
}
.hero-progress-bar {
    height: 100%;
    background: var(--gold);
    width: 0%;
    transition: width 0.1s linear;
}

/* Hero Strip — 4 panels with video/image mix */
.hero-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 500px;
}
.strip-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.strip-item video,
.strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.strip-item:hover video,
.strip-item:hover img { transform: scale(1.06); }
.strip-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    color: var(--white);
}
.strip-overlay h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 4px;
}
.strip-overlay span {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0.85;
}
.strip-sale h3 { color: var(--rose); }
@media (max-width: 768px) {
    .hero-strip { grid-template-columns: repeat(2, 1fr); height: auto; }
    .strip-item { aspect-ratio: 3/4; }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 80px;
    color: var(--white);
    max-width: 700px;
}
.hero-tag {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--gold);
}
.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
}
.hero-content h1 em {
    font-weight: 400;
    font-style: italic;
}
.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 36px;
    opacity: 0.9;
}
.btn-primary {
    display: inline-block;
    padding: 16px 48px;
    background: var(--white);
    color: var(--black);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.btn-light { background: var(--white); color: var(--black); }
.btn-light:hover { background: var(--gold); color: var(--black); }

/* ========================================
   Section Headers
   ======================================== */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}
.section-subtitle {
    text-align: center;
    color: var(--gray-500);
    font-size: 15px;
    margin-bottom: 48px;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.section-header .section-title { text-align: left; margin-bottom: 0; }
.view-all {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-500);
    transition: color 0.2s;
}
.view-all:hover { color: var(--black); }

/* ========================================
   Category Grid
   ======================================== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 3/4;
}
.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.category-card:hover img { transform: scale(1.08); }
.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    color: var(--white);
}
.category-overlay h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 4px;
}
.category-overlay span {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}
.category-card:hover .category-overlay span {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Product Cards
   ======================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.product-card { position: relative; }
.product-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 3/4;
    background: var(--gray-100);
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}
.img-hover {
    position: absolute;
    inset: 0;
    opacity: 0;
}
.product-card:hover .img-primary { opacity: 0; }
.product-card:hover .img-hover { opacity: 1; }
.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
    border-radius: 2px;
}
.badge-sale { background: var(--rose); color: var(--white); }
.badge-new { background: var(--black); color: var(--white); }
.product-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.product-card:hover .product-actions { transform: translateY(0); }
.btn-add {
    width: 100%;
    padding: 12px;
    background: var(--black);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.2s;
    border-radius: 2px;
}
.btn-add:hover { background: var(--gray-800); }
.product-info { padding: 14px 0; }
.product-info h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
}
.product-price { display: flex; gap: 10px; align-items: center; }
.price-old {
    font-size: 13px;
    color: var(--gray-400);
    text-decoration: line-through;
}
.price-current {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
}
.product-colors {
    display: flex;
    gap: 6px;
    margin-top: 8px;
}
.color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1.5px solid var(--gray-200);
    cursor: pointer;
    transition: transform 0.2s;
}
.color-dot:hover { transform: scale(1.3); }
.dot-border { border: 1.5px solid var(--gray-300); }

/* ========================================
   Promo Banner
   ======================================== */
.promo-banner {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}
.promo-bg {
    position: absolute;
    inset: 0;
}
.promo-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.promo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}
.promo-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}
.promo-tag {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.promo-content h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.promo-sub {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 36px;
    opacity: 0.85;
}
.countdown {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}
.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: 4px;
    min-width: 80px;
}
.countdown-item span {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}
.countdown-item small {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
    opacity: 0.7;
}

/* ========================================
   Carousel
   ======================================== */
.carousel-wrapper {
    overflow: hidden;
    margin: 0 -12px;
}
.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
    padding: 0 12px;
}
.carousel-item {
    min-width: calc(25% - 18px);
    flex-shrink: 0;
}
.carousel-nav { display: flex; gap: 8px; }
.carousel-btn {
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--gray-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gray-600);
    transition: all 0.2s;
}
.carousel-btn:hover {
    border-color: var(--black);
    color: var(--black);
    background: var(--gray-50);
}

/* ========================================
   Lookbook
   ======================================== */
.lookbook-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    height: 700px;
}
.lookbook-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}
.lookbook-large { grid-row: 1 / -1; }
.lookbook-card img,
.lookbook-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.lookbook-card:hover img,
.lookbook-card:hover video { transform: scale(1.05); }
.lookbook-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px;
    color: var(--white);
}
.lookbook-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}
.lookbook-overlay h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
}
.btn-outline {
    display: inline-block;
    padding: 10px 28px;
    border: 1.5px solid var(--white);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s;
    width: fit-content;
}
.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}

/* ========================================
   Trust Badges
   ======================================== */
.trust-badges {
    background: var(--gray-50);
    padding: 60px 0;
}
.badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}
.trust-item svg {
    margin: 0 auto 12px;
    color: var(--gray-700);
}
.trust-item h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}
.trust-item p {
    font-size: 13px;
    color: var(--gray-500);
}

/* ========================================
   Newsletter
   ======================================== */
.newsletter {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}
.newsletter-bg {
    position: absolute;
    inset: 0;
}
.newsletter-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.newsletter-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}
.newsletter-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 560px;
    margin: 0 auto;
}
.newsletter-content h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 12px;
}
.newsletter-content h2 em { color: var(--gold); }
.newsletter-content p {
    font-size: 15px;
    opacity: 0.85;
    margin-bottom: 28px;
}
.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 480px;
    margin: 0 auto 16px;
}
.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    font-size: 14px;
    font-family: var(--font-body);
    outline: none;
    border-radius: 0;
}
.newsletter-form .btn-primary {
    padding: 16px 32px;
    background: var(--black);
    color: var(--white);
    white-space: nowrap;
}
.newsletter-form .btn-primary:hover {
    background: var(--rose);
}
.newsletter-form.submitted input { background: var(--gray-100); }
.newsletter-form.submitted .btn-primary { background: #2d7d2d; pointer-events: none; }
.newsletter-form.submitted .btn-primary::after { content: '✓'; }
.newsletter small {
    font-size: 12px;
    opacity: 0.6;
}

/* ========================================
   Instagram Grid
   ======================================== */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}
.insta-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 4px;
}
.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s, filter 0.4s;
}
.insta-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.8);
}
.insta-item::after {
    content: '';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s;
}
.insta-item:hover::after { opacity: 1; }

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 64px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-logo {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    display: inline-block;
    margin-bottom: 16px;
}
.footer-logo span { font-style: italic; font-weight: 400; }
.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-400);
    margin-bottom: 20px;
}
.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
    font-size: 14px;
    color: var(--gray-400);
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.social-links { display: flex; gap: 16px; }
.social-links a {
    color: var(--gray-400);
    transition: color 0.2s;
}
.social-links a:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 24px;
    text-align: center;
}
.payment-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
}
.payment-methods span {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    padding: 4px 12px;
    border: 1px solid var(--gray-700);
    border-radius: 4px;
}
.footer-bottom p {
    font-size: 12px;
    color: var(--gray-500);
}

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

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .carousel-item { min-width: calc(33.333% - 16px); }
    .lookbook-grid { height: 500px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .section { padding: 56px 0; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero-carousel { height: 75vh; min-height: 500px; }
    .hero-slide-content { padding: 0 24px; }
    .hero-slide-center { padding: 0 20px; }
    .hero-headline-promo { font-size: clamp(28px, 7vw, 48px); }
    .hc-item { padding: 10px 14px; min-width: 55px; }
    .hc-num { font-size: 28px; }
    .hero-arrow { width: 40px; height: 40px; font-size: 22px; }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .carousel-item { min-width: calc(50% - 12px); }
    .badges-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .lookbook-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    .lookbook-large { grid-row: auto; }
    .lookbook-card { aspect-ratio: 4/3; }
    .insta-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form input { border-radius: 4px; }
    .newsletter-form .btn-primary { border-radius: 4px; }
    .countdown-item { padding: 12px 16px; min-width: 60px; }
    .countdown-item span { font-size: 24px; }
    .promo-banner { padding: 60px 24px; }
}

@media (max-width: 480px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .product-info h4 { font-size: 13px; }
    .price-current { font-size: 14px; }
    .category-grid { gap: 8px; }
    .countdown { gap: 12px; }
}
