/* ==========================================================================
   DESIGN SYSTEM & VARIABLES - Omni-channel Retail
   ========================================================================== */
:root {
    /* Brand Colors - High contrast, urgent, and trustworthy */
    --color-brand-primary: #EE1D24;
    /* Strong red for action/urgency */
    --color-brand-secondary: #000000;
    /* Solid black for retail authority */
    --color-brand-accent: #FFC107;
    /* Yellow for badges/sale highlights */

    /* Neutral Palette */
    --color-bg-base: #FFFFFF;
    /* Pure white for products (Crucial) */
    --color-bg-light: #F8F9FA;
    /* Off-white for section separation */
    --color-bg-dark: #121212;
    /* Deep dark for premium contrast */
    --color-bg-pattern: #1A1A1A;

    /* Text Colors */
    --text-primary: #121212;
    --text-secondary: #4A4A4A;
    --text-muted: #8E8E8E;

    /* Typography */
    /* Inter provides clean, legible numbers which are critical for pricing */
    --font-primary: 'Inter', sans-serif;

    /* Borders & Shadows */
    --border-color: #EAEAEA;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.12);

    /* Utilities */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background-color: var(--color-bg-base);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-gap {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--color-bg-light);
}

.bg-dark {
    background-color: var(--color-bg-dark);
    color: #FFF;
}

.bg-brand {
    background-color: var(--color-brand-primary);
    color: #FFF;
}

.text-center {
    text-align: center;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-3 {
    margin-bottom: 1rem;
}

.pt-4 {
    padding-top: 1.5rem;
}

.fw-bold {
    font-weight: 700;
}

.text-success {
    color: #00A65A;
}

/* Section Headers */
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-fast);
    text-align: center;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background-color: var(--color-brand-primary);
    color: #FFF;
}

