/* ============================================
   Flora Mine - Christmas Landing Page Styles
   ============================================ */

:root {
    --forest: #0A4D2E;
    --forest-light: #147D4A;
    --emerald: #1DB954;
    --crimson: #B91C3C;
    --crimson-dark: #991B33;
    --gold: #D4A547;
    --gold-light: #F4D03F;
    --cream: #FFFEF9;
    --snow: #F8FAFC;
    --charcoal: #1C1C1C;
    --glass: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--forest);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

/* ============ SNOWFALL ============ */
.snowfall {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.snow {
    position: absolute;
    top: -10px;
    color: white;
    animation: fall linear infinite;
    opacity: 0.8;
    text-shadow: 0 0 10px rgba(255,255,255,0.8);
}

@keyframes fall {
    to { transform: translateY(100vh) rotate(360deg); }
}

/* ============ HEADER ============ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(10, 77, 46, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

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

.logo-img {
    height: 45px;
    width: auto;
}

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

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.logo-tagline {
    font-size: 8px;
    color: var(--gold);
    letter-spacing: 1.5px;
    font-weight: 500;
}

.header-actions {
    display: flex;
    gap: 12px;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.btn-call {
    background: var(--crimson);
    color: white;
    box-shadow: 0 4px 20px rgba(185, 28, 60, 0.4);
}

.btn-call:hover {
    background: var(--crimson-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(185, 28, 60, 0.5);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* ============ HERO SECTION ============ */
.hero {
    min-height: 100vh;
    background: linear-gradient(165deg, var(--forest) 0%, var(--forest-light) 50%, var(--emerald) 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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.03'%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");
    pointer-events: none;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: var(--cream);
    clip-path: ellipse(75% 100% at 50% 100%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--crimson);
    color: white;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 20px rgba(185, 28, 60, 0.4);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 20px;
}

.hero-title span {
    display: block;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 15px;
    font-weight: 300;
    max-width: 500px;
}

.hero-tagline {
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 35px;
}

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

.btn-hero-primary {
    background: var(--crimson);
    color: white;
    padding: 18px 35px;
    font-size: 16px;
    box-shadow: 0 8px 30px rgba(185, 28, 60, 0.4);
}

.btn-hero-primary:hover {
    background: var(--crimson-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(185, 28, 60, 0.5);
}

.btn-hero-secondary {
    background: var(--glass);
    color: white;
    padding: 18px 35px;
    font-size: 16px;
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212, 165, 71, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.hero-main-image {
    position: relative;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.hero-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 3s ease-in-out infinite;
}

.floating-badge-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.floating-badge-2 {
    bottom: 15%;
    left: -30px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-badge .icon {
    font-size: 24px;
}

.floating-badge .text {
    font-size: 13px;
    font-weight: 600;
    color: var(--forest);
}

/* ============ FEATURE BAR ============ */
.feature-bar {
    background: linear-gradient(90deg, var(--forest) 0%, var(--forest-light) 50%, var(--emerald) 100%);
    padding: 25px 20px;
}

.feature-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.feature-text h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.feature-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

/* ============ COUNTDOWN TIMER ============ */
.countdown-bar {
    background: linear-gradient(90deg, var(--crimson), var(--crimson-dark));
    padding: 15px 20px;
    text-align: center;
    color: white;
    font-weight: 500;
}

.countdown-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.countdown-label {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.countdown-timer {
    display: flex;
    gap: 15px;
}

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

.countdown-value {
    background: rgba(255,255,255,0.2);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 700;
    min-width: 55px;
}

.countdown-unit {
    font-size: 10px;
    margin-top: 4px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============ SECTION COMMON ============ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--forest);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 56px);
    color: var(--forest);
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ============ PRODUCTS SECTION ============ */
.products-section {
    padding: 100px 20px;
    background: var(--cream);
}

/* Category Filters */
.category-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    border: 2px solid var(--forest);
    background: transparent;
    color: var(--forest);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--forest);
    color: white;
}

/* Carousel Container */
.carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 50px;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: grab;
}

.carousel-track:active {
    cursor: grabbing;
}

.carousel-track.dragging {
    transition: none;
}

/* Product Card */
.product-card {
    flex: 0 0 300px;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--crimson);
    color: white;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--charcoal);
}

.product-image-wrap {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(180deg, #f8faf8 0%, #e8f0e8 100%);
}

/* Product Mini Carousel */
.product-image-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-images-track {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease;
}

.product-images-track img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.product-card:hover .product-image,
.product-card:hover .product-images-track img {
    transform: scale(1.08);
}

/* Mini Carousel Navigation */
.product-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--forest);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 5;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.product-card:hover .product-carousel-nav {
    opacity: 1;
}

