/*
Theme Name: Coffe Time's Custom Theme
Theme URI: http://localhost/coffetimesgt
Author: Antigravity
Author URI: https://github.com/google-deepmind
Description: Tema espectacular e interactivo de una sola página para la venta de café Coffe Time's, diseñado especialmente para el mercado guatemalteco con colores vivos típicos y modismos chapines.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: coffetimesgt
*/

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* --- Design Tokens --- */
:root {
    /* Guatemalan Vivid Palette */
    --color-morado: #6c2a96;       /* Deep Highland Purple */
    --color-morado-light: #8e44ad;
    --color-naranja: #ff6f00;      /* Warm Roasting Orange */
    --color-naranja-light: #ff9100;
    --color-rojo: #d50000;         /* Coffee Cherry Red */
    --color-rojo-light: #ff1744;
    --color-verde: #00897b;        /* Lush Coffee Mountain Green */
    --color-verde-light: #26a69a;
    
    /* Metallic Accents */
    --color-gold: #d4af37;
    --color-gold-hover: #f3e5ab;
    
    /* Neutrals */
    --color-bg-dark: #0f0907;       /* Rich Dark Coffee Pod */
    --color-bg-card: rgba(26, 17, 13, 0.7); /* Translucent Coffee Bean */
    --color-bg-input: rgba(40, 28, 22, 0.9);
    --color-text-light: #fdfaf6;    /* Cream Milk */
    --color-text-muted: #cdbfae;   /* Caramel Dust */
    --color-border: rgba(212, 175, 55, 0.15);
    --color-border-focus: rgba(255, 111, 0, 0.5);

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Layout */
    --max-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    /* Shadows & Glows */
    --glow-morado: 0 0 20px rgba(108, 42, 150, 0.4);
    --glow-naranja: 0 0 20px rgba(255, 111, 0, 0.4);
    --glow-rojo: 0 0 20px rgba(213, 0, 0, 0.4);
    --glow-verde: 0 0 20px rgba(0, 137, 123, 0.4);
    --box-shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.6);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for sticky header */
    font-size: 16px;
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background: radial-gradient(circle at 50% 0%, #1c0e09 0%, var(--color-bg-dark) 70%);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-light);
    font-weight: 700;
}

p {
    color: var(--color-text-muted);
}

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

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

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

/* --- Layout Utilities --- */
.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 60px 0;
}

.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: 1fr;
}

@media(min-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

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

.text-center {
    text-align: center;
}

/* --- Custom Highlights --- */
.text-gradient-chapin {
    background: linear-gradient(135deg, var(--color-rojo-light) 0%, var(--color-naranja) 40%, var(--color-morado-light) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.badge-chapin {
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(135deg, var(--color-morado), var(--color-rojo));
    border-radius: 50px;
    color: var(--color-text-light);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    box-shadow: var(--glow-morado);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-naranja) 0%, var(--color-rojo) 100%);
    color: var(--color-text-light);
    box-shadow: var(--glow-naranja);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 111, 0, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-light);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

/* --- Header --- */
header {
    background: rgba(15, 9, 7, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 10px 0;
    transition: var(--transition-fast);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-light);
    flex-shrink: 0;
}

.logo img {
    height: 55px; /* Bigger logo on desktop */
    width: auto;
    display: block;
    transition: var(--transition-fast);
}

.logo span {
    color: var(--color-naranja);
}

/* Hamburger Toggle Button */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--color-text-light);
    font-size: 2rem;
    cursor: pointer;
    padding: 5px 10px;
    z-index: 101;
    line-height: 1;
    transition: var(--transition-fast);
}

.menu-toggle:hover {
    color: var(--color-naranja);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu a {
    margin-left: 25px;
    font-weight: 600;
}

.nav-menu a:not(.btn) {
    color: var(--color-text-muted);
}

.nav-menu a:not(.btn):hover {
    color: var(--color-gold);
}

/* Mobile responsive header settings */
@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Show hamburger button on mobile */
    }

    .logo img {
        height: 46px; /* Bigger logo on mobile too! */
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 10px);
        left: -5%; /* Account for container margins */
        width: 110%; /* Account for container margins */
        background: rgba(15, 9, 7, 0.98);
        border-bottom: 1px solid var(--color-border);
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
        transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
        z-index: 99;
        padding: 0 8%;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.75);
    }

    .nav-menu.active {
        max-height: 300px;
        opacity: 1;
        pointer-events: auto;
        padding-top: 15px;
        padding-bottom: 25px;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        margin-left: 0;
        padding: 14px 0;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 1.05rem;
    }

    .nav-menu a.btn {
        border-bottom: none;
        margin-top: 15px;
        padding: 12px;
    }
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    padding: 40px 0;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 9, 7, 0.95) 30%, rgba(15, 9, 7, 0.6) 70%, rgba(15, 9, 7, 0.8) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

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

