/* ========================================
   ACCEZZ — Landing Page Styles
   Visual Identity: Digital Native + TikTok Aesthetic
   ======================================== */

/* ---------- CSS Variables ---------- */
:root {
    /* Colors — Distinctive palette */
    --ink: #0A0A0F;
    --ink-light: #12121A;
    --ink-mid: #1A1A2E;
    --signal: #FF2D7B;
    --signal-dark: #E6196B;
    --electric: #9D4EDD;
    --mist: #8A8A9A;
    --paper: #FAFAFA;
    --white: #FFFFFF;
    
    /* Legacy aliases */
    --black: var(--ink);
    --black-light: var(--ink-light);
    --pink: var(--signal);
    --pink-dark: var(--signal-dark);
    --purple: var(--electric);
    --gray: var(--mist);
    --gray-dark: var(--ink-mid);
    --gold: #FFD700;
    
    /* Gradients */
    --gradient-signal: linear-gradient(135deg, #FF2D7B, #9D4EDD);
    --gradient-dark: linear-gradient(180deg, var(--ink), var(--ink-light));
    --gradient-glow: radial-gradient(ellipse at center, rgba(255, 45, 123, 0.15) 0%, transparent 70%);
    
    /* Typography — Outfit + Inter + JetBrains Mono */
    --font-display: 'Outfit', 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', 'Space Mono', monospace;
    
    /* Legacy font aliases */
    --font-heading: var(--font-display);
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-width: 1200px;
    --gap: 24px;
    
    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: all 0.4s var(--ease-out);
    --transition-fast: all 0.2s var(--ease-out);
    --transition-slow: all 0.6s var(--ease-out);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(255, 45, 123, 0.08);
    --shadow-md: 0 4px 20px rgba(255, 45, 123, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
    --glow: 0 0 30px rgba(255, 45, 123, 0.3);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Loader ---------- */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loader-z {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--signal);
    position: relative;
}

.loader-z::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-signal);
    transform: scaleX(0);
    transform-origin: left;
    animation: loaderLine 1s var(--ease-out) forwards;
}

@keyframes loaderLine {
    to { transform: scaleX(1); }
}

.loader-bar {
    width: 120px;
    height: 2px;
    background: var(--ink-mid);
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar-fill {
    width: 0;
    height: 100%;
    background: var(--gradient-signal);
    animation: loaderFill 1.2s var(--ease-out) forwards;
}

@keyframes loaderFill {
    to { width: 100%; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

/* ---------- Header ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-md);
}

.nav {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--signal);
    background: var(--black-light);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--signal);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 2px;
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-signal);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--signal);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-icon {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: var(--transition);
}

.btn-icon:hover {
    color: var(--signal);
    background: rgba(255, 45, 123, 0.1);
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--signal);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 2001;
}

.btn-menu span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    transform-origin: center;
}

.btn-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.btn-menu.active span:nth-child(2) {
    opacity: 0;
}

.btn-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero Section ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

/* Signature diagonal line */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 15%;
    width: 1px;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(255, 45, 123, 0.3) 30%,
        rgba(255, 45, 123, 0.3) 70%,
        transparent 100%
    );
    transform: rotate(15deg);
    transform-origin: top center;
    pointer-events: none;
}

/* Ambient glow */
.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 45, 123, 0.08) 0%, transparent 60%);
    pointer-events: none;
    filter: blur(60px);
}

.hero-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 45, 123, 0.08);
    border: 1px solid rgba(255, 45, 123, 0.2);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--signal);
    margin-bottom: 32px;
    animation: fadeInUp 0.6s var(--ease-out);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--signal);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s var(--ease-out) 0.1s both;
}

.gradient-text {
    background: var(--gradient-signal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--mist);
    margin-bottom: 40px;
    max-width: 480px;
    line-height: 1.7;
    animation: fadeInUp 0.6s var(--ease-out) 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s var(--ease-out) 0.3s both;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    animation: fadeInUp 0.6s var(--ease-out) 0.4s both;
}

.hero-social-proof p {
    color: var(--mist);
    font-size: 0.95rem;
}

.hero-social-proof strong {
    color: var(--white);
}

.avatars {
    display: flex;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--ink);
    border: 2px solid var(--ink);
    margin-left: -10px;
}

.avatar:first-child {
    margin-left: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-signal);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 45, 123, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 45, 123, 0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
    border-color: var(--signal);
    color: var(--signal);
    background: rgba(255, 45, 123, 0.05);
}

.btn-secondary {
    background: var(--ink-light);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    border-color: var(--signal);
    color: var(--signal);
}

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

