/* ============================================================
   CodesWorld Shop - CSS v2
   Dark premium gaming aesthetic
   Fonts: Barlow Condensed (hero) + DM Sans (body)
   Colors: Deep navy bg, electric blue accent, subtle glows
   ============================================================ */

:root {
  --bg:         #070910;
  --bg-card:    #0d1017;
  --bg-raised:  #131720;
  --bg-input:   #0f1319;
  --border:     #1c2235;
  --border-lg:  #242d42;

  --accent:     #4f8ef7;
  --accent-dim: #3a70d4;
  --accent-glow:0 0 24px rgba(79,142,247,0.25);

  --green:      #2dd4a0;
  --red:        #f7506e;
  --yellow:     #f7c948;
  --purple:     #9b6dff;

  --t1: #e8eaf2;
  --t2: #8892a8;
  --t3: #4a5370;
  --t4: #2a3050;

  --radius:   8px;
  --radius-lg:14px;
  --radius-xl:20px;

  --header-h: 68px;

  --cat-steam:    #1b2838;
  --cat-xbox:     #107c10;
  --cat-psn:      #003087;
  --cat-gog:      #6a0dad;
  --cat-uplay:    #0078d4;
  --cat-battlenet:#00aeff;
  --cat-ea:       #ff4500;
  --cat-nintendo: #e4000f;
  --cat-other:    #333;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--t1);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---- Container ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container--sm { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* ============================================================ HEADER */
.site-header {
  position: sticky; top: 0; z-index: 200;
  height: var(--header-h);
  background: rgba(7,9,16,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; height: 100%; gap: 28px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px; font-weight: 700; letter-spacing: 0.5px;
  color: var(--accent); flex-shrink: 0;
}
.logo-dot { color: var(--green); }
.main-nav { display: flex; gap: 2px; flex: 1; }
.main-nav a {
  color: var(--t2); font-size: 14px; font-weight: 500;
  padding: 7px 14px; border-radius: var(--radius);
  transition: color .18s, background .18s;
}
.main-nav a:hover, .main-nav a.active { color: var(--t1); background: var(--bg-raised); }

.header-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }

.lang-toggle {
  display: flex; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.lang-btn {
  background: none; border: none; color: var(--t3); font-size: 12px; font-weight: 600;
  padding: 5px 10px; cursor: pointer; transition: all .15s;
  font-family: 'DM Sans', sans-serif;
}
.lang-btn.active { background: var(--bg-raised); color: var(--t1); }

.cart-link {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: var(--radius);
  background: var(--bg-raised); border: 1px solid var(--border);
  font-size: 18px; transition: border-color .2s, box-shadow .2s;
}
.cart-link:hover { border-color: var(--accent); box-shadow: var(--accent-glow); }
.cart-badge {
  position: absolute; top: -6px; right: -6px;
  background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 700; min-width: 18px; height: 18px;
  border-radius: 9px; display: flex; align-items: center; justify-content: center; padding: 0 4px;
  font-family: 'Barlow Condensed', sans-serif;
}

/* ============================================================ FLASH */
.flash { padding: 13px 0; font-size: 14px; font-weight: 500; border-bottom: 1px solid var(--border); }
.flash--success { background: rgba(45,212,160,.08); color: var(--green); }
.flash--error   { background: rgba(247,80,110,.08);  color: var(--red); }
.flash--info    { background: rgba(79,142,247,.08);  color: var(--accent); }

/* ============================================================ HERO */
.hero {
  position: relative; overflow: hidden;
  padding: 80px 0 72px;
  background: radial-gradient(ellipse 80% 60% at 60% 0%, rgba(79,142,247,0.08) 0%, transparent 70%),
              radial-gradient(ellipse 60% 40% at 100% 100%, rgba(155,109,255,0.06) 0%, transparent 60%);
  border-bottom: 1px solid var(--border);
}
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero__tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(79,142,247,.12); border: 1px solid rgba(79,142,247,.25);
  color: var(--accent); font-size: 12px; font-weight: 600; letter-spacing: 1px;
  padding: 5px 12px; border-radius: 20px; text-transform: uppercase; margin-bottom: 20px;
}
.hero__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 5vw, 64px); font-weight: 700; line-height: 1.05;
  letter-spacing: -0.5px; margin-bottom: 18px;
}
.hero__title span { color: var(--accent); }
.hero__sub { color: var(--t2); font-size: 16px; max-width: 440px; margin-bottom: 32px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__stats { display: flex; gap: 32px; flex-wrap: wrap; }
.stat-box { text-align: center; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px; font-weight: 700; color: var(--accent); line-height: 1;
}
.stat-label { font-size: 12px; color: var(--t3); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }

/* ============================================================ SECTION */
.section { padding: 56px 0; }
.section + .section { border-top: 1px solid var(--border); }
.section__header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px; gap: 16px;
}
.section__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 700; letter-spacing: 0.3px;
}
.section__title span { color: var(--accent); }
.section__link { font-size: 14px; color: var(--accent); display: flex; align-items: center; gap: 4px; }
.section__link:hover { text-decoration: underline; }

