/* ==========================================================
   DarEst — Landing Page Styles
   Paleta: Negro/Blanco/Navy (inspirado en identidad DarEst)
   Tipografía: Playfair Display + Inter
   ========================================================== */

:root {
    --bg: #fcfcfc;
    --bg-alt: #f5f5f5;
    --text: #111111;
    --text-secondary: #555555;
    --text-light: #888888;
    --accent: #1a1f3d;
    --accent-light: #2d3561;
    --gold: #c5a55a;
    --border: #e0e0e0;
    --success: #008a44;
    --error: #d93025;
    --whatsapp: #25D366;
    --white: #ffffff;
    --black: #000000;
    --radius: 8px;
    --radius-lg: 12px;
    --transition: 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.15;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================
   Reveal Animation
   ========================================================== */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================
   Navbar
   ========================================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.navbar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    padding: 0 24px;
    overflow: visible;
}

.logo {
    height: 68px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition);
}

.logo:hover {
    transform: scale(1.03);
}

/* ==========================================================
   Hero
   ========================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    background: #000;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 0;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 70vh;
    animation: heroFadeIn 1.5s ease-out;
}

.hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

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

.hero-badge {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 20px;
    margin-bottom: 24px;
    color: var(--gold);
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
    color: var(--white);
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin: 0;
    color: rgba(255,255,255,0.85);
}

.btn-hero {
    display: inline-block;
    background: var(--white);
    color: var(--accent);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 16px 48px;
    border: 1px solid var(--white);
    transition: all var(--transition);
}

.btn-hero:hover {
    background: transparent;
    color: var(--white);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 12px;
    position: relative;
}

.hero-scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.7);
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50%      { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

/* ==========================================================
   Marquee
   ========================================================== */
.marquee-bar {
    background: var(--black);
    color: var(--white);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}

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

.marquee-content {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    flex-shrink: 0;
}

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

/* ==========================================================
   Product Section
   ========================================================== */
.product-section {
    padding: 80px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Gallery */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 100px;
}

.main-image-wrapper {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--bg-alt);
    border: 1px solid var(--border);
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s ease;
}

/* Product Details */
.product-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.brand-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.product-title {
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
}

.product-reviews {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.stars {
    color: #F59E0B;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-score {
    font-weight: 600;
    font-size: 0.95rem;
}

.review-count {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Price */
.price-block {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.current-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
}

.original-price {
    font-size: 1.1rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.discount-badge {
    background: var(--error);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Color Selector inside gallery */
#gallery-color-selector {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
}

/* Color Selector */
.color-selector h3,
.bundle-selector h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.color-selector h3 span {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.color-swatches {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
}

.color-swatch {
    flex: 1 1 0;
    min-width: 0;
    aspect-ratio: 1 / 1;
    max-width: 40px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    padding: 0;
}

.color-swatch:hover {
    transform: scale(1.1);
}

.color-swatch.active {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--accent);
}

/* Bundle Selector */
.bundle-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bundle-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.bundle-card:hover {
    border-color: var(--text-light);
}

.bundle-card.active {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}

.bundle-card.recommended {
    border-color: var(--success);
    background: #f4fbf7;
}

.bundle-card.recommended.active {
    box-shadow: 0 0 0 1px var(--success);
}

.bundle-badge {
    position: absolute;
    top: -10px;
    right: 12px;
    background: var(--success);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.bundle-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bundle-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.bundle-meta {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.bundle-right {
    text-align: right;
}

.bundle-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
}

.bundle-old-price {
    font-size: 0.78rem;
    color: var(--text-light);
    text-decoration: line-through;
}

/* Product Description & Specs */
.product-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.spec-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* Buy Button */
.btn-buy {
    width: 100%;
    padding: 20px;
    background: var(--accent);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--accent);
    transition: all var(--transition);
}

.btn-buy:hover {
    background: var(--white);
    color: var(--accent);
}

.trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.transportadoras {
    margin-top: 12px;
    width: 100%;
}

.transportadoras img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    object-fit: cover;
}

/* Product Carousel (auto-scroll arriba de transportadoras) */
.product-carousel {
    margin-top: 28px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--bg-alt);
}

.product-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.product-carousel-slide {
    flex: 0 0 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.product-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.product-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
}

.product-carousel-dot.active {
    background: #fff;
    width: 24px;
    border-radius: 4px;
}

/* ==========================================================
   How It Works (3 pasos)
   ========================================================== */
.how-it-works {
    padding: 36px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.how-it-works .section-heading {
    margin-bottom: 24px;
}

.hiw-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: nowrap;
}

.hiw-step {
    flex: 1;
    text-align: center;
    padding: 20px 16px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}

.hiw-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.hiw-num {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hiw-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--white);
    color: var(--accent);
    margin: 4px auto 10px;
    box-shadow: var(--shadow-sm);
}