.btn-outline:hover {
    background: var(--signal);
    color: var(--white);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

.stat-label i {
    color: var(--gold);
    font-size: 0.75rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s var(--ease-out) 0.3s both;
}

.hero-product-showcase {
    position: relative;
    width: 380px;
    height: 400px;
}

.showcase-card {
    position: absolute;
    background: var(--ink-light);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.showcase-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 45, 123, 0.2);
    box-shadow: 0 12px 40px rgba(255, 45, 123, 0.15);
}

.showcase-main {
    width: 240px;
    padding: 24px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.showcase-main:hover {
    transform: translate(-50%, -52%);
}

.showcase-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(255, 45, 123, 0.1), rgba(157, 78, 221, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--signal);
}

.showcase-icon.small {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}

.showcase-label {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 4px;
}

.showcase-price {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--signal);
    text-align: center;
}

.showcase-price-sm {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--signal);
    text-align: center;
    margin-top: 8px;
}

.showcase-float-1 {
    width: 120px;
    padding: 16px;
    top: 20px;
    right: 20px;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.showcase-float-2 {
    width: 110px;
    padding: 14px;
    bottom: 40px;
    left: 10px;
    z-index: 2;
    animation: float 3s ease-in-out infinite 0.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 45, 123, 0.12) 0%, transparent 60%);
    filter: blur(40px);
    z-index: 0;
}
    top: 30px;
    right: 30px;
    background: var(--signal);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.product-price {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--signal);
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 45, 123, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
}

/* ---------- Marquee ---------- */
.marquee {
    background: var(--gradient-signal);
    padding: 15px 0;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    gap: 60px;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

/* ---------- Sections ---------- */
.section {
    padding: var(--section-padding);
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 45, 123, 0.06);
    border: 1px solid rgba(255, 45, 123, 0.15);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--signal);
    margin-bottom: 20px;
    letter-spacing: 0.03em;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto;
}

/* ---------- Products ---------- */
.products-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--black-light);
    border: 1px solid var(--gray-dark);
    color: var(--gray);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--signal);
    border-color: var(--signal);
    color: var(--white);
}

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

.product-card {
    position: relative;
    background: var(--ink-light);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

/* Signature scan line effect */
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 45, 123, 0.03) 2px,
        rgba(255, 45, 123, 0.03) 4px
    );
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    z-index: 1;
}

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

/* Scan line animation on hover */
.product-card::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(255, 45, 123, 0.1),
        transparent
    );
    transition: none;
    pointer-events: none;
    z-index: 2;
}

.product-card:hover::after {
    animation: scanLine 1.5s ease-in-out infinite;
}

@keyframes scanLine {
    0% { top: -50%; }
    100% { top: 150%; }
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 45, 123, 0.2);
    box-shadow: 0 8px 32px rgba(255, 45, 123, 0.15);
}

.product-card .product-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}
.product-card .product-placeholder {
    font-size: 3rem;
    transition: var(--transition);
}

.product-card:hover .product-placeholder {
    transform: scale(1.05);
}

.product-actions {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

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

.btn-wishlist,
.btn-quick-view {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--black);
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-wishlist:hover {
    background: var(--signal);
}

.btn-quick-view:hover {
    background: var(--purple);
}

.product-badge.hot { background: #FF4444; }
.product-badge.new { background: var(--signal); }
.product-badge.sale { background: var(--gold); color: var(--black); }

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

.product-category {
    font-size: 0.8rem;
    color: var(--signal);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin: 8px 0;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 12px;
}

.product-rating i {
    font-size: 0.75rem;
    color: var(--gold);
}

.product-rating span {
    font-size: 0.8rem;
    color: var(--gray);
    margin-left: 5px;
}

.product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--signal);
}

.product-price-old {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--gray);
    text-decoration: line-through;
    margin-left: 8px;
}

.btn-add-cart {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-signal);
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-add-cart:hover {
    transform: scale(1.1);
    box-shadow: var(--glow);
}

.products-cta {
    text-align: center;
    margin-top: 50px;
}

/* ---------- Trends ---------- */
.trends {
    background: var(--gradient-dark);
}

.trends-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.trends-content .section-tag {
    margin-bottom: 20px;
}

.trends-content .section-title {
    text-align: left;
}

.trends-content .section-subtitle {
    text-align: left;
    margin: 0 0 40px 0;
}

.tiktok-card {
    background: var(--black);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 400px;
}

.tiktok-video {
    position: relative;
    height: 300px;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1A1A2E, #2D2D44);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--signal);
}

.video-overlay {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.7);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
}

.video-views {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tiktok-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
}

.tiktok-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-signal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
}

.tiktok-info h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.tiktok-info p {
    font-size: 0.85rem;
    color: var(--gray);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--black-light);
    border: 1px solid var(--gray-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-link.tiktok:hover {
    background: #000;
    border-color: #000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
}

.social-link.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

/* Phone Mockup */
.trends-visual {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: var(--black);
    border-radius: 40px;
    border: 8px solid var(--gray-dark);
    position: relative;
    overflow: hidden;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--black-light);
    position: relative;
}

