/* ══════════════════════════════════════════════
   ELIMKON ELEKTRONİK — SHARED DESIGN SYSTEM
══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #fbf8ff;
  --surface:  #eee8ff;
  --card:     rgba(255,255,255,.88);
  --border:   rgba(57,48,90,.14);
  --border-h: rgba(99,102,241,.42);
  --blue:     #4f46e5;
  --blue-dk:  #3730a3;
  --purple:   #8b5cf6;
  --cyan:     #06b6d4;
  --green:    #10b981;
  --orange:   #f59e0b;
  --rose:     #e11d48;
  --text:     #20172f;
  --text-2:   #4f4665;
  --muted:    #766d89;
  --radius:   16px;
  --nav-h:    70px;
}

html { scroll-behavior: smooth; }
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
body {
  font-family: 'Inter', sans-serif;
  background:
    linear-gradient(135deg, rgba(139,92,246,.16) 0%, transparent 36%),
    linear-gradient(225deg, rgba(245,158,11,.14) 0%, transparent 42%),
    linear-gradient(180deg, #fbf8ff 0%, #f2ecff 45%, #fff8ed 100%);
  background-attachment: fixed;
  color: var(--text);
  overflow-x: hidden; line-height: 1.6;
}

/* ─── NAVIGATION ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: var(--nav-h);
  background: rgba(251,248,255,.9);
  backdrop-filter: blur(28px) saturate(1.8);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
}

.nav-inner {
  max-width: 1200px; margin: 0 auto;
  height: 100%; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--text);
  font-size: 1.05rem; font-weight: 800; letter-spacing: 0;
  flex-shrink: 1;
  min-width: 0;
  padding: 4px 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.logo-mark {
  width: 6px; height: 42px; border-radius: 999px;
  background: linear-gradient(180deg, var(--orange), var(--purple), var(--blue));
  display: flex; align-items: center; justify-content: center;
  color: transparent;
  font-size: 0;
  box-shadow: 0 0 18px rgba(99,102,241,.22);
}

.nav-logo-img {
  display: none;
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: .94;
  min-width: 0;
}
.nav-brand-main {
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--text), var(--blue) 52%, var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-brand-sub {
  margin-top: 7px;
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .22em;
  color: var(--muted);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-links {
  display: flex; gap: 2px; list-style: none;
  position: absolute; left: 50%; transform: translateX(-50%);
}

.nav-links a {
  display: block; padding: 8px 16px; border-radius: 10px;
  color: var(--text-2); font-size: .875rem; font-weight: 500;
  text-decoration: none; transition: color .2s, background .2s;
  position: relative;
}
.nav-links a:hover { color: var(--text); background: rgba(99,102,241,.08); }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: '';
  position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 18px; height: 2.5px; border-radius: 99px;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
}

.nav-right { display: flex; align-items: center; gap: 10px; }

.nav-cta {
  padding: 9px 20px; border-radius: 10px;
  background: linear-gradient(135deg, var(--cyan), var(--blue) 45%, var(--orange));
  color: #fff; font-size: .84rem; font-weight: 700;
  text-decoration: none; letter-spacing: .01em;
  box-shadow: 0 4px 20px rgba(79,70,229,.28), 0 4px 22px rgba(245,158,11,.18);
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(99,102,241,.32), 0 8px 30px rgba(245,158,11,.24); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 1px solid var(--border); border-radius: 8px;
  cursor: pointer; padding: 8px 10px;
}
.hamburger span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; display: block; }

.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(251,248,255,.96); backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 20px; z-index: 998; flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 16px; border-radius: 10px;
  color: var(--text-2); text-decoration: none; font-size: .95rem; font-weight: 500;
  transition: background .2s, color .2s;
}
.mobile-menu a:hover, .mobile-menu a.active { background: rgba(99,102,241,.12); color: var(--text); }
.mobile-menu .nav-cta { text-align: center; margin-top: 8px; }

/* ─── FOOTER ─── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 2rem 0;
}

.foot-inner { max-width: 1200px; margin: 0 auto; }

.foot-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 48px; border-bottom: 1px solid var(--border);
}

.foot-brand-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1rem; font-weight: 800; margin-bottom: 14px;
}
.footer-logo-mark {
  width: 5px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange), var(--purple), var(--blue));
  box-shadow: 0 0 16px rgba(99,102,241,.18);
  flex-shrink: 0;
}
.footer-brand-text {
  display: flex;
  flex-direction: column;
  line-height: .95;
}
.footer-brand-main {
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--text), var(--blue) 52%, var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-brand-sub {
  margin-top: 6px;
  font-size: .56rem;
  font-weight: 900;
  letter-spacing: .2em;
  color: var(--muted);
  text-transform: uppercase;
}

.foot-brand p { color: var(--muted); font-size: .85rem; line-height: 1.75; max-width: 250px; }

.foot-socials { display: flex; gap: 8px; margin-top: 20px; }
.foot-social {
  width: 34px; height: 34px; border-radius: 8px;
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  color: var(--muted); text-decoration: none; font-size: .85rem;
  transition: border-color .2s, color .2s, background .2s;
}
.foot-social.logo-social {
  width: 36px;
  height: 36px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}
.trendyol-mini-logo,
.hepsiburada-mini-logo,
.n11-mini-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #ff6720;
  color: transparent;
  font-size: 0;
  line-height: 1;
  position: relative;
  overflow: hidden;
}
.trendyol-mini-logo::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 11px;
  transform: translateY(-50%);
  background: #050505;
}
.trendyol-mini-logo::after {
  content: 'trendyol';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: -.25px;
}
.hepsiburada-mini-logo {
  background: #fff;
  color: transparent;
}
.hepsiburada-mini-logo::before {
  content: 'hepsi\A burada';
  white-space: pre;
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  color: #ff6000;
  font-size: 8px;
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.55px;
  text-align: left;
}
.hepsiburada-mini-logo::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, #7c3aed 0 14%, #52b6d6 14% 30%, #ff5a1f 30% 63%, #f5a623 63% 78%, #721d62 78% 91%, #43bca4 91% 100%);
}
.n11-mini-logo {
  background: #fff;
  border-radius: 8px;
}
.n11-mini-logo::before {
  content: 'n11';
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  color: #5d4aa6;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -1.7px;
}
.n11-mini-logo::after {
  content: '';
  position: absolute;
  right: 2px;
  top: 8px;
  width: 15px;
  height: 17px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 28%, #ffd21f 0 3px, transparent 3.2px),
    radial-gradient(circle at 68% 38%, #ffd21f 0 3px, transparent 3.2px),
    radial-gradient(circle at 48% 68%, #ffd21f 0 2.5px, transparent 2.7px),
    #5d4aa6;
  transform: rotate(14deg);
  box-shadow: 4px -5px 0 -2px #000, 7px -8px 0 -4px #000;
}
.platform-trendyol-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto;
}
.platform-trendyol-icon .trendyol-mini-logo,
.platform-hepsiburada-icon .hepsiburada-mini-logo,
.platform-n11-icon .n11-mini-logo {
  width: 52px;
  height: 52px;
  border-radius: 15px;
}
.platform-trendyol-icon .trendyol-mini-logo::before {
  height: 17px;
}
.platform-trendyol-icon .trendyol-mini-logo::after {
  font-size: 10px;
}
.platform-hepsiburada-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto;
}
.platform-n11-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto;
}
.platform-n11-icon .n11-mini-logo::before {
  left: 4px;
  font-size: 23px;
  letter-spacing: -2.6px;
}
.platform-n11-icon .n11-mini-logo::after {
  right: 4px;
  top: 12px;
  width: 23px;
  height: 25px;
  background:
    radial-gradient(circle at 36% 28%, #ffd21f 0 4.4px, transparent 4.6px),
    radial-gradient(circle at 68% 38%, #ffd21f 0 4.4px, transparent 4.6px),
    radial-gradient(circle at 48% 68%, #ffd21f 0 3.8px, transparent 4px),
    #5d4aa6;
  box-shadow: 6px -7px 0 -3px #000, 11px -12px 0 -7px #000;
}
.platform-hepsiburada-icon .hepsiburada-mini-logo::before {
  font-size: 12px;
}
.platform-hepsiburada-icon .hepsiburada-mini-logo::after {
  height: 6px;
}
.foot-social:hover { border-color: var(--blue); color: var(--blue); background: rgba(99,102,241,.1); }
.foot-social.logo-social:hover {
  background: transparent;
  transform: translateY(-1px);
}

.foot-col h4 {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--muted); margin-bottom: 16px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { color: var(--text-2); text-decoration: none; font-size: .875rem; transition: color .2s; }
.foot-col a:hover { color: var(--text); }

.foot-bottom {
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.foot-bottom p { color: var(--muted); font-size: .78rem; }
.foot-bottom-links { display: flex; gap: 1.5rem; }
.foot-bottom-links a { color: var(--muted); text-decoration: none; font-size: .78rem; transition: color .2s; }
.foot-bottom-links a:hover { color: var(--text-2); }
.foot-bottom-links .admin-login-link {
  color: var(--blue);
  font-weight: 800;
}

/* ─── COMMON LAYOUT ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ─── TAGS ─── */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 99px;
  background: rgba(99,102,241,.1); border: 1px solid rgba(99,102,241,.22);
  color: var(--blue); font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px;
}
.tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); animation: blink 2s infinite; }