.product-carousel-nav:hover {
    background: var(--forest);
    color: white;
}

.product-carousel-nav.prev-img {
    left: 10px;
}

.product-carousel-nav.next-img {
    right: 10px;
}

/* Mini Carousel Dots */
.product-carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}

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

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

.product-quick-view {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    background: white;
    color: var(--forest);
    padding: 10px 25px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    text-decoration: none;
}

.product-card:hover .product-quick-view {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.product-info {
    padding: 25px;
}

.product-category {
    font-size: 11px;
    color: var(--emerald);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.product-desc {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.product-tag {
    background: rgba(10, 77, 46, 0.08);
    color: var(--forest);
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
}

/* Product WhatsApp Button */
.product-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    margin-top: 15px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.product-whatsapp-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.product-whatsapp-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--forest);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background: var(--forest);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 0;
}

.carousel-nav.next {
    right: 0;
}

.carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(10, 77, 46, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.carousel-dot:hover {
    background: var(--forest-light);
}

/* View All Button */
.view-all-wrap {
    text-align: center;
    margin-top: 50px;
}

.btn-view-all {
    background: var(--forest);
    color: white;
    padding: 18px 45px;
    font-size: 16px;
    box-shadow: 0 8px 30px rgba(10, 77, 46, 0.3);
}

.btn-view-all:hover {
    background: var(--forest-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(10, 77, 46, 0.4);
}

/* ============ WHY CHOOSE SECTION ============ */
.why-section {
    padding: 100px 20px;
    background: linear-gradient(165deg, var(--forest) 0%, var(--forest-light) 100%);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 165, 71, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.why-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.benefit-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(212, 165, 71, 0.3);
}

.benefit-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.benefit-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* ============ TESTIMONIALS SECTION ============ */
.testimonials-section {
    padding: 80px 20px;
    background: var(--snow);
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--forest-light), var(--emerald));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: var(--charcoal);
    font-size: 16px;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(212, 165, 71, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
}

.star-icon {
    color: var(--gold);
    font-size: 14px;
}

.rating-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal);
}

.testimonial-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    font-style: italic;
}

/* ============ CTA SECTION ============ */
.cta-section {
    padding: 100px 20px;
    background: var(--cream);
}

.cta-card {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 40px;
    padding: 70px 50px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.cta-card::before,
.cta-card::after {
    content: '🎄';
    position: absolute;
    font-size: 120px;
    opacity: 0.05;
}

.cta-card::before {
    top: -30px;
    left: -30px;
}

.cta-card::after {
    bottom: -30px;
    right: -30px;
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 5vw, 48px);
    color: var(--forest);
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-cta-primary {
    background: var(--crimson);
    color: white;
    padding: 20px 45px;
    font-size: 18px;
    box-shadow: 0 8px 30px rgba(185, 28, 60, 0.4);
}

.btn-cta-primary:hover {
    background: var(--crimson-dark);
    transform: translateY(-3px);
}

.btn-cta-whatsapp {
    background: #25D366;
    color: white;
    padding: 20px 45px;
    font-size: 18px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-cta-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
}

.store-info {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.store-location {
    font-size: 14px;
    color: #888;
    margin-bottom: 5px;
}

.store-phone {
    font-size: 28px;
    font-weight: 700;
    color: var(--forest);
    text-decoration: none;
    transition: color 0.3s;
}

.store-phone:hover {
    color: var(--crimson);
}

/* ============ FOOTER ============ */
.footer {
    background: var(--charcoal);
    color: white;
    padding: 70px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand-section .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-brand-section .logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.footer-tagline {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--emerald);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--gold);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-address {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
}

.footer-address strong {
    color: white;
}

.footer-address a {
    color: var(--gold);
    text-decoration: none;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

/* ============ FLOATING WHATSAPP ============ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    z-index: 999;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 8px 50px rgba(37, 211, 102, 0.8); }
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

    .hero-subtitle {
        margin: 0 auto 15px;
    }

    .hero-cta {
        justify-content: center;
    }

    .floating-badge {
        display: none;
    }

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

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

@media (max-width: 768px) {
    .header-actions {
        display: none;
    }

    .hero {
        padding: 100px 20px 80px;
    }

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

    .carousel-container {
        padding: 0 20px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .carousel-nav.prev { left: 5px; }
    .carousel-nav.next { right: 5px; }

    .countdown-inner {
        flex-direction: column;
        gap: 15px;
    }

    .feature-bar-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-card {
        padding: 50px 25px;
        border-radius: 30px;
    }

    .store-info {
        flex-direction: column;
        gap: 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .product-card {
        flex: 0 0 260px;
    }

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

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

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