/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ============ CUSTOM SCROLLBAR ============ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--bg-primary), var(--neon-green), var(--bg-primary));
    border-radius: var(--radius-full);
    border: 2px solid var(--bg-primary);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(var(--bg-primary), var(--neon-blue), var(--bg-primary));
}

:root {
    --bg-primary: #050505;
    --bg-secondary: #080808;
    --bg-card: rgba(255, 255, 255, 0.03);
    --text-primary: #ffffff;
    --text-secondary: #d1d5db;
    --text-muted: #9ca3af;
    --text-dim: #6b7280;
    --neon-green: #22c55e;
    --neon-blue: #3b82f6;
    --neon-pink: #ec4899;
    --border-subtle: rgba(255, 255, 255, 0.05);
    --border-card: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --shadow-neon-green: 0 0 10px rgba(34, 197, 94, 0.3);
    --shadow-neon-blue: 0 0 10px rgba(59, 130, 246, 0.3);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
ul { list-style: none; }

/* ============ UTILITIES ============ */
.neon-green { text-shadow: 0 0 10px var(--neon-green), 0 0 20px var(--neon-green); color: var(--neon-green); }
.neon-blue { text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue); color: var(--neon-blue); }

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
}

.gradient-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-blue), var(--bg-primary));
    margin-top: 10px;
    border-radius: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ============ NAVBAR ============ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
}

.navbar-brand h1 {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
}

.navbar-brand span {
    font-size: 7px;
    color: #60a5fa;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 9px;
    transition: var(--transition-normal);
}

.navbar-link:hover { color: var(--neon-green); text-shadow: 0 0 10px var(--neon-green); }
.navbar-link--instagram:hover { color: var(--neon-blue); text-shadow: 0 0 10px var(--neon-blue); }

.navbar-link i { font-size: 1rem; }
.navbar-link .fa-shopping-cart { color: var(--neon-green); }
.navbar-link .fa-instagram { color: var(--neon-pink); }
.navbar-link__text--desktop { display: none; }

.navbar-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px solid var(--neon-green);
    border-radius: var(--radius-full);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: var(--shadow-neon-green);
    transition: var(--transition-normal);
}

.navbar-cta:hover {
    background: var(--neon-green);
    color: #000;
    box-shadow: 0 0 25px var(--neon-green);
}

