/* ==========================================================================
   SCOOTER MÉXICO - PROFESSIONAL E-COMMERCE DESIGN
   Enhanced with Real Products, Credit System, and Trust Elements
   ========================================================================== */

/* Scroll Animations */
.reveal {
    opacity: 1;
    transition: all 0.8s ease-out;
}

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

/* Base state handled by JS adding 'reveal' class initially if preferred, 
   but let's do it via CSS class 'reveal-on-scroll' */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Professional Color Palette */
    /* Professional Color Palette - Scooter Mexico Theme (Navy/White) */
    --color-primary: #0a192f;
    /* Deep Navy Blue */
    --color-secondary: #ff6b00;
    /* Energetic Orange (Contrast) */
    --color-accent: #059669;
    /* Professional Emerald Green */
    --color-accent-hover: #047857;
    /* Darker Emerald */
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-accent-hover: #009624;
    /* Darker Green */
    --color-success: #27ae60;
    --color-warning: #f39c12;
    --color-white: #FFFFFF;
    --color-gray-50: #f8f9fa;
    --color-gray-100: #e9ecef;
    --color-gray-200: #dee2e6;
    --color-gray-700: #495057;
    --color-gray-900: #212529;

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;

    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 4px;
    --radius-xl: 4px;

    /* Ultra-Formal Shadow Scheme: Minimal/Flat */
    --shadow-sm: none;
    --shadow-md: none;
    --shadow-lg: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: #334155;
    /* Slate 700 for text */
    background: #f8f9fa;
    /* Light Gray Global Background */
    overflow-x: hidden;
}

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

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

/* Header with Glassmorphism */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--color-primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.98);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--color-primary);
    text-transform: uppercase;
}

.nav {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
}

.nav-link:hover {
    background: rgba(10, 25, 47, 0.05);
    transform: translateY(-2px);
}

