/* style.css */
/* ==================== */
/* CSS VARIABLES */
/* ==================== */
:root {
    --primary-color: #1a472a; /* Royal Green */
    --primary-dark: #0f2e1c;
    --primary-light: #2d5e40;
    --secondary-color: #4a5568;
    --accent-color: #d4af37;
    --accent-light: #e6c869;
    --background-color: #ffffff;
    --surface-color: #f8f9fa;
    --card-bg: rgba(255, 255, 255, 0.92);
    --card-border: rgba(26, 71, 42, 0.1);
    --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    --hover-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    
    --font-primary: 'Cinzel', serif;
    --font-secondary: 'Inter', sans-serif;
    
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-xxl: 48px;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ==================== */
/* BASE STYLES */
/* ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--background-color);
    color: var(--primary-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-title h2 {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-color);
}

/* ==================== */
/* GLASS EFFECTS */
/* ==================== */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.glass-card:hover {
    box-shadow: var(--hover-shadow);
    transform: translateY(-2px);
}

.glass-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
}

/* ==================== */
/* BUTTONS */
/* ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-md);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: var(--space-xs);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--card-border);
    color: var(--primary-color);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    background: rgba(26, 71, 42, 0.05);
}

.btn-accent {
    background: var(--accent-color);
    color: white;
}

.btn-accent:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
}

.full-width {
    width: 100%;
}

/* ==================== */
/* CURRENCY DROPDOWN */
/* ==================== */
.currency-dropdown {
    position: relative;
    margin-left: auto;
    margin-right: var(--space-md);
}

.currency-btn {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    background: var(--card-bg);
    color: var(--primary-color);
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.currency-btn:hover,
.currency-btn:focus {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

.currency-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10;
    margin-top: var(--space-xs);
}

.currency-dropdown.active .currency-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.currency-option {
    display: block;
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--primary-color);
}

.currency-option:hover {
    background: rgba(26, 71, 42, 0.05);
}

/* ==================== */
/* PRELOADER */
/* ==================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.watch-loader {
    width: 60px;
    height: 60px;
    border: 3px solid var(--card-border);
    border-radius: 50%;
    position: relative;
    animation: watchSpin 2s linear infinite;
}

.watch-loader::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
}

.watch-loader::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 15px;
    background: var(--primary-color);
    border-radius: 1px;
}

@keyframes watchSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==================== */
/* VIDEO BACKGROUND */
/* ==================== */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) contrast(1.2);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0.9) 100%
    );
}

/* ==================== */
/* VIDEO CONTROLS */
/* ==================== */
.video-controls {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    z-index: 100;
}

.control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.control-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

/* ==================== */
/* NAVIGATION */
/* ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md);
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo span {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.nav-links {
    display: none;
    list-style: none;
    gap: var(--space-lg);
}

.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--card-bg);
    padding: var(--space-lg) 0;
    box-shadow: var(--card-shadow);
    z-index: 999;
}

.nav-links.active a {
    padding: var(--space-md);
    text-align: center;
    border-bottom: 1px solid var(--card-border);
}

.nav-links.active a:last-child {
    border-bottom: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 0.9rem;
    display: block;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    width: 24px;
    height: 24px;
    justify-content: center;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ==================== */
/* HERO SECTION */
/* ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-lg);
    position: relative;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: var(--space-lg);
    color: var(--secondary-color);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: var(--primary-color);
    color: white;
    padding: var(--space-md) var(--space-lg);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 71, 42, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(-10px); }
}

/* ==================== */
/* CATALOGUE SECTION */
/* ==================== */
.catalogue {
    padding: var(--space-xl) 0;
    background: var(--surface-color);
}

