/* ============================================================
   DEKOOR - Sitio Web Principal
   Paleta: Crema cálido + Teal oscuro + Naranja
   Diseño inspirado en referencia e-commerce
   ============================================================ */

:root {
    --primary: #D4722C;
    --primary-hover: #bf5f1e;
    --primary-light: #f5e0cf;
    --teal: #1B4D5C;
    --teal-light: #2a6b7e;
    --cream: #FAF0E6;
    --cream-dark: #f0e0d0;
    --white: #FFFFFF;
    --text-dark: #1B3A4B;
    --text-medium: #4a6274;
    --text-light: #7a9aab;
    --border: rgba(27, 77, 92, 0.1);
    --shadow: 0 4px 24px rgba(27, 77, 92, 0.08);
    --shadow-lg: 0 12px 40px rgba(27, 77, 92, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --nav-height: 80px;
    --radius: 16px;
    --radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-height) + 32px);
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

.hidden { display: none !important; }

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

/* ============================================================
   TICKER BANNER
   ============================================================ */
.ticker-banner {
    background: var(--teal);
    color: var(--white);
    overflow: hidden;
    white-space: nowrap;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 101;
    height: 32px;
    display: flex;
    align-items: center;
}

.ticker-track {
    display: inline-flex;
    align-items: center;
    animation: ticker 20s linear infinite;
}

.ticker-item {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0 1.5rem;
}

.ticker-item i {
    margin-right: 6px;
    color: var(--primary);
}

.ticker-sep {
    color: var(--primary);
    font-size: 0.6rem;
}

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

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 32px;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-full {
    height: 56px;
    width: auto;
}

.logo-icon {
    height: 48px;
    width: 48px;
    border-radius: 50%;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: -0.5px;
}

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

.nav-link {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    padding: 0.5rem 0.85rem;
    border-radius: 10px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--teal);
    background: var(--cream);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-icon-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--teal);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.nav-icon-btn:hover {
    background: var(--cream);
}

.cart-btn {
    position: relative;
    background: #25D366;
    color: white;
    font-size: 1.2rem;
}

.cart-btn:hover {
    background: #1da851;
    color: white;
}

.hamburger-btn {
    display: none;
    background: none;
    border: 1px solid var(--border);
    color: var(--teal);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.hamburger-btn:hover {
    background: var(--cream);
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(27, 58, 75, 0.4);
    z-index: 998;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background: var(--white);
    border-left: 1px solid var(--border);
    z-index: 999;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    animation: slideIn 0.3s ease;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
    align-self: flex-end;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.mobile-link:hover {
    background: var(--cream);
    color: var(--teal);
}

.mobile-link.active {
    background: var(--primary-light);
    color: var(--primary);
}

.mobile-link i { width: 20px; text-align: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    padding-top: calc(var(--nav-height) + 32px);
    background: var(--cream-dark);
    color: var(--text-dark);
    overflow: hidden;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 70vh;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--teal);
}

.hero-subtitle {
    color: var(--text-medium);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.trust-strip {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-medium);
    font-size: 0.85rem;
}

.trust-item i { color: var(--primary); }
.trust-item strong { color: var(--teal); }

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Carousel */
.carousel {
    width: 100%;
    max-width: 480px;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.carousel-track {
    position: relative;
    width: 100%;
    aspect-ratio: 0.75;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.carousel-slide.active {
    opacity: 1;
}

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

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: inherit;
    text-decoration: none;
    transition: var(--transition);
    border-radius: var(--radius);
    padding: 14px 28px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(212, 114, 44, 0.3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 114, 44, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
    padding: 12px 28px;
    border-radius: var(--radius);
}

.btn-outline:hover {
    background: var(--teal);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
    border-radius: var(--radius);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
    padding: 5rem 0;
}

.section-white {
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

/* ============================================================
   COLLECTIONS
   ============================================================ */
.collections-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.collection-card-v2 {
    text-decoration: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.collection-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.collection-img-v2 {
    width: 100%;
    aspect-ratio: 0.8;
    overflow: hidden;
}

.collection-img-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.collection-card-v2:hover .collection-img-v2 img {
    transform: scale(1.05);
}

.collection-name {
    padding: 1rem;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    text-align: center;
    letter-spacing: 0.3px;
}

.collections-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.25rem;
}

.collection-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
}

.collection-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.collection-large {
    grid-row: span 1;
}

.collection-large:nth-child(1) {
    grid-column: 1 / 2;
}

.collection-large:nth-child(2) {
    grid-column: 2 / 3;
}

.collection-small:nth-child(3) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.collection-small:nth-child(4) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.collection-img {
    width: 100%;
    aspect-ratio: 1.2;
    overflow: hidden;
}

.collection-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.collection-card:hover .collection-img img {
    transform: scale(1.05);
}

.collection-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--primary);
    opacity: 0.5;
}

.collection-info {
    padding: 1.25rem;
}

.collection-info h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
    letter-spacing: 0.3px;
}