/* Hero Section with Modern Background */
.hero {
    background: linear-gradient(135deg, #0a192f 0%, #172a45 100%),
        url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    color: var(--color-white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(15, 76, 129, 0.2) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
    z-index: 0;
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-badge {
    display: inline-block;
    background: var(--color-success);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--color-primary);
    /* Formal Navy Button */
    color: white;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary:hover {
    background: white;
    color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.btn-secondary {
    background: var(--color-success);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: #229954;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Trust Section */
.trust-section {
    background: white;
    padding: 3rem 0;
    border-bottom: 1px solid var(--color-gray-200);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-item {
    padding: 1.5rem;
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.trust-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.trust-item p {
    color: var(--color-gray-700);
    font-size: 0.95rem;
}

/* Products Section */
.products-section {
    padding: 4rem 0;
    background: var(--color-gray-50);
}

.section-title {
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-gray-700);
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

/* Product Card - Formal Revision */
.product-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    /* Subtle Border instead of Shadow */
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-2px);
    border-color: var(--color-primary);
    /* Professional Highlight */
    box-shadow: var(--shadow-lg);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-warning);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.product-badge.best-seller {
    background: var(--color-success);
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
    min-height: 2.5em;
}

.product-description {
    font-size: 0.85rem;
    color: var(--color-gray-700);
    line-height: 1.5;
    margin-bottom: 1rem;
    min-height: 4em;
}

.product-price-box {
    margin-bottom: 1rem;
    text-align: center;
}

.product-price-original {
    display: block;
    text-decoration: line-through;
    color: var(--color-gray-700);
    font-size: 1rem;
    opacity: 0.6;
}

.product-price {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-accent);
    margin: 0.25rem 0;
}

.product-price-save {
    display: block;
    color: var(--color-success);
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-buy {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-buy:hover {
    transform: translateY(-1px);
    opacity: 0.95;
    box-shadow: none;
}

/* Credit Calculator Section */
.credit-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    padding: 4rem 0;
}

.credit-section .section-title {
    color: white;
}

.credit-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.credit-calculator {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    max-width: 700px;
    margin: 2rem auto 0;
    box-shadow: var(--shadow-xl);
}

.calc-input-group {
    margin-bottom: 1.5rem;
}

.calc-input-group label {
    display: block;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.calc-input-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-primary);
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calc-input-group select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.1);
}

.credit-results {
    background: var(--color-gray-50);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin: 2rem 0;
}

.credit-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-gray-200);
}

.credit-result-item:last-child {
    border-bottom: none;
}

.credit-result-item span {
    color: var(--color-gray-700);
    font-weight: 500;
}

.credit-result-item strong {
    color: var(--color-primary);
    font-size: 1.25rem;
    font-weight: 700;
}

.credit-result-item.highlight {
    background: #fff3cd;
    margin: 0 -1rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
}

.credit-result-item.highlight-green {
    background: #d4edda;
    margin: 0 -1rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
}

.credit-result-item.highlight-green strong {
    color: var(--color-success);
    font-size: 1.5rem;
}

.btn-credit {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--color-success) 0%, #229954 100%);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-credit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* How to Buy Section */
.how-to-buy {
    background: white;
    padding: 4rem 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: var(--color-gray-50);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: var(--shadow-md);
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.step p {
    color: var(--color-gray-700);
}

/* Payment Methods */
.payment-methods {
    margin-top: 2rem;
    text-align: center;
}

.payment-methods h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.payment-grid {
    display: flex;
    gap: 0.75rem;
    max-width: 320px;
    margin: 0 auto;
    justify-content: center;
}

.payment-card {
    background: #ffffff;
    padding: 1.25rem 1rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.payment-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
    border-color: #cbd5e1;
}

.payment-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #f1f5f9;
}

.payment-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.payment-card p {
    color: #64748b;
    font-size: 0.75rem;
    line-height: 1.4;
    margin: 0;
}

/* Guarantee Section */
.guarantee-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.guarantee-box {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.guarantee-badge {
    display: inline-block;
    background: var(--color-success);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.guarantee-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.guarantee-text {
    font-size: 1.25rem;
    color: var(--color-gray-700);
    margin-bottom: 1rem;
}

.guarantee-text strong {
    color: var(--color-accent);
    font-weight: 700;
}

.guarantee-box p {
    color: var(--color-gray-700);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.security-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: var(--color-gray-50);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--color-gray-700);
    font-size: 0.95rem;
    border: 2px solid var(--color-gray-200);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1.2fr 0.8fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 2rem;
}

/* =========================================
   NEW SECTIONS: ULTRA-FORMAL EXPANSION
   ========================================= */

/* 1. Comparison Table (Technical Data Sheet) */
.comparison-section {
    background: white;
    padding: 4rem 0;
    border-bottom: 1px solid var(--color-gray-200);
}

.comparison-table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-sm);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    text-align: center;
}

.comparison-table th {
    background: var(--color-primary);
    color: white;
    padding: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    border: 1px solid #1e293b;
}

.comparison-table td {
    padding: 1rem;
    border: 1px solid var(--color-gray-200);
    color: var(--color-gray-700);
}

.comparison-table tr:nth-child(even) {
    background: var(--color-gray-50);
}

.comparison-table tr:hover {
    background: #f1f5f9;
}

.comparison-table .feature-highlight {
    font-weight: 700;
    color: var(--color-primary);
}

/* 2. FAQ Accordion (Corporate Style) */
.faq-section {
    background: var(--color-gray-50);
    padding: 4rem 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-sm);
}

.faq-item summary {
    padding: 1.25rem;
    cursor: pointer;
    font-weight: 700;
    color: var(--color-primary);
    list-style: none;
    /* Hide default arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-item summary:hover {
    background: #f8fafc;
}

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

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-accent);
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item p {
    padding: 0 1.25rem 1.25rem;
    margin: 0;
    color: var(--color-gray-700);
    line-height: 1.6;
    border-top: 1px solid #f1f5f9;
    padding-top: 1rem;
}

/* 3. Executive Testimonials */
.testimonials-section {
    background: white;
    padding: 4rem 0;
    border-top: 1px solid var(--color-gray-200);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-sm);
    /* Squared off */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}

.testimonial-quote {
    font-size: 1rem;
    font-style: italic;
    color: var(--color-gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--color-gray-100);
    border-radius: 50%;
    /* Avatars can stay round for contrast */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 0.95rem;
    color: var(--color-primary);
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--color-accent);
    font-weight: 600;
}