.hiw-step h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
}

.hiw-step p {
    font-size: 0.83rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.hiw-arrow {
    align-self: center;
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 300;
    flex-shrink: 0;
}

/* ==========================================================
   Detalle Section
   ========================================================== */
.detalle-section {
    padding: 0;
    background: var(--bg-alt);
}

.detalle-img {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
}

/* ==========================================================
   Video Showcase
   ========================================================== */
.video-showcase {
    background: var(--black);
    color: var(--white);
    padding: 100px 0;
}

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

.showcase-text h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 24px;
    line-height: 1.1;
    color: var(--white);
}

.showcase-text p {
    font-size: 1.05rem;
    color: #aaaaaa;
    margin-bottom: 32px;
    line-height: 1.7;
}

.btn-showcase {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 14px 36px;
    transition: all var(--transition);
}

.btn-showcase:hover {
    background: var(--white);
    color: var(--black);
}

.showcase-video-wrapper {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 9/16;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

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

/* ==========================================================
   Testimonials
   ========================================================== */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg);
}

.section-heading {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text);
}

.testimonials-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
}

.testimonials-carousel::-webkit-scrollbar {
    height: 4px;
}

.testimonials-carousel::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

.testimonial-card {
    flex: 0 0 320px;
    scroll-snap-align: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-photo {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.testimonial-body {
    padding: 20px;
}

.testimonial-stars {
    color: #F59E0B;
    font-size: 1rem;
    margin-bottom: 8px;
}

.testimonial-text {
    font-style: italic;
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.5;
}

.testimonial-author {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text);
}

.testimonial-verified {
    font-size: 0.78rem;
    color: var(--success);
    font-weight: 500;
}

/* ==========================================================
   Footer
   ========================================================== */
.footer {
    padding: 60px 0 40px;
    text-align: center;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    height: 76px;
    width: auto;
}

.footer p {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.footer-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--text-light) !important;
}

.footer-trust {
    margin-top: 6px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    padding: 14px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    width: 100%;
    max-width: 480px;
}

.footer-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.2px;
}

.footer-trust-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

.footer-legal {
    margin-top: 6px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.footer-legal a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.footer-copy {
    margin-top: 8px;
    font-size: 0.78rem !important;
    color: var(--text-light) !important;
}

/* ==========================================================
   Sticky CTA (Mobile)
   ========================================================== */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 14px;
    left: 14px;
    right: 14px;
    width: auto;
    z-index: 90;
    transform: translateY(calc(100% + 14px));
    transition: transform 0.4s ease;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

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

@keyframes sticky-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.72; }
}

.btn-sticky {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 14px 20px;
    background: var(--accent);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.3;
    animation: sticky-blink 1.8s ease-in-out infinite;
}

.btn-sticky small {
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    opacity: 0.85;
}

/* ==========================================================
   WhatsApp Float
   ========================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 95;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ==========================================================
   Modal Checkout
   ========================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}

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

.modal {
    background: var(--white);
    width: 100%;
    max-width: 540px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform var(--transition);
}

.modal-overlay.open .modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 1.8rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color var(--transition);
    z-index: 2;
    background: none;
    border: none;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text);
}

.modal-header {
    padding: 24px 28px 16px;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.modal-header h3 {
    font-size: 1.4rem;
    margin-bottom: 6px;
    color: var(--text);
}

.modal-header p {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.modal-trust-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: 14px;
    padding: 10px 12px;
    background: #f6f9f3;
    border: 1px solid #dcead0;
    border-radius: var(--radius);
}

.modal-trust-strip .mts-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #2e6b1e;
    white-space: nowrap;
}

.modal-trust-strip .mts-item strong {
    font-size: 1rem;
    line-height: 1;
}

@media (max-width: 480px) {
    .modal-trust-strip {
        gap: 6px 10px;
        padding: 8px 10px;
    }
    .modal-trust-strip .mts-item {
        font-size: 0.72rem;
    }
}

.modal-body {
    padding: 20px 28px 28px;
}

/* Order Summary */
.order-summary {
    display: flex;
    gap: 14px;
    padding: 14px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.summary-thumb img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: var(--radius);
}

.summary-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}

.summary-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
}

.summary-color {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.summary-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
}

.summary-price-row span:first-child {
    font-weight: 700;
    font-size: 1.05rem;
}

.summary-free-shipping {
    font-size: 0.75rem;
    color: var(--success);
    font-weight: 600;
}

