*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
:root {
  --primary: #5B3FED; --primary-d: #4527D9; --primary-l: #EDE9FF;
  --accent: #FF5B4A; --accent-d: #E0432F;
  --mint: #00D9A3; --amber: #FFB800; --pink: #FF6BB8;
  --bg: #FAFAFA; --surface: #FFFFFF;
  --ink: #0F0F1E; --ink-2: #2A2A3C;
  --muted: #71717A; --line: #E8E8EE; --line-soft: #F2F2F5;
  --shadow-sm: 0 1px 3px rgba(15,15,30,0.06);
  --shadow: 0 4px 20px rgba(15,15,30,0.08);
  --shadow-lg: 0 20px 50px rgba(15,15,30,0.12);
}
html { scroll-behavior:smooth; }
body { background: var(--bg); color: var(--ink); font-family: 'Cairo', sans-serif; overflow-x: hidden; line-height: 1.5; }
button { font-family: inherit; cursor: pointer; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.top-bar { background: var(--ink); color: white; padding: 10px 0; font-size: 0.8rem; text-align: center; overflow: hidden; position: relative; }
.top-bar-track { display: flex; gap: 60px; white-space: nowrap; animation: slide 25s linear infinite; width: max-content; }
@keyframes slide { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.top-bar span { display: inline-flex; align-items: center; gap: 8px; }
.top-bar .dot { color: var(--accent); }

nav { background: var(--surface); border-bottom: 1px solid var(--line); padding: 16px 32px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px; position: sticky; top: 0; z-index: 100; }
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Outfit', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--ink); letter-spacing: -1px; }
.logo-mark { width: 38px; height: 38px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; font-weight: 900; transform: rotate(-8deg); box-shadow: 0 8px 20px rgba(91,63,237,0.3); overflow: hidden; }
.logo-mark img { width: 100%; height: 100%; object-fit: cover; transform: rotate(8deg) scale(1.2); }

.search-wrap { position: relative; max-width: 600px; width: 100%; margin: 0 auto; }
.search-wrap input { width: 100%; padding: 14px 52px 14px 20px; border: 1px solid var(--line); border-radius: 100px; font-size: 0.95rem; font-family: 'Cairo', sans-serif; background: var(--line-soft); outline: none; transition: all 0.3s; }
.search-wrap input:focus { background: white; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(91,63,237,0.1); }
.search-btn { position: absolute; top: 4px; left: 4px; background: var(--ink); color: white; border: none; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.3s; }
.search-btn:hover { background: var(--primary); }
.search-btn svg { width: 18px; height: 18px; }

.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-icon { width: 44px; height: 44px; background: var(--line-soft); border: none; border-radius: 12px; position: relative; display: flex; align-items: center; justify-content: center; color: var(--ink); transition: all 0.3s; }
.nav-icon:hover { background: var(--primary-l); color: var(--primary); }
.nav-icon svg { width: 20px; height: 20px; }
.badge { position: absolute; top: -4px; left: -4px; background: var(--accent); color: white; font-size: 0.65rem; font-weight: 800; min-width: 18px; height: 18px; border-radius: 9px; padding: 0 5px; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 6px rgba(255,91,74,0.4); }

.cat-strip { background: white; border-bottom: 1px solid var(--line); padding: 14px 32px; overflow-x: auto; scrollbar-width: none; }
.cat-strip::-webkit-scrollbar { display: none; }
.cat-strip-inner { display: flex; gap: 8px; min-width: max-content; }
.cat-pill { padding: 8px 18px; border-radius: 100px; background: var(--line-soft); border: none; font-size: 0.85rem; font-weight: 600; color: var(--ink-2); white-space: nowrap; transition: all 0.3s; display: inline-flex; align-items: center; gap: 6px; }
.cat-pill:hover, .cat-pill.active { background: var(--ink); color: white; }
.cat-pill.hot { background: linear-gradient(90deg, var(--accent), var(--pink)); color: white; }

.hero { padding: 28px 32px; display: grid; grid-template-columns: 1.5fr 1fr; gap: 16px; }
.hero-main { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-d) 60%, #3D27B5 100%); border-radius: 24px; padding: 50px; color: white; position: relative; overflow: hidden; min-height: 380px; display: flex; flex-direction: column; justify-content: center; }
.hero-main::before { content:''; position:absolute; top:-100px; left:-100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,91,74,0.3), transparent 70%); border-radius: 50%; }
.hero-main::after { content:''; position:absolute; bottom: -150px; right: -100px; width: 350px; height: 350px; background: radial-gradient(circle, rgba(0,217,163,0.2), transparent 70%); border-radius: 50%; }
.hero-content { position: relative; z-index: 2; max-width: 500px; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); padding: 6px 14px; border-radius: 100px; font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 20px; }
.hero-tag .pulse { width: 8px; height: 8px; background: var(--mint); border-radius: 50%; box-shadow: 0 0 0 0 rgba(0,217,163,0.7); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(0,217,163,0.7); } 70% { box-shadow: 0 0 0 12px rgba(0,217,163,0); } 100% { box-shadow: 0 0 0 0 rgba(0,217,163,0); } }
.hero-main h1 { font-family: 'Outfit', sans-serif; font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 800; line-height: 1.05; letter-spacing: -1.5px; margin-bottom: 16px; }
.hero-main h1 .underline { background: linear-gradient(transparent 60%, rgba(255,91,74,0.5) 60%); padding: 0 4px; }
.hero-main p { font-size: 1rem; opacity: 0.85; margin-bottom: 32px; line-height: 1.7; }
.hero-cta-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.btn-light { background: white; color: var(--ink); border: none; padding: 14px 28px; border-radius: 100px; font-weight: 700; font-size: 0.92rem; transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.btn-outline { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.3); padding: 14px 28px; border-radius: 100px; font-weight: 700; font-size: 0.92rem; transition: all 0.3s; }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }

.hero-side { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; }
.hero-card { border-radius: 20px; padding: 24px; position: relative; overflow: hidden; color: var(--ink); cursor: pointer; transition: transform 0.3s; }
.hero-card:hover { transform: translateY(-4px); }
.hero-card-1 { background: linear-gradient(135deg, #FFB800, #FF8500); color: white; }
.hero-card-2 { background: linear-gradient(135deg, #00D9A3, #00A572); color: white; }
.hero-card .label { font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; opacity: 0.85; margin-bottom: 6px; }
.hero-card h3 { font-family: 'Outfit', sans-serif; font-size: 1.6rem; font-weight: 800; line-height: 1.1; margin-bottom: 12px; }
.hero-card .price-strip { display: inline-block; background: rgba(0,0,0,0.2); padding: 5px 12px; border-radius: 8px; font-weight: 700; font-size: 0.88rem; }
.hero-card .arrow { position: absolute; top: 24px; left: 24px; width: 36px; height: 36px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
/* Hero card image slideshow */
.hero-card .hero-slides { position: absolute; inset: 0; }
.hero-card .hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; display: flex; align-items: flex-end; padding: 18px; opacity: 0; transition: opacity 0.8s ease; }
.hero-card .hero-slide.active { opacity: 1; }
.hero-card .hero-slide-cap { background: linear-gradient(transparent, rgba(0,0,0,0.6)); position: absolute; inset: auto 0 0 0; padding: 16px 18px; color: #fff; font-weight: 800; font-size: 1.05rem; }

.flash { padding: 48px 32px 24px; }
.flash-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 16px; }
.flash-title-wrap { display: flex; align-items: center; gap: 16px; }
.flash-bolt { width: 48px; height: 48px; background: linear-gradient(135deg, var(--accent), #FFB800); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.4rem; box-shadow: 0 8px 16px rgba(255,91,74,0.3); }
.flash-title { font-family: 'Outfit', sans-serif; font-size: 1.8rem; font-weight: 800; letter-spacing: -0.5px; }
.flash-sub { font-size: 0.85rem; color: var(--muted); margin-top: 2px; }
.countdown { display: flex; align-items: center; gap: 6px; background: var(--ink); color: white; padding: 8px 16px; border-radius: 12px; font-weight: 700; }
.countdown-box { background: var(--accent); padding: 4px 8px; border-radius: 6px; font-size: 0.85rem; min-width: 32px; text-align: center; }

.grid { display: grid; gap: 16px; grid-template-columns: repeat(5, 1fr); }
.product-card { background: white; border-radius: 16px; overflow: hidden; border: 1px solid var(--line-soft); transition: all 0.35s ease; position: relative; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--line); }
.pc-img-wrap { position: relative; aspect-ratio: 1; background: var(--line-soft); overflow: hidden; display: block; }
.pc-img { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.5s; }
.product-card:hover .pc-img { transform: scale(1.08); }
.pc-badge { position: absolute; top: 10px; right: 10px; background: var(--accent); color: white; padding: 5px 10px; border-radius: 8px; font-size: 0.72rem; font-weight: 700; box-shadow: 0 4px 10px rgba(255,91,74,0.3); }
.pc-badge.new { background: var(--mint); box-shadow: 0 4px 10px rgba(0,217,163,0.3); }
.pc-badge.out { background: var(--ink-2); }
.pc-fav { position: absolute; top: 10px; left: 10px; width: 34px; height: 34px; background: white; border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); transition: all 0.3s; }
.pc-fav:hover { background: var(--primary-l); transform: scale(1.1); }
.pc-fav svg { width: 16px; height: 16px; color: var(--ink-2); transition: all 0.3s; }
.pc-fav.active { background: var(--accent); }
.pc-fav.active svg { color: white; fill: white; }
.pc-info { padding: 14px 16px 16px; }
.pc-cat { font-size: 0.72rem; color: var(--muted); margin-bottom: 4px; font-weight: 600; }
.pc-name { font-size: 0.95rem; font-weight: 700; line-height: 1.35; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; color: var(--ink); }
.pc-price-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.pc-price { font-family: 'Outfit', sans-serif; font-size: 1.15rem; font-weight: 800; color: var(--ink); }
.pc-add { background: var(--ink); color: white; border: none; width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; transition: all 0.3s; flex-shrink: 0; }
.pc-add:hover { background: var(--primary); transform: scale(1.05); }
.pc-add:disabled { background: var(--line); color: var(--muted); cursor: not-allowed; transform: none; }
.pc-add svg { width: 16px; height: 16px; }

.cats { padding: 48px 32px; }
.section-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; flex-wrap: wrap; gap: 16px; }
.section-title { font-family: 'Outfit', sans-serif; font-size: 1.8rem; font-weight: 800; letter-spacing: -0.5px; }
.section-sub { color: var(--muted); font-size: 0.9rem; margin-top: 4px; }
.view-all { color: var(--primary); font-weight: 700; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s; }
.view-all:hover { gap: 10px; }
.cats-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 12px; }
.cat-tile { background: white; border: 1px solid var(--line-soft); border-radius: 16px; padding: 20px 12px; text-align: center; transition: all 0.3s; display: block; }
.cat-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.cat-tile-icon { width: 56px; height: 56px; margin: 0 auto 12px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; background: var(--primary-l); }
.cat-tile-name { font-size: 0.82rem; font-weight: 700; color: var(--ink); }
.cat-tile-count { font-size: 0.7rem; color: var(--muted); margin-top: 2px; }

.banners { padding: 24px 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.banner-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 0.8s ease; display: flex; align-items: flex-end; text-decoration: none; }
.banner-slide.active { opacity: 1; }
.banner-slide-cap { background: linear-gradient(transparent, rgba(0,0,0,0.65)); width: 100%; padding: 22px 28px; color: #fff; font-weight: 800; font-size: 1.2rem; }
/* Background slideshow inside the main hero (keeps text + CTA on top) */
.hero-bg-slides { position: absolute; inset: 0; z-index: 0; border-radius: inherit; overflow: hidden; }
.hero-bg-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 0.8s ease; }
.hero-bg-slide.active { opacity: 1; }
.hero-bg-slides::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,15,30,0.55), rgba(15,15,30,0.35)); }
.hero-main .hero-content { position: relative; z-index: 2; }
.banner { border-radius: 24px; padding: 40px; position: relative; overflow: hidden; min-height: 220px; cursor: pointer; transition: transform 0.4s; display: flex; flex-direction: column; justify-content: center; }
.banner:hover { transform: scale(1.01); }
.banner-1 { background: linear-gradient(135deg, #FFE5DD 0%, #FFC4B3 100%); }
.banner-2 { background: linear-gradient(135deg, #DCFFE4 0%, #B0F5C5 100%); }
.banner-eyebrow { font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; color: var(--accent-d); margin-bottom: 10px; }
.banner-2 .banner-eyebrow { color: #00A572; }
.banner h3 { font-family: 'Outfit', sans-serif; font-size: 1.8rem; font-weight: 800; line-height: 1.1; margin-bottom: 8px; letter-spacing: -0.5px; color: var(--ink); }
.banner p { color: var(--ink-2); font-size: 0.9rem; margin-bottom: 20px; }
.banner-cta { display: inline-flex; align-items: center; gap: 6px; background: var(--ink); color: white; padding: 10px 20px; border-radius: 100px; font-weight: 700; font-size: 0.85rem; align-self: flex-start; }
.banner-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.banner-img + .banner-overlay { position: relative; z-index: 2; }

.trust-bar { background: white; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 32px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-icon { width: 48px; height: 48px; background: var(--primary-l); color: var(--primary); border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon svg { width: 22px; height: 22px; }
.trust-text h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.trust-text p { font-size: 0.78rem; color: var(--muted); }

.shop-contact { padding: 48px 32px; max-width: 720px; margin: 0 auto; }
.shop-contact .section-title { text-align: center; }
.shop-contact-card { background: white; border: 1px solid var(--line-soft); border-radius: 24px; padding: 36px; box-shadow: var(--shadow-sm); margin-top: 24px; }
.shop-contact-card input, .shop-contact-card textarea { width: 100%; padding: 13px 16px; border: 1px solid var(--line); border-radius: 12px; font-family: 'Cairo', sans-serif; font-size: 0.92rem; background: var(--line-soft); outline: none; transition: all 0.3s; margin-bottom: 14px; }
.shop-contact-card input:focus, .shop-contact-card textarea:focus { background: white; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(91,63,237,0.1); }
.shop-contact-card .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.shop-contact-card button { background: var(--ink); color: white; border: none; padding: 14px 32px; border-radius: 100px; font-weight: 700; font-size: 0.92rem; transition: all 0.3s; }
.shop-contact-card button:hover { background: var(--primary); }
.form-note { padding: 12px 16px; border-radius: 12px; font-size: 0.85rem; margin-bottom: 16px; }
.form-note.ok { background: #DCFFE4; color: #00794F; }
.form-note.err { background: #FFE5E0; color: var(--accent-d); }

footer { background: var(--ink); color: white; padding: 64px 32px 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: 'Outfit', sans-serif; font-size: 1.6rem; font-weight: 800; margin-bottom: 16px; }
.footer-tag { opacity: 0.7; font-size: 0.88rem; line-height: 1.8; max-width: 280px; margin-bottom: 24px; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 18px; letter-spacing: 1px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { opacity: 0.65; font-size: 0.88rem; transition: opacity 0.3s; }
.footer-col a:hover { opacity: 1; color: var(--mint); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: 0.82rem; opacity: 0.6; }

.toast { position: fixed; bottom: 24px; right: 24px; background: var(--ink); color: white; padding: 14px 20px; border-radius: 14px; z-index: 999; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-lg); transform: translateY(120px); opacity: 0; transition: all 0.4s cubic-bezier(0.16,1,0.3,1); font-size: 0.88rem; font-weight: 600; max-width: 320px; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast.err .toast-icon { background: var(--accent); }
.toast-icon { width: 32px; height: 32px; background: var(--mint); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 800; flex-shrink: 0; }

@keyframes bump { 0%,100%{transform:scale(1)} 50%{transform:scale(1.5)} }

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

.empty-state { background: white; border: 1px solid var(--line-soft); border-radius: 20px; padding: 56px 24px; text-align: center; color: var(--muted); }
.empty-state a { color: var(--primary); font-weight: 700; }

/* In-grid AdSense banner (spans the full products grid width) */
.shop-ad-banner { grid-column: 1 / -1; background: #fff; border: 1px solid var(--line-soft); border-radius: 16px; padding: 16px; text-align: center; overflow: hidden; min-height: 60px; display: flex; align-items: center; justify-content: center; }
.shop-ad-banner :is(ins, iframe, img) { max-width: 100%; }

/* Demo-only product decorations (ratings / discount) */
.pc-rating { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--muted); margin-bottom: 10px; }
.pc-stars { color: var(--amber); letter-spacing: 1px; font-size: 0.85rem; }
.pc-old { font-size: 0.78rem; color: var(--muted); text-decoration: line-through; margin-right: 6px; font-weight: 500; }
.pc-badge.hot { background: linear-gradient(90deg, var(--accent), var(--pink)); }

/* Demo-only app download section */
.app-cta { margin: 48px 32px; background: linear-gradient(135deg, #0F0F1E 0%, #1A1A2E 100%); border-radius: 28px; padding: 60px; color: white; position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.app-cta::before { content:''; position:absolute; width: 500px; height: 500px; background: radial-gradient(circle, rgba(91,63,237,0.3), transparent 70%); top: -200px; right: -100px; }
.app-cta::after { content:''; position:absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,91,74,0.2), transparent 70%); bottom: -150px; left: -100px; }
.app-cta-content { position: relative; z-index: 2; }
.app-cta h2 { font-family: 'Outfit', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.05; margin-bottom: 16px; letter-spacing: -1.5px; }
.app-cta h2 .accent { color: var(--mint); }
.app-cta p { opacity: 0.8; margin-bottom: 32px; font-size: 1rem; line-height: 1.7; max-width: 460px; }
.app-stores { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.app-badge { display: inline-block; transition: transform 0.3s; }
.app-badge:hover { transform: translateY(-3px); }
.app-badge img { height: 52px; width: auto; display: block; }
.phone-mockup { position: relative; z-index: 2; display: flex; justify-content: center; }
.phone { width: 240px; height: 350px; background: linear-gradient(160deg, #fff 0%, #f0f0f5 100%); border-radius: 30px; padding: 16px; position: relative; box-shadow: 0 30px 60px rgba(0,0,0,0.4); transform: rotate(-3deg); }
.phone-screen { background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); border-radius: 18px; height: 100%; padding: 24px; color: white; display: flex; flex-direction: column; justify-content: space-between; }
.phone-top { font-size: 0.7rem; opacity: 0.7; font-weight: 600; }
.phone-mid { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 800; line-height: 1; letter-spacing: -1px; }
.phone-bottom { background: rgba(0,0,0,0.25); padding: 14px; border-radius: 12px; display: flex; align-items: center; gap: 10px; }
.phone-icon { width: 32px; height: 32px; background: white; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
@media (max-width: 900px) {
  .app-cta { grid-template-columns: 1fr; padding: 36px; margin: 32px 16px; }
  .phone-mockup { display: none; }
}

@media (max-width: 1200px) {
  .grid { grid-template-columns: repeat(4, 1fr); }
  .cats-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
@media (max-width: 900px) {
  nav { grid-template-columns: auto 1fr; padding: 12px 16px; gap: 16px; }
  .search-wrap { display: none; }
  .hero, .banners { grid-template-columns: 1fr; }
  .hero-main { padding: 32px; min-height: auto; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-bar { grid-template-columns: 1fr 1fr; gap: 20px; padding: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .flash, .cats, .banners { padding-left: 16px; padding-right: 16px; }
  .hero { padding: 16px; }
  footer { padding: 48px 16px 20px; }
}
@media (max-width: 500px) {
  .grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .flash-head, .section-head { flex-direction: column; align-items: flex-start; }
  .shop-contact-card .row2 { grid-template-columns: 1fr; }
}