.footer-trust .trust-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-section h3,
.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gray-100);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
    color: var(--color-success);
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.contact-list a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 800;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
    border-color: var(--color-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Updated Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-brand,
    .footer-links,
    .footer-contact,
    .footer-social {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-list li {
        justify-content: center;
    }
}

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

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

    .section-title {
        font-size: 1.75rem;
    }

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

    .nav {
        gap: var(--spacing-sm);
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.75rem;
    }

    .logo {
        font-size: 1.25rem;
    }

    .credit-calculator {
        padding: 1.5rem;
    }

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

    .hero-cta {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .guarantee-box {
        padding: 2rem 1.5rem;
    }

    .guarantee-box h2 {
        font-size: 1.75rem;
    }
}

/* Color Variants Styles */
.color-selector {
    display: flex;
    gap: 12px;
    margin: 15px 0;
    align-items: center;
}

.color-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-gray-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.color-options {
    display: flex;
    gap: 10px;
}

.color-swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.color-swatch:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.color-swatch.active {
    border-color: var(--color-accent);
    transform: scale(1.2);
    box-shadow: 0 0 0 2px rgba(15, 76, 129, 0.3), 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.color-swatch.active::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Ensure white checkmark is visible on light colors */
.color-swatch[title="Blanco"]::after,
.color-swatch[title="Amarillo"]::after,
.color-swatch[title="Caqui"]::after {
    color: #333;
    text-shadow: none;
}

/* Photo Edit Overlay */
.photo-edit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
    z-index: 10;
}

.edit-mode-active .product-slideshow:hover .photo-edit-overlay {
    opacity: 1;
}

.photo-edit-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.photo-edit-text {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   FORMALITY UPGRADE STYLES
   ========================================================================== */

/* Specs Grid */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 15px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--color-gray-700);
    background: #f8f9fa;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.spec-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-accent);
    stroke-width: 2px;
    flex-shrink: 0;
}

/* Updated Buttons */
.product-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-add-cart,
.btn-buy {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    /* Fixed height for consistency */
}

.btn-add-cart {
    background: white;
    border: 1px solid var(--color-gray-200) !important;
    color: var(--color-gray-900) !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-add-cart:hover {
    background: var(--color-gray-50) !important;
    border-color: var(--color-gray-300) !important;
}

.btn-buy {
    background: var(--color-primary) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-buy:hover {
    background: var(--color-secondary) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15) !important;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: #e9ecef;
    /* Light Text for Dark Mode */
    background: #0A192F;
    /* Lighter Navy Background */
    overflow-x: hidden;
}

/* Formal Product Card Tweaks */
.product-card {
    background: #112240;
    /* Lighter Navy Card */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.product-name {
    font-weight: 600;
    color: #ffffff;
    /* White Text */
}

/* Price Update */
.product-price {
    color: #ffffff !important;
    /* User requested White Text */
    font-weight: 700;
    font-size: 1.25rem;
}

/* Brand Slider */
.brand-slider {
    background: #0A192F;
    /* Match Body BG */
    padding: 24px 0;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
}

.brand-track {
    display: flex;
    width: calc(200px * 12);
    animation: scroll 30s linear infinite;
}

.brand-item {
    width: 200px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.brand-item:hover {
    opacity: 1;
}

.brand-item img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-200px * 4));
    }
}

/* =========================================
   NEW SECTIONS: ULTRA-FORMAL EXPANSION
   ========================================= */

/* 1. Comparison Table (Technical Data Sheet) */
.comparison-section {
    background: white;
    padding: 4rem 0;
    border-bottom: 1px solid var(--color-gray-200);
}

.comparison-table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-sm);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    text-align: center;
}

.comparison-table th {
    background: var(--color-primary);
    color: white;
    padding: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    border: 1px solid #1e293b;
}

.comparison-table td {
    padding: 1rem;
    border: 1px solid var(--color-gray-200);
    color: var(--color-gray-700);
}

.comparison-table tr:nth-child(even) {
    background: var(--color-gray-50);
}