.btn-primary:hover {
    background-color: #C1161D;
    /* Darker red */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(238, 29, 36, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.btn-outline:hover {
    background-color: var(--text-primary);
    color: var(--color-bg-base);
}

.bg-dark .btn-outline {
    border-color: #FFF;
    color: #FFF;
}

.bg-dark .btn-outline:hover {
    background-color: #FFF;
    color: var(--color-bg-dark);
}

.btn-whatsapp {
    background-color: #25D366;
    color: #FFF;
}

.btn-whatsapp:hover {
    background-color: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-dark {
    background-color: var(--color-bg-dark);
    color: #FFF;
}

.btn-dark:hover {
    background-color: #000;
}

.shadow-btn {
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   TOP UTILITY BAR
   ========================================================================== */
.utility-bar {
    background-color: var(--color-bg-dark);
    color: #FFF;
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 8px 0;
}

.utility-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.utility-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.utility-item a {
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color var(--transition-fast);
}

.utility-item a:hover {
    text-decoration-color: currentColor;
}

.utility-item i {
    font-size: 1rem;
    color: var(--color-brand-accent);
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }

    .utility-content {
        justify-content: center;
    }
}

/* ==========================================================================
   MAIN NAVBAR
   ========================================================================== */
.navbar {
    background-color: var(--color-bg-base);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--transition-fast);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--color-brand-primary);
    color: #FFF;
    border-radius: var(--radius-sm);
    font-size: 1.25rem;
}

.search-bar {
    display: flex;
    flex: 1;
    max-width: 500px;
    margin: 0 40px;
    position: relative;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.search-bar:focus-within {
    border-color: var(--text-primary);
}

.search-bar input {
    width: 100%;
    padding: 12px 16px;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 0.9375rem;
}

.search-bar button {
    background: transparent;
    border: none;
    padding: 0 16px;
    cursor: pointer;
    font-size: 1.25rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.search-bar button:hover {
    color: var(--color-brand-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.action-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-bg-light);
    color: var(--text-primary);
    font-size: 1.25rem;
}

.action-btn:hover {
    background-color: #E2E2E2;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: var(--color-brand-primary);
    color: #FFF;
    font-size: 0.75rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-bg-base);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

.mobile-search {
    display: none;
    padding-bottom: 16px;
}

.mobile-search .search-bar {
    max-width: 100%;
    margin: 0;
}

@media (max-width: 768px) {
    .nav-container {
        height: 60px;
    }

    .mobile-toggle {
        display: block;
    }

    .mobile-search {
        display: block;
    }

    .brand-logo {
        margin: 0 auto;
        font-size: 1.25rem;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
}

/* ==========================================================================
   HERO ROTATIVO (SPLIDE)
   ========================================================================== */
.hero-slider {
    background-color: var(--color-bg-light);
    border-bottom: 1px solid var(--border-color);
}

.splide__slide {
    padding: 60px 0;
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .slide-content {
        grid-template-columns: 1fr 1fr;
    }
}

.slide-text h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.1;
}

.slide-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.badge-new {
    background-color: var(--color-brand-primary);
    color: #FFF;
}

.badge-sale {
    background-color: var(--color-brand-accent);
    color: var(--text-primary);
}

.badge-neutral {
    background-color: var(--color-bg-dark);
    color: #FFF;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 32px;
    font-family: inherit;
    /* Inter */
}

.price-current {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.price-old {
    font-size: 1.25rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 600;
}

.slide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.slide-image img {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: var(--radius-md);
    /* Just in case image has slight background, though should be pure white */
    mix-blend-mode: multiply;
    /* Helps hide any slightly off-white backgrounds against bg-light */
}

/* Splide Pagination Styling */
.splide__pagination__page {
    background: #D1D5DB;
    width: 10px;
    height: 10px;
    margin: 4px;
}

.splide__pagination__page.is-active {
    background: var(--color-brand-primary);
    transform: scale(1.4);
}

/* ==========================================================================
   URGENT OFFERS (COUNTDOWN) & PRODUCT GRID
   ========================================================================== */
.countdown-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--color-brand-primary);
    color: #FFF;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
}

.countdown-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
}

.timer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 800;
    font-size: 1.25rem;
    font-variant-numeric: tabular-nums;
    /* Keeps numbers monospaced */
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.time-block small {
    font-size: 0.65rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .section-header.flex-between {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card {
    background-color: var(--color-bg-base);
    /* Pure White */
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    position: relative;
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    border-color: #D1D5DB;
}

.product-tags {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.product-card .tag {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}

.tag-discount {
    background-color: var(--color-brand-primary);
    color: #FFF;
}

.tag-stock {
    background-color: var(--color-bg-dark);
    color: #FFF;
}

.product-img-wrapper {
    position: relative;
    padding-top: 100%;
    /* 1:1 Aspect Ratio (Square) */
    margin-bottom: 16px;
    background-color: #FFF;
    /* Ensure pure white */
}

.product-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Don't crop product */
    padding: 20px;
    transition: transform var(--transition-smooth);
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.05);
    /* Subtle zoom */
}

.wishlist-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color-bg-light);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 2;
}

.wishlist-btn:hover {
    color: var(--color-brand-primary);
    background-color: #FEE2E2;
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.product-name {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: auto;
    /* Pushes price down */
    line-height: 1.4;
}

.product-name a {
    color: var(--text-primary);
}

.product-name a:hover {
    color: var(--color-brand-primary);
    text-decoration: underline;
}

.product-prices {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0 16px;
}

.new-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
}