.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
}

.phone-time {
    font-size: 0.85rem;
    font-weight: 600;
}

.phone-notch {
    width: 80px;
    height: 24px;
    background: var(--black);
    border-radius: 0 0 16px 16px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.phone-content {
    padding: 20px;
}

.phone-video {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.video-placeholder-phone {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1A1A2E, #2D2D44);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--signal);
}

.phone-sidebar {
    position: absolute;
    right: 16px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
}

.sidebar-item i {
    font-size: 1.5rem;
}

/* ---------- Benefits ---------- */
.benefits {
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.benefit-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--ink-light);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: rgba(255, 45, 123, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(255, 45, 123, 0.08);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(255, 45, 123, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--signal);
}

.benefit-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--mist);
    line-height: 1.5;
}

/* ---------- Newsletter ---------- */
.newsletter {
    padding: 80px 0;
}

.newsletter-card {
    background: var(--gradient-signal);
    border-radius: 24px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.newsletter-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 12px;
}

.newsletter-content p {
    font-size: 1.05rem;
    opacity: 0.9;
}

.newsletter-form .form-group {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    font-family: var(--font-body);
}

.newsletter-form .btn {
    white-space: nowrap;
}

.newsletter-form .btn-primary {
    background: var(--black);
}

.newsletter-form .btn-primary:hover {
    background: var(--black-light);
}

.form-note {
    font-size: 0.85rem;
    margin-top: 12px;
    opacity: 0.8;
}

/* ---------- Nosotros ---------- */
.nosotros {
    background: var(--gradient-dark);
    padding: 100px 0;
}

.nosotros-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.nosotros-content .section-tag {
    margin-bottom: 20px;
}

.nosotros-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.nosotros-text {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.nosotros-values {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-item i {
    width: 48px;
    height: 48px;
    background: rgba(255, 45, 123, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--signal);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.value-item h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 4px;
}

.value-item p {
    font-size: 0.9rem;
    color: var(--gray);
}

.nosotros-visual {
    display: flex;
    justify-content: center;
}

.nosotros-card {
    background: var(--black-light);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    max-width: 380px;
}

.nosotros-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--black-light), var(--gray-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--signal);
    margin-bottom: 24px;
}

.nosotros-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    text-align: center;
}

.nos-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nos-stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.nos-stat-label {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--gray);
    margin: 20px 0;
    max-width: 300px;
}

.footer-brand .social-links {
    margin-top: 0;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--gray);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--signal);
}

.footer-links li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links li i {
    color: var(--signal);
    width: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--gray);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 0.85rem;
    color: var(--gray);
}

.footer-legal a:hover {
    color: var(--signal);
}

/* ---------- Product Modal ---------- */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.9);
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
}

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

.product-modal-content {
    background: var(--ink-light);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.06);
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    transform: scale(0.95);
    transition: var(--transition);
}

.product-modal.active .product-modal-content {
    transform: scale(1);
}

.product-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--ink);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
}

.product-modal-close:hover {
    background: var(--signal);
    border-color: var(--signal);
}

.product-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.product-modal-image {
    position: relative;
}

.product-modal-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--signal);
}

.product-modal-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.product-modal-category {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--signal);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.product-modal-name {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.product-modal-desc {
    color: var(--mist);
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
}

.product-modal-price {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 700;
    color: var(--signal);
    margin-bottom: 16px;
}

.product-modal-stock {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--green);
    margin-bottom: 32px;
}

.stock-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
}

.product-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (max-width: 768px) {
    .product-modal-body {
        grid-template-columns: 1fr;
    }
    
    .product-modal-image {
        height: 250px;
    }
    
    .product-modal-info {
        padding: 24px;
    }
    
    .product-modal-name {
        font-size: 1.5rem;
    }
}

/* ---------- Cart Sidebar ---------- */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: var(--black);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transition: var(--transition-slow);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-header h3 {
    font-family: var(--font-heading);
}

.btn-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-close:hover {
    color: var(--signal);
    background: rgba(255, 45, 123, 0.1);
}

.cart-content {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
}

.cart-empty i {
    font-size: 3rem;
    color: var(--gray-dark);
    margin-bottom: 20px;
}

.cart-empty p {
    color: var(--gray);
    margin-bottom: 24px;
}

/* Cart Items */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--black-light);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--gray-dark), var(--black));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--signal);
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-info h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--signal);
    font-weight: 600;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--black);
    border-radius: 6px;
    padding: 4px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: none;
    background: var(--black-light);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--signal);
}

