/**
 * Stylofy Final - CSS
 * Colores marca: #f3f0eb, #000000, #1c065d, #a4688c
 * Colores temporada: #4e3414, #f0efeb, #810220
 */

/* ============================================
   VARIABLES
   ============================================ */
:root {
    /* Marca */
    --color-cream: #f3f0eb;
    --color-black: #000000;
    --color-violet: #1c065d;
    --color-blue: #0D6EFF;

    /* Temporada */
    --color-brown: #4e3414;
    --color-cream-light: #f0efeb;
    --color-wine: #810220;

    /* UI */
    --bg-dark: #050505;
    --bg-card: #0f0f0f;
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    --border: #27272a;

    /* Accent */
    --accent: var(--color-blue);
    --accent-glow: rgba(13, 110, 255, 0.4);

    /* Font */
    --font: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-main);
    background: var(--bg-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    font-family: var(--font);
    border: none;
    background: none;
}

/* ============================================
   STICKY CTA
   ============================================ */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    width: 90%;
    max-width: 400px;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    padding: 12px 16px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.sticky-cta.visible {
    transform: translateX(-50%) translateY(0);
}

.sticky-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sticky-logo {
    width: 36px;
    height: 36px;
}

.sticky-text {
    display: flex;
    flex-direction: column;
}

.sticky-name {
    font-size: 14px;
    font-weight: 700;
}

.sticky-tagline {
    font-size: 11px;
    color: var(--text-muted);
}

.sticky-btn {
    background: var(--accent);
    color: white;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: 0 0 20px var(--accent-glow);
}

.sticky-btn:hover {
    transform: scale(1.05);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomSlow 25s ease-in-out infinite alternate;
}

@keyframes zoomSlow {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(5, 5, 5, 0.3) 0%,
        rgba(5, 5, 5, 0.5) 50%,
        rgba(5, 5, 5, 1) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.title-accent {
    color: var(--color-blue);
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: #d1d5db;
    margin-bottom: 2rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Store Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 24px;
    border-radius: 14px;
    transition: var(--transition);
}

.store-btn:hover {
    background: white;
    color: black;
}

.store-icon {
    width: 28px;
    height: 28px;
}

.store-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.store-label {
    font-size: 11px;
    opacity: 0.7;
}

.store-name {
    font-size: 16px;
    font-weight: 600;
}

/* Social Proof */
.hero-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.proof-icon {
    width: 18px;
    height: 18px;
    color: white;
    opacity: 0.7;
}

.proof-value {
    font-size: 15px;
    font-weight: 600;
    color: white;
}

.proof-divider {
    width: 1px;
    height: 30px;
    background: var(--border);
}

/* ============================================
   BRANDS MARQUEE
   ============================================ */
.brands {
    padding: 35px 0;
    background: var(--bg-dark);
    overflow: hidden;
    position: relative;
}

.brands-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--bg-dark) 0%, transparent 10%, transparent 90%, var(--bg-dark) 100%);
    z-index: 2;
    pointer-events: none;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 50s linear infinite;
}

.brand-group {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 40px;
}

.brand-item {
    font-size: 20px;
    font-weight: 600;
    color: #444;
    letter-spacing: 0.1em;
    white-space: nowrap;
    transition: all 0.3s;
    cursor: default;
}

.brand-item:hover {
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.brand-dot {
    width: 10px;
    height: 10px;
    color: var(--color-blue);
    opacity: 0.4;
    flex-shrink: 0;
}

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

/* ============================================
   SECTION DIVIDER
   ============================================ */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border) 50%, transparent 100%);
}

/* ============================================
   GENERATOR SECTION
   ============================================ */
.section-generator {
    padding: 100px 20px;
    background: var(--bg-dark);
}

.generator-container {
    max-width: 900px;
    margin: 0 auto;
}