.comparison-table tr:hover {
    background: #f1f5f9;
}

.comparison-table .feature-highlight {
    font-weight: 700;
    color: var(--color-primary);
}

/* 2. FAQ Accordion (Corporate Style) */
.faq-section {
    background: var(--color-gray-50);
    padding: 4rem 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-sm);
}

.faq-item summary {
    padding: 1.25rem;
    cursor: pointer;
    font-weight: 700;
    color: var(--color-primary);
    list-style: none;
    /* Hide default arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-item summary:hover {
    background: #f8fafc;
}

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

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-accent);
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item p {
    padding: 0 1.25rem 1.25rem;
    margin: 0;
    color: var(--color-gray-700);
    line-height: 1.6;
    border-top: 1px solid #f1f5f9;
    padding-top: 1rem;
}

/* 3. Executive Testimonials */
.testimonials-section {
    background: white;
    padding: 4rem 0;
    border-top: 1px solid var(--color-gray-200);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-sm);
    /* Squared off */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}

.testimonial-quote {
    font-size: 1rem;
    font-style: italic;
    color: var(--color-gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--color-gray-100);
    border-radius: 50%;
    /* Avatars can stay round for contrast */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 0.95rem;
    color: var(--color-primary);
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--color-accent);
    font-weight: 600;
}