/* ─── TYPOGRAPHY ─── */
.heading-xl {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 900; line-height: 1.04; letter-spacing: -.05em;
}
.heading-lg {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -.03em;
}
.heading-md {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700; line-height: 1.2; letter-spacing: -.02em;
}

.grad-text {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 42%, var(--orange) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.grad-text-2 {
  background: linear-gradient(135deg, var(--green) 0%, var(--cyan) 52%, var(--orange) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.body-lg { color: var(--text-2); font-size: 1.05rem; line-height: 1.8; }
.body-md { color: var(--text-2); font-size: .9rem; line-height: 1.75; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 12px;
  font-size: .9rem; font-weight: 700; text-decoration: none;
  font-family: inherit; border: none; cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
}
.btn-lg { padding: 15px 32px; font-size: .95rem; border-radius: 14px; }

.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 48%, var(--orange) 100%);
  color: #fff; box-shadow: 0 4px 22px rgba(79,70,229,.28), 0 4px 24px rgba(245,158,11,.18);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 38px rgba(99,102,241,.32), 0 10px 34px rgba(245,158,11,.24); }

.btn-secondary {
  background: rgba(255,255,255,.72); color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover { background: rgba(99,102,241,.1); transform: translateY(-2px); border-color: rgba(99,102,241,.28); }

.btn-outline-blue {
  background: transparent; color: var(--blue);
  border: 1px solid rgba(99,102,241,.36);
}
.btn-outline-blue:hover { background: rgba(99,102,241,.1); border-color: var(--blue); color: var(--blue); }

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #16a34a);
  color: #fff;
  box-shadow: 0 4px 22px rgba(37,211,102,.28);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 34px rgba(37,211,102,.34);
}

/* ─── CARDS ─── */
.card {
  background: var(--card);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.card:hover {
  border-color: var(--border-h);
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(57,48,90,.13), 0 0 0 1px rgba(99,102,241,.1);
}

/* ─── SECTION SPACING ─── */
.section { padding: 100px 2rem; }
.section-sm { padding: 72px 2rem; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: calc(var(--nav-h) + 64px) 2rem 72px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(135deg, rgba(139,92,246,.16) 0%, rgba(245,158,11,.14) 54%, rgba(79,70,229,.1) 100%);
}

/* ─── STATS ROW ─── */
.stats-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 0;
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
}
.stat-item {
  padding: 28px 20px; text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 2.2rem; font-weight: 900; letter-spacing: -.04em;
  background: linear-gradient(135deg, var(--blue), var(--purple), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: .75rem; color: var(--muted); margin-top: 4px; font-weight: 500; }

/* ─── PRODUCT CARDS ─── */
.prod-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.25rem;
}
.prod-card {
  background: var(--card);
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.prod-card:hover {
  transform: translateY(-5px);
  border-color: rgba(99,102,241,.36);
  box-shadow: 0 28px 60px rgba(57,48,90,.14), 0 0 0 1px rgba(245,158,11,.12);
}

.prod-thumb {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg, #eef2ff 0%, #ddd6fe 48%, #fef3c7 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  cursor: zoom-in;
}
.prod-thumb img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform .4s ease;
}
.prod-card:hover .prod-thumb img { transform: scale(1.06); }
.prod-thumb svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.prod-thumb::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, transparent 35%, rgba(49,46,129,.32) 100%);
}
.prod-badge {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  padding: 4px 11px; border-radius: 8px;
  background: linear-gradient(135deg, rgba(79,70,229,.95), rgba(245,158,11,.95)); backdrop-filter: blur(8px);
  font-size: .7rem; font-weight: 700; color: #fff; letter-spacing: .04em;
}
.prod-body { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.prod-cat { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--blue); }
.prod-name { font-size: 1rem; font-weight: 700; line-height: 1.3; }
.prod-desc { font-size: .82rem; color: var(--text-2); line-height: 1.65; flex: 1; }
.prod-feats { margin-top: 10px; display: flex; flex-direction: column; gap: 5px; }
.prod-feat {
  display: flex; align-items: center; gap: 7px;
  font-size: .77rem; color: var(--muted);
}
.prod-feat::before {
  content: '';
  width: 15px; height: 15px; flex-shrink: 0; border-radius: 50%;
  background: rgba(99,102,241,.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234f46e5' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/9px no-repeat;
}
.prod-feat.free-shipping-label {
  width: fit-content;
  color: #047857;
  font-weight: 900;
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.24);
  border-radius: 999px;
  padding: 4px 10px 4px 6px;
}
.prod-feat.free-shipping-label::before {
  background: rgba(16,185,129,.16) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23047857' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2'/%3E%3Cpath d='M15 18H9'/%3E%3Cpath d='M19 18h2a1 1 0 0 0 1-1v-3.65a1 1 0 0 0-.22-.62l-3.48-4.35A1 1 0 0 0 17.52 8H14'/%3E%3Ccircle cx='7' cy='18' r='2'/%3E%3Ccircle cx='17' cy='18' r='2'/%3E%3C/svg%3E") center/10px no-repeat;
}
.prod-footer-bar {
  margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.prod-price { font-size: 1rem; font-weight: 800; color: var(--blue); }
.prod-link {
  padding: 7px 15px; border-radius: 8px;
  background: rgba(99,102,241,.12); color: var(--blue);
  font-size: .78rem; font-weight: 700; text-decoration: none;
  transition: background .2s;
}
.prod-link:hover { background: rgba(245,158,11,.18); color: #92400e; }

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 14px;
}
.image-lightbox.open { display: flex; }
.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,.72);
  backdrop-filter: blur(14px);
}
.image-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1500px, 100%);
  max-height: calc(100vh - 28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.image-lightbox img {
  max-width: 100%;
  max-height: calc(100vh - 72px);
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
}
.image-lightbox-title {
  color: #fff;
  font-size: .95rem;
  font-weight: 800;
  text-align: center;
}
.image-lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.92);
  color: var(--text);
  font-family: inherit;
  font-size: 1.2rem;
  font-weight: 900;
  cursor: pointer;
}