@media(min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.15;
    margin-bottom: 20px;
}

@media(min-width: 768px) {
    .hero-content h1 {
        font-size: 4rem;
    }
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-glow {
    position: absolute;
    width: 320px;
    height: 450px;
    background: radial-gradient(circle, rgba(108, 42, 150, 0.45) 0%, rgba(213, 0, 0, 0.3) 50%, transparent 80%);
    filter: blur(30px);
    z-index: 1;
    border-radius: 50%;
    animation: pulseGlow 6s infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: scale(1); filter: blur(30px); }
    100% { transform: scale(1.15); filter: blur(40px); opacity: 0.8; }
}

.hero-product-img {
    position: relative;
    z-index: 2;
    max-height: 480px;
    width: auto;
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.8));
    animation: floatProduct 5s ease-in-out infinite;
}

@keyframes floatProduct {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1.5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* --- Section Heading --- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-naranja), var(--color-rojo));
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

/* --- Map Section (El Alma del Blend) --- */
.map-section {
    background: radial-gradient(circle at 10% 50%, rgba(0, 137, 123, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 90% 20%, rgba(108, 42, 150, 0.08) 0%, transparent 50%);
}

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

@media(min-width: 992px) {
    .map-layout {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.map-container {
    background: rgba(26, 17, 13, 0.4);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 20px;
    box-shadow: var(--box-shadow-premium);
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-container svg {
    width: 100%;
    height: auto;
    max-height: 480px;
}

/* Map Interactive Classes */
.dept-path {
    fill: #1f140f;
    stroke: #332018;
    stroke-width: 1.2;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.dept-path-bg {
    fill: #0d0806;
    stroke: #1d120d;
    stroke-width: 1;
    transition: all 0.3s ease;
    pointer-events: none;
}

.dept-path:hover, .dept-path.active {
    stroke-width: 2.5;
    filter: drop-shadow(0 0 8px var(--dept-color, #ff6f00));
}

.dept-path.huehuetenango { --dept-color: var(--color-morado); }
.dept-path.antigua { --dept-color: var(--color-rojo); }
.dept-path.coban { --dept-color: var(--color-verde); }
.dept-path.atitlan { --dept-color: var(--color-naranja); }
.dept-path.sanmarcos { --dept-color: #e67e22; }

.dept-path.active.huehuetenango { fill: var(--color-morado); }
.dept-path.active.antigua { fill: var(--color-rojo); }
.dept-path.active.coban { fill: var(--color-verde); }
.dept-path.active.atitlan { fill: var(--color-naranja); }
.dept-path.active.sanmarcos { fill: #e67e22; }

/* Flashing Marker Pulse Animation */
.map-marker-group {
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.map-marker-group:hover {
    transform: scale(1.25);
}

.marker-pulse {
    fill: var(--marker-color, #ff6f00);
    transform-box: fill-box;
    transform-origin: center;
    animation: markerPulseAnimation 2.2s infinite cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.marker-core {
    fill: var(--marker-color, #ff6f00);
    stroke: #fdfaf6;
    stroke-width: 1.5;
    pointer-events: none;
}

.huehuetenango-marker { --marker-color: var(--color-morado); }
.antigua-marker { --marker-color: var(--color-rojo); }
.coban-marker { --marker-color: var(--color-verde); }
.atitlan-marker { --marker-color: var(--color-naranja); }
.sanmarcos-marker { --marker-color: #e67e22; }

@keyframes markerPulseAnimation {
    0% {
        transform: scale(0.4);
        opacity: 0.9;
    }
    100% {
        transform: scale(2.6);
        opacity: 0;
    }
}

/* Map details card */
.region-card {
    background: var(--color-bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--box-shadow-premium);
    transition: var(--transition-smooth);
    border-left: 5px solid var(--color-naranja);
}

.region-card-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.region-card-title span.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-naranja);
    box-shadow: var(--glow-naranja);
}

.region-card-notes {
    margin: 15px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.region-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--color-gold);
    margin-right: 5px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

/* --- Features Section --- */
.features-section {
    background: radial-gradient(circle at 90% 80%, rgba(213, 0, 0, 0.07) 0%, transparent 50%);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media(min-width: 992px) {
    .features-grid {
        grid-template-columns: 0.9fr 1.1fr;
    }
}

.product-features-showcase {
    background: rgba(26, 17, 13, 0.3);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: var(--box-shadow-premium);
}

.product-features-showcase img {
    max-height: 400px;
    width: auto;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.7));
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    background: var(--color-bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    padding: 25px;
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-item:hover {
    transform: translateX(8px);
    border-color: var(--border-item-color, var(--color-gold));
    box-shadow: var(--glow-item, 0 8px 25px rgba(0,0,0,0.3));
}

.feature-item.morado-feat { --border-item-color: var(--color-morado); --glow-item: var(--glow-morado); }
.feature-item.naranja-feat { --border-item-color: var(--color-naranja); --glow-item: var(--glow-naranja); }
.feature-item.rojo-feat { --border-item-color: var(--color-rojo); --glow-item: var(--glow-rojo); }
.feature-item.verde-feat { --border-item-color: var(--color-verde); --glow-item: var(--glow-verde); }

.feature-icon-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: var(--icon-color, var(--color-gold));
    flex-shrink: 0;
    box-shadow: var(--icon-glow, none);
}

.feature-item.morado-feat { --icon-color: var(--color-morado-light); --icon-glow: 0 0 10px rgba(108, 42, 150, 0.2); }
.feature-item.naranja-feat { --icon-color: var(--color-naranja-light); --icon-glow: 0 0 10px rgba(255, 111, 0, 0.2); }
.feature-item.rojo-feat { --icon-color: var(--color-rojo-light); --icon-glow: 0 0 10px rgba(213, 0, 0, 0.2); }
.feature-item.verde-feat { --icon-color: var(--color-verde-light); --icon-glow: 0 0 10px rgba(0, 137, 123, 0.2); }

.feature-text h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

/* Roasting interactive dial */
.roast-meter {
    margin-top: 15px;
}

.roast-dots {
    display: flex;
    gap: 8px;
    margin-top: 5px;
}

.roast-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #2c1b14;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition-fast);
}

.roast-dot.active {
    background-color: var(--color-naranja);
    box-shadow: 0 0 8px var(--color-naranja);
    border-color: var(--color-naranja-light);
}

.roast-dot.active-claro {
    background-color: var(--color-rojo);
    box-shadow: 0 0 8px var(--color-rojo);
    border-color: var(--color-rojo-light);
}

/* --- Video Showroom --- */
.showroom-section {
    background: radial-gradient(circle at 10% 20%, rgba(108, 42, 150, 0.06) 0%, transparent 60%);
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media(min-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.video-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow-premium);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    overflow: hidden;
}

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

.video-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.video-info h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--color-text-light);
}

.video-info p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* --- Interactive Tasting Game/Selector --- */
.dial-interactive {
    background: rgba(26, 17, 13, 0.4);
    border: 1px solid var(--color-border);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-premium);
    margin-top: 40px;
}

.dial-controls {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.dial-option {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--border-radius-sm);
    padding: 15px 25px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    transition: var(--transition-fast);
    text-align: center;
    flex-grow: 1;
    max-width: 200px;
}

.dial-option:hover, .dial-option.active {
    background: linear-gradient(135deg, var(--opt-color, var(--color-morado)) 0%, rgba(15,9,7,0.8) 100%);
    border-color: var(--opt-color-light, var(--color-gold));
    transform: translateY(-2px);
    box-shadow: var(--opt-glow, none);
}

.dial-option.opt-floral { --opt-color: var(--color-morado); --opt-color-light: var(--color-morado-light); --opt-glow: var(--glow-morado); }
.dial-option.opt-citrico { --opt-color: var(--color-naranja); --opt-color-light: var(--color-naranja-light); --opt-glow: var(--glow-naranja); }
.dial-option.opt-chocolate { --opt-color: var(--color-rojo); --opt-color-light: var(--color-rojo-light); --opt-glow: var(--glow-rojo); }

.dial-view {
    text-align: center;
    padding: 20px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.dial-view h4 {
    font-size: 1.6rem;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.dial-view p {
    max-width: 600px;
}

/* --- Checkout/Order Section --- */
.checkout-section {
    background: radial-gradient(circle at 50% 100%, rgba(255, 111, 0, 0.08) 0%, transparent 60%);
    border-top: 1px solid var(--color-border);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

@media(min-width: 992px) {
    .checkout-grid {
        grid-template-columns: 0.9fr 1.1fr;
    }
    .product-summary-card {
        position: sticky;
        top: 100px;
    }
}

.product-summary-card {
    background: var(--color-bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--box-shadow-premium);
    border-top: 4px solid var(--color-naranja);
    position: relative;
}

.product-summary-header {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.product-summary-thumb {
    width: 90px;
    height: 120px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--border-radius-sm);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    flex-shrink: 0;
}

.product-summary-thumb img {
    max-height: 100%;
    width: auto;
}

.product-summary-title h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.product-summary-title p {
    font-size: 0.9rem;
}

.price-tag {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-gold);
    font-family: var(--font-heading);
    margin-top: 5px;
}

.order-pricing {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
}

.pricing-row.total {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text-light);
    font-family: var(--font-heading);
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: var(--color-text-light);
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-fast);
}

.qty-btn:hover {
    background: var(--color-naranja);
    border-color: var(--color-naranja-light);
    box-shadow: var(--glow-naranja);
}

.qty-val {
    font-size: 1.2rem;
    font-weight: 600;
    width: 30px;
    text-align: center;
}

/* Form Styles */
.checkout-form-wrapper {
    background: rgba(26, 17, 13, 0.35);
    border: 1px solid var(--color-border);
    padding: 35px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-premium);
}

.checkout-form-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
}

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

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

@media(min-width: 576px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

input[type="text"], input[type="tel"], select, textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--color-bg-input);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

input[type="text"]:focus, input[type="tel"]:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--color-naranja-light);
    box-shadow: var(--glow-naranja);
    background: rgba(50, 36, 29, 0.95);
}

select option {
    background: var(--color-bg-dark);
    color: var(--color-text-light);
}

.payment-options {
    margin-top: 25px;
    margin-bottom: 30px;
}

.payment-method {
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    padding: 15px;
    margin-bottom: 12px;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: var(--transition-fast);
    background: rgba(255,255,255,0.01);
}

.payment-method:hover {
    border-color: rgba(255, 111, 0, 0.3);
    background: rgba(255,255,255,0.03);
}

.payment-method.active {
    border-color: var(--color-naranja);
    background: rgba(255, 111, 0, 0.05);
}

.payment-method input[type="radio"] {
    margin-top: 4px;
    accent-color: var(--color-naranja);
}

.payment-method-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 4px;
}

.bank-info-box {
    background: rgba(0,0,0,0.3);
    border: 1px dashed var(--color-border);
    border-radius: var(--border-radius-sm);
    padding: 15px;
    margin-top: 10px;
    font-size: 0.9rem;
    display: none;
}

.bank-info-box.visible {
    display: block;
}

.bank-info-box strong {
    color: var(--color-gold);
}

/* --- Success Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: scale(0.8);
    transition: var(--transition-smooth);
    position: relative;
    border-top: 5px solid var(--color-verde);
}

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

.modal-icon {
    width: 70px;
    height: 70px;
    background: var(--color-verde);
    color: var(--color-text-light);
    font-size: 2.5rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
    box-shadow: var(--glow-verde);
}

.modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--color-text-light);
}

.modal-content p {
    margin-bottom: 25px;
    font-size: 1rem;
}

.modal-whatsapp-btn {
    background: #25d366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    width: 100%;
    margin-bottom: 15px;
}

.modal-whatsapp-btn:hover {
    background: #20ba5a;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    transform: translateY(-2px);
}

.modal-close-btn {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    cursor: pointer;
    text-decoration: underline;
}

/* --- Testimonials --- */
.testimonials-section {
    background: radial-gradient(circle at 90% 10%, rgba(0, 137, 123, 0.05) 0%, transparent 60%);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media(min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.testimonial-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--box-shadow-premium);
    position: relative;
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 5rem;
    font-family: var(--font-heading);
    color: rgba(255,255,255,0.05);
    line-height: 1;
}

.testimonial-rating {
    color: var(--color-gold);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--color-text-light);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-morado), var(--color-rojo));
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: var(--color-text-light);
}

.testimonial-info h4 {
    font-size: 0.95rem;
    margin: 0;
}

.testimonial-info p {
    font-size: 0.8rem;
    margin: 0;
}

/* --- Footer --- */
footer {
    background: #090504;
    border-top: 1px solid var(--color-border);
    padding: 40px 0;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
}

@media(min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
    .footer-links {
        justify-content: flex-end;
    }
}

.footer-links {
    display: flex;
    gap: 20px;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--color-text-muted);
}

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

/* Spinner */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
    vertical-align: middle;
}

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

/* --- Presentation Selector Cards --- */
.presentation-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--color-border);
    background: rgba(255,255,255,0.01);
    padding: 14px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 12px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.presentation-card:hover {
    border-color: rgba(255, 111, 0, 0.3);
    background: rgba(255,255,255,0.03);
}

.presentation-card.active {
    border-color: var(--color-naranja);
    background: rgba(255, 111, 0, 0.05);
}

.presentation-card input[type="radio"] {
    margin-right: 10px;
    accent-color: var(--color-naranja);
}