/* Modal Bundles */
.modal-bundles {
    margin-bottom: 16px;
}

.modal-bundles h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-bundle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.modal-bundle-btn {
    padding: 10px 8px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
}

.modal-bundle-btn:hover {
    border-color: var(--text-light);
}

.modal-bundle-btn.active {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--white);
}

.modal-bundle-btn small {
    display: block;
    font-weight: 400;
    font-size: 0.72rem;
    margin-top: 2px;
}

/* Modal Sizes */
.modal-sizes {
    margin-bottom: 20px;
}

.modal-sizes h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.size-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.size-row label {
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 4px;
    display: block;
    color: var(--text);
}

.size-row select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--white);
    transition: border var(--transition);
    appearance: auto;
}

.size-row select:focus {
    outline: none;
    border-color: var(--accent);
}

/* Checkout Form */
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
}

.optional {
    font-weight: 400;
    color: var(--text-light);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--bg);
    transition: all var(--transition);
    appearance: auto;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 1px var(--accent);
}

.form-group input::placeholder {
    color: #aaa;
}

.field-error {
    font-size: 0.75rem;
    color: var(--error);
    display: none;
}

.required {
    color: var(--error);
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--accent) 0%, #2a3055 100%);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    margin-top: 6px;
    box-shadow: 0 4px 12px rgba(26, 31, 61, 0.25);
}