.subscription-bar {
  max-width: 1200px;
  margin: 0 auto 22px;
  padding: 16px 18px;
  border: 1px solid rgba(99,102,241,.24);
  border-radius: 14px;
  background: rgba(255,255,255,.82);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.subscription-bar strong {
  display: block;
  font-size: .94rem;
}
.subscription-bar span {
  color: var(--muted);
  font-size: .8rem;
}
.subscription-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.subscription-form input {
  min-width: 230px;
  min-height: 40px;
}
.subscription-form button,
.subscription-exit {
  min-height: 40px;
  border: none;
  border-radius: 10px;
  padding: 0 16px;
  background: linear-gradient(135deg, var(--cyan), var(--blue), var(--orange));
  color: #fff;
  font-family: inherit;
  font-size: .82rem;
  font-weight: 900;
  cursor: pointer;
}
.subscription-exit {
  background: rgba(99,102,241,.1);
  color: var(--blue);
  border: 1px solid rgba(99,102,241,.22);
}
.price-locked .cart-add {
  background: rgba(99,102,241,.14);
  color: var(--blue);
  box-shadow: none;
}
.price-locked .cart-actions {
  display: none;
}

.payment-methods {
  margin-top: 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
}
.payment-methods h2,
.payment-methods h3 {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 14px;
}
.payment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.payment-card {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.72);
  border-radius: 12px;
  padding: 14px;
}
.payment-card strong {
  display: block;
  font-size: .86rem;
  margin-bottom: 5px;
}
.payment-card span {
  display: block;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.55;
}
.payment-note {
  margin-top: 14px;
  color: var(--text-2);
  font-size: .82rem;
  line-height: 1.65;
}