.filters-container {
    overflow-x: auto;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.filters-container::-webkit-scrollbar {
    display: none;
}

.filters-scroll {
    display: flex;
    gap: var(--space-sm);
    padding: 0 var(--space-sm);
    min-width: max-content;
}

.filter-btn {
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 0.85rem;
    white-space: nowrap;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.search-box {
    position: relative;
    max-width: 400px;
    margin: 0 auto var(--space-xl);
}

.search-box input {
    width: 100%;
    padding: var(--space-md) var(--space-lg) var(--space-md) 45px;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    background: var(--card-bg);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 71, 42, 0.1);
}

/* Search SVG Styles */
.search-svg {
    position: absolute;
    left: var(--space-lg);
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    width: 16px;
    height: 16px;
}

/* MOBILE: 2 products per row */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.product-card {
    padding: var(--space-md);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

.product-image {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-image i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.badge-brand {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--primary-color);
    color: white;
    padding: 3px 6px;
    border-radius: var(--radius-sm);
    font-size: 0.6rem;
    font-weight: 600;
}

.just-arrived {
    position: absolute;
    top: 35px;
    left: var(--space-md);
    background: var(--accent-color);
    color: white;
    padding: 1px 4px;
    border-radius: var(--radius-sm);
    font-size: 0.5rem;
    font-weight: 600;
}

.price {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--card-bg);
    color: var(--primary-color);
    padding: 3px 6px;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid var(--card-border);
}

.item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.product-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

.product-condition {
    font-size: 0.8rem;
    color: var(--secondary-color);
}

.product-actions {
    display: flex;
    gap: var(--space-sm);
    margin-top: auto;
    padding-top: var(--space-md);
}

.product-actions .btn {
    flex: 1;
    padding: 8px;
    font-size: 0.7rem;
}

.product-actions .btn i {
    font-size: 0.7rem;
}

/* Loading State */
.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
    color: var(--secondary-color);
    grid-column: 1 / -1;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
    margin-bottom: var(--space-md);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==================== */
/* CONTACT SECTION */
/* ==================== */
.contact {
    padding: var(--space-xl) 0;
    background: var(--background-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.contact-info,
.contact-form {
    padding: var(--space-lg);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    border-radius: var(--radius-md);
    background: var(--surface-color);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-details h4 {
    margin-bottom: 4px;
    color: var(--primary-color);
}

.contact-details span {
    color: var(--secondary-color);
}

.business-hours {
    margin-top: var(--space-xl);
}

.business-hours h4 {
    margin-bottom: var(--space-md);
    color: var(--primary-color);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--card-border);
}

.contact-note {
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--secondary-color);
    text-align: center;
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-md);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    background: var(--surface-color);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 71, 42, 0.1);
}

/* ==================== */
/* FOOTER */
/* ==================== */
.footer {
    background: var(--surface-color);
    padding: var(--space-xl) 0 0;
    border-top: 1px solid var(--card-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--primary-color);
}

.footer-brand p {
    color: var(--secondary-color);
    margin-bottom: var(--space-lg);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: var(--space-lg);
    color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    margin-bottom: var(--space-sm);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer-bottom {
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--card-border);
    text-align: center;
    color: var(--secondary-color);
}