/* Floating WhatsApp Button */
.float-wa {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.float-wa:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

.float-wa svg {
    width: 35px;
    height: 35px;
}

/* Green Pulse Animation */
@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Verified Reviews Section */
.reviews-section {
    padding: 60px 0;
    background: #0A192F;
    /* Match Body BG */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.reviews-section .section-title {
    color: #ffffff;
    /* Determine explicitly white title */
    margin-bottom: 40px;
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: #112240;
    /* Match Card BG */
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

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

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.review-info h4 {
    margin: 0;
    color: #fff;
    font-size: 1rem;
}

.stars {
    color: #ffd700;
    font-size: 0.9rem;
}

.review-text {
    color: #aaa;
    font-style: italic;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: #0A192F;
    /* Match Body BG */
    color: #ffffff;
}

.faq-section .section-title {
    color: #ffffff;
    /* Determine explicitly white title */
    margin-bottom: 40px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #000000;
    /* White Text */
    padding: 20px 0;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s;
}

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

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: #000000;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--color-accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding-bottom: 20px;
    color: #cccccc;
    /* Light Grey for readability */
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    /* Sufficient max-height */
}

/* ==========================================================================
   MOBILE RESPONSIVE OPTIMIZATION
   ========================================================================== */

/* ---- Tablets & Small Screens (max 768px) ---- */
@media (max-width: 768px) {

    /* Container padding */
    .container {
        padding: 0 1rem;
    }

    /* Hero */
    .hero {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 1.75rem;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    /* Section spacing */
    .products-section,
    .trust-section,
    .how-to-buy,
    .guarantee-section,
    .credit-section {
        padding: 2.5rem 0;
    }

    .section-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    /* Trust Grid */
    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .trust-icon {
        font-size: 2rem;
    }

    .trust-item h3 {
        font-size: 1rem;
    }

    .trust-item p {
        font-size: 0.85rem;
    }

    /* Product Grid - 2 columns on tablet */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Product Card */
    .product-info {
        padding: 1rem;
    }

    .product-name {
        font-size: 1rem;
        min-height: auto;
        margin-bottom: 0.5rem;
    }

    .product-description {
        font-size: 0.8rem;
        min-height: auto;
        margin-bottom: 0.75rem;
    }

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

    .product-price-original {
        font-size: 0.85rem;
    }

    .product-price-save {
        font-size: 0.8rem;
    }

    /* Quantity Controls */
    .qty-control {
        gap: 5px;
    }

    .qty-control button {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    /* Product Actions */
    .product-actions {
        gap: 6px;
    }

    .btn-buy,
    .btn-add-cart {
        padding: 0.7rem;
        font-size: 0.85rem;
    }

    /* Credit Calculator */
    .credit-calculator {
        padding: 1.5rem;
    }

    .calc-input-group label {
        font-size: 0.85rem;
    }

    .calc-input-group input,
    .calc-input-group select {
        font-size: 0.9rem;
        padding: 0.6rem;
    }

    /* How to Buy Steps */
    .steps {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .step {
        padding: 1.25rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .step h3 {
        font-size: 1rem;
    }

    .step p {
        font-size: 0.85rem;
    }

    /* Payment Grid */
    .payment-grid {
        flex-direction: column;
        max-width: 100%;
        gap: 0.5rem;
    }

    .payment-card {
        flex-direction: row;
        padding: 1rem;
        gap: 10px;
    }

    .payment-icon {
        margin-bottom: 0;
    }

    /* Guarantee */
    .guarantee-box {
        padding: 2rem 1.5rem;
    }

    .guarantee-box h2 {
        font-size: 1.5rem;
    }

    /* Reviews / Testimonials */
    .reviews-section {
        padding: 2.5rem 0;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .review-card {
        padding: 18px;
    }

    /* FAQ */
    .faq-section {
        padding: 2.5rem 0;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 15px 0;
    }

    /* Color Selector */
    .color-selector {
        gap: 8px;
        margin: 10px 0;
    }

    .color-swatch {
        width: 28px;
        height: 28px;
    }

    /* Floating Cart Button */
    #floating-cart {
        padding: 8px 20px !important;
        bottom: 12px !important;
        left: 12px !important;
        font-size: 0.85rem;
    }

    /* Floating WhatsApp */
    .float-wa,
    .whatsapp-float {
        width: 48px !important;
        height: 48px !important;
        bottom: 15px !important;
        right: 15px !important;
    }

    /* Checkout Modal */
    .modal-container {
        padding: 1.25rem;
        max-height: 90vh;
        width: 95%;
        margin: auto;
    }

    .modal-title {
        font-size: 1.2rem;
    }

    /* Comparison Table */
    .comparison-table {
        font-size: 0.75rem;
        overflow-x: auto;
        display: block;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 8px 6px;
    }

    /* Slideshow height */
    .product-slideshow {
        height: 250px;
    }

    /* Brands */
    .brands-container {
        gap: 1rem;
    }

    .brand-logo {
        height: 30px;
    }
}

/* ---- Small Phones (max 480px) ---- */
@media (max-width: 480px) {

    /* Header */
    .header-content {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem 0;
    }

    .logo {
        font-size: 1.1rem;
    }

    .nav {
        gap: 0.25rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        font-size: 0.75rem;
        padding: 0.3rem 0.5rem;
    }

    /* Hero */
    .hero {
        padding: 2.5rem 0;
    }

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

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }

    /* Product Grid - single column on small phones */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .product-slideshow {
        height: 280px;
    }

    .product-name {
        font-size: 1.05rem;
    }

    .product-price {
        font-size: 1.6rem;
    }

    .btn-buy,
    .btn-add-cart {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    /* Trust Grid - single column */
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .trust-item {
        padding: 1rem;
    }

    /* Steps */
    .steps {
        grid-template-columns: 1fr;
    }

    /* Section spacing */
    .products-section,
    .trust-section,
    .how-to-buy,
    .guarantee-section,
    .credit-section {
        padding: 2rem 0;
    }

    .section-title {
        font-size: 1.3rem;
    }

    /* Guarantee */
    .guarantee-box {
        padding: 1.5rem 1rem;
    }

    .guarantee-box h2 {
        font-size: 1.3rem;
    }

    .guarantee-box p {
        font-size: 0.85rem;
    }

    /* Checkout Modal - full screen on small phones */
    .modal-container {
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
        padding: 1rem;
    }

    .checkout-step h3 {
        font-size: 0.95rem;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .form-group input {
        font-size: 0.9rem;
        padding: 0.65rem;
    }

    .btn-next,
    .btn-back,
    .btn-confirm {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    /* Bank info in checkout */
    .bank-info-box {
        padding: 12px;
    }

    .bank-row {
        font-size: 0.8rem;
    }

    .bank-label {
        font-size: 0.75rem;
    }

    .bank-value {
        font-size: 0.8rem;
    }

    .copy-btn {
        font-size: 0.7rem;
        padding: 3px 6px;
    }

    /* Floating elements - no overlap */
    #floating-cart {
        padding: 6px 14px !important;
        bottom: 10px !important;
        left: 10px !important;
        gap: 8px !important;
    }

    #floating-cart svg {
        width: 20px;
        height: 20px;
    }

    #cart-total-global {
        font-size: 0.85rem !important;
    }

    /* Coverage checker */
    .coverage-checker {
        flex-direction: column;
    }

    .coverage-checker input {
        width: 100%;
    }

    .coverage-checker button {
        width: 100%;
    }

    /* Credit section */
    .credit-calculator {
        padding: 1rem;
    }

    .credit-result {
        font-size: 0.9rem;
    }

    /* FAQ */
    .faq-question {
        font-size: 0.9rem;
        padding: 12px 0;
    }

    .faq-answer p {
        font-size: 0.85rem;
        padding-bottom: 12px;
    }

    /* Reviews */
    .review-card {
        padding: 15px;
    }

    .review-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .review-text {
        font-size: 0.85rem;
    }
}

/* ---- Extra Small Phones (max 360px) ---- */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.2rem;
    }

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

    .product-price {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 1.15rem;
        letter-spacing: 0.5px;
    }

    .logo {
        font-size: 1rem;
    }

    .nav-link {
        font-size: 0.7rem;
        padding: 0.25rem 0.4rem;
    }
}
/* =============================================
   FINAL MOBILE FIX (MAX PRIORITY - END OF FILE)
   ============================================= */

/* Desktop: 3 columns */
@media (min-width: 769px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.5rem !important;
    }
}

/* Tablet: 2 columns */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }

    .product-slideshow {
        height: 220px !important;
    }

    .product-info {
        padding: 0.75rem !important;
    }

    .product-name {
        font-size: 0.95rem !important;
        min-height: auto !important;
        margin-bottom: 0.3rem !important;
    }

    .specs-grid {
        gap: 4px !important;
        margin-bottom: 8px !important;
    }

    .spec-item {
        font-size: 0.7rem !important;
        padding: 4px 6px !important;
    }

    .spec-item svg {
        width: 12px !important;
        height: 12px !important;
    }

    .color-selector {
        margin: 6px 0 !important;
        gap: 6px !important;
    }

    .color-label {
        display: none !important;
    }

    .color-options {
        flex-wrap: wrap !important;
        gap: 6px !important;
    }

    .color-swatch {
        width: 22px !important;
        height: 22px !important;
    }

    .qty-control {
        margin: 6px 0 !important;
    }

    .qty-control button {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.9rem !important;
    }

    .product-price {
        font-size: 1.2rem !important;
        margin: 4px 0 !important;
    }

    .product-actions {
        gap: 5px !important;
        margin-top: 8px !important;
    }

    .btn-add-cart, .btn-buy {
        height: 38px !important;
        font-size: 0.75rem !important;
        padding: 6px !important;
    }

    .slider-btn {
        padding: 5px 8px !important;
        font-size: 0.8rem !important;
    }

    .product-badge {
        font-size: 0.7rem !important;
        padding: 0.3rem 0.7rem !important;
        top: 8px !important;
        right: 8px !important;
    }

    /* Discount banner */
    .discount-banner {
        font-size: 0.85rem !important;
        padding: 10px !important;
        margin-bottom: 1rem !important;
    }

    /* Coverage section */
    .coverage-section {
        padding: 1.5rem 0 !important;
    }

    .coverage-checker {
        flex-direction: column !important;
    }

    .coverage-checker input,
    .coverage-checker select,
    .coverage-checker button {
        width: 100% !important;
    }

    /* Trust section compact */
    .trust-section {
        padding: 1.5rem 0 !important;
    }

    .trust-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.5rem !important;
    }

    .trust-item {
        padding: 0.75rem 0.5rem !important;
    }

    .trust-icon {
        font-size: 1.5rem !important;
    }

    .trust-item h3 {
        font-size: 0.8rem !important;
    }

    .trust-item p {
        font-size: 0.7rem !important;
    }

    /* Sections spacing */
    .products-section,
    .how-to-buy,
    .guarantee-section,
    .reviews-section,
    .faq-section,
    .testimonials-section,
    .comparison-section {
        padding: 2rem 0 !important;
    }

    .section-title {
        font-size: 1.4rem !important;
        margin-bottom: 0.5rem !important;
    }

    .section-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem !important;
    }

    /* Steps / How to buy */
    .steps {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }

    .step {
        padding: 1rem !important;
    }

    .step-number {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.3rem !important;
    }

    .step h3 {
        font-size: 0.9rem !important;
    }

    .step p {
        font-size: 0.8rem !important;
    }

    /* Guarantee */
    .guarantee-box {
        padding: 1.5rem 1rem !important;
    }

    .guarantee-box h2 {
        font-size: 1.4rem !important;
    }

    .guarantee-box p,
    .guarantee-text {
        font-size: 0.9rem !important;
    }

    .security-badges {
        gap: 0.5rem !important;
    }

    .badge {
        font-size: 0.75rem !important;
        padding: 0.5rem 0.75rem !important;
    }

    /* Reviews */
    .reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .testimonials-grid {
        grid-template-columns: 1fr !important;
    }

    /* Footer */
    .footer {
        padding: 2.5rem 0 1.5rem !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        text-align: center !important;
    }

    .footer-brand,
    .footer-links,
    .footer-contact,
    .footer-social {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .contact-list li {
        justify-content: center !important;
    }

    .social-icons {
        justify-content: center !important;
    }

    /* Hero */
    .hero {
        padding: 3rem 0 !important;
    }

    .hero-title {
        font-size: 1.6rem !important;
    }

    .hero-subtitle {
        font-size: 0.9rem !important;
    }

    .hero-cta {
        flex-direction: column !important;
        align-items: center !important;
    }

    .btn-primary, .btn-secondary {
        width: 100% !important;
        max-width: 280px !important;
        padding: 0.75rem 1.5rem !important;
        font-size: 0.9rem !important;
    }

    /* Floating elements */
    .float-wa, .whatsapp-float {
        width: 48px !important;
        height: 48px !important;
        bottom: 15px !important;
        right: 15px !important;
    }

    #floating-cart {
        bottom: 12px !important;
        left: 12px !important;
        padding: 6px 14px !important;
        font-size: 0.8rem !important;
    }
}