/* ─── FEATURE CARDS ─── */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.25rem; }
.feat-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: border-color .3s, transform .3s;
}
.feat-card:hover { border-color: rgba(99,102,241,.34); transform: translateY(-3px); }
.feat-icon {
  width: 48px; height: 48px; border-radius: 13px; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(99,102,241,.14), rgba(245,158,11,.14));
  border: 1px solid rgba(99,102,241,.18);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.feat-card h3 { font-size: .97rem; font-weight: 700; margin-bottom: 8px; }
.feat-card p { font-size: .84rem; color: var(--text-2); line-height: 1.65; }

/* ─── DIVIDER ─── */
.divider { border: none; border-top: 1px solid var(--border); }

/* ─── ANIMATIONS ─── */
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes gradient-shift { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }
@keyframes orb-spin { from{transform:rotate(0deg) scale(1)} to{transform:rotate(360deg) scale(1.05)} }

.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ─── FORM ─── */
.form-group { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
input, textarea, select {
  width: 100%; background: rgba(255,255,255,.8);
  border: 1px solid var(--border); border-radius: 12px;
  padding: 13px 16px; color: var(--text);
  font-family: inherit; font-size: .88rem; outline: none;
  transition: border-color .2s, background .2s;
}
input::placeholder, textarea::placeholder { color: var(--muted); }
input:focus, textarea:focus, select:focus { border-color: var(--blue); background: rgba(99,102,241,.08); }
textarea { resize: vertical; min-height: 130px; }
select option { background: #fbf8ff; color: #20172f; }
.form-submit {
  padding: 14px; border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan), var(--blue) 48%, var(--orange));
  color: #fff; font-size: .9rem; font-weight: 700;
  border: none; cursor: pointer; font-family: inherit;
  box-shadow: 0 4px 22px rgba(79,70,229,.28), 0 4px 24px rgba(245,158,11,.18);
  transition: transform .2s, box-shadow .2s;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(99,102,241,.32), 0 10px 32px rgba(245,158,11,.24); }

/* ─── CATEGORY TABS ─── */
.cat-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.cat-tab {
  padding: 9px 20px; border-radius: 99px;
  border: 1px solid var(--border); background: transparent;
  color: var(--text-2); font-size: .84rem; font-weight: 600;
  cursor: pointer; font-family: inherit;
  transition: all .2s;
}
.cat-tab.active, .cat-tab:hover { background: linear-gradient(135deg, var(--purple), var(--blue), var(--orange)); border-color: var(--blue); color: #fff; }

/* ─── RESPONSIVE ─── */
/* CART */
.cart-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 20px; height: 20px; margin-left: 6px; padding: 0 6px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--orange), var(--rose));
  color: #fff; font-size: .68rem; font-weight: 800;
  vertical-align: middle;
}