/* ==================== */
/* FLOATING ELEMENTS */
/* ==================== */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-lg);
    left: var(--space-lg);
    width: 50px;
    height: 50px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 100;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.scroll-top {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    width: 45px;
    height: 45px;
    background: var(--card-bg);
    color: var(--primary-color);
    border: 1px solid var(--card-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* ==================== */
/* MODAL */
/* ==================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: var(--space-md);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: var(--space-lg);
}

.close-modal {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface-color);
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.close-modal:hover {
    background: var(--primary-color);
    color: white;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.modal-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
}

.modal-image img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
}

.modal-details h3 {
    margin-bottom: var(--space-md);
    color: var(--primary-color);
}

.details-section {
    margin-bottom: var(--space-lg);
}

.details-section h4 {
    margin-bottom: var(--space-sm);
    color: var(--primary-color);
    font-size: 1rem;
}

.details-section ul {
    list-style: none;
    padding-left: 0;
}

.details-section li {
    padding: var(--space-xs) 0;
    color: var(--secondary-color);
    border-bottom: 1px solid var(--card-border);
}

.details-section li:last-child {
    border-bottom: none;
}

.modal-actions {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.modal-actions .btn {
    flex: 1;
}

/* Error Message */
.error-message {
    text-align: center;
    padding: var(--space-xl);
    color: var(--secondary-color);
    background: var(--surface-color);
    border-radius: var(--radius-md);
    grid-column: 1 / -1;
}

/* ==================== */
/* MEDIA QUERIES */
/* ==================== */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr;
    }
    
    .modal-body {
        grid-template-columns: 1fr 1fr;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    html {
        font-size: 17px;
    }
    
    .nav-container {
        justify-content: space-between;
    }
    
    .nav-logo span {
        font-size: 1.5rem;
    }
    
    .nav-links {
        display: flex !important;
        position: static;
        flex-direction: row;
        box-shadow: none;
        width: auto;
        padding: 0;
        background: transparent;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 0;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .hero {
        padding: var(--space-xl);
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .video-controls {
        bottom: var(--space-xl);
        right: var(--space-xl);
    }
    
    .control-btn {
        width: 44px;
        height: 44px;
    }
    
    .whatsapp-float {
        bottom: var(--space-xl);
        left: var(--space-xl);
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .scroll-top {
        bottom: var(--space-xl);
        right: var(--space-xl);
        width: 50px;
        height: 50px;
    }
    
    .contact-info,
    .contact-form {
        padding: var(--space-xl);
    }
    
    .modal-content {
        padding: var(--space-xl);
    }
    
    /* Tablet: 3 products per row */
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }
    
    .product-card {
        padding: var(--space-lg);
    }
    
    .product-image {
        height: 180px;
        margin-bottom: var(--space-md);
    }
    
    .badge-brand {
        top: var(--space-lg);
        left: var(--space-lg);
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .just-arrived {
        top: 45px;
        left: var(--space-lg);
        font-size: 0.6rem;
        padding: 2px 6px;
    }
    
    .price {
        top: var(--space-lg);
        right: var(--space-lg);
        font-size: 0.8rem;
        padding: 4px 8px;
    }
    
    .product-name {
        font-size: 1.1rem;
    }
    
    .product-condition {
        font-size: 0.9rem;
    }
    
    .product-actions .btn {
        padding: var(--space-sm);
        font-size: 0.8rem;
    }
    
    .product-actions .btn i {
        font-size: 0.8rem;
    }
    
    /* Currency on tablet+ */
    .currency-dropdown {
        margin-right: var(--space-lg);
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .filters-scroll {
        min-width: auto;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .filter-btn {
        font-size: 0.9rem;
    }
    
    /* Desktop: 4 products per row */
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Adjust nav layout for desktop */
    .nav-container {
        justify-content: flex-start;
    }
    
    .currency-dropdown {
        margin-left: auto;
        margin-right: var(--space-lg);
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        padding: 0 var(--space-xl);
    }
    
    .nav-container {
        padding: var(--space-md) var(--space-xl);
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile-specific styles */
@media (max-width: 767px) {
    .currency-dropdown {
        margin-left: auto;
        margin-right: var(--space-md);
    }

    .currency-btn .fa-chevron-down {
        transition: transform 0.3s ease;
    }

    .currency-dropdown.active .fa-chevron-down {
        transform: rotate(180deg);
    }

    .currency-dropdown.active .currency-list {
        position: static !important;
        margin-top: var(--space-sm);
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        border: 1px solid var(--card-border);
        background: var(--surface-color);
        padding: var(--space-md);
        border-radius: var(--radius-lg);
        box-shadow: var(--card-shadow);
        display: block; /* Ensure it's block for stacking */
    }

    .currency-option {
        padding: var(--space-md);
        border-bottom: 1px solid var(--card-border);
        text-align: center;
    }

    .currency-option:last-child {
        border-bottom: none;
    }
}