.qty-value {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    min-width: 24px;
    text-align: center;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    font-size: 0.8rem;
    padding: 4px;
    transition: var(--transition);
}

.cart-item-remove:hover {
    color: #FF4444;
}

.btn-clear-cart {
    background: none;
    border: 1px solid var(--gray-dark);
    color: var(--gray);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 12px;
}

.btn-clear-cart:hover {
    border-color: #FF4444;
    color: #FF4444;
}

.cart-footer {
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.total-price {
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--signal);
}

/* ---------- Mobile Menu ---------- */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 2000;
    padding: 24px;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.mobile-nav-links a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.mobile-nav-links a:hover {
    color: var(--signal);
    padding-left: 8px;
}

.mobile-social {
    display: flex;
    gap: 16px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-social a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--black-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* ---------- Overlay ---------- */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

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

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

/* ---------- Scroll Reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

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

.product-card.reveal {
    transition-delay: calc(var(--index, 0) * 0.1s);
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .product-card.reveal {
        transition-delay: 0s;
    }
}

/* ---------- Checkout Modal ---------- */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
}

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

.checkout-content {
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(30px) scale(0.95);
    transition: var(--transition);
}

.checkout-modal.active .checkout-content {
    transform: translateY(0) scale(1);
}

.checkout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    background: var(--black);
    z-index: 1;
}

.checkout-header h2 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
}

.checkout-body {
    padding: 24px;
}

.checkout-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.checkout-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--black-light);
    border-radius: 12px;
}

.checkout-item-img {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--gray-dark), var(--black));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--signal);
    flex-shrink: 0;
}

.checkout-item-info {
    flex: 1;
    min-width: 0;
}

.checkout-item-info h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.checkout-item-meta {
    display: flex;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--gray);
}

.checkout-item-price {
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--signal);
    font-size: 1rem;
    white-space: nowrap;
}

.checkout-summary {
    background: var(--black-light);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.95rem;
}

.summary-row.total {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 8px;
    padding-top: 16px;
    font-size: 1.15rem;
    font-weight: 700;
}

.summary-row.total span:last-child {
    color: var(--signal);
    font-family: var(--font-mono);
}

.checkout-shipping,
.checkout-payment {
    margin-bottom: 24px;
}

.checkout-shipping h3,
.checkout-payment h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    background: var(--black-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--signal);
    box-shadow: 0 0 0 3px rgba(255, 45, 123, 0.15);
}

.form-group input::placeholder {
    color: var(--gray-dark);
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--black-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.payment-option:hover {
    border-color: rgba(255, 45, 123, 0.3);
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option input[type="radio"]:checked + .payment-icon {
    background: var(--signal);
    color: var(--white);
}

.payment-option:has(input:checked) {
    border-color: var(--signal);
    background: rgba(255, 45, 123, 0.05);
}

.payment-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--signal);
    flex-shrink: 0;
    transition: var(--transition);
}

.payment-option span:last-child {
    font-size: 0.95rem;
}

.checkout-footer {
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    bottom: 0;
    background: var(--black);
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.total-amount {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--signal);
}

.btn-pay {
    padding: 18px;
    font-size: 1.05rem;
}

.checkout-secure {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Success modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
}

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

.success-content {
    background: var(--black);
    border: 1px solid rgba(255, 45, 123, 0.2);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    max-width: 420px;
    transform: scale(0.9);
    transition: var(--transition);
}

.success-modal.active .success-content {
    transform: scale(1);
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #00C853, #00E676);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.success-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.success-content p {
    color: var(--gray);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.success-order-id {
    font-family: var(--font-mono);
    color: var(--signal);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-subtitle {
        margin: 0 auto 40px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .nosotros-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .nosotros-content .section-title {
        text-align: center;
    }
    
    .nosotros-visual {
        order: -1;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trends-layout {
        grid-template-columns: 1fr;
    }
    
    .trends-content {
        text-align: center;
    }
    
    .trends-content .section-title,
    .trends-content .section-subtitle {
        text-align: center;
    }
    
    .newsletter-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .nav-links {
        display: none;
    }
    
    .btn-menu {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter-card {
        padding: 40px 24px;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 20px auto;
    }
    
    .footer-brand .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
    
    .checkout-content {
        max-height: 100vh;
        border-radius: 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkout-item {
        flex-wrap: wrap;
    }
}
/* ---------- Field Validation ---------- */
.field-error {
    display: block;
    font-size: 0.8rem;
    color: var(--signal);
    margin-top: 6px;
    animation: fadeInUp 0.3s var(--ease-out);
}

.checkout-shipping input:focus {
    border-color: var(--signal) !important;
    box-shadow: 0 0 0 3px rgba(255, 45, 123, 0.15);
}

/* ---------- Product Image ---------- */
.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

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