.cart-actions {
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border);
  display: grid; grid-template-columns: 176px 1fr; gap: 10px;
}
.qty-control {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.76);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 0 6px 0 10px;
}
.qty-control span {
  color: var(--muted); font-size: .72rem; font-weight: 700;
}
.qty-btn {
  width: 28px; height: 28px; border-radius: 8px;
  border: 1px solid rgba(99,102,241,.24);
  background: rgba(99,102,241,.1);
  color: var(--text);
  font-family: inherit; font-size: 1rem; font-weight: 900;
  line-height: 1; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.qty-btn:hover {
  background: rgba(245,158,11,.16);
  border-color: rgba(245,158,11,.34);
}
.cart-qty, .cart-item-qty {
  width: 44px; min-height: 38px; padding: 0;
  border: none; background: transparent;
  color: var(--text); text-align: center; font-weight: 800;
}
.cart-qty:focus, .cart-item-qty:focus { background: transparent; border: none; }
.cart-add {
  min-height: 40px; border: none; border-radius: 10px;
  background: linear-gradient(135deg, var(--cyan), var(--blue) 48%, var(--orange));
  color: #fff; font-family: inherit; font-size: .82rem; font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(79,70,229,.22), 0 4px 18px rgba(245,158,11,.14);
  transition: transform .2s, box-shadow .2s;
}
.cart-add:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(99,102,241,.26), 0 8px 24px rgba(245,158,11,.2);
}
.cart-added {
  color: #059669; font-size: .76rem; font-weight: 700;
  grid-column: 1 / -1; min-height: 18px;
}

.cart-layout {
  display: grid; grid-template-columns: 1.6fr .8fr; gap: 1.5rem; align-items: start;
}
.cart-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.cart-panel-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 20px 22px; border-bottom: 1px solid var(--border);
}
.cart-panel-head h2 { font-size: 1rem; font-weight: 800; }
.cart-items { display: flex; flex-direction: column; }
.cart-item {
  display: grid; grid-template-columns: 96px 1fr auto;
  gap: 16px; align-items: center;
  padding: 18px 22px; border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 96px; aspect-ratio: 1; object-fit: contain;
  background: #fff; border-radius: 10px; padding: 8px;
}
.cart-item-name { font-size: .95rem; font-weight: 800; line-height: 1.35; }
.cart-item-cat { color: var(--muted); font-size: .76rem; margin-top: 4px; }
.cart-item-price { color: var(--blue); font-weight: 900; margin-top: 8px; }
.cart-item-controls {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  justify-content: flex-end;
}
.cart-remove, .cart-clear {
  border: 1px solid rgba(225,29,72,.3);
  background: rgba(225,29,72,.08);
  color: #be123c;
  border-radius: 10px;
  min-height: 40px; padding: 0 14px;
  font-family: inherit; font-size: .8rem; font-weight: 800;
  cursor: pointer;
}
.cart-remove:hover, .cart-clear:hover {
  background: rgba(225,29,72,.13);
  border-color: rgba(225,29,72,.42);
}
.cart-summary {
  padding: 22px;
  display: flex; flex-direction: column; gap: 14px;
}
.summary-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  color: var(--text-2); font-size: .88rem;
}
.summary-row strong {
  color: var(--text); font-size: 1.3rem;
}
.cart-note {
  color: var(--muted); font-size: .78rem; line-height: 1.6;
  padding-top: 10px; border-top: 1px solid var(--border);
}
.shipping-note {
  color: var(--text);
  font-size: .82rem;
  font-weight: 900;
  line-height: 1.45;
  padding: 10px 12px;
  border: 1px solid rgba(34,197,94,.24);
  background: rgba(34,197,94,.1);
  border-radius: 10px;
}
.cart-empty {
  padding: 48px 22px; text-align: center;
}
.cart-empty h3 { font-size: 1.2rem; margin-bottom: 8px; }
.cart-empty p { color: var(--text-2); margin-bottom: 22px; }