.old-price {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.cart-add-btn {
    opacity: 1;
    /* Visible on mobile */
}

@media (min-width: 1024px) {
    .cart-add-btn {
        opacity: 0;
        transform: translateY(10px);
    }

    .product-card:hover .cart-add-btn {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   CATEGORIES GRID
   ========================================================================== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.category-card {
    background-color: #FFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-align: center;
    transition: all var(--transition-smooth);
}

.category-card:hover {
    border-color: var(--color-brand-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.cat-img-box {
    padding-top: 100%;
    /* Square */
    position: relative;
    background-color: var(--color-bg-light);
    /* Slight contrast to image pure white */
}

.cat-img-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: darken;
    /* Ensures white blends nicely */
}

.cat-info {
    padding: 20px;
}

.cat-info h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.cat-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-brand-primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap var(--transition-fast);
}

.category-card:hover .cat-link {
    gap: 8px;
}

/* ==========================================================================
   STAR PRODUCT (DEDICATED SECTION)
   ========================================================================== */
.star-product {
    color: #FFF;
}

.pattern-bg {
    background-image: radial-gradient(var(--color-bg-pattern) 1px, transparent 1px);
    background-size: 20px 20px;
}

.star-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .star-container {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

/* Gallery */
.main-image-cube {
    background-color: #FFF;
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    margin-bottom: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.main-image-cube img {
    width: 100%;
    transition: opacity var(--transition-fast);
}

.rotate-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #FFF;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.thumb-list {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.thumb {
    width: 80px;
    height: 80px;
    background-color: #FFF;
    border-radius: var(--radius-sm);
    object-fit: contain;
    padding: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: all var(--transition-fast);
}

.thumb:hover,
.thumb.active {
    opacity: 1;
}

.thumb.active {
    border-color: var(--color-brand-primary);
}

/* Details */
.star-details h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin: 8px 0 16px;
}

.tag-light {
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFF;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.line-down {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.reviews-summary {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
    color: #A0A0A0;
}

.stars {
    color: var(--color-brand-accent);
    font-size: 1.125rem;
}

.price-big {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 8px;
}

.price-financing {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #00A65A;
}

.specs-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.specs-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.specs-list i {
    color: var(--color-brand-primary);
    font-size: 1.25rem;
    margin-top: 2px;
}

/* Stock Pulsing Indicator */
.stock-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: var(--radius-sm);
}

.status-dot {
    width: 12px;
    height: 12px;
    background-color: #00A65A;
    border-radius: 50%;
    position: relative;
}

.status-dot.pulsing::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 20px;
    height: 20px;
    background-color: rgba(0, 166, 90, 0.4);
    border-radius: 50%;
    animation: pulser 1.5s infinite ease-out;
}

@keyframes pulser {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.star-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

@media (min-width: 640px) {
    .star-actions {
        flex-direction: row;
    }
}

.trust-badge {
    font-size: 0.875rem;
    color: #A0A0A0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ==========================================================================
   LOCATIONS / OMNICHANNEL
   ========================================================================== */
.location-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .location-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

.info-card {
    background-color: var(--color-bg-base);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.info-row {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.info-row i {
    font-size: 1.5rem;
    color: var(--color-brand-primary);
    margin-top: 2px;
}

.info-row strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.info-row p {
    color: var(--text-secondary);
    margin: 0;
}

.map-placeholder {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    padding-top: 75%;
    /* 4:3 Aspect */
}

.map-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-pin-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pin {
    color: #25D366;
    /* WhatsApp Green / Maps Green */
    font-size: 4rem;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-7px);
    }
}

/* ==========================================================================
   NEWSLETTER
   ========================================================================== */
.newsletter-inner {
    max-width: 600px;
}

.icon-xl {
    font-size: 4rem;
    margin-bottom: 16px;
}

.newsletter h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.newsletter p {
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.subscribe-form {
    position: relative;
}

.input-group {
    display: flex;
    background-color: #FFF;
    border-radius: var(--radius-sm);
    padding: 4px;
    overflow: hidden;
}

.input-group input {
    flex: 1;
    border: none;
    padding: 16px 20px;
    font-size: 1rem;
    outline: none;
    color: var(--text-primary);
}

.success-msg {
    margin-top: 16px;
    font-weight: 600;
    font-size: 1rem;
}

.hidden {
    display: none;
}


/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    padding-top: 80px;
    background-color: var(--color-bg-base);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.footer-col p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.payment-methods {
    display: flex;
    gap: 12px;
    font-size: 2rem;
    color: var(--text-muted);
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.footer-col a:hover {
    color: var(--color-brand-primary);
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--text-primary);
}

.contact-links i {
    color: var(--color-brand-primary);
    font-size: 1.25rem;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--color-bg-light);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.25rem;
}

.social-links a:hover {
    background-color: var(--color-brand-primary);
    color: #FFF;
}

.border-top {
    border-top: 1px solid var(--border-color);
}

@media (max-width: 639px) {
    .mobile-col {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
    }
}