/* ================================================================
   G-PARTY — DESIGN SYSTEM v2 (index.html → Laravel taşıma)
   ================================================================ */

:root {
  --bg: #f6f3ee;
  --surface: #ffffff;
  --fg: #1f1b16;
  --muted: #6f665b;
  --border: #e5dccb;
  --charcoal: #000000;
  --gold: #e7ab12;
  --gold-2: #c8920a;
  --purple: #914290;
  --purple-2: #6e2c6d;
  --teal: #128c7e;
  --success: #16a34a;
  --danger: #dc2626;
  --shadow-1: 0 1px 2px rgba(31,27,22,.05);
  --shadow-2: 0 2px 4px rgba(31,27,22,.08);
  --shadow-3: 0 8px 24px rgba(31,27,22,.12);
  --container: 1236px;
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  --font: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font); font-size: 14px; line-height: 1.5; color: var(--fg); background: var(--bg); -webkit-font-smoothing: antialiased; }
img, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 3px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(16px, 4vw, 32px); }
.eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }

/* ── TOPBAND ──────────────────────────────── */
.topband { background: var(--charcoal); color: #fff; }
.topband-inner { display: flex; align-items: center; justify-content: center; min-height: 36px; font-size: 12px; gap: 24px; }
.topband-item { display: inline-flex; align-items: center; gap: 8px; }
.topband-item i { color: var(--purple); }
.topband-item strong { color: var(--gold); }

/* ── HEADER BOTTOM (dark) ─────────────────── */
.header-bottom { background: var(--charcoal); color: #fff; position: sticky; top: 0; z-index: 100; }
.header-bottom-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; min-height: 84px; padding-block: 12px; }
.logo { display: inline-flex; align-items: center; height: 64px; }
.logo img { height: 56px; width: auto; object-fit: contain; }
.logo-fallback { display: none; font-size: 28px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.logo-fallback b { color: var(--purple); }

/* Search */
.search-form { position: relative; display: flex; align-items: center; max-width: 660px; width: 100%; margin-inline: auto; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); }
.search-form:focus-within { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(231,171,18,.25); }
.search-icon { position: absolute; left: 14px; width: 20px; height: 20px; color: rgba(255,255,255,.6); pointer-events: none; }
.search-input { flex: 1; background: transparent; border: 0; outline: 0; padding: 14px 16px 14px 44px; color: #fff; font-size: 14px; }
.search-input::placeholder { color: rgba(255,255,255,.55); }
.search-submit { display: inline-flex; align-items: center; gap: 6px; padding: 0 20px; height: 48px; background: var(--gold); color: var(--charcoal); font-weight: 700; font-size: 13px; border-radius: 0 var(--radius) var(--radius) 0; white-space: nowrap; }
.search-submit:hover { background: var(--gold-2); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 4px; }
.icon-action { position: relative; display: inline-flex; flex-direction: column; align-items: center; gap: 2px; min-width: 56px; padding: 6px 8px; color: #fff; font-size: 11px; line-height: 1.2; border-radius: var(--radius-sm); background: transparent; border: 0; cursor: pointer; transition: color .15s; }
.icon-action i { font-size: 18px; }
.icon-action .label { white-space: nowrap; }
.icon-action:hover { color: var(--gold); }
.icon-action .badge { position: absolute; top: 0; right: 6px; min-width: 18px; height: 18px; padding: 0 5px; display: none; align-items: center; justify-content: center; background: var(--gold); color: var(--charcoal); font-size: 10px; font-weight: 800; border-radius: 999px; }

/* ── CATEGORY NAV ─────────────────────────── */
.header-nav { background: #fff; border-bottom: 1px solid var(--border); }
.catbar-inner { display: flex; }
.catbar { display: flex; align-items: center; min-height: 52px; flex-wrap: nowrap; width: 100%; overflow-x: auto; scrollbar-width: none; }
.catbar::-webkit-scrollbar { display: none; }
.cat-link { position: relative; padding: 16px 13px; font-size: 13px; font-weight: 600; color: var(--fg); white-space: nowrap; transition: color .15s; }
.cat-link:hover { color: var(--purple); }
.cat-link::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .2s; }
.cat-link:hover::after, .cat-link[aria-current="true"]::after { transform: scaleX(1); }
.cat-link[aria-current="true"] { color: var(--purple); }

/* ── FLASH MESSAGES ───────────────────────── */
.flash-ok { background: #d1fae5; color: #065f46; border-bottom: 1px solid rgba(16,185,129,.2); padding: 10px 16px; text-align: center; font-weight: 600; font-size: 13px; }
.flash-err { background: #fee2e2; color: #991b1b; border-bottom: 1px solid rgba(239,68,68,.2); padding: 10px 16px; text-align: center; font-weight: 600; font-size: 13px; }

/* ── HERO ─────────────────────────────────── */
.hero { padding-block: clamp(28px, 4vw, 48px); }
.hero-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 24px; align-items: start; }
.hero-slider { position: relative; aspect-ratio: 1.85 / 1; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-2); }
.hero-slide { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 36px; opacity: 0; transition: opacity .5s; }
.hero-slide.active { opacity: 1; }
.hero-slide.slide-1 { background: linear-gradient(135deg, #1f1b16 0%, #2a2420 50%, #3a2f25 100%); color: #fff; }
.hero-slide.slide-2 { background: linear-gradient(135deg, #914290 0%, #6e2c6d 50%, #4a1a8a 100%); color: #fff; }
.hero-content { max-width: 560px; }
.hero-content h1 { font-size: clamp(22px, 3vw, 36px); line-height: 1.15; font-weight: 700; letter-spacing: -0.01em; margin-block: 10px 12px; }
.hero-content p { font-size: 14px; opacity: .9; margin-bottom: 18px; }
.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 2; }
.dot { width: 8px; height: 8px; border-radius: 999px; background: rgba(255,255,255,.4); border: 0; cursor: pointer; padding: 0; transition: all .2s; }
.dot.active { background: #fff; width: 24px; }

/* Deal list */
.deal-list { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 16px; box-shadow: var(--shadow-1); }
.deal-title { font-size: 16px; font-weight: 700; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.deal-item { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 10px; padding: 8px; border-radius: var(--radius); align-items: center; transition: background .15s; }
.deal-item + .deal-item { margin-top: 4px; }
.deal-item:hover { background: #faf7f1; }
.deal-thumb { width: 56px; height: 56px; background: linear-gradient(135deg, #f3ecdf, #e7dcc1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.deal-thumb img { width: 100%; height: 100%; object-fit: cover; }
.deal-info { min-width: 0; }
.deal-name { font-size: 12px; font-weight: 500; line-height: 1.3; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.deal-cat { font-size: 10px; color: var(--muted); margin-top: 2px; }
.deal-new { display: inline-block; background: var(--gold); color: var(--charcoal); font-size: 9px; font-weight: 800; padding: 1px 5px; border-radius: 2px; margin-top: 3px; }

/* ── CATEGORY BANNERS ─────────────────────── */
.category-banners { padding-block: clamp(16px, 2.5vw, 28px); }
.banner-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cat-banner { position: relative; display: flex; align-items: flex-end; min-height: 180px; padding: 20px; border-radius: var(--radius-lg); overflow: hidden; color: #fff; box-shadow: var(--shadow-2); transition: transform .25s, box-shadow .25s; }
.cat-banner:hover { transform: translateY(-3px); box-shadow: var(--shadow-3); }
.cat-banner--balloon { background: linear-gradient(135deg, #e7ab12, #c8920a); }
.cat-banner--deco { background: linear-gradient(135deg, #914290, #6e2c6d); }
.cat-banner--disposable { background: linear-gradient(135deg, #128c7e, #0e6e63); }
.cat-banner--cake { background: linear-gradient(135deg, #1f1b16, #3a2f25); }
.cat-banner-content { position: relative; z-index: 1; }
.cat-banner-kicker { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; opacity: .8; }
.cat-banner h3 { font-size: 18px; font-weight: 700; margin: 4px 0 6px; }
.cat-banner p { font-size: 12px; opacity: .85; line-height: 1.4; }

/* ── SECTION ──────────────────────────────── */
.section-head { display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }
.section-head h2 { font-size: clamp(20px, 2.4vw, 26px); font-weight: 700; letter-spacing: -0.01em; }
.section-head p { color: var(--muted); font-size: 13px; }
.product-section { padding-block: clamp(32px, 4.5vw, 56px); }

/* ── PRODUCT GRID ─────────────────────────── */
.product-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.product-card { position: relative; display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform .2s, box-shadow .2s; }
.product-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-3); }
.product-link { display: block; color: inherit; }

/* Product thumb (index.html class names) */
.product-thumb { position: relative; aspect-ratio: 1; background: linear-gradient(135deg, #f8f4ea, #ece1c8); display: flex; align-items: center; justify-content: center; font-size: 56px; overflow: hidden; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-thumb::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.04)); z-index: 1; }
.product-discount { position: absolute; top: 8px; left: 8px; min-width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; background: var(--danger); color: #fff; font-size: 11px; font-weight: 800; border-radius: 999px; z-index: 2; }
.product-new { position: absolute; top: 8px; right: 8px; padding: 3px 8px; background: var(--gold); color: var(--charcoal); font-size: 10px; font-weight: 800; border-radius: 3px; letter-spacing: .04em; z-index: 2; }

/* Product media (Laravel blade class names — alias) */
.product-media { position: relative; aspect-ratio: 1; background: linear-gradient(135deg, #f8f4ea, #ece1c8); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.product-media img { width: 100%; height: 100%; object-fit: cover; }

.product-body { display: flex; flex-direction: column; gap: 6px; padding: 12px; flex: 1; }
.product-name, .product-title { font-size: 13px; font-weight: 500; line-height: 1.35; min-height: 36px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.product-category { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); }
.product-sku { font-size: 10px; color: var(--muted); font-family: monospace; }
.product-add { display: flex; gap: 4px; align-items: center; padding: 0 12px 12px; }
.product-add .qty { display: inline-flex; align-items: center; border: 1px solid var(--border); border-radius: var(--radius-sm); }
.product-add .qty button { width: 28px; height: 32px; font-size: 14px; color: var(--muted); }
.product-add .qty output { min-width: 28px; text-align: center; font-size: 12px; font-weight: 600; }
.product-add .btn { flex: 1; }

/* ── BUTTONS ──────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; min-height: 44px; padding: 0 18px; border-radius: var(--radius); font-weight: 600; font-size: 13px; line-height: 1; transition: background .15s, transform .1s; border: 0; cursor: pointer; font-family: var(--font); }
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn-gold { background: var(--gold); color: var(--charcoal); }
.btn-gold:hover { background: var(--gold-2); }
.btn-purple { background: var(--purple); color: #fff; }
.btn-purple:hover { background: var(--purple-2); }
.btn-dark { background: var(--charcoal); color: #fff; }
.btn-dark:hover { background: #2a2420; }
.btn-ghost-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.4); }
.btn-ghost-light:hover { background: rgba(255,255,255,.1); }
.btn-block { width: 100%; }
.btn-sm { min-height: 36px; padding: 0 12px; font-size: 12px; }

/* Legacy button aliases for existing Blade pages */
.add-cart, .btn-primary-gp { display: flex; align-items: center; justify-content: center; width: 100%; min-height: 36px; padding: 0 12px; border-radius: var(--radius-sm); font-weight: 600; font-size: 12px; font-family: var(--font); background: var(--charcoal); color: #fff; border: 0; cursor: pointer; transition: background .15s; }
.add-cart:hover, .add-cart.is-added { background: var(--purple); }

/* ── DEALER CTA ───────────────────────────── */
.dealer-cta { padding-block: clamp(32px, 4.5vw, 56px); }
.dealer-card { display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; padding: 40px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-1); }
.dealer-info h2 { font-size: clamp(18px, 2.2vw, 24px); line-height: 1.2; margin: 10px 0 16px; }
.dealer-list { display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: var(--muted); }
.dealer-list li { padding-left: 22px; position: relative; }
.dealer-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--success); font-weight: 700; }
.dealer-form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dealer-form .field { display: flex; flex-direction: column; gap: 4px; }
.dealer-form label { font-size: 12px; font-weight: 600; color: var(--muted); }
.dealer-form input { height: 44px; padding: 0 12px; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; font-size: 13px; }
.dealer-form input:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(145,66,144,.15); outline: 0; }
.dealer-form input[aria-invalid="true"] { border-color: var(--danger); }
.dealer-form .btn { grid-column: 1 / -1; min-height: 48px; }
.dealer-form .form-meta { grid-column: 1 / -1; font-size: 12px; min-height: 16px; }
.dealer-form .form-meta.success { color: var(--success); }
.dealer-form .form-meta.error { color: var(--danger); }

/* ── NEWSLETTER ───────────────────────────── */
.newsletter { padding-block: clamp(32px, 4.5vw, 56px); }
.newsletter-card { padding: 36px; background: #f3ecdf; border-radius: var(--radius-lg); text-align: center; }
.newsletter-card h2 { font-size: clamp(16px, 2vw, 22px); max-width: 640px; margin: 0 auto 16px; line-height: 1.3; }
.newsletter-form { display: flex; gap: 8px; max-width: 480px; margin-inline: auto; }
.newsletter-form input { flex: 1; height: 48px; padding: 0 16px; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; font-size: 14px; }
.newsletter-form input:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(145,66,144,.15); outline: 0; }
.newsletter .form-meta { font-size: 12px; min-height: 16px; margin-top: 8px; }
.newsletter .form-meta.success { color: var(--success); }
.newsletter .form-meta.error { color: var(--danger); }

/* ── FOOTER ───────────────────────────────── */
.site-footer { background: var(--charcoal); color: #d4cdc1; padding-top: 56px; margin-top: 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 32px; padding-bottom: 40px; }
.footer-brand p { font-size: 12px; line-height: 1.5; margin-block: 12px; color: #a8a092; }
.logo--footer .logo-fallback { color: #fff; }
.logo--footer .logo-fallback b { color: var(--gold); }
.social { display: flex; gap: 8px; }
.social a { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,.06); border-radius: 999px; color: #fff; font-size: 14px; transition: background .15s; }
.social a:hover { background: var(--gold); color: var(--charcoal); }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.footer-col ul { display: flex; flex-direction: column; gap: 6px; font-size: 12px; }
.footer-col a { color: #d4cdc1; }
.footer-col a:hover { color: var(--gold); }
.contact-list li { display: flex; gap: 8px; align-items: flex-start; }
.contact-list i { color: var(--gold); margin-top: 2px; min-width: 14px; }
.footer-map { margin-top: 12px; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,.1); }
.footer-map iframe { width: 100%; height: 180px; border: 0; display: block; filter: grayscale(.2); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-block: 16px 24px; border-top: 1px solid rgba(255,255,255,.08); font-size: 12px; color: #a8a092; flex-wrap: wrap; gap: 12px; }
.payment-icons { display: flex; gap: 12px; color: #a8a092; font-size: 22px; }
.payment-icons i { opacity: .7; }

/* ── CART DRAWER ──────────────────────────── */
.drawer-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 200; display: flex; justify-content: flex-end; opacity: 0; pointer-events: none; transition: opacity .2s; }
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.drawer { width: 100%; max-width: 420px; height: 100%; background: var(--surface); display: flex; flex-direction: column; transform: translateX(100%); transition: transform .25s; }
.drawer-backdrop.open .drawer { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--border); }
.drawer-head h2 { font-size: 18px; font-weight: 700; }
.drawer-close { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; font-size: 24px; line-height: 1; border-radius: 999px; color: var(--muted); border: 0; background: transparent; cursor: pointer; }
.drawer-close:hover { background: #f0ebe0; color: var(--fg); }
.drawer-body { flex: 1; overflow-y: auto; padding: 16px 20px; }
.drawer-foot { padding: 16px 20px; border-top: 1px solid var(--border); background: #faf7f1; }
.drawer-row { display: flex; justify-content: space-between; padding-block: 6px; font-size: 13px; }
.drawer-row--total { font-size: 16px; font-weight: 700; padding-block: 10px 12px; border-top: 1px solid var(--border); margin-top: 6px; }
.cart-item { display: grid; grid-template-columns: 56px 1fr auto; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); align-items: center; }
.cart-item .thumb { width: 56px; height: 56px; background: linear-gradient(135deg, #f3ecdf, #e7dcc1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 26px; }
.cart-item .name { font-size: 12px; font-weight: 500; line-height: 1.3; margin-bottom: 4px; }
.cart-item .controls { display: flex; align-items: center; gap: 6px; margin-top: 4px; }
.cart-item .controls button { width: 24px; height: 24px; border: 1px solid var(--border); border-radius: 3px; font-size: 12px; background: #fff; cursor: pointer; }
.cart-item .controls .qty { min-width: 20px; text-align: center; font-size: 12px; font-weight: 600; }
.cart-item .remove { background: none; color: var(--danger); font-size: 18px; padding: 4px 6px; min-height: 32px; border: 0; cursor: pointer; align-self: center; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--muted); font-size: 13px; }
.cart-empty p { margin-bottom: 8px; font-size: 28px; }
.cart-shipping-bar { display: flex; align-items: center; gap: 8px; padding: 8px 12px; background: #fdf6e3; border-radius: var(--radius-sm); font-size: 12px; margin-bottom: 10px; }
.cart-shipping-bar.done { background: #dcfce7; color: var(--success); }

/* ── FAB BUTTONS ──────────────────────────── */
.whatsapp-fab { position: fixed; bottom: 24px; left: 24px; z-index: 50; width: 56px; height: 56px; display: inline-flex; align-items: center; justify-content: center; background: #25d366; color: #fff; border-radius: 999px; font-size: 28px; box-shadow: 0 8px 24px rgba(37,211,102,.4); }
.whatsapp-fab:hover { background: #1ebe5a; }
.whatsapp-fab::after { content: ""; position: absolute; inset: -4px; border-radius: 999px; border: 2px solid #25d366; animation: pulse 2s ease-out infinite; opacity: 0; }
@keyframes pulse { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.4); opacity: 0; } }
.scroll-top { position: fixed; bottom: 24px; right: 24px; z-index: 50; width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; background: var(--purple); color: #fff; border-radius: 999px; box-shadow: var(--shadow-3); border: 0; cursor: pointer; }
.scroll-top:hover { background: var(--purple-2); }

/* ── REVEAL ANIMATION ─────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s, transform .5s; }
.reveal.in { opacity: 1; transform: none; }
.badge-pop { animation: badge-pop .35s ease; }
@keyframes badge-pop { 0% { transform: scale(1); } 50% { transform: scale(1.3); } 100% { transform: scale(1); } }

/* ─────────────────────────────────────────── */
/* LARAVEL-SPECIFIC ADDITIONS                 */
/* ─────────────────────────────────────────── */

/* Form input (auth pages) */
.form-input { width: 100%; height: 44px; padding: 0 12px; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; font-size: 13px; color: var(--fg); font-family: var(--font); }
.form-input:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(145,66,144,.15); outline: 0; }

/* Catalog layout */
.catalog-shell { display: grid; grid-template-columns: 220px 1fr; gap: 24px; padding-block: 32px; }
.sidebar-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 16px; margin-bottom: 12px; }
.sidebar-title { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.side-link { display: flex; justify-content: space-between; align-items: center; padding: 7px 10px; border-radius: var(--radius-sm); font-size: 13px; color: var(--fg); transition: background .15s; }
.side-link:hover { background: #f3ecdf; }
.side-link.active { background: var(--gold); color: var(--charcoal); font-weight: 600; }
.side-link .mono { font-family: monospace; font-size: 11px; color: var(--muted); }
.catalog-toolbar { margin-bottom: 24px; display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; }
.catalog-search { display: flex; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: #fff; }
.catalog-search input { border: 0; outline: 0; padding: 10px 14px; font-size: 13px; font-family: var(--font); background: transparent; }
.catalog-search button { background: var(--gold); color: var(--charcoal); font-weight: 700; padding: 0 16px; border: 0; cursor: pointer; font-size: 13px; }

/* Generic helpers */
.btn-ghost { display: inline-flex; align-items: center; padding: 6px 14px; border-radius: var(--radius-sm); border: 1px solid var(--border); font-size: 12px; font-weight: 600; color: var(--fg); background: transparent; cursor: pointer; }
.btn-ghost:hover { background: #f3ecdf; }
.btn-primary { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 20px; border-radius: var(--radius); background: var(--purple); color: #fff; font-weight: 600; font-size: 14px; font-family: var(--font); }
.section-title { font-size: 22px; font-weight: 700; color: var(--fg); }
.mono { font-family: monospace; }
.logo-img { height: 52px; width: auto; }

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 1235px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
  .footer-col:nth-child(3) { display: none; }
}
@media (max-width: 1023px) {
  .header-bottom-inner { grid-template-columns: 1fr auto; }
  .logo { grid-column: 1; }
  .header-actions { grid-column: 2; }
  .search-form { grid-column: 1 / -1; max-width: 100%; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-slider { aspect-ratio: 16 / 9; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .banner-grid { grid-template-columns: repeat(2, 1fr); }
  .dealer-card { grid-template-columns: 1fr; padding: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col:nth-child(3) { display: flex; }
  .catbar { flex-wrap: nowrap; display: none; flex-direction: column; align-items: stretch; }
  .catbar.open { display: flex; }
  .mobile-menu-btn { display: inline-flex !important; }
  .catalog-shell { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .topband-inner { flex-direction: column; gap: 4px; text-align: center; padding-block: 6px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .banner-grid { grid-template-columns: 1fr; }
  .dealer-form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .icon-action .label { display: none; }
  .deal-list { padding: 12px; }
  .dealer-card { padding: 20px; }
  .newsletter-form { flex-direction: column; }
}
@media (max-width: 380px) {
  .product-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .whatsapp-fab::after { display: none; }
}