.collection-info p {
    font-size: 0.85rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.collection-label {
    padding: 1rem 1.25rem;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-dark);
    letter-spacing: 0.3px;
    background: var(--white);
}

/* ============================================================
   CATEGORIES
   ============================================================ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.category-item {
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
}

.category-item:hover {
    transform: translateY(-4px);
}

.category-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--cream);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--teal);
    transition: var(--transition);
}

.category-item:hover .category-icon {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
    box-shadow: 0 8px 24px rgba(27, 77, 92, 0.2);
}

.category-icon-img {
    overflow: hidden;
    padding: 0;
}

.category-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.category-item:hover .category-icon-img {
    background: transparent;
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(212, 114, 44, 0.2);
}

.category-item:hover .category-icon-img img {
    transform: scale(1.1);
}

.category-item span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.3px;
}

/* ============================================================
   TESTIMONIALS INLINE
   ============================================================ */
.testimonials-inline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.testimonial-inline-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: var(--transition);
}

.testimonial-inline-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.testimonial-avatar-lg {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
    flex-shrink: 0;
}

.testimonial-inline-body {
    flex: 1;
}

.testimonial-inline-text {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.testimonial-inline-text::before { content: '"'; }
.testimonial-inline-text::after { content: '"'; }

.testimonial-inline-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.testimonial-inline-stars i {
    color: #f59e0b;
    font-size: 0.8rem;
}

/* Testimonials Carousel */
.testimonials-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tc-track-wrapper {
    flex: 1;
    overflow: hidden;
}

.tc-track {
    display: flex;
    gap: 1.25rem;
    transition: transform 0.4s ease;
}

.tc-card {
    min-width: calc(50% - 0.625rem);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(27, 77, 92, 0.06);
}

.tc-card,
.tc-card * {
    white-space: normal !important;
}

.tc-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.tc-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    object-fit: cover;
    flex-shrink: 0;
}

.tc-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.tc-meta {
    font-size: 0.8rem;
    color: var(--text-medium);
}

.tc-city {
    color: var(--primary);
    font-weight: 500;
}

.tc-stars {
    margin-bottom: 8px;
}

.tc-stars i {
    color: #f59e0b;
    font-size: 0.85rem;
}

.tc-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-medium);
    font-style: italic;
    white-space: normal !important;
    word-break: break-word;
}

.tc-text::before { content: '\201C'; }
.tc-text::after { content: '\201D'; }

.tc-photo {
    width: 100%;
    max-height: 360px;
    object-fit: contain;
    border-radius: 12px;
    margin-top: 12px;
    border: 1px solid var(--border);
    background: #f8f4ef;
}

.tc-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--teal);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(27, 77, 92, 0.08);
}

.tc-arrow:hover {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
}

.tc-arrow:disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

@media (max-width: 768px) {
    .tc-card {
        min-width: 100%;
    }
    .tc-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
    .testimonials-carousel {
        gap: 0.4rem;
    }
}

.testimonials-cta {
    text-align: center;
    margin-top: 2rem;
}

.testimonial-loading {
    text-align: center;
    padding: 40px;
    color: var(--text-light);
    grid-column: 1 / -1;
}

.spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 12px;
}

/* ============================================================
   STEPS / HOW IT WORKS
   ============================================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step-card {
    text-align: center;
    padding: 1.5rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--cream);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--teal);
    margin: 0 auto 1.25rem;
}

.step-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-medium);
    font-size: 0.88rem;
    line-height: 1.5;
}

/* ============================================================
   VALUE PROPS
   ============================================================ */
