@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;700;800;900&family=Barlow:wght@400;500;600;700&display=swap');

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

body {
    font-family: 'Barlow', sans-serif;
    background: white;
    min-height: 100vh;
}

.font-barlow-condensed {
    font-family: 'Barlow Condensed', sans-serif;
}

/* Site Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #003DA5;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-brand {
    flex-shrink: 0;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.header-logo-gero,
.header-logo-electro {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.65rem;
    line-height: 1;
    color: white;
    letter-spacing: 0.02em;
}

.header-logo-gero {
    font-weight: 900;
}

.header-logo-electro {
    font-weight: 300;
    color: #FFD200;
}

.header-nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #003DA5, #FFD600);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    flex-shrink: 0;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

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

/* Responsive Header */
@media (max-width: 768px) {
    .site-header {
        top: 16px;
        width: calc(100% - 32px);
    }
    
    .header-container {
        padding: 0 16px;
    }
    
    .header-nav {
        display: none;
    }
    
    .header-logo {
        font-size: 1.125rem;
    }
    
    .whatsapp-btn {
        padding: 8px 16px;
        font-size: 0.8125rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 120px 24px 80px 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #003DA5 0%, #001f6b 50%, #000a2e 100%);
    position: relative;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.glow-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: #003DA5;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.glow-2 {
    width: 300px;
    height: 300px;
    background: #FFD600;
    bottom: -50px;
    left: -50px;
    opacity: 0.2;
    animation-delay: 2s;
}

.glow-3 {
    width: 250px;
    height: 250px;
    background: #E3000F;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.15;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

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

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-brand {
    margin-bottom: 8px;
}

.hero-logo-gero {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    letter-spacing: -0.02em;
    line-height: 1;
}

.hero-logo-electro {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: #FFD600;
    letter-spacing: 0.1em;
    line-height: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 214, 0, 0.15);
    border: 1px solid rgba(255, 214, 0, 0.3);
    border-radius: 100px;
    color: #FFD600;
    font-size: 0.875rem;
    font-weight: 600;
    width: fit-content;
}

.hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.btn-primary {
    padding: 14px 32px;
    background: linear-gradient(135deg, #FFD600, #FFB800);
    color: #003DA5;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 214, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 214, 0, 0.4);
}

.btn-secondary {
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.orbital-showcase {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 500px;
    max-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-center {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 61, 165, 0.1) 0%, transparent 70%);
    animation: orbit-glow 4s ease-in-out infinite;
}

.orbit-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.orbit-image {
    max-width: 180px;
    max-height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 61, 165, 0.3));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.orbit-label {
    position: absolute;
    bottom: -30px;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    transition: all 0.3s ease;
}

/* Orbit positions and animations */
.orbit-tv {
    width: 200px;
    height: 150px;
    animation: orbit-rotate 20s linear infinite;
}

.orbit-tv .orbit-image {
    animation: orbit-z-index-tv 20s linear infinite;
}

.orbit-fridge {
    width: 140px;
    height: 220px;
    animation: orbit-rotate 20s linear infinite;
    animation-delay: -5s;
}

.orbit-fridge .orbit-image {
    animation: orbit-z-index-fridge 20s linear infinite;
    animation-delay: -5s;
}

.orbit-washing {
    width: 160px;
    height: 140px;
    animation: orbit-rotate 20s linear infinite;
    animation-delay: -10s;
}

.orbit-washing .orbit-image {
    animation: orbit-z-index-washing 20s linear infinite;
    animation-delay: -10s;
}

.orbit-phone {
    width: 100px;
    height: 180px;
    animation: orbit-rotate 20s linear infinite;
    animation-delay: -15s;
}

.orbit-phone .orbit-image {
    animation: orbit-z-index-phone 20s linear infinite;
    animation-delay: -15s;
}

/* Orbit rotation animation */
@keyframes orbit-rotate {
    0% {
        transform: rotate(0deg) translateX(180px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(180px) rotate(-360deg);
    }
}

/* Z-index and blur animations for depth effect */
@keyframes orbit-z-index-tv {
    0%, 100% {
        transform: scale(1.2);
        filter: drop-shadow(0 30px 60px rgba(0, 61, 165, 0.5)) brightness(1.1);
    }
    25% {
        transform: scale(1);
        filter: drop-shadow(0 20px 40px rgba(0, 61, 165, 0.3)) brightness(1);
    }
    50% {
        transform: scale(0.8);
        filter: drop-shadow(0 10px 20px rgba(0, 61, 165, 0.2)) brightness(0.7) blur(2px);
    }
    75% {
        transform: scale(1);
        filter: drop-shadow(0 20px 40px rgba(0, 61, 165, 0.3)) brightness(1);
    }
}

@keyframes orbit-z-index-fridge {
    0% {
        transform: scale(0.8);
        filter: drop-shadow(0 10px 20px rgba(0, 61, 165, 0.2)) brightness(0.7) blur(2px);
    }
    25% {
        transform: scale(1);
        filter: drop-shadow(0 20px 40px rgba(0, 61, 165, 0.3)) brightness(1);
    }
    50% {
        transform: scale(1.2);
        filter: drop-shadow(0 30px 60px rgba(0, 61, 165, 0.5)) brightness(1.1);
    }
    75% {
        transform: scale(1);
        filter: drop-shadow(0 20px 40px rgba(0, 61, 165, 0.3)) brightness(1);
    }
}

@keyframes orbit-z-index-washing {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 20px 40px rgba(0, 61, 165, 0.3)) brightness(1);
    }
    25% {
        transform: scale(1.2);
        filter: drop-shadow(0 30px 60px rgba(0, 61, 165, 0.5)) brightness(1.1);
    }
    50% {
        transform: scale(1);
        filter: drop-shadow(0 20px 40px rgba(0, 61, 165, 0.3)) brightness(1);
    }
    75% {
        transform: scale(0.8);
        filter: drop-shadow(0 10px 20px rgba(0, 61, 165, 0.2)) brightness(0.7) blur(2px);
    }
}