body.modal-open { overflow: hidden; }
.order-modal {
  position: fixed; inset: 0; z-index: 2000;
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.order-modal.open { display: flex; }
.order-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(15, 23, 42, .34);
  backdrop-filter: blur(16px);
}
.order-dialog {
  position: relative; z-index: 1;
  width: min(1080px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: linear-gradient(180deg, #ffffff 0%, #f6f2ff 100%);
  border: 1px solid rgba(99,102,241,.22);
  border-radius: 18px;
  box-shadow: 0 28px 90px rgba(57,48,90,.2), 0 0 0 1px rgba(245,158,11,.1);
  padding: 26px;
}
.order-close {
  position: sticky; top: 0; float: right; z-index: 2;
  width: 36px; height: 36px; border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.84);
  color: var(--text); font-family: inherit; font-weight: 900;
  cursor: pointer;
}
.order-close:hover {
  border-color: rgba(245,158,11,.42);
  background: rgba(245,158,11,.14);
}
.order-window-head {
  padding-right: 46px; margin-bottom: 22px;
}
.order-kicker {
  display: inline-flex; align-items: center;
  padding: 5px 11px; border-radius: 999px;
  background: rgba(99,102,241,.1);
  border: 1px solid rgba(99,102,241,.22);
  color: var(--blue);
  font-size: .68rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase;
}
.order-window-head h2 {
  margin-top: 12px; font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.1;
}
.order-window-head p {
  color: var(--text-2); margin-top: 8px; max-width: 720px;
}
.order-modal-grid, .order-result-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  gap: 18px; align-items: start;
}
.order-form, .order-review, .order-result-panel {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.78);
  border-radius: 14px;
  padding: 18px;
}
.order-form h3, .order-review h3, .order-result-panel h3 {
  font-size: .95rem; margin-bottom: 14px;
}
.payment-options {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}
.payment-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: flex-start;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.72);
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
}
.payment-option input {
  width: auto;
  margin-top: 3px;
  accent-color: #4f46e5;
}
.payment-option strong,
.payment-option small {
  display: block;
}
.payment-option strong {
  font-size: .88rem;
}
.payment-option small {
  color: var(--muted);
  font-size: .74rem;
  line-height: 1.45;
  margin-top: 3px;
}
.payment-panel[hidden] {
  display: none;
}
.bank-accounts {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}
.bank-account {
  border: 1px solid rgba(99,102,241,.18);
  background: rgba(255,255,255,.82);
  border-radius: 12px;
  padding: 12px;
}
.bank-account strong {
  display: block;
  color: var(--text);
  font-size: .82rem;
  line-height: 1.45;
}
.bank-account strong span {
  color: var(--text-2);
  font-weight: 700;
}
.bank-account div {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 8px;
  color: var(--text);
  font-size: .85rem;
  font-weight: 900;
}
.payment-result-panel {
  margin-top: 18px;
}
.order-field {
  display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px;
}
.order-field span {
  color: var(--muted); font-size: .74rem; font-weight: 800;
}
.order-field textarea { min-height: 96px; }
.phone-combo {
  display: grid; grid-template-columns: minmax(140px, .82fr) minmax(120px, 1fr);
  gap: 8px;
}
.country-code-select {
  min-width: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.order-form-actions {
  display: flex; justify-content: flex-end; gap: 10px; flex-wrap: wrap;
  margin-top: 16px;
}
.order-review-list {
  display: flex; flex-direction: column; gap: 10px;
  max-height: 440px; overflow: auto; padding-right: 4px;
}
.order-product {
  display: grid; grid-template-columns: 68px minmax(0, 1fr);
  gap: 12px; align-items: center;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.78);
  border-radius: 12px; padding: 10px;
}
.order-product img {
  width: 68px; aspect-ratio: 1; object-fit: contain;
  background: #fff; border-radius: 9px; padding: 6px;
}
.order-product-body { min-width: 0; }
.order-product-body strong {
  display: block; font-size: .86rem; line-height: 1.35;
}
.order-product-body > span {
  display: block; color: var(--muted); font-size: .72rem; margin-top: 3px;
}
.order-product-meta {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px;
}
.order-product-meta span {
  color: var(--text-2); font-size: .7rem;
  background: rgba(99,102,241,.1);
  border: 1px solid rgba(99,102,241,.16);
  border-radius: 999px; padding: 3px 8px;
}
.order-total-box {
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px;
}
.order-info-list {
  display: flex; flex-direction: column; gap: 10px;
}
.order-info-list div {
  display: grid; grid-template-columns: 120px 1fr; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
}
.order-info-list div:last-child { border-bottom: none; }
.order-info-list dt {
  color: var(--muted); font-size: .75rem; font-weight: 800;
}
.order-info-list dd {
  color: var(--text); font-size: .86rem; line-height: 1.55;
}