/* Phone: 1 column */
@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .product-slideshow {
        height: 280px !important;
    }

    .product-info {
        padding: 1rem !important;
    }

    .product-name {
        font-size: 1.1rem !important;
    }

    .product-price {
        font-size: 1.4rem !important;
    }

    .product-actions {
        flex-direction: row !important;
    }

    .btn-add-cart, .btn-buy {
        height: 44px !important;
        font-size: 0.85rem !important;
    }

    .color-swatch {
        width: 26px !important;
        height: 26px !important;
    }

    .spec-item {
        font-size: 0.75rem !important;
        padding: 6px 8px !important;
    }

    .header-content {
        flex-direction: column !important;
        gap: 0.5rem !important;
        padding: 0.75rem 0 !important;
    }

    .logo {
        font-size: 1.1rem !important;
    }

    .nav {
        gap: 0.25rem !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    .nav-link {
        font-size: 0.78rem !important;
        padding: 0.3rem 0.6rem !important;
    }

    .steps {
        grid-template-columns: 1fr !important;
    }

    .trust-grid {
        grid-template-columns: 1fr !important;
    }

    .hero-title {
        font-size: 1.4rem !important;
    }

    .hero {
        padding: 2.5rem 0 !important;
    }
}

/* Tiny phone */
@media (max-width: 360px) {
    .container {
        padding: 0 0.65rem !important;
    }

    .hero-title {
        font-size: 1.2rem !important;
    }

    .product-slideshow {
        height: 250px !important;
    }

    .specs-grid {
        grid-template-columns: 1fr !important;
    }

    .logo {
        font-size: 1rem !important;
    }
}

