/* ==========================================================================
   WOODEN DUMMY BERAZATEGUI - MODERN LUXURY CRAFTSMANSHIP DESIGN SYSTEM
   ========================================================================== */

:root {
    /* Color Palette */
    --primary-gold: #d4af37;
    --gold-hover: #f5d46e;
    --gold-glow: rgba(212, 175, 55, 0.3);
    --gold-gradient: linear-gradient(135deg, #f5d46e 0%, #d4af37 50%, #aa8318 100%);
    
    --accent-wood: #b86e28;
    --wood-light: #d99148;
    
    --bg-black: #08090b;
    --bg-dark: #0d0f13;
    --bg-card: #14171f;
    --bg-elevated: #1c212c;
    --bg-glass: rgba(20, 23, 31, 0.85);
    
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    
    --border-light: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(212, 175, 55, 0.35);
    
    --whatsapp-green: #25d366;
    --whatsapp-hover: #1ebd59;
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    
    /* Transitions & Shadows */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-card: 0 12px 30px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.2);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

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

ul {
    list-style: none;
}

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

/* Layout Utilities */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
    position: relative;
}

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

.gold-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Section Header Styles */
.section-header {
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--bg-black);
    box-shadow: var(--shadow-gold);
    font-weight: 700;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
    filter: brightness(1.1);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-3px);
}

.btn-nav-wa {
    background: rgba(37, 211, 102, 0.15);
    color: var(--whatsapp-green);
    border: 1px solid rgba(37, 211, 102, 0.4);
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
}

.btn-nav-wa:hover {
    background: var(--whatsapp-green);
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Announcement Bar */
.top-announcement {
    background: #050608;
    border-bottom: 1px solid var(--border-light);
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.announcement-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.badge-live {
    color: #10b981;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
}

.badge-live i {
    font-size: 0.6rem;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.top-announcement .highlight {
    color: var(--primary-gold);
    font-weight: 600;
}

.announcement-link {
    color: var(--whatsapp-green);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.announcement-link:hover {
    text-decoration: underline;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-fast);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.25rem;
}

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

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: 1px;
}

.brand-sub {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary-gold);
    letter-spacing: 1.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    position: relative;
    padding: 0.25rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-gold);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-gold);
    border-radius: 2px;
}

.nav-link.highlight-link {
    color: var(--primary-gold);
    font-weight: 700;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0 6rem 0;
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s ease;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 0.45;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(13, 15, 19, 0.7) 0%, rgba(8, 9, 11, 0.95) 100%),
                linear-gradient(to bottom, rgba(13, 15, 19, 0.4) 0%, #0d0f13 100%);
    z-index: 1;
}

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

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-gold);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.hero-features-strip {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.feature-tag i {
    color: var(--primary-gold);
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
    40% { transform: translate(-50%, -8px); }
    60% { transform: translate(-50%, -4px); }
}

/* Stats Banner */
.stats-banner {
    background: var(--bg-card);
    border-y: 1px solid var(--border-light);
    padding: 2.5rem 0;
}

.grid-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem;
}

.stat-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.5rem;
    flex-shrink: 0;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-gold);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* About Section */
.grid-about {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-carousel-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-card);
    height: 520px;
    background: var(--bg-card);
}

.about-carousel-slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.about-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
    cursor: pointer;
}

.about-slide.active {
    opacity: 1;
    z-index: 1;
}

.about-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-slide:hover img {
    transform: scale(1.04);
}

.about-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 12;
    background: rgba(20, 23, 31, 0.75);
    border: 1px solid var(--border-gold);
    color: var(--primary-gold);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    backdrop-filter: blur(8px);
}

.about-nav:hover {
    background: var(--primary-gold);
    color: #000;
}

.about-nav.prev { left: 15px; }
.about-nav.next { right: 15px; }

.about-carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 25px;
    z-index: 12;
    display: flex;
    gap: 0.5rem;
}

.about-carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: var(--transition-fast);
}

.about-carousel-dots .dot.active {
    background: var(--primary-gold);
    transform: scale(1.25);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.about-experience-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    z-index: 12;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--primary-gold);
    padding: 0.85rem 1.35rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-card);
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-gold);
    line-height: 1;
}

