/* ========================================
   CSS VARIABLES & RESET
   ======================================== */
:root {
    --primary-orange: #ff6600;
    --primary-cyan: #00d4ff;
    --accent-yellow: #ffcc00;
    --accent-green: #00ff88;
    
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a28;
    
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #606070;
    
    --container-width: 1200px;
    --section-padding: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 16px;
}

.hidden {
    display: none !important;
}

/* ========================================
   LOADING SCREEN
   ======================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    overflow: hidden;
}

.loading-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.logo-container {
    margin-bottom: 40px;
    animation: float 3s ease-in-out infinite;
}

.logo-image-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
}

.loading-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    filter: drop-shadow(0 0 20px rgba(255, 102, 0, 0.6)) drop-shadow(0 0 40px rgba(0, 212, 255, 0.3));
    animation: pulse 2s ease-in-out infinite, float 3s ease-in-out infinite;
}

.logo-glow-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid transparent;
    border-radius: 25px;
    background: linear-gradient(45deg, var(--primary-orange), var(--primary-cyan), var(--accent-yellow));
    background-size: 200% auto;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 3px;
    animation: gradient-shift 3s ease infinite, rotate 10s linear infinite;
}

.loading-bar-container {
    width: 250px;
    margin: 0 auto;
}

.loading-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(255, 102, 0, 0.3);
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-yellow), var(--primary-cyan));
    border-radius: 10px;
    width: 0;
    animation: loading 2.5s ease-in-out forwards;
    box-shadow: 0 0 20px var(--primary-orange), 0 0 40px var(--primary-cyan);
}

.loading-text {
    margin-top: 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: blink 1.5s ease-in-out infinite;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 102, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), var(--primary-cyan), transparent);
    opacity: 0.5;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--primary-orange);
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.4);
    animation: float 3s ease-in-out infinite;
}

.nav-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-cyan));
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange);
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px var(--primary-orange);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 20px 60px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 102, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 102, 0, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.2), transparent 70%);
    animation: glow-pulse 4s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero-logo-display {
    width: 180px;
    height: 180px;
    margin: 0 auto 30px;
    position: relative;
}

.hero-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    border: 3px solid var(--primary-orange);
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.6), 0 0 60px rgba(0, 212, 255, 0.3);
    animation: float 4s ease-in-out infinite;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(24px, 5vw, 42px);
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-yellow), var(--primary-cyan));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    filter: drop-shadow(0 0 20px rgba(255, 102, 0, 0.5));
}

.hero-description {
    font-size: clamp(14px, 3vw, 18px);
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* WA Action Buttons */
.wa-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    max-width: 600px;
    margin: 30px auto;
}

.wa-btn {
    padding: 12px 20px;
    border: 2px solid;
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wa-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.3s ease;
    z-index: -1;
}

.wa-btn:hover::before {
    left: 0;
}

.wa-btn:hover {
    transform: translateY(-3px);
}

.wa-order {
    border-color: var(--accent-green);
    color: var(--accent-green);
    background: rgba(0, 255, 136, 0.1);
}

.wa-order::before {
    background: var(--accent-green);
}

.wa-order:hover {
    color: var(--bg-dark);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.5);
}

.wa-channel {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    background: rgba(255, 102, 0, 0.1);
}

.wa-channel::before {
    background: var(--primary-orange);
}

.wa-channel:hover {
    color: var(--bg-dark);
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.5);
}

.wa-group {
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
    background: rgba(0, 212, 255, 0.1);
}

.wa-group::before {
    background: var(--primary-cyan);
}

.wa-group:hover {
    color: var(--bg-dark);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.5);
}

.wa-testi {
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
    background: rgba(255, 204, 0, 0.1);
}

.wa-testi::before {
    background: var(--accent-yellow);
}

.wa-testi:hover {
    color: var(--bg-dark);
    box-shadow: 0 5px 20px rgba(255, 204, 0, 0.5);
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-yellow));
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button:hover {
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.5);
}

.cta-button:hover::before {
    left: 0;
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.products-section {
    padding: 60px 20px;
    background: var(--bg-dark);
    position: relative;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(24px, 5vw, 40px);
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: clamp(13px, 3vw, 16px);
    color: var(--text-secondary);
}

/* Category Filter */
.category-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: rgba(255, 102, 0, 0.1);
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    border-radius: 20px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-orange);
    transition: left 0.3s ease;
    z-index: -1;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 102, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: float-card 6s ease-in-out infinite;
}

.product-card:nth-child(2n) {
    animation-delay: 0.5s;
}

.product-card:nth-child(3n) {
    animation-delay: 1s;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-orange), var(--accent-yellow), var(--primary-cyan));
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255, 102, 0, 0.15), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.4);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover::after {
    opacity: 1;
}

.product-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 102, 0, 0.2);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.product-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
    line-height: 1.3;
}

.product-description {
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.4;
}

.product-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

.buy-button {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.buy-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-yellow));
    transition: left 0.3s ease;
    z-index: -1;
}

.buy-button:hover {
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.6);
    transform: translateY(-2px);
}

.buy-button:hover::before {
    left: 0;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    padding: 60px 20px;
    background: var(--bg-darker);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-cyan);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.contact-icon {
    font-size: 40px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.contact-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 14px;
}

.contact-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-orange);
}

.contact-button {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    border: 2px solid var(--primary-cyan);
    color: var(--primary-cyan);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-cyan);
    transition: left 0.3s ease;
    z-index: -1;
}

.contact-button:hover {
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

.contact-button:hover::before {
    left: 0;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 102, 0, 0.2);
    padding: 50px 20px 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), var(--primary-cyan), transparent);
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--primary-orange);
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.5);
}

.footer-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-brand h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 13px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-orange);
}

.footer-links a:hover {
    color: var(--primary-orange);
    padding-left: 20px;
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

.footer-links a:hover::before {
    left: 0;
    opacity: 1;
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-size: 13px;
}

.footer-contact strong {
    color: var(--primary-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 12px;
}

.footer-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    padding: 5px 12px;
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid var(--primary-orange);
    border-radius: 15px;
    color: var(--primary-orange);
    font-size: 10px;
    font-weight: 600;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes loading {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ========================================
   RESPONSIVE MOBILE
   ======================================== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 65px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 65px);
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px;
        transition: left 0.3s ease;
        border-top: 1px solid rgba(255, 102, 0, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero {
        padding: 120px 15px 50px;
        min-height: auto;
    }

    .hero-logo-display {
        width: 140px;
        height: 140px;
    }

    .wa-buttons {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .wa-btn {
        padding: 10px 15px;
        font-size: 12px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .product-name {
        font-size: 15px;
    }

    .product-description {
        font-size: 12px;
    }

    .product-price {
        font-size: 18px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .store-name {
        font-size: 16px;
    }

    .logo-wrapper {
        width: 35px;
        height: 35px;
    }

    .logo-image-wrapper {
        width: 120px;
        height: 120px;
    }

    .hero-title {
        font-size: 22px;
    }

    .hero-description {
        font-size: 13px;
    }

    .section-title {
        font-size: 22px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
}