/* ─── Clip Button Styling ─────────────────────────── */
.btn-clip {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%) !important;
    border: none !important;
    color: white !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-clip:hover {
    background: linear-gradient(135deg, #818cf8 0%, #6366f1 100%) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

/* Make product-actions wrap to 3 buttons nicely */
.product-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 5px !important;
}

.product-actions .btn-add-cart,
.product-actions .btn-buy {
    flex: 1 1 45% !important;
}

.product-actions .btn-clip {
    flex: 1 1 100% !important;
    min-height: 38px !important;
}

@media (max-width: 768px) {
    .product-actions .btn-add-cart,
    .product-actions .btn-buy,
    .product-actions .btn-clip {
        flex: 1 1 100% !important;
        font-size: 0.8rem !important;
    }
}

/* ─── Floating-style product buttons ─────────────── */
.product-actions .btn-add-cart,
.product-actions .btn-buy {
    border-radius: 50px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
    padding: 10px 20px !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    transition: all 0.3s ease !important;
    border: 2px solid rgba(255,255,255,0.15) !important;
}

.product-actions .btn-add-cart:hover,
.product-actions .btn-buy:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4) !important;
}

.product-actions .btn-add-cart:active,
.product-actions .btn-buy:active {
    transform: translateY(0) !important;
}