.btn-submit:hover {
    background: linear-gradient(135deg, #2a3055 0%, var(--accent) 100%);
    box-shadow: 0 6px 20px rgba(26, 31, 61, 0.4);
    transform: translateY(-1px);
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1.4;
}

/* ==========================================================
   Responsive
   ========================================================== */
@media (max-width: 768px) {
    .navbar-inner {
        height: 56px;
    }

    .logo {
        height: 46px;
    }

    .hero {
        height: 68vh;
        min-height: 440px;
        max-height: 620px;
    }

    .hero-badge {
        font-size: 0.72rem;
        padding: 6px 14px;
        margin-bottom: 16px;
        letter-spacing: 2px;
    }

    .hero-title {
        letter-spacing: 1px;
        margin-bottom: 14px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .product-gallery {
        position: static;
    }

    .product-title {
        font-size: 1.8rem;
    }


    .showcase-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .showcase-text {
        order: 1;
    }

    .showcase-video-wrapper {
        order: 2;
        max-width: 300px;
    }

    .testimonial-card {
        flex: 0 0 280px;
    }

    .testimonial-photo {
        height: 300px;
    }

    /* Show sticky CTA on mobile */
    .sticky-cta {
        display: block;
    }

    .whatsapp-float {
        bottom: 24px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }

    .sticky-cta.visible ~ .whatsapp-float {
        bottom: 94px;
    }

    /* Modal responsive */
    .modal {
        max-height: 95vh;
        border-radius: var(--radius) var(--radius) 0 0;
        align-self: flex-end;
    }

    .modal-body {
        padding: 16px 20px 24px;
    }

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

    .modal-bundle-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-logo {
        height: 60px;
    }

    .trust-badges {
        flex-direction: column;
        gap: 6px;
    }

    /* Cómo Funciona en columna */
    .hiw-grid {
        flex-direction: column;
        gap: 18px;
        max-width: 360px;
    }

    .hiw-arrow {
        transform: rotate(90deg);
        font-size: 1.2rem;
    }

    .hiw-step {
        padding: 16px 14px;
    }

    /* Countdown más compacto */
    .offer-countdown {
        width: 100%;
        justify-content: center;
        padding: 10px 12px;
    }

    .offer-text {
        font-size: 0.75rem;
    }

    .timer-block {
        min-width: 34px;
        padding: 4px 6px;
    }

    /* Garantía */
    .guarantee-badge {
        padding: 12px 14px;
        gap: 10px;
    }

    .guarantee-text strong {
        font-size: 0.85rem;
    }

    .guarantee-text span {
        font-size: 0.72rem;
    }

    /* FAQ */
    .faq-item summary {
        padding: 16px 18px;
        font-size: 0.92rem;
    }

    .faq-answer {
        padding: 16px 18px 18px;
    }

    /* Checkout progress */
    .cp-label {
        font-size: 0.65rem;
    }

    .cp-circle {
        width: 26px;
        height: 26px;
        font-size: 0.78rem;
    }

    .cp-bar {
        max-width: 50px;
    }

    /* Size guide modal: tabla scrolleable */
    .size-table {
        font-size: 0.85rem;
    }

    .size-table th,
    .size-table td {
        padding: 10px 10px;
    }

    /* Lightbox controles más cerca */
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-nav {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {


    .thumbnail-row {
        gap: 8px;
    }

    .thumb {
        width: 64px;
        height: 80px;
    }

    .hero {
        height: 64vh;
        min-height: 400px;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .hero-subtitle {
        font-size: 0.92rem;
    }

    .btn-hero {
        padding: 14px 32px;
        font-size: 0.85rem;
    }

    .price-block {
        gap: 10px;
    }

    .current-price {
        font-size: 1.5rem;
    }
}

/* ==========================================================
   Countdown Timer (oferta)
   ========================================================== */
.offer-countdown {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: linear-gradient(135deg, #fff7e6, #fff1d6);
    border: 1px solid rgba(197, 165, 90, 0.45);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    color: #6b4e00;
    flex-wrap: wrap;
}

.offer-countdown svg {
    color: #b88a14;
    flex-shrink: 0;
}

.offer-text {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.offer-timer {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.timer-block {
    background: var(--accent);
    color: var(--white);
    border-radius: 6px;
    padding: 4px 8px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    min-width: 38px;
    justify-content: center;
}

.timer-block b {
    font-size: 0.95rem;
    line-height: 1;
}

.timer-block small {
    font-size: 0.6rem;
    opacity: 0.75;
    text-transform: lowercase;
    font-weight: 500;
}

.timer-sep {
    color: var(--accent);
    font-weight: 700;
    font-size: 1rem;
}

/* ==========================================================
   Size Guide Link
   ========================================================== */
.size-guide-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
    background: none;
    border: none;
    color: var(--accent);
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(26, 31, 61, 0.3);
    text-underline-offset: 3px;
    cursor: pointer;
    padding: 4px 0;
    transition: color var(--transition);
}

.size-guide-link:hover {
    color: var(--gold);
    text-decoration-color: var(--gold);
}

.color-selector h3 {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

/* Size Guide Modal */
.size-guide-modal {
    max-width: 600px;
}

.size-table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
}

.size-table thead {
    background: var(--accent);
    color: var(--white);
}

.size-table th,
.size-table td {
    padding: 12px 14px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.size-table th {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.size-table tbody tr:nth-child(even) {
    background: var(--bg-alt);
}

.size-table tbody tr:last-child td {
    border-bottom: none;
}

.size-table td:first-child {
    background: rgba(197, 165, 90, 0.08);
    font-weight: 700;
    color: var(--accent);
}

.size-table-note {
    font-size: 0.78rem;
    color: var(--text-light);
    text-align: center;
    margin: 10px 4px 0;
    line-height: 1.5;
    font-style: italic;
}

.size-tips h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.size-tips ul {
    list-style: none;
    padding: 0;
}

.size-tips li {
    padding: 6px 0 6px 22px;
    position: relative;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.size-tips li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 6px;
    color: var(--success);
    font-weight: 700;
}

/* ==========================================================
   Guarantee Badge (cerca del CTA)
   ========================================================== */
.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: linear-gradient(135deg, #f4fbf7, #eaf6ef);
    border: 1px solid rgba(0, 138, 68, 0.25);
    border-radius: var(--radius);
    margin-top: -4px;
}

.guarantee-icon {
    flex-shrink: 0;
    color: var(--success);
}

.guarantee-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.guarantee-text strong {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: #1b5e20;
    letter-spacing: 0.2px;
}

.guarantee-text span {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

/* ==========================================================
   FAQ Section
   ========================================================== */
.faq-section {
    padding: 80px 0;
    background: var(--bg-alt);
}

.faq-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 580px;
    margin: -24px auto 36px;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow var(--transition), border-color var(--transition);
}

.faq-item[open] {
    box-shadow: var(--shadow-sm);
    border-color: var(--accent);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    font-family: 'Inter', sans-serif;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    transition: color var(--transition);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-alt);
    color: var(--accent);
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 400;
    transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item[open] summary::after {
    content: '−';
    background: var(--accent);
    color: var(--white);
    transform: rotate(180deg);
}

.faq-item summary:hover {
    color: var(--accent);
}

.faq-answer {
    padding: 0 22px 20px;
    border-top: 1px solid var(--border);
    margin-top: -1px;
    padding-top: 16px;
}

.faq-answer p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.faq-answer a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.faq-answer a:hover {
    color: var(--gold);
}

.faq-cta {
    text-align: center;
    margin-top: 36px;
}

.faq-cta p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.faq-wa-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    background: var(--whatsapp);
    color: var(--white) !important;
    font-weight: 600;
    border-radius: 999px;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.faq-wa-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ==========================================================
   Lightbox
   ========================================================== */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-overlay.open {
    display: flex;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius);
    animation: lightboxIn 0.3s ease;
}

@keyframes lightboxIn {
    from { opacity: 0; transform: scale(0.96); }
    to   { opacity: 1; transform: scale(1); }
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    transition: background var(--transition);
    z-index: 2;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    transition: background var(--transition);
    z-index: 2;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.28);
}

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

.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Cursor zoom hint sobre la imagen principal */
.main-image {
    cursor: zoom-in;
}

/* ==========================================================
   Color swatch label (mobile-friendly tooltip)
   ========================================================== */
.color-swatch::after {
    content: attr(data-name);
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 5;
    font-family: 'Inter', sans-serif;
}

.color-swatch:hover::after,
.color-swatch:focus::after,
.color-swatch.active::after {
    opacity: 1;
}

/* ==========================================================
   Buy button shimmer (call-attention sutil)
   ========================================================== */
.btn-buy {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn-buy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: skewX(-20deg);
    z-index: 1;
    animation: shimmer 4s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0%, 60%   { left: -75%; }
    100%      { left: 130%; }
}

@keyframes pulseRing {
    0%   { box-shadow: 0 0 0 0 rgba(26, 31, 61, 0.5); }
    70%  { box-shadow: 0 0 0 14px rgba(26, 31, 61, 0); }
    100% { box-shadow: 0 0 0 0 rgba(26, 31, 61, 0); }
}

/* ==========================================================
   Checkout Progress Bar
   ========================================================== */
.checkout-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    padding: 8px 0 4px;
}

.cp-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.cp-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-alt);
    border: 2px solid var(--border);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.cp-step.active .cp-circle {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.cp-step.completed .cp-circle {
    background: var(--success);
    border-color: var(--success);
    color: var(--white);
    font-size: 0;
}

.cp-step.completed .cp-circle::after {
    content: '✓';
    font-size: 0.95rem;
    line-height: 1;
}

.cp-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cp-step.active .cp-label,
.cp-step.completed .cp-label {
    color: var(--accent);
}

.cp-bar {
    flex: 1;
    height: 3px;
    background: var(--border);
    border-radius: 2px;
    margin-bottom: 22px;
    overflow: hidden;
    max-width: 70px;
}

.cp-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--accent);
    transition: width 0.4s ease;
}

/* ==========================================================
   Stock Alert (escasez junto al selector de color)
   ========================================================== */
.stock-alert {
    margin-top: 16px;
    padding: 10px 14px;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.06), rgba(255, 152, 0, 0.08));
    border: 1px solid rgba(211, 47, 47, 0.2);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
}

.stock-alert-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: #8a2020;
    margin-bottom: 8px;
}

.stock-alert-text strong {
    color: #b71c1c;
    font-weight: 700;
}

.stock-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #e53935;
    box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.7);
    animation: stockPulse 1.6s ease-out infinite;
    flex-shrink: 0;
}