.generator-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    background: linear-gradient(to right, #fff, #a1a1aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Search Bar */
.search-bar-wrapper {
    max-width: 700px;
    margin: 0 auto 32px;
}

.search-bar {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 8px 8px 8px 24px;
    transition: var(--transition);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.search-bar:focus-within {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 70px rgba(13, 110, 255, 0.2);
}

.search-icon {
    width: 24px;
    height: 24px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.search-icon svg {
    width: 100%;
    height: 100%;
}

.search-input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 16px;
    font-family: inherit;
    padding: 12px 16px;
    outline: none;
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-btn {
    padding: 14px 32px;
    background: var(--accent);
    color: white;
    font-weight: 600;
    font-size: 15px;
    border-radius: 100px;
    transition: var(--transition);
    box-shadow: 0 0 20px var(--accent-glow);
}

.search-btn:hover {
    transform: scale(1.05);
}

/* Occasion Chips */
.occasion-chips {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.chips-label {
    font-size: 14px;
    color: var(--text-muted);
}

.occasion-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-main);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
}

.occasion-chip:hover {
    border-color: var(--accent);
}

.occasion-chip.active {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
}

.chip-icon {
    width: 18px;
    height: 18px;
    opacity: 0.7;
}

.occasion-chip.active .chip-icon {
    opacity: 1;
}

/* Generator Loader */
.generator-loader {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 80px 0;
    color: var(--text-muted);
    font-size: 15px;
}

.generator-loader.active {
    display: flex;
}

.loader-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Look Results */
.looks-results {
    min-height: 400px;
}

.look-result {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.look-result.active {
    display: grid;
}

.look-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    animation: fadeInUp 0.5s ease backwards;
}

.look-card:nth-child(1) { animation-delay: 0.1s; }
.look-card:nth-child(2) { animation-delay: 0.2s; }
.look-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.look-card:hover {
    border-color: var(--color-blue);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.look-image {
    overflow: hidden;
}

.look-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s;
}

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

.look-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px 8px;
}

.look-name {
    font-size: 15px;
    font-weight: 600;
}

.look-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-blue);
}