/* ═══════════════════════════════════════════════════
   PREMIUM FLOATING DESIGN SYSTEM
   ═══════════════════════════════════════════════════ */

/* ─── Product Cards: Elevated & Floating ──────────── */
.product-card {
    box-shadow: 0 8px 32px rgba(0,0,0,0.25) !important;
    border-radius: 16px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
}

.product-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 48px rgba(0,0,0,0.35) !important;
    border-color: rgba(255,255,255,0.15) !important;
}

/* ─── Trust / Steps / Coverage Items ──────────────── */
.trust-item,
.step,
.payment-card {
    box-shadow: 0 6px 24px rgba(0,0,0,0.2) !important;
    border-radius: 14px !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
}

.trust-item:hover,
.step:hover,
.payment-card:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 32px rgba(0,0,0,0.3) !important;
}

/* ─── FAQ Items ───────────────────────────────────── */
.faq-item {
    box-shadow: 0 4px 16px rgba(0,0,0,0.15) !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    margin-bottom: 10px !important;
}

.faq-item:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.25) !important;
}

/* ─── Sections: Subtle Floating Containers ─────────── */
.section-title {
    text-shadow: 0 2px 8px rgba(0,0,0,0.3) !important;
}

/* ─── Discount Banner: Floating ───────────────────── */
.discount-banner,
[style*="background: linear-gradient"] {
    border-radius: 14px !important;
    box-shadow: 0 6px 24px rgba(0,0,0,0.25) !important;
}

/* ─── Floating Cart & WhatsApp: Extra Polish ──────── */
#floating-cart {
    box-shadow: 0 6px 24px rgba(0,0,0,0.4) !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
}

#floating-cart:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5) !important;
}

/* ─── Checkout Modal: Premium Glass Feel ──────────── */
.modal-container {
    box-shadow: 0 24px 80px rgba(0,0,0,0.6) !important;
    border-radius: 20px !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
}

/* ─── Specs Badges: Pill Floating ─────────────────── */
.spec-item {
    border-radius: 50px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
}

/* ─── Color Swatches: Elevated ────────────────────── */
.color-swatch {
    box-shadow: 0 3px 10px rgba(0,0,0,0.25) !important;
    transition: all 0.2s ease !important;
}

.color-swatch:hover {
    transform: scale(1.15) !important;
    box-shadow: 0 4px 14px rgba(0,0,0,0.35) !important;
}

/* ─── Qty Controls: Floating Circles ──────────────── */
.qty-btn {
    box-shadow: 0 3px 10px rgba(0,0,0,0.2) !important;
    transition: all 0.2s ease !important;
}

.qty-btn:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 14px rgba(0,0,0,0.3) !important;
}

/* ─── Testimonial Cards ───────────────────────────── */
.testimonial-card {
    box-shadow: 0 6px 24px rgba(0,0,0,0.2) !important;
    border-radius: 14px !important;
    transition: all 0.3s ease !important;
}

.testimonial-card:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 32px rgba(0,0,0,0.3) !important;
}