.value-props {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 3rem 0;
}

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

.vp-item {
    text-align: center;
    padding: 1rem;
}

.vp-icon {
    width: 60px;
    height: 60px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.4rem;
    color: var(--teal);
}

.vp-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    letter-spacing: 0.5px;
}

.vp-item p {
    color: var(--text-medium);
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 280px;
    margin: 0 auto;
}

/* ============================================================
   MAP
   ============================================================ */
.map-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.delivery-map {
    height: 400px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    z-index: 1;
}

.map-stats {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.map-stat-pill {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 0.85rem;
    color: var(--text-medium);
}

.map-stat-pill strong {
    color: var(--primary);
    font-weight: 700;
}

/* Leaflet overrides */
.delivery-pin {
    display: flex;
    flex-direction: column;
    align-items: center;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
}

.pin-head {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border: 2.5px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.75rem;
    font-family: 'Outfit', sans-serif;
}

.pin-tail {
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 10px solid var(--primary);
    margin-top: -2px;
}

.leaflet-popup-content-wrapper {
    background: var(--teal) !important;
    color: #fff !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2) !important;
}

.leaflet-popup-tip { background: var(--teal) !important; }

.leaflet-popup-content {
    font-family: 'Outfit', sans-serif !important;
    font-size: 0.9rem !important;
    margin: 10px 14px !important;
}

.popup-city { font-weight: 700; font-size: 1rem; margin-bottom: 2px; }
.popup-count { color: var(--primary); font-weight: 600; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.faq-item.active {
    border-color: var(--primary-light);
    box-shadow: 0 2px 12px rgba(212, 114, 44, 0.08);
}

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

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

.faq-question i {
    color: var(--primary);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

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

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-answer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover { text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--teal);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.25rem;
}

.footer-col a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    transition: var(--transition);
}

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

.footer-col a i {
    width: 16px;
    text-align: center;
    color: var(--primary);
}

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

.footer-logo-full {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.whatsapp-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    z-index: 90;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    text-decoration: none;
}

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

.whatsapp-fab::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #25D366;
    border-radius: 50%;
    animation: waPulse 2s infinite;
    z-index: -1;
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
    position: fixed;
    bottom: 96px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 90;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.scroll-top:hover {
    background: var(--teal);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(27, 58, 75, 0.9);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: pointer;
    padding: 20px;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

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

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

.fade-section {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .collections-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-center {
        grid-column: 1 / -1;
        order: -1;
    }
}

@media (max-width: 768px) {
    :root { --nav-height: 70px; }

    .nav-links, .nav-actions { display: none; }
    .hamburger-btn { display: flex; }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 1.5rem;
        min-height: auto;
    }

    .hero-inner { grid-template-columns: 1fr; }

    .hero-visual {
        order: -1;
    }

    .carousel {
        max-width: 320px;
        margin: 0 auto;
    }

    .hero h1 { font-size: 2.2rem; }

    .trust-strip { justify-content: center; }

    .section { padding: 3.5rem 0; }

    .collections-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .category-icon {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }

    .testimonials-inline {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .vp-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .delivery-map {
        height: 300px;
        border-radius: var(--radius);
    }
}

@media (max-width: 480px) {
    .container { padding: 0 1.25rem; }

    .hero-inner { padding: 2.5rem 1.25rem; }
    .hero h1 { font-size: 1.8rem; }

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

    .trust-strip { gap: 0.75rem; }
    .trust-item { font-size: 0.8rem; }

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

    .category-icon {
        width: 70px;
        height: 70px;
        font-size: 1.3rem;
    }

    .category-item span { font-size: 0.7rem; }

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

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

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

    .logo-full { height: 40px; }
    .logo-icon { height: 38px; width: 38px; }
    .logo-text { font-size: 1.3rem; }

    .whatsapp-fab {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
        bottom: 16px;
        right: 16px;
    }

    .scroll-top {
        bottom: 80px;
        right: 20px;
        width: 38px;
        height: 38px;
    }

    .testimonial-inline-card {
        flex-direction: column;
        text-align: center;
    }
}