@media(max-width: 960px) {
  :root { --nav-h: 64px; }
  body {
    position: relative;
    width: 100%;
  }
  body > * {
    max-width: 100%;
  }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 0 1.25rem; }
  .nav-logo {
    flex: 1 1 auto;
    max-width: calc(100vw - 96px);
    overflow: hidden;
  }
  .nav-brand-text {
    max-width: 100%;
    overflow: hidden;
  }
  .mobile-menu {
    max-height: calc(100vh - var(--nav-h));
    overflow: auto;
    padding: 14px 1.25rem 18px;
  }
  .container { padding: 0 1.25rem; }
  .page-hero { padding: calc(var(--nav-h) + 48px) 1.25rem 56px; }
  .heading-xl { font-size: clamp(2.15rem, 11vw, 3.4rem); line-height: 1.08; letter-spacing: 0; }
  .heading-lg { font-size: clamp(1.85rem, 8vw, 2.8rem); line-height: 1.12; letter-spacing: 0; }
  .heading-md { font-size: clamp(1.45rem, 6vw, 2.1rem); line-height: 1.16; letter-spacing: 0; }
  .body-lg { font-size: 1rem; }
  .prod-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px;
  }
  .prod-card {
    width: 100%;
    max-width: none;
    border-radius: 12px;
  }
  .prod-body { padding: 12px; gap: 6px; }
  .prod-thumb { min-height: 0; aspect-ratio: 1 / 1.08; }
  .prod-name { font-size: .9rem; line-height: 1.25; }
  .prod-cat { font-size: .58rem; letter-spacing: .07em; line-height: 1.3; }
  .prod-desc { font-size: .74rem; line-height: 1.45; }
  .prod-feats { gap: 5px; margin-top: 8px; }
  .prod-feat.free-shipping-label {
    font-size: .68rem;
    padding: 4px 8px 4px 6px;
  }
  .prod-footer-bar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 10px;
    padding-top: 10px;
  }
  .prod-price {
    font-size: .9rem;
    line-height: 1.25;
  }
  .prod-link {
    width: 100%;
    justify-content: center;
    padding: 9px 10px;
  }
  .subscription-bar {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .subscription-form {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
  }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .cart-layout { grid-template-columns: 1fr; }
  .order-modal-grid, .order-result-grid { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media(max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden !important;
  }
  nav,
  footer,
  section,
  .container,
  .page-hero,
  .featured-section,
  .why-section,
  .cta-section,
  .stats-section,
  .cart-layout,
  .prod-grid {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .featured-section,
  .section,
  .section-sm {
    padding-left: 6px;
    padding-right: 6px;
  }
  .prod-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 14px;
  }
  .prod-card {
    width: 100%;
    min-width: 0;
    max-width: none;
  }
  .prod-thumb {
    min-height: 0;
    aspect-ratio: 1 / 1.08;
  }
  .prod-body { padding: 16px; }
  .prod-link {
    padding: 10px 12px;
    font-size: .86rem;
    white-space: nowrap;
  }
  .cart-actions {
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    min-width: 0;
  }
  .qty-control {
    width: 100%;
    min-width: 0;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 10px;
  }
  .qty-control span {
    font-size: .82rem;
  }
  .qty-btn {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }
  .cart-qty {
    width: 52px;
    min-width: 0;
    padding: 0;
    text-align: center;
  }
  .cart-add {
    width: 100%;
    justify-content: center;
    padding: 13px 12px;
    font-size: .92rem;
    white-space: nowrap;
  }
  .stats-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    border: none;
    overflow: visible;
  }
  .stat-item {
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255,255,255,.66);
  }
}
@media(max-width: 640px) {
  html, body { width: 100%; overflow-x: hidden; }
  * {
    max-width: 100%;
  }
  .section { padding: 58px 0; }
  .section-sm { padding: 46px 0; }
  .container { padding: 0 6px; }
  .nav-inner { padding: 0 1rem; }
  .nav-logo { gap: 9px; min-width: 0; max-width: calc(100vw - 82px); }
  .logo-mark { width: 5px; height: 34px; }
  .nav-brand-main { font-size: .98rem; letter-spacing: .1em; }
  .nav-brand-sub { font-size: .5rem; letter-spacing: .14em; margin-top: 5px; }
  .hamburger { padding: 7px 9px; }
  .mobile-menu { padding: 12px 1rem 16px; }
  .mobile-menu a { min-height: 44px; display: flex; align-items: center; }
  .tag {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }
  .page-hero { padding: calc(var(--nav-h) + 34px) 1rem 44px; }
  .page-hero .container { padding: 0; }
  .stats-row { grid-template-columns: minmax(0, 1fr); gap: 10px; }
  .stat-item { padding: 14px 10px; }
  .stat-num { font-size: 1.5rem; }
  .platform-grid,
  .values-grid,
  .sector-grid {
    grid-template-columns: 1fr;
  }
  .prod-grid { grid-template-columns: minmax(0, 1fr) !important; gap: 14px; }
  .prod-card { border-radius: 12px; }
  .prod-thumb { min-height: 0; aspect-ratio: 1 / 1.08; }
  .prod-body { padding: 16px; }
  .prod-footer-bar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: stretch;
  }
  .prod-link,
  .prod-price {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .prod-link {
    padding: 10px 12px;
    font-size: .86rem;
    white-space: nowrap;
  }
  .subscription-bar {
    margin: 0 0 18px;
    padding: 14px;
  }
  .subscription-form {
    display: grid;
    grid-template-columns: 1fr;
  }
  .subscription-form input,
  .subscription-form button,
  .subscription-exit {
    width: 100%;
    min-width: 0;
  }
  .foot-top { grid-template-columns: 1fr; }
  footer { padding: 46px 1rem 0; }
  .foot-brand p { max-width: none; }
  .foot-socials { flex-wrap: wrap; }
  .foot-bottom p {
    width: 100%;
    overflow-wrap: anywhere;
  }
  .foot-bottom-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    justify-content: stretch;
  }
  .foot-bottom-links a {
    text-align: center;
    overflow-wrap: anywhere;
  }
  .form-row { grid-template-columns: 1fr; }
  input, textarea, select { font-size: 16px; }
  .foot-bottom { flex-direction: column; text-align: center; }
  .cart-actions { grid-template-columns: 1fr; }
  .qty-control {
    width: 100%;
    justify-content: space-between;
    padding: 8px 10px;
  }
  .cart-add {
    width: 100%;
    justify-content: center;
    padding: 13px 12px;
    font-size: .92rem;
  }
  .cart-layout { gap: 1rem; }
  .cart-panel-head {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px;
  }
  .cart-item { grid-template-columns: 76px 1fr; }
  .cart-item-img { width: 76px; }
  .cart-item-name,
  .cart-item-cat,
  .cart-item-price {
    overflow-wrap: anywhere;
  }
  .cart-item-controls {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .cart-item-qty { flex: 1; }
  .cart-remove { flex: 1; }
  .order-modal { padding: 10px; align-items: stretch; }
  .order-dialog {
    max-height: calc(100vh - 20px);
    padding: 16px;
    border-radius: 18px;
  }
  .order-window-head { padding-right: 0; }
  .order-window-head h2 { font-size: 1.45rem; line-height: 1.12; }
  .order-close { position: relative; margin-left: auto; display: flex; align-items: center; justify-content: center; }
  .phone-combo { grid-template-columns: 1fr; }
  .order-form,
  .order-review,
  .order-result-panel {
    padding: 14px;
    border-radius: 12px;
  }
  .order-product {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 10px;
  }
  .order-product img { width: 56px; }
  .order-product-meta { gap: 6px; }
  .order-review-list { max-height: none; }
  .payment-options { gap: 8px; }
  .payment-grid { grid-template-columns: 1fr; }
  .bank-account div { gap: 8px; overflow-wrap: anywhere; }
  .order-form-actions .btn { flex: 1; justify-content: center; }
  .order-info-list div { grid-template-columns: 1fr; gap: 4px; }
  .image-lightbox { padding: 10px; }
  .image-lightbox-dialog { max-height: calc(100vh - 20px); }
  .image-lightbox img { max-height: calc(100vh - 96px); border-radius: 14px; }
  .section .container > div[style*="grid-template-columns:1fr 1fr"],
  .section .container > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

@media(max-width: 420px) {
  .container { padding: 0 5px; }
  .section { padding: 48px 0; }
  .section-sm { padding: 40px 0; }
  .heading-xl { font-size: 2rem; }
  .heading-lg { font-size: 1.7rem; }
  .nav-brand-main { font-size: .9rem; letter-spacing: .08em; }
  .nav-brand-sub { font-size: .46rem; letter-spacing: .1em; }
  .foot-bottom-links { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: minmax(0, 1fr) !important; gap: 14px; }
  .prod-thumb { min-height: 0; aspect-ratio: 1 / 1.08; }
  .prod-body { padding: 14px; }
  .prod-name { font-size: .96rem; }
  .prod-desc { font-size: .78rem; }
  .prod-price { font-size: .98rem; }
  .prod-link { font-size: .86rem; padding: 10px 12px; }
  .prod-feat.free-shipping-label { font-size: .72rem; }
  .qty-control { padding: 8px 10px; }
  .qty-control span { font-size: .78rem; }
  .qty-btn { width: 36px; height: 36px; min-width: 36px; }
  .cart-qty { width: 46px; font-size: .95rem; }
  .cart-add { font-size: .9rem; padding: 12px 10px; }
  .cart-item { grid-template-columns: 64px 1fr; padding: 14px; gap: 12px; }
  .cart-item-img { width: 64px; }
  .stats-row { grid-template-columns: 1fr; }
}

@media print {
  body.modal-open > *:not(.order-modal) { display: none !important; }
  body.modal-open { background: #fff; color: #000; overflow: visible; }
  .order-modal, .order-modal.open {
    position: static; display: block; padding: 0;
  }
  .order-modal-backdrop, .order-close, .order-form-actions { display: none !important; }
  .order-dialog {
    max-height: none; overflow: visible; width: 100%;
    box-shadow: none; border: none; background: #fff; color: #000; padding: 0;
  }
  .order-form, .order-review, .order-result-panel, .order-product {
    background: #fff; color: #000; border-color: #ccc;
  }
  .order-window-head p, .order-info-list dt, .order-product-body > span,
  .order-product-meta span { color: #222; }
}