.look-items {
    padding: 0 20px 16px;
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   PROBADOR VIRTUAL (TRYON) - INTERACTIVE
   ============================================ */
.section-tryon {
    padding: 100px 20px;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(13, 110, 255, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, #0a0a0a 0%, var(--bg-dark) 100%);
}

.tryon-container {
    max-width: 1100px;
    margin: 0 auto;
}

.tryon-header {
    text-align: center;
    margin-bottom: 48px;
}

.tryon-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(to right, #fff, #a1a1aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tryon-subtitle {
    font-size: 17px;
    color: var(--text-muted);
}

/* Arena Layout - Model in center, clothes around */
.tryon-arena {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto 1fr auto;
    grid-template-areas:
        "top top top"
        "left center right"
        "bottom bottom bottom";
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

/* Wardrobe Zones */
.wardrobe-zone {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.zone-title {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.zone-items {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 10px 0;
}

.zone-top {
    grid-area: top;
}

.zone-left {
    grid-area: left;
    justify-self: end;
}

.zone-left .zone-items {
    flex-direction: column;
    gap: 24px;
}

.zone-right {
    grid-area: right;
    justify-self: start;
}

.zone-right .zone-items {
    flex-direction: column;
    gap: 24px;
}

.zone-bottom {
    grid-area: bottom;
}

/* Model / Drop Zone (Center) */
.tryon-model {
    grid-area: center;
    position: relative;
    width: 280px;
    aspect-ratio: 1/2;
    background: linear-gradient(145deg, rgba(13, 110, 255, 0.05) 0%, rgba(0,0,0,0.3) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.tryon-model.drag-over {
    border-color: var(--accent);
    box-shadow: 0 0 80px var(--accent-glow), 0 25px 80px rgba(0, 0, 0, 0.4);
    transform: scale(1.02);
}

.model-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.model-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: transparent;
}

.model-placeholder svg {
    width: 140px;
    height: 140px;
    color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.model-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 110, 255, 0.2);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}

.tryon-model.drag-over .model-overlay {
    opacity: 1;
}

.model-overlay svg {
    width: 48px;
    height: 48px;
    color: white;
}

.model-overlay span {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

/* Applied Items Overlay */
.applied-items {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.applied-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    color: #1a1a1a;
    animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.applied-item .item-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.2);
}

/* Look Tag */
.look-tag {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
}

.look-tag-count {
    font-weight: 700;
    color: white;
}

.look-tag-price {
    font-weight: 700;
    color: var(--accent);
}

/* Reset Button */
.reset-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: #666;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.reset-btn:hover {
    background: #ef4444;
    color: white;
    transform: rotate(-180deg);
}

.reset-btn svg {
    width: 18px;
    height: 18px;
}

/* Clothing Item */
.clothing-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    background: transparent;
    border: none;
    cursor: grab;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}

.clothing-item:hover {
    transform: translateY(-6px) scale(1.1);
}

.clothing-item:hover .item-preview {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.clothing-item:hover .item-name {
    opacity: 1;
    transform: translateY(0);
}

.clothing-item:active {
    cursor: grabbing;
    transform: scale(0.9);
}

.clothing-item.selected .item-preview {
    box-shadow: 0 0 0 3px var(--accent), 0 15px 40px rgba(13, 110, 255, 0.3);
}

.clothing-item.dragging {
    opacity: 0.3;
    transform: scale(0.85);
}

.item-preview {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: cover;
    background: rgba(255, 255, 255, 0.05);
}

.clothing-item.active .item-preview {
    box-shadow: 0 0 0 3px var(--accent), 0 15px 40px rgba(13, 110, 255, 0.3);
}

.result-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-name {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    opacity: 0;
    transition: all 0.2s ease;
}

.clothing-item.selected .item-name {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    color: var(--accent);
}

/* Responsive */
@media (max-width: 900px) {
    .tryon-arena {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto auto;
        grid-template-areas:
            "top"
            "center"
            "left"
            "right"
            "bottom";
        gap: 24px;
    }

    .tryon-model {
        width: 320px;
        margin: 0 auto;
    }

    .zone-left .zone-items,
    .zone-right .zone-items {
        flex-direction: row;
    }

    .wardrobe-zone {
        padding: 0 10px;
    }

    .zone-items {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .tryon-model {
        width: 280px;
    }

    .item-preview {
        width: 54px;
        height: 54px;
    }

    .zone-items {
        gap: 16px;
    }
}

/* ============================================
   UGC TESTIMONIALS
   ============================================ */
.section-ugc {
    padding: 100px 20px;
    background: var(--bg-dark);
}

.ugc-container {
    max-width: 1000px;
    margin: 0 auto;
}

.ugc-header {
    text-align: center;
    margin-bottom: 60px;
}

.ugc-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(to right, #fff, #a1a1aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ugc-subtitle {
    font-size: 17px;
    color: var(--text-muted);
}

.ugc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ugc-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.ugc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.15);
}

.ugc-video {
    position: relative;
    aspect-ratio: 9/16;
    overflow: hidden;
}

.ugc-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ugc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 50%);
}

.ugc-user {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
}

.ugc-handle {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 8px;
}

.ugc-quote {
    font-size: 16px;
    font-weight: 500;
    color: white;
    line-height: 1.4;
}

/* ============================================
   BUSCADOR AVANZADO
   ============================================ */
.section-search {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0a0a0a 100%);
}

.search-container {
    max-width: 1000px;
    margin: 0 auto;
}

.search-header {
    text-align: center;
    margin-bottom: 60px;
}

.search-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(to right, #fff, #a1a1aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.search-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

/* Smart Cards */
.search-card.smart-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    cursor: pointer;
}

.search-card.smart-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.search-card-img {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: #0a0a0f;
}

.search-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s;
}

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

.search-card-info {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.search-card-info h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
}

.search-card-info p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

/* Floating UI: Search Bar */
.floating-ui-search {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 16px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 85%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.search-icon-small {
    width: 16px;
    height: 16px;
    color: #666;
    flex-shrink: 0;
}

.typing-text {
    color: #333;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Floating UI: Scanner */
.scanner-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ff3b3b, transparent);
    box-shadow: 0 0 20px rgba(255, 59, 59, 0.8), 0 0 40px rgba(255, 59, 59, 0.5);
    animation: scanMove 2s infinite linear;
}

@keyframes scanMove {
    0% { top: 0%; opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.match-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #00ff88;
    color: #000;
    padding: 8px 14px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 12px;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.4);
}

.match-tag svg {
    width: 14px;
    height: 14px;
}