.badge-txt {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-text-content .lead-text {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.about-text-content .body-text {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.about-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.benefit-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Process Section */
.proceso {
    background: #090a0d;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    margin-top: 2rem;
}

.process-step {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 2rem 1.5rem;
    position: relative;
    transition: var(--transition-normal);
}

.process-step:hover {
    transform: translateY(-6px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-card);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.25);
    margin-bottom: 1rem;
}

.step-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Products Gallery */
.catalog-filters {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--gold-gradient);
    color: var(--bg-black);
    font-weight: 700;
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-card);
}

.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    background: var(--gold-gradient);
    color: var(--bg-black);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-blue { background: linear-gradient(135deg, #3b82f6, #1d4ed8); color: #fff; }
.badge-green { background: linear-gradient(135deg, #10b981, #047857); color: #fff; }
.badge-purple { background: linear-gradient(135deg, #a855f7, #7e22ce); color: #fff; }

.product-image {
    height: 280px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
    pointer-events: none;
}

.product-image:hover .image-overlay {
    opacity: 1;
}

.zoom-hint {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.75);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    pointer-events: none;
}

.product-info {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
}

.model-code {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 1px;
}

.rating-stars {
    font-size: 0.85rem;
    color: var(--primary-gold);
    font-weight: 600;
}

.product-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.product-specs i {
    color: var(--primary-gold);
    width: 18px;
}

.product-thumbnails {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
}

.product-thumbnails img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
    transition: var(--transition-fast);
}

.product-thumbnails img:hover, .product-thumbnails img.active-thumb {
    opacity: 1;
    border-color: var(--primary-gold);
}

.card-footer-actions {
    margin-top: auto;
}

.btn-card-wa {
    width: 100%;
    background: rgba(37, 211, 102, 0.12);
    color: var(--whatsapp-green);
    border: 1px solid rgba(37, 211, 102, 0.3);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.btn-card-wa:hover {
    background: var(--whatsapp-green);
    color: #fff;
}

.btn-card-gold {
    width: 100%;
    background: var(--gold-gradient);
    color: var(--bg-black);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.btn-card-gold:hover {
    filter: brightness(1.1);
}

/* Customizer Section */
.customizer {
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
}

.customizer-box {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-card);
}

.customizer-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.customizer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.85rem;
}

.form-label i {
    color: var(--primary-gold);
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}

.option-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    padding: 1rem;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    transition: var(--transition-fast);
}

.option-card:hover, .option-card.active {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--primary-gold);
}

.option-card i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.option-card strong {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.option-card span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.custom-select {
    width: 100%;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    padding: 0.85rem 1rem;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
}

.custom-select:focus {
    border-color: var(--primary-gold);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    padding: 0.85rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.checkbox-card input {
    display: none;
}

.chk-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--text-muted);
    border-radius: 4px;
    display: inline-block;
    position: relative;
}

.checkbox-card input:checked + .chk-custom {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
}

.checkbox-card input:checked + .chk-custom::after {
    content: '✓';
    position: absolute;
    color: #000;
    font-size: 0.8rem;
    font-weight: 900;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.customizer-summary {
    display: flex;
    flex-direction: column;
}

.summary-box {
    background: var(--bg-elevated);
    border: 1px solid var(--border-gold);
    border-radius: 14px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.summary-badge {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.summary-list li {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 0.75rem;
}

.summary-list span {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.summary-list strong {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.quote-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-block {
    width: 100%;
}

/* Reviews Section */
.reviews {
    background: #090a0d;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.stars {
    color: var(--primary-gold);
    font-size: 0.9rem;

}

.platform-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.platform-tag.fb i { color: #1877f2; }
.platform-tag.ig i { color: #e4405f; }
.platform-tag.goog i { color: #ea4335; }

.review-text {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-gold);
}

.reviewer-info h4 {
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.reviewer-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* FAQ Section */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-fast);
}

.faq-question i {
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    overflow: hidden;
}

.contact-info {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
}

.contact-intro {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.contact-card-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    padding: 1.25rem;
    border-radius: 12px;
    transition: var(--transition-fast);
}

.contact-card-item:hover {
    border-color: var(--border-gold);
    transform: translateX(4px);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.card-icon.wa { background: rgba(37, 211, 102, 0.15); color: var(--whatsapp-green); }
.card-icon.mail { background: rgba(59, 130, 246, 0.15); color: #3b82f6; }
.card-icon.map { background: rgba(212, 175, 55, 0.15); color: var(--primary-gold); }

.card-details {
    display: flex;
    flex-direction: column;
}

.card-details strong {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.card-details span {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.card-details small {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.social-links-block {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-links-block span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.social-icons a:hover {
    background: var(--gold-gradient);
    color: var(--bg-black);
    transform: translateY(-3px);
}

.map-wrapper {
    display: flex;
    flex-direction: column;
    background: #000;
}

.map-header {
    background: var(--bg-elevated);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.btn-copy-addr {
    background: none;
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    padding: 0.35rem 0.85rem;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-copy-addr:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.map-container {
    flex-grow: 1;
    min-height: 400px;
}

/* Footer */
.footer {
    background: #050608;
    border-top: 1px solid var(--border-light);
    padding: 4rem 0 2rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.footer-brand .logo {
    font-size: 1.25rem;
    color: var(--primary-gold);
    justify-content: center;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

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

.footer-bottom {
    width: 100%;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.designer-credits i {
    color: var(--primary-gold);
}

/* Floating WhatsApp Widget */
.wa-float-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1500;
}

.wa-float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--whatsapp-green);
    color: #fff;
    border: none;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    position: relative;
    transition: var(--transition-fast);
}

.wa-float-btn:hover {
    transform: scale(1.08);
}

.wa-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--whatsapp-green);
    animation: waPulse 2s infinite;
}

@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

.wa-chat-popup {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 320px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    display: none;
    flex-direction: column;
    animation: fadeInUp 0.3s ease;
}

.wa-chat-popup.active {
    display: flex;
}

.wa-popup-header {
    background: #0e1d15;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(37, 211, 102, 0.2);
}

.wa-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--whatsapp-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.wa-user-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.wa-user-info strong {
    font-size: 0.85rem;
    color: #fff;
}

.wa-user-info span {
    font-size: 0.7rem;
    color: var(--whatsapp-green);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.wa-user-info i { font-size: 0.5rem; }

.wa-popup-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.25rem;
    cursor: pointer;
}

.wa-popup-body {
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.2);
}

.wa-msg {
    background: var(--bg-elevated);
    padding: 0.85rem 1rem;
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border-left: 3px solid var(--whatsapp-green);
}

.wa-popup-footer {
    padding: 1rem;
}

.btn-wa-start {
    width: 100%;
    background: var(--whatsapp-green);
    color: #fff;
    padding: 0.65rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(5, 6, 8, 0.95);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 2.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 3005;
}

.lightbox-close:hover {
    color: var(--primary-gold);
}

.lightbox-body {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s ease;
}

.lightbox-content.zoomed {
    transform: scale(2);
    cursor: grab;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(20, 23, 31, 0.8);
    border: 1px solid var(--border-gold);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 3002;
}

.lightbox-nav:hover {
    background: var(--primary-gold);
    color: #000;
}

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

.zoom-controls {
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 3005;
}

.lightbox-thumbnails-container {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.65rem;
    z-index: 3005;
    background: rgba(13, 15, 19, 0.85);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid var(--border-gold);
    backdrop-filter: blur(12px);
    max-width: 90vw;
    overflow-x: auto;
}

.lightbox-thumb {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.55;
    border: 2px solid transparent;
    transition: var(--transition-fast);
}

.lightbox-thumb:hover, .lightbox-thumb.active {
    opacity: 1;
    border-color: var(--primary-gold);
    transform: scale(1.1);
}

.btn-zoom {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    color: var(--primary-gold);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-zoom:hover {
    background: var(--primary-gold);
    color: #000;
}

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

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3rem; }
    .grid-stats { grid-template-columns: repeat(2, 1fr); }
    .grid-about, .customizer-grid, .contact-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
    .process-timeline, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-announcement { display: none; }
    .menu-toggle { display: block; }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        border-bottom: 1px solid var(--border-gold);
        flex-direction: column;
        padding: 2rem 0;
        gap: 1.5rem;
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .hero { min-height: 80vh; padding: 2rem 0 4rem 0; }
    .hero h1 { font-size: 2.3rem; }
    .hero-description { font-size: 1rem; }
    .hero-features-strip { flex-direction: column; align-items: center; gap: 0.75rem; }

    .grid-stats { grid-template-columns: 1fr; }
    .process-timeline, .reviews-grid { grid-template-columns: 1fr; }
    .option-grid { grid-template-columns: 1fr; }
    
    .product-grid { grid-template-columns: 1fr; }
    .customizer-box { padding: 1.5rem; }
    .contact-info { padding: 2rem; }
    
    .footer-bottom { flex-direction: column; text-align: center; }
}