/* ============================================================ CATEGORIES */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
}
.cat-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 18px 12px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  cursor: pointer; transition: all .2s; text-align: center;
}
.cat-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--accent-glow); }
.cat-card.active { border-color: var(--accent); background: rgba(79,142,247,.08); }
.cat-icon { font-size: 28px; }
.cat-name { font-size: 12px; font-weight: 600; color: var(--t2); text-transform: uppercase; letter-spacing: 0.5px; }
.cat-count { font-size: 11px; color: var(--t3); }

/* Platform color dots */
.platform-dot {
  width: 8px; height: 8px; border-radius: 50%;
  display: inline-block; margin-right: 4px; vertical-align: middle;
}
.dot-steam    { background: #1b6fc0; }
.dot-xbox     { background: #107c10; }
.dot-psn      { background: #003087; }
.dot-gog      { background: #6a0dad; }
.dot-uplay    { background: #0078d4; }
.dot-battlenet{ background: #00aeff; }
.dot-ea       { background: #ff4500; }
.dot-nintendo { background: #e4000f; }
.dot-other    { background: #555; }

/* ============================================================ PRODUCT GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

/* ---- Cena: lokalna valuta + EUR ispod ---- */
.price-stack {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.price-local {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}
.price-eur {
  font-size: 11px;
  color: var(--t3);
  margin-top: 2px;
}
.product-card__footer .price-local { font-size: 18px; }
.product-card__footer .price-eur   { font-size: 10px; }

/* Wishlist dugme */
.wish-btn {
  position: absolute; top: 8px; right: 8px;
  background: rgba(7,9,16,0.7); border: none; border-radius: 50%;
  width: 32px; height: 32px; cursor: pointer; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--t3); transition: all .2s; z-index: 2;
  backdrop-filter: blur(4px);
}
.wish-btn:hover { color: #f7506e; transform: scale(1.1); }
.wish-btn--active { color: #f7506e !important; }

.product-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  cursor: pointer;
}
.product-card:hover {
  border-color: rgba(79,142,247,.5);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,.4), 0 0 0 1px rgba(79,142,247,.1);
}

.product-card__img-wrap {
  position: relative; width: 100%; aspect-ratio: 16/9;
  background: var(--bg-raised); overflow: hidden;
}
.product-card__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .3s;
}
.product-card:hover .product-card__img { transform: scale(1.04); }
.product-card__img-placeholder {
  width: 100%;
  height: 100%;
  background: url('/assets/images/Blank-cover.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__platform {
  position: absolute; top: 8px; left: 8px;
  background: rgba(7,9,16,.85); backdrop-filter: blur(4px);
  border-radius: 4px; padding: 2px 8px;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--t1);
}

.product-card__body { padding: 12px 14px; flex: 1; }
.product-card__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 600; line-height: 1.25;
  color: var(--t1); margin-bottom: 6px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-card__tags { display: flex; gap: 4px; flex-wrap: wrap; }
.tag {
  font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.4px;
}
.tag--region { background: rgba(45,212,160,.1); color: var(--green); }
.tag--lang   { background: rgba(155,109,255,.1); color: var(--purple); }

.product-card__footer {
  padding: 10px 14px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 700; color: var(--accent);
}
.price--lg { font-size: 32px; }
.price--sm { font-size: 16px; }

.stock-pill {
  font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 0.4px;
}
.stock-pill--in  { background: rgba(45,212,160,.12); color: var(--green); }
.stock-pill--out { background: rgba(247,80,110,.12);  color: var(--red); }

/* ============================================================ FILTERS BAR */
.filters-bar {
  display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; align-items: center;
}
.search-wrap { position: relative; flex: 1; min-width: 220px; }
.search-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--t3); font-size: 15px; }
.search-input {
  width: 100%; background: var(--bg-input); border: 1px solid var(--border);
  color: var(--t1); padding: 9px 12px 9px 36px; border-radius: var(--radius);
  font-size: 14px; outline: none; font-family: 'DM Sans', sans-serif;
  transition: border-color .2s;
}
.search-input:focus { border-color: var(--accent); }
.filter-select {
  background: var(--bg-input); border: 1px solid var(--border); color: var(--t1);
  padding: 9px 14px; border-radius: var(--radius); font-size: 14px; outline: none;
  font-family: 'DM Sans', sans-serif; cursor: pointer;
}
.filter-select:focus { border-color: var(--accent); }

/* ============================================================ BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 10px 22px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer; border: none; text-decoration: none;
  transition: all .18s; white-space: nowrap;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-dim); box-shadow: var(--accent-glow); }
.btn--outline { background: transparent; border: 1px solid var(--accent); color: var(--accent); }
.btn--outline:hover { background: rgba(79,142,247,.08); }
.btn--ghost { background: var(--bg-raised); border: 1px solid var(--border); color: var(--t2); }
.btn--ghost:hover { color: var(--t1); border-color: var(--border-lg); }
.btn--danger { background: var(--red); color: #fff; }
.btn--danger:hover { opacity: .85; }
.btn--sm { padding: 7px 14px; font-size: 13px; }
.btn--lg { padding: 13px 30px; font-size: 16px; }
.btn--xl { padding: 16px 40px; font-size: 17px; border-radius: var(--radius-lg); }
.btn--full { width: 100%; }
.btn:disabled { opacity: .4; cursor: not-allowed; }

/* ============================================================ FORMS */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-label { font-size: 12px; font-weight: 600; color: var(--t2); text-transform: uppercase; letter-spacing: 0.5px; }
.form-input, .form-select, .form-textarea {
  background: var(--bg-input); border: 1px solid var(--border); color: var(--t1);
  padding: 10px 14px; border-radius: var(--radius); font-size: 15px;
  font-family: 'DM Sans', sans-serif; outline: none; width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(79,142,247,.1);
}
.form-hint { font-size: 12px; color: var(--t3); }
.form-error { font-size: 13px; color: var(--red); }

/* ============================================================ PANELS */
.panel {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; margin-bottom: 20px;
}
.panel__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 700; color: var(--t1);
  padding-bottom: 16px; margin-bottom: 20px; border-bottom: 1px solid var(--border);
}

/* ============================================================ CART */
.cart-layout {
  display: grid; grid-template-columns: 1fr 360px; gap: 24px; align-items: start;
}
.cart-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item__img {
  width: 76px; height: 46px; object-fit: cover;
  border-radius: 6px; background: var(--bg-raised); flex-shrink: 0;
}
.cart-item__info { flex: 1; }
.cart-item__name { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 600; }
.cart-item__sub  { font-size: 12px; color: var(--t3); margin-top: 2px; }

.qty-control { display: flex; align-items: center; gap: 4px; }
.qty-btn {
  background: var(--bg-raised); border: 1px solid var(--border); color: var(--t1);
  width: 28px; height: 28px; border-radius: 6px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: border-color .15s;
}
.qty-btn:hover { border-color: var(--accent); }
.qty-val { width: 28px; text-align: center; font-size: 14px; }

.summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 7px 0; font-size: 14px; color: var(--t2);
}
.summary-row--total {
  border-top: 1px solid var(--border); margin-top: 10px; padding-top: 14px;
  font-size: 16px; font-weight: 700; color: var(--t1);
}

/* ============================================================ ORDER SUCCESS */
.success-hero { text-align: center; padding: 56px 0 36px; }
.success-icon { font-size: 72px; margin-bottom: 16px; }

.keys-list { display: flex; flex-direction: column; gap: 12px; }
.key-card {
  background: var(--bg-raised); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 18px;
  display: flex; align-items: center; gap: 14px;
}
.key-label { font-size: 12px; color: var(--t3); min-width: 56px; }
.key-value {
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 15px; color: var(--accent); flex: 1;
  word-break: break-all; letter-spacing: 0.5px;
}
.copy-btn {
  background: var(--bg-card); border: 1px solid var(--border); color: var(--t2);
  padding: 5px 12px; border-radius: 6px; font-size: 12px; cursor: pointer;
  transition: all .15s; white-space: nowrap; font-family: 'DM Sans', sans-serif;
}
.copy-btn:hover { border-color: var(--accent); color: var(--accent); }

/* ============================================================ TABLES */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th, td { padding: 11px 16px; text-align: left; border-bottom: 1px solid var(--border); }
th { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--t3); background: var(--bg-raised); }
tr:hover td { background: rgba(255,255,255,.015); }

/* ============================================================ BADGES */
.badge {
  display: inline-block; padding: 3px 10px; border-radius: 20px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px;
}
.badge--completed  { background: rgba(45,212,160,.12); color: var(--green); }
.badge--processing { background: rgba(79,142,247,.12); color: var(--accent); }
.badge--pending    { background: rgba(247,201,72,.12);  color: var(--yellow); }
.badge--failed     { background: rgba(247,80,110,.12);  color: var(--red); }

/* ============================================================ PAGINATION */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.page-btn {
  background: var(--bg-card); border: 1px solid var(--border); color: var(--t2);
  width: 36px; height: 36px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; cursor: pointer; transition: all .15s; text-decoration: none;
}
.page-btn:hover, .page-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ============================================================ EMPTY STATE */
.empty-state { text-align: center; padding: 80px 24px; }
.empty-icon { font-size: 64px; margin-bottom: 16px; }
.empty-title { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.empty-sub { color: var(--t2); margin-bottom: 28px; }

/* ============================================================ AUTH */
.auth-wrap { max-width: 440px; margin: 48px auto; }
.auth-title { font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 700; margin-bottom: 6px; text-align: center; }
.auth-sub { color: var(--t2); text-align: center; margin-bottom: 28px; }

/* ============================================================ PRODUCT DETAIL */
.product-detail {
  display: grid; grid-template-columns: 420px 1fr; gap: 48px; align-items: start;
}
.product-detail__img {
  width: 100%; border-radius: var(--radius-xl); border: 1px solid var(--border);
}
.product-detail__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 42px); font-weight: 700; line-height: 1.15; margin-bottom: 14px;
}
.product-detail__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.product-detail__info-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px;
}
.info-item { background: var(--bg-raised); border-radius: var(--radius); padding: 12px 16px; }
.info-label { font-size: 11px; color: var(--t3); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.info-value { font-size: 14px; font-weight: 600; color: var(--t1); }

.price-box {
  background: linear-gradient(135deg, rgba(79,142,247,.08), rgba(155,109,255,.05));
  border: 1px solid rgba(79,142,247,.2); border-radius: var(--radius-lg); padding: 24px;
}

/* ============================================================ FOOTER */
.site-footer {
  border-top: 1px solid var(--border); padding: 40px 0; margin-top: auto;
  background: var(--bg-card);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.footer-brand .logo { font-size: 22px; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: var(--t3); line-height: 1.6; max-width: 260px; }
.footer-col h4 {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--t2); margin-bottom: 14px;
}
.footer-col a { display: block; color: var(--t3); font-size: 14px; margin-bottom: 8px; transition: color .15s; }
.footer-col a:hover { color: var(--t1); }
.footer-bottom {
  border-top: 1px solid var(--border); margin-top: 36px; padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--t3);
}

/* ============================================================ RESPONSIVE */
@media(max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__stats { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-detail { grid-template-columns: 1fr; }
}
@media(max-width: 768px) {
  .cart-layout { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .categories-grid { grid-template-columns: repeat(4, 1fr); }
  .header-search { display: none; }
  .desktop-nav { display: none; }

  .mobile-search-btn {
    background: none; border: none; cursor: pointer; padding: 6px;
    color: var(--t1); display: flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; font-size: 16px; flex-shrink: 0;
  }
  .mobile-search-bar {
    display: none; background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    position: absolute; left: 0; right: 0; z-index: 198;
    top: var(--header-h);
  }
  .mobile-search-bar.open { display: block; }

  .hamburger {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 6px; flex-shrink: 0;
    width: 32px; height: 32px;
  }
  .hamburger span {
    display: block; width: 20px; height: 2px;
    background: var(--t1); border-radius: 2px;
    transition: transform .2s, opacity .2s;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
    display: none; position: absolute; top: var(--header-h); left: 0; right: 0;
    background: var(--bg-card); border-bottom: 1px solid var(--border);
    z-index: 199;
  }
  .mobile-menu.open { display: block; }
  .mobile-menu__inner { padding: 20px 16px; }
  .mobile-link {
    display: block; padding: 12px 0; color: var(--t1); font-size: 16px;
    font-weight: 500; border-bottom: 1px solid var(--border); text-decoration: none;
  }
  .mobile-link:last-of-type { border-bottom: none; }
}
@media(min-width: 769px) {
  .hamburger { display: none; }
  .mobile-search-btn { display: none; }
  .mobile-menu { display: none !important; }
  .mobile-search-bar { display: none !important; }
  .desktop-nav { display: flex; align-items: center; gap: 10px; }
}
@media(max-width: 480px) {
  .container { padding: 0 16px; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}