/* Floating UI: Brand Connector */
.brand-connector {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-badge {
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 10px 16px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.connector-plus {
    width: 32px;
    height: 32px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 20px var(--accent-glow);
}

/* Floating UI: Event Badge */
.event-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 10px 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.event-date {
    font-size: 11px;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
}

.event-name {
    font-size: 14px;
    color: #000;
    font-weight: 700;
}

/* ============================================
   BENTO FEATURES
   ============================================ */
.section-bento {
    padding: 100px 20px;
    background: linear-gradient(180deg, #0a0a0a 0%, var(--bg-dark) 100%);
}

.bento-container {
    max-width: 1100px;
    margin: 0 auto;
}

.bento-header {
    text-align: center;
    margin-bottom: 60px;
}

.bento-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(to right, #fff, #a1a1aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bento-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px 24px;
    transition: var(--transition);
    text-align: center;
}

.bento-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(13, 110, 255, 0.15);
}

.bento-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(13, 110, 255, 0.2) 0%, rgba(13, 110, 255, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.bento-card:hover .bento-icon {
    background: var(--accent);
    transform: scale(1.1);
}

.bento-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
    transition: var(--transition);
}

.bento-card:hover .bento-icon svg {
    color: white;
}

.bento-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.bento-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Bento Responsive */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bento-card {
        padding: 24px 20px;
    }

    .bento-icon {
        width: 48px;
        height: 48px;
    }

    .bento-icon svg {
        width: 24px;
        height: 24px;
    }

    .bento-card h3 {
        font-size: 16px;
    }

    .bento-card p {
        font-size: 13px;
    }
}

/* ============================================
   FINAL CTA
   ============================================ */
.section-final-cta {
    position: relative;
    padding: 120px 20px;
    text-align: center;
    overflow: hidden;
}

.final-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(13, 110, 255, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(28, 6, 93, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(13, 110, 255, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}

.final-cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-accent {
    color: var(--accent);
}

.final-cta-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.download-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 28px;
    background: white;
    color: black;
    border-radius: 16px;
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.download-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.download-btn .store-icon {
    width: 32px;
    height: 32px;
}

.download-btn .store-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.download-btn .store-label {
    font-size: 11px;
    opacity: 0.6;
}

.download-btn .store-name {
    font-size: 18px;
    font-weight: 700;
}

/* UGC & Search Responsive */
@media (max-width: 900px) {
    .ugc-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .search-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .ugc-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

    .search-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .search-card-img {
        height: 240px;
    }

    .search-card-info {
        padding: 14px;
    }

    .search-card-info h3 {
        font-size: 14px;
    }

    .search-card-info p {
        font-size: 11px;
    }

    .floating-ui-search {
        padding: 8px 12px;
        width: 90%;
    }

    .typing-text {
        font-size: 11px;
    }

    .brand-badge {
        padding: 6px 10px;
        font-size: 10px;
    }

    .connector-plus {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #000;
    padding: 100px 20px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.footer-logo {
    width: 70px;
    height: 70px;
    margin-bottom: 28px;
}

.footer-claim {
    font-size: clamp(28px, 5vw, 38px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 32px;
    background: linear-gradient(180deg, #fff 0%, #666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

.social-link:hover {
    background: white;
    color: black;
    transform: translateY(-2px);
}

.social-link svg {
    width: 16px;
    height: 16px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-col h4 {
    color: var(--text-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col a {
    display: block;
    color: #888;
    margin-bottom: 12px;
    font-size: 14px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .store-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-proof {
        flex-direction: column;
        gap: 16px;
    }

    .proof-divider {
        width: 40px;
        height: 1px;
    }

    .look-result {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

    .occasion-chips {
        gap: 8px;
    }

    .occasion-chip {
        padding: 10px 16px;
        font-size: 13px;
    }

    .footer-main {
        flex-direction: column;
        gap: 48px;
    }

    .footer-links {
        gap: 40px;
    }

    .footer-claim {
        font-size: 36px;
    }

    .brand-item {
        font-size: 16px;
    }

    .brand-group {
        gap: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 480px) {
    .generator-title {
        font-size: 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 32px;
    }
}