.navbar-cta i { color: #4ade80; font-size: 1rem; }
.navbar-cta:hover i { color: #000; }
.navbar-cta__text { display: none; }

/* ============ HERO ============ */
.hero {
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 16px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
    z-index: 1;
}

.hero__content { position: relative; z-index: 2; }

.hero__title {
    font-size: 2.5rem;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero__subtitle {
    color: var(--text-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.hero__scroll-indicator {
    margin-top: 32px;
    color: var(--text-dim);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-12px); }
    60% { transform: translateY(-6px); }
}

/* ============ PRODUCTS SECTION ============ */
.products-section {
    padding: 48px 16px;
}

.section-header {
    margin-bottom: 32px;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    letter-spacing: -0.03em;
}

/* ============ FILTERS & SEARCH ============ */
.filters-container {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.search-wrapper {
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-size: 0.875rem;
    font-family: inherit;
    outline: none;
    transition: var(--transition-normal);
}

.search-input::placeholder { color: var(--text-dim); }
.search-input:focus { border-color: var(--neon-green); box-shadow: var(--shadow-neon-green); }

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-dim);
    font-size: 0.875rem;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.filter-label {
    font-size: 0.7rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-right: 4px;
    white-space: nowrap;
}

.filter-btn {
    padding: 6px 14px;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-normal);
    white-space: nowrap;
    color: var(--text-muted);
}

.filter-btn:hover { border-color: var(--neon-green); color: var(--text-primary); }
.filter-btn.active { background: var(--neon-green); color: #000; border-color: var(--neon-green); box-shadow: var(--shadow-neon-green); }

.sort-select {
    padding: 6px 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-full);
    color: var(--text-muted);
    font-size: 0.7rem;
    font-family: inherit;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    transition: var(--transition-normal);
}

.sort-select:focus { border-color: var(--neon-blue); }

.results-count {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-bottom: 8px;
}

/* Group Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    background: rgba(255,255,255,0.02);
    padding: 4px;
    border-radius: var(--radius-full);
    width: fit-content;
}

.filter-tab {
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: var(--transition-normal);
}

.filter-tab.active {
    background: var(--neon-blue);
    color: #fff;
    box-shadow: var(--shadow-neon-blue);
}

/* Product Badges */
.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.badge-new { background: var(--neon-green); color: #000; }
.badge-hot { background: var(--neon-pink); color: #fff; }

/* Store Status */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.status-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: block;
}

.status--open { background: rgba(34, 197, 94, 0.1); color: var(--neon-green); border: 1px solid rgba(34, 197, 94, 0.2); }
.status--open::before { background: var(--neon-green); box-shadow: 0 0 10px var(--neon-green); }

.status--closed { background: rgba(239, 68, 68, 0.1); color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.2); }
.status--closed::before { background: #ef4444; }

/* ============ PRELOADER ============ */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader__content {
    text-align: center;
}

.preloader__logo {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 24px;
    animation: pulse-glow 2s infinite ease-in-out;
}

.preloader__spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(34, 197, 94, 0.1);
    border-top-color: var(--neon-green);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

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

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

/* ============ IMAGE EFFECTS ============ */
.fade-in-img {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.fade-in-img.loaded {
    opacity: 1;
}

/* Skeleton Pulse */
@keyframes skeleton-pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.skeleton-card { animation: skeleton-pulse 1.5s infinite ease-in-out; }

/* ============ PRODUCT GRID ============ */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.product-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-subtle);
    padding: 16px;
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-bounce);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-blue);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.product-card__image-wrapper {
    overflow: hidden;
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    height: 200px;
    width: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.product-card__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.product-card:hover .product-card__image-wrapper img {
    transform: scale(1.08) rotate(-1deg);
}

.product-card__image-wrapper .zoom-icon {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    opacity: 0;
    transition: var(--transition-normal);
}

.product-card:hover .zoom-icon { opacity: 1; }

.product-card__discount-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #ef4444;
    color: #fff;
    padding: 2px 10px;
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-card__name {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.product-card__price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.product-card__price {
    color: #4ade80;
    font-weight: 700;
    font-size: 1.15rem;
}

.product-card__old-price {
    color: var(--text-dim);
    text-decoration: line-through;
    font-size: 0.8rem;
}

.product-card__desc {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-bottom: 12px;
    flex-grow: 1;
}

.product-card__sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 12px;
}

.size-btn {
    width: 36px;
    height: 30px;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.size-btn:hover { border-color: var(--neon-blue); color: var(--text-primary); }
.size-btn.selected { background: var(--neon-blue); color: #fff; border-color: var(--neon-blue); box-shadow: 0 0 8px rgba(59, 130, 246, 0.3); }

.product-card__order-btn {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    transition: var(--transition-normal);
    color: var(--text-primary);
}

.product-card__order-btn:hover {
    border-color: var(--neon-green);
    background: var(--neon-green);
    color: #000;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

/* Empty state */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.empty-state i { font-size: 3rem; color: var(--text-dim); margin-bottom: 16px; }
.empty-state h4 { font-size: 1.2rem; margin-bottom: 8px; color: var(--text-secondary); }
.empty-state p { color: var(--text-dim); font-size: 0.875rem; }

/* ============ LOCATION SECTION ============ */
.location-section {
    padding: 64px 16px;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255,255,255,0.04);
}

.location-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.location-info { text-align: center; }

.location-info__title {
    font-size: 2rem;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
}

.location-info__address {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.location-info__address span { color: #60a5fa; font-weight: 700; }

.location-details { display: flex; flex-direction: column; gap: 16px; align-items: center; }

.detail-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.detail-icon--green { border: 1px solid rgba(34, 197, 94, 0.4); }
.detail-icon--green i { color: var(--neon-green); }
.detail-item:hover .detail-icon--green { background: var(--neon-green); }
.detail-item:hover .detail-icon--green i { color: #000; }

.detail-icon--blue { border: 1px solid rgba(59, 130, 246, 0.4); }
.detail-icon--blue i { color: var(--neon-blue); }
.detail-item:hover .detail-icon--blue { background: var(--neon-blue); }
.detail-item:hover .detail-icon--blue i { color: #000; }

.detail-text { color: var(--text-secondary); font-size: 0.9rem; }

.location-nav-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    border: 2px solid var(--neon-blue);
    color: var(--neon-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
    font-size: 0.8rem;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.location-nav-btn:hover {
    background: var(--neon-blue);
    color: #fff;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
}

.location-image {
    position: relative;
    height: 280px;
    width: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.06);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.08);
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

/* ============ FOOTER ============ */
.footer {
    padding: 40px 16px;
    text-align: center;
}

.footer__socials {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

.footer__social-link {
    font-size: 1.75rem;
    color: var(--text-dim);
    transition: var(--transition-normal);
}

.footer__social-link:hover.footer__social-link--instagram { color: var(--neon-blue); text-shadow: 0 0 10px var(--neon-blue); }
.footer__social-link:hover.footer__social-link--whatsapp { color: var(--neon-green); text-shadow: 0 0 10px var(--neon-green); }
.footer__social-link:hover.footer__social-link--market { color: var(--neon-green); text-shadow: 0 0 10px var(--neon-green); }

.footer__copy {
    color: var(--text-dim);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-style: italic;
}

/* ============ LOAD MORE BUTTON ============ */
.load-more-wrapper {
    text-align: center;
    margin-top: 32px;
    grid-column: 1 / -1;
}

.load-more-btn {
    padding: 14px 48px;
    border: 2px solid var(--neon-green);
    border-radius: var(--radius-full);
    color: var(--neon-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-neon-green);
}

.load-more-btn:hover {
    background: var(--neon-green);
    color: #000;
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.4);
}

.load-more-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.load-more-btn:disabled:hover {
    background: transparent;
    color: var(--neon-green);
}

/* ============ BACK TO TOP ============ */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--neon-green);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
    z-index: 200;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 30px rgba(34, 197, 94, 0.6);
}

/* ============ LIGHTBOX ============ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    padding: 24px;
}

.lightbox.active { opacity: 1; visibility: visible; }

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: #fff;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: var(--transition-normal);
}

.lightbox__close:hover { background: rgba(255,255,255,0.2); }

.lightbox__image {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    background: #fff;
}

.lightbox__product-name {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* ============ SKELETON LOADING ============ */
.skeleton-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 16px;
    border-radius: var(--radius-xl);
}

.skeleton-image {
    height: 200px;
    border-radius: var(--radius-md);
    background: linear-gradient(90deg, #111 25%, #1a1a1a 50%, #111 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    margin-bottom: 14px;
}

.skeleton-text {
    height: 14px;
    border-radius: 6px;
    background: linear-gradient(90deg, #111 25%, #1a1a1a 50%, #111 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    margin-bottom: 8px;
}

.skeleton-text--short { width: 60%; }
.skeleton-text--medium { width: 80%; }
.skeleton-text--price { width: 40%; height: 20px; }

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ============ RESPONSIVE: TABLET (>=480px) ============ */
@media (min-width: 480px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .product-card__image-wrapper { height: 220px; }
}

/* ============ RESPONSIVE: TABLET LANDSCAPE (>=768px) ============ */
@media (min-width: 768px) {
    .navbar { padding: 16px 32px; }
    .navbar-brand h1 { font-size: 1.75rem; }
    .navbar-brand span { font-size: 10px; }
    .navbar-links { gap: 24px; }
    .navbar-link { font-size: 0.8rem; }
    .navbar-link i { font-size: 1.1rem; }
    .navbar-link__text--desktop { display: inline; }
    .navbar-cta { padding: 10px 24px; font-size: 0.7rem; letter-spacing: 0.15em; }
    .navbar-cta__text { display: inline; }

    .hero { height: 55vh; }
    .hero__title { font-size: 4rem; margin-bottom: 20px; }
    .hero__subtitle { font-size: 1.15rem; }

    .products-section { padding: 64px 32px; }
    .section-header { margin-bottom: 40px; }
    .section-title { font-size: 2.25rem; }

    .filters-container { flex-direction: row; flex-wrap: wrap; align-items: center; }
    .search-wrapper { width: 300px; }

    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .product-card { padding: 20px; }
    .product-card__image-wrapper { height: 240px; }

    .location-section { padding: 80px 32px; }
    .location-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .location-info { text-align: left; }
    .location-details { align-items: flex-start; }
    .location-info__title { font-size: 2.5rem; }
    .location-image { height: 380px; }

    .footer { padding: 48px 32px; }
    .footer__social-link { font-size: 2rem; }
    .footer__copy { font-size: 0.7rem; }
}

/* ============ RESPONSIVE: DESKTOP (>=1024px) ============ */
@media (min-width: 1024px) {
    .navbar { padding: 16px 48px; }
    .navbar-brand h1 { font-size: 2rem; }
    .navbar-links { gap: 32px; }

    .hero__title { font-size: 5.5rem; }

    .products-section { padding: 80px 48px; }
    .section-title { font-size: 2.5rem; }

    .products-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
    .product-card__image-wrapper { height: 260px; }

    .location-section { padding: 96px 48px; }
    .location-info__title { font-size: 3rem; }
    .location-image { height: 420px; }
}

/* ============ RESPONSIVE: LARGE DESKTOP (>=1440px) ============ */
@media (min-width: 1440px) {
    .products-section { padding: 80px 96px; }
    .products-grid { grid-template-columns: repeat(4, 1fr); }

    .hero__title { font-size: 6rem; }
}

/* ============ SIZE INPUT MODAL ============ */
.size-modal {
    position: fixed;
    inset: 0;
    z-index: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    padding: 16px;
}

.size-modal.active { opacity: 1; visibility: visible; }

.size-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.size-modal__card {
    position: relative;
    background: var(--bg-secondary);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    max-width: 380px;
    width: 100%;
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: var(--transition-bounce);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.size-modal.active .size-modal__card {
    transform: scale(1) translateY(0);
}

.size-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 1.2rem;
    color: var(--text-dim);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-normal);
}

.size-modal__close:hover { color: var(--text-primary); background: rgba(255,255,255,0.1); }

.size-modal__title {
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.size-modal__subtitle {
    font-size: 0.8rem;
    color: var(--neon-green);
    font-weight: 600;
    margin-bottom: 20px;
}

.size-modal__input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-primary);
    border: 2px solid var(--border-card);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: inherit;
    text-align: center;
    letter-spacing: 0.1em;
    outline: none;
    transition: var(--transition-normal);
    margin-bottom: 16px;
}

.size-modal__input::placeholder {
    color: var(--text-dim);
    font-size: 0.9rem;
    font-weight: 400;
}

.size-modal__input:focus {
    border-color: var(--neon-green);
    box-shadow: var(--shadow-neon-green);
}

.size-modal__submit {
    width: 100%;
    padding: 14px;
    background: var(--neon-green);
    color: #000;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-neon-green);
}

.size-modal__submit:hover {
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.5);
    transform: translateY(-2px);
}

/* ============ TRUST BADGES ============ */
.trust-badges {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1.5rem 2rem;
}

.trust-badges__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.trust-badges__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.trust-badges__item i {
    font-size: 1.8rem;
    color: var(--neon-green);
    filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.4));
}

.trust-badges__item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .trust-badges__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .trust-badges__item i {
        font-size: 1.4rem;
    }
    .trust-badges__item span {
        font-size: 0.75rem;
    }
}

/* ============ FOCUS STYLES FOR ACCESSIBILITY ============ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 2px solid var(--neon-blue);
    outline-offset: 2px;
}