@keyframes stockPulse {
    0%   { box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.7); }
    70%  { box-shadow: 0 0 0 8px rgba(229, 57, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(229, 57, 53, 0); }
}

.stock-bar {
    height: 6px;
    width: 100%;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 3px;
    overflow: hidden;
}

.stock-bar-fill {
    height: 100%;
    width: 50%;
    background: linear-gradient(90deg, #e53935, #ff7043);
    border-radius: 3px;
    transition: width 0.5s ease;
}

/* ==========================================================
   Social Proof Toast (prueba social flotante)
   ========================================================== */
.social-proof-toast {
    position: fixed;
    top: 24px;
    left: 24px;
    z-index: 1500;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 38px 12px 12px;
    max-width: 340px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
    font-family: 'Inter', sans-serif;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.social-proof-toast.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.toast-thumb {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-alt);
}

.toast-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.toast-body {
    flex: 1;
    min-width: 0;
}

.toast-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 2px;
    line-height: 1.2;
}

.toast-text {
    font-size: 0.78rem;
    color: #555;
    margin: 0 0 2px;
    line-height: 1.3;
}

.toast-text strong {
    color: var(--text);
    font-weight: 600;
}

.toast-verified {
    color: #2e7d32;
    font-weight: 600;
    font-size: 0.72rem;
}

.toast-time {
    font-size: 0.7rem;
    color: #999;
    margin: 0;
}

.toast-close {
    position: absolute;
    top: 6px;
    right: 8px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #aaa;
    cursor: pointer;
    padding: 2px 6px;
    line-height: 1;
    transition: color 0.2s;
}

.toast-close:hover {
    color: var(--text);
}

@media (max-width: 480px) {
    .social-proof-toast {
        left: 12px;
        right: 12px;
        top: 12px;
        max-width: none;
    }
}