@keyframes orbit-z-index-phone {
    0% {
        transform: scale(1.2);
        filter: drop-shadow(0 30px 60px rgba(0, 61, 165, 0.5)) brightness(1.1);
    }
    25% {
        transform: scale(1);
        filter: drop-shadow(0 20px 40px rgba(0, 61, 165, 0.3)) brightness(1);
    }
    50% {
        transform: scale(0.8);
        filter: drop-shadow(0 10px 20px rgba(0, 61, 165, 0.2)) brightness(0.7) blur(2px);
    }
    75% {
        transform: scale(1);
        filter: drop-shadow(0 20px 40px rgba(0, 61, 165, 0.3)) brightness(1);
    }
}

@keyframes orbit-glow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero {
        padding: 100px 16px 60px 16px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-left {
        text-align: center;
    }
    
    .hero-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    
    .hero-logo-gero,
    .hero-logo-electro {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-benefits {
        grid-template-columns: 1fr;
    }
    
    .hero-right {
        display: none;
    }
    
    .glow-1 {
        width: 200px;
        height: 200px;
    }
    
    .glow-2 {
        width: 150px;
        height: 150px;
    }
    
    .glow-3 {
        width: 120px;
        height: 120px;
    }
}

/* Catalog Section */
.catalog {
    background: linear-gradient(to bottom, #f9fafb, white);
    padding: 32px 16px;
}

.catalog-header {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.header-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    font-family: 'Barlow Condensed', sans-serif;
}

.search-container {
    flex: 1;
    max-width: 512px;
    margin: 0 32px;
    display: none;
}

@media (min-width: 768px) {
    .search-container {
        display: block;
    }
}

.search-input {
    width: 100%;
    padding: 8px 12px 8px 40px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.875rem;
}

.search-input:focus {
    outline: none;
    ring: 2px solid #3b82f6;
    border-color: transparent;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.mobile-menu-btn {
    display: block;
    padding: 8px;
    border-radius: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.category-nav {
    border-top: 1px solid #f3f4f6;
    display: none;
}

@media (min-width: 768px) {
    .category-nav {
        display: block;
    }
}

.category-nav-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    overflow-x: auto;
}

.category-btn {
    padding: 10px 20px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.875rem;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-btn:hover {
    border-color: var(--category-color, #003DA5);
    color: var(--category-color, #003DA5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--category-color, #003DA5) 25%, transparent);
}

.category-btn.active {
    background: var(--category-color, #003DA5);
    border-color: var(--category-color, #003DA5);
    color: white;
}

.category-count {
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    background: #eef2ff;
    color: var(--category-color, #003DA5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.category-btn.active .category-count {
    background: rgba(255, 255, 255, 0.18);
    color: white;
}

/* Main Content */
.main-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 16px;
    display: flex;
    gap: 32px;
}

.sidebar {
    width: 256px;
    flex-shrink: 0;
    display: none;
}

@media (min-width: 768px) {
    .sidebar {
        display: block;
    }
}

.sidebar-content {
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 24px;
    position: sticky;
    top: 96px;
}

.products-section {
    flex: 1;
}

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

.pagination {
    margin-top: 32px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination-btn {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    background: white;
    color: #374151;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pagination-btn:hover:not(:disabled),
.pagination-btn.active {
    background: #003DA5;
    border-color: #003DA5;
    color: white;
    box-shadow: 0 8px 18px rgba(0, 61, 165, 0.18);
}

.pagination-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.pagination-ellipsis {
    color: #6b7280;
    font-weight: 700;
    padding: 0 4px;
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.product-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.product-image {
    aspect-ratio: 1;
    background: #f3f4f6;
    overflow: hidden;
    position: relative;
}

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

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

.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 8px;
}

.badge {
    padding: 4px 8px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-featured {
    background: #facc15;
    color: #713f12;
}

.badge-offer {
    background: #ef4444;
    color: white;
}

.product-info {
    padding: 16px;
}

.product-category {
    font-size: 0.75rem;
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 4px;
}

.product-name {
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-description {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.old-price {
    font-size: 0.875rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.current-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
}

.btn-view-details {
    width: 100%;
    padding: 10px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-view-details:hover {
    background: #1d4ed8;
}

/* Loading State */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 128px 16px;
}

.loading-spinner {
    font-size: 4rem;
    animation: spin 1s linear infinite;
}

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

/* Empty State */
.empty-state {
    text-align: center;
    padding: 64px 16px;
}

.empty-state-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}

.empty-state-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.empty-state-text {
    color: #6b7280;
}

/* Sticky WhatsApp */
.sticky-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 100;
    background: #25d366;
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

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

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 48px 24px;
    margin-top: 80px;
}

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

.footer-brand {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.footer-text {
    color: #9ca3af;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    gap: 24px;
    justify-content: center;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 32px 16px;
        margin-top: 48px;
    }
    
    .footer-brand {
        font-size: 1.25rem;
    }
    
    .footer-text {
        font-size: 0.875rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: white;
}

/* About Section */
.about-section {
    padding: 80px 24px;
    background: linear-gradient(to bottom, white, #f9fafb);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 48px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Responsive About Section */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 16px;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 32px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
        padding: 24px;
    }
}

.about-text p {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: #003DA5;
}

.feature-item svg {
    color: #003DA5;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #003DA5, #001f6b);
    border-radius: 24px;
    padding: 40px;
}

/* Contact Section */
.contact-section {
    padding: 80px 24px;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Responsive Contact Section */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 16px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-cta {
        order: -1;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item svg {
    color: #003DA5;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

.contact-cta {
    display: flex;
    justify-content: center;
}

.whatsapp-large-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.whatsapp-large-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

/* Range Slider */
.range-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e5e7eb;
    appearance: none;
    cursor: pointer;
}

.range-slider::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #2563eb;
    cursor: pointer;
}

.price-filter {
    margin-bottom: 24px;
}

.price-label {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 4px;
}

/* Mobile Filter Drawer */
.mobile-filter-drawer {
    display: none;
}

.mobile-filter-drawer.active {
    display: block;
}

@media (max-width: 767px) {
    .mobile-filter-drawer.active {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1000;
    }
}

.drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.drawer-content {
    position: absolute;
    right: 0;
    top: 0;
    width: 320px;
    height: 100%;
    background: white;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.drawer-title {
    font-size: 1.125rem;
    font-weight: 600;
}

.drawer-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.drawer-body {
    padding: 16px;
}

/* Product Detail Modal */
.product-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
}

.product-modal.active {
    display: block;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f3f4f6;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
}

.modal-close:hover {
    background: #e5e7eb;
    transform: rotate(90deg);
}

.modal-body {
    padding: 0;
}

.modal-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.modal-product-image {
    background: #f9fafb;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.modal-product-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 12px;
}

.modal-image-gallery {
    position: relative;
    width: 100%;
    max-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image-gallery img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 12px;
}

.modal-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.2s;
    z-index: 5;
}

.modal-gallery-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.modal-gallery-prev {
    left: 8px;
}

.modal-gallery-next {
    right: 8px;
}

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

.modal-gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.modal-gallery-dot.active {
    background: #003DA5;
    transform: scale(1.2);
}

.modal-gallery-dot:hover {
    background: rgba(0, 61, 165, 0.7);
}

.modal-gallery-thumbs {
    position: absolute;
    left: 50%;
    bottom: -82px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    max-width: 100%;
    overflow-x: auto;
    padding: 6px;
    z-index: 6;
}

.modal-gallery-thumb {
    width: 64px;
    height: 64px;
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    cursor: pointer;
    padding: 0;
    flex: 0 0 auto;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
    transition: all 0.2s ease;
}

.modal-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.modal-gallery-thumb.active,
.modal-gallery-thumb:hover {
    border-color: #003DA5;
    transform: translateY(-2px);
}

.modal-product-image:has(.modal-gallery-thumbs) {
    padding-bottom: 88px;
}

.modal-single-image {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 12px;
}

.modal-product-info {
    padding: 32px;
}

.modal-product-category {
    font-size: 0.875rem;
    color: #003DA5;
    font-weight: 600;
    margin-bottom: 8px;
}

.modal-product-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.3;
}

.modal-product-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 24px;
}

.modal-product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.modal-old-price {
    font-size: 1.25rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.modal-current-price {
    font-size: 2rem;
    font-weight: 800;
    color: #003DA5;
}

.modal-product-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    text-align: center;
}

.modal-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-product-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-product-image {
        padding: 16px;
    }
    
    .modal-product-info {
        padding: 24px 16px;
    }
    
    .modal-product-name {
        font-size: 1.5rem;
    }
    
    .modal-current-price {
        font-size: 1.75rem;
    }
}
