/* ====================================================================
   IQOS TEREA ATAŞEHİR — Stil
   Marka: teal/turkuaz + koyu + beyaz · Yazı tipi: Poppins
   ==================================================================== */
:root {
  --brand:        #00837d;
  --brand-dark:   #036159;
  --brand-light:  #18b6ab;
  --brand-cyan:   #2bd6c8;
  --ink:          #0e1a1a;
  --ink-soft:     #46585a;
  --line:         #e6eded;
  --bg:           #ffffff;
  --bg-soft:      #f4f9f8;
  --bg-dark:      #08231f;
  --whatsapp:     #25d366;
  --whatsapp-dk:  #1ebe5a;
  --shadow-sm:    0 2px 10px rgba(8, 35, 31, .06);
  --shadow:       0 10px 30px rgba(8, 35, 31, .10);
  --shadow-lg:    0 24px 60px rgba(8, 35, 31, .16);
  --radius:       16px;
  --radius-sm:    10px;
  --maxw:         1200px;
  --header-h:     112px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
section { padding: 72px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: 15px; line-height: 1;
  padding: 14px 26px; border-radius: 100px; border: 2px solid transparent;
  cursor: pointer; transition: .25s ease; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-brand { background: var(--brand); color: #fff; }
.btn-brand:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { border-color: var(--brand); color: var(--brand); background: transparent; }
.btn-outline:hover { background: var(--brand); color: #fff; }
.btn-wa { background: var(--whatsapp); color: #fff; }
.btn-wa:hover { background: var(--whatsapp-dk); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37,211,102,.3); }
.btn-light { background: #fff; color: var(--brand-dark); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--bg-dark); color: #cfeae6;
  font-size: 13px; padding: 9px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { color: #cfeae6; transition: .2s; }
.topbar a:hover { color: #fff; }
.topbar .tb-right { display: flex; gap: 20px; align-items: center; }
.topbar strong { color: #fff; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 72px; }
.logo img { height: 38px; width: auto; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav > li > a {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 16px; font-weight: 500; font-size: 15px; border-radius: 10px;
  transition: .2s;
}
.nav > li > a:hover { color: var(--brand); background: var(--bg-soft); }
.nav .active > a { color: var(--brand); }
.nav .caret { width: 10px; height: 10px; opacity: .6; }

/* dropdown */
.has-drop { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 230px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: .22s;
}
.has-drop:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 11px 14px; border-radius: 9px; font-size: 14.5px; font-weight: 500; transition: .18s; }
.dropdown a:hover { background: var(--bg-soft); color: var(--brand); padding-left: 18px; }
.dropdown small { display: block; color: var(--ink-soft); font-weight: 400; font-size: 12px; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  width: 42px; height: 42px; display: grid; place-items: center;
  border-radius: 50%; background: var(--bg-soft); color: var(--brand-dark); transition: .2s;
}
.icon-btn:hover { background: var(--brand); color: #fff; }
.icon-btn svg { width: 20px; height: 20px; }
.burger { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(43,214,200,.35), transparent 60%),
    linear-gradient(135deg, #073f39 0%, #00837d 55%, #036159 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Ccircle cx='2' cy='2' r='1' fill='%23ffffff' opacity='.06'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1.05fr; gap: 40px; align-items: center; min-height: 520px; padding-top: 56px; padding-bottom: 56px; }
.hero .eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; background: rgba(255,255,255,.14); padding: 7px 16px; border-radius: 100px; font-weight: 600; }
.hero h1 { font-size: clamp(34px, 5vw, 62px); line-height: 1.05; font-weight: 700; letter-spacing: -1px; margin: 20px 0 14px; }
.hero h1 span { color: var(--brand-cyan); }
.hero p { font-size: 17px; max-width: 520px; color: #d6efec; }
.hero .hero-cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero .trust { display: flex; gap: 26px; margin-top: 36px; flex-wrap: wrap; }
.hero .trust div { display: flex; align-items: center; gap: 9px; font-size: 14px; color: #cdeae6; }
.hero .trust svg { width: 20px; height: 20px; color: var(--brand-cyan); }
.hero-visual { position: relative; display: grid; place-items: center; }
.hero-shot {
  position: relative; margin: 0; width: 100%; max-width: 620px;
  border-radius: 24px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  background: linear-gradient(160deg, rgba(255,255,255,.14), rgba(255,255,255,.03));
  box-shadow: var(--shadow-lg);
}
.hero-shot img { display: block; width: 100%; height: auto; aspect-ratio: 1234/816; object-fit: cover; }

/* ---------- Section heading ---------- */
.sec-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.sec-head .kicker { color: var(--brand); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; font-size: 13px; }
.sec-head h2 { font-size: clamp(26px, 3.4vw, 40px); font-weight: 700; letter-spacing: -.5px; margin: 10px 0 12px; }
.sec-head p { color: var(--ink-soft); font-size: 16px; }
.sec-head.left { text-align: left; margin-left: 0; }

/* ---------- Category cards ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cat-card {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 260px;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
  color: #fff; box-shadow: var(--shadow-sm); transition: .3s; isolation: isolate;
}
.cat-card::before { content: ""; position: absolute; inset: 0; z-index: -1; transition: .4s; }
.cat-card:nth-child(1)::before { background: linear-gradient(150deg, #00837d, #036159); }
.cat-card:nth-child(2)::before { background: linear-gradient(150deg, #6f4ba8, #3a2a66); }
.cat-card:nth-child(3)::before { background: linear-gradient(150deg, #1f6fb2, #0c3d63); }
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-card:hover::before { transform: scale(1.06); }
.cat-card .count { font-size: 13px; opacity: .85; font-weight: 500; }
.cat-card h3 { font-size: 26px; margin: 6px 0 4px; }
.cat-card p { font-size: 14.5px; opacity: .9; margin-bottom: 16px; }
.cat-card .go { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; }
.cat-card .go svg { width: 18px; height: 18px; transition: .25s; }
.cat-card:hover .go svg { transform: translateX(5px); }

/* ---------- Product grid ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.prod-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.product {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: .28s; position: relative;
}
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.product .thumb {
  position: relative; aspect-ratio: 1/1; display: grid; place-items: center;
  overflow: hidden; background: #fff;
}
.product .thumb img { width: 100%; height: 100%; object-fit: contain; transition: .35s; }
.product:hover .thumb img { transform: scale(1.05); }
.product .thumb .glyph {
  width: 96px; height: 124px; border-radius: 16px; position: relative;
  box-shadow: 0 12px 26px rgba(0,0,0,.18); display: grid; place-items: center;
  color: #fff; font-weight: 700; font-size: 13px; letter-spacing: .5px; text-align:center; line-height:1.2; padding: 8px;
}
.product .thumb .glyph::after { content: ""; position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 30px; height: 5px; border-radius: 4px; background: rgba(255,255,255,.55); }
.product .badge {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  background: var(--ink); color: #fff; font-size: 11px; font-weight: 600;
  padding: 5px 11px; border-radius: 100px; letter-spacing: .5px;
}
.product .badge.limited { background: linear-gradient(135deg,#c79a3e,#9a6f1e); }
.product .pcat { font-size: 12px; color: var(--brand); font-weight: 600; letter-spacing: .4px; }
.product .pbody { padding: 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product h3 { font-size: 16px; font-weight: 600; line-height: 1.3; }
.product .pnote { font-size: 13px; color: var(--ink-soft); }
.product .price { font-size: 20px; font-weight: 700; color: var(--ink); margin-top: 2px; }
.product .pactions { margin-top: auto; padding-top: 14px; display: flex; gap: 8px; }
.product .pactions .btn { flex: 1; padding: 12px 14px; font-size: 14px; }
.product .pactions .btn-icon { flex: 0 0 46px; width: 46px; padding: 0; }

/* ---------- Filters ---------- */
.filters { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.filters button {
  border: 1.5px solid var(--line); background: #fff; color: var(--ink-soft);
  padding: 10px 20px; border-radius: 100px; font-weight: 500; font-size: 14px; cursor: pointer; transition: .2s;
  font-family: inherit;
}
.filters button:hover { border-color: var(--brand); color: var(--brand); }
.filters button.active { background: var(--brand); border-color: var(--brand); color: #fff; }

/* ---------- Page hero (inner) ---------- */
.page-hero { background: linear-gradient(135deg, #073f39, #00837d); color: #fff; padding: 56px 0; }
.page-hero h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 700; letter-spacing: -.5px; }
.page-hero .crumb { font-size: 14px; color: #bfe6e1; margin-top: 8px; }
.page-hero .crumb a:hover { color: #fff; }

/* ---------- Feature strip ---------- */
.features { background: var(--bg-soft); }
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; text-align: center; transition: .25s; }
.feat:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.feat .ic { width: 58px; height: 58px; border-radius: 16px; background: var(--bg-soft); display: grid; place-items: center; margin: 0 auto 16px; color: var(--brand); }
.feat .ic svg { width: 28px; height: 28px; }
.feat h3 { font-size: 17px; margin-bottom: 6px; }
.feat p { font-size: 14px; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, #08231f, #036159); color: #fff; border-radius: 24px; padding: 48px; text-align: center; }
.cta-band h2 { font-size: clamp(24px, 3vw, 36px); margin-bottom: 12px; }
.cta-band p { color: #cdeae6; max-width: 560px; margin: 0 auto 26px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; display: flex; gap: 16px; align-items: flex-start; margin-bottom: 16px; transition: .2s; }
.info-card:hover { box-shadow: var(--shadow-sm); }
.info-card .ic { flex: 0 0 50px; height: 50px; border-radius: 14px; background: var(--bg-soft); color: var(--brand); display: grid; place-items: center; }
.info-card .ic svg { width: 24px; height: 24px; }
.info-card h4 { font-size: 16px; margin-bottom: 3px; }
.info-card a, .info-card p { color: var(--ink-soft); font-size: 15px; }
.info-card a:hover { color: var(--brand); }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.form-card h3 { font-size: 20px; margin-bottom: 6px; }
.form-card > p { color: var(--ink-soft); font-size: 14px; margin-bottom: 20px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: 15px; transition: .2s; background: #fff;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(0,131,125,.12); }

/* ---------- Footer ---------- */
.footer { background: var(--bg-dark); color: #a9cfca; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 44px; }
.footer h4 { color: #fff; font-size: 16px; margin-bottom: 18px; }
.footer .f-logo { height: 38px; width: auto; margin-bottom: 18px; background: #fff; padding: 8px 12px; border-radius: 10px; box-sizing: content-box; }
.footer p { font-size: 14px; line-height: 1.7; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 14px; transition: .2s; }
.footer ul a:hover { color: #fff; padding-left: 4px; }
.footer .fcontact li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; }
.footer .fcontact svg { width: 18px; height: 18px; color: var(--brand-cyan); flex: 0 0 18px; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; font-size: 13px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; color: #7fa8a3; }
.footer-bottom .legal { max-width: 760px; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 500;
  width: 60px; height: 60px; border-radius: 50%; background: var(--whatsapp);
  display: grid; place-items: center; color: #fff; box-shadow: 0 12px 28px rgba(37,211,102,.45);
  transition: .25s; animation: wapulse 2.4s infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }
@keyframes wapulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* ---------- Cart ---------- */
.cart-btn { position: relative; }
.cart-badge {
  position: absolute; top: -3px; right: -3px; min-width: 19px; height: 19px; padding: 0 5px;
  border-radius: 10px; background: var(--brand); color: #fff; font-size: 11px; font-weight: 700;
  display: grid; place-items: center; line-height: 1; border: 2px solid #fff;
}
.cart-overlay { position: fixed; inset: 0; background: rgba(8,35,31,.5); z-index: 310; opacity: 0; visibility: hidden; transition: .25s; }
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-panel {
  position: fixed; top: 0; right: -440px; width: 410px; max-width: 92vw; height: 100%; background: #fff;
  z-index: 320; display: flex; flex-direction: column; transition: .32s cubic-bezier(.2,.7,.2,1); box-shadow: var(--shadow-lg);
}
.cart-panel.open { right: 0; }
.cart-head { display: flex; justify-content: space-between; align-items: center; padding: 20px 22px; border-bottom: 1px solid var(--line); }
.cart-head h3 { font-size: 18px; }
.cart-close { font-size: 30px; background: none; border: none; cursor: pointer; color: var(--ink-soft); line-height: 1; }
.cart-close:hover { color: var(--ink); }
.cart-body { flex: 1; overflow-y: auto; padding: 8px 18px; }
.cart-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.ci-thumb { width: 66px; height: 66px; border-radius: 12px; overflow: hidden; flex: 0 0 66px; background: #fff; border: 1px solid var(--line); }
.ci-thumb img { width: 100%; height: 100%; object-fit: contain; }
.ci-thumb span { display: block; width: 100%; height: 100%; }
.ci-info { flex: 1; min-width: 0; }
.ci-name { font-weight: 600; font-size: 14px; line-height: 1.3; }
.ci-price { font-size: 13px; color: var(--ink-soft); margin: 2px 0 9px; }
.ci-qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 100px; overflow: hidden; }
.ci-qty button { width: 30px; height: 30px; border: none; background: #fff; cursor: pointer; font-size: 17px; color: var(--brand-dark); font-family: inherit; }
.ci-qty button:hover { background: var(--bg-soft); }
.ci-qty span { min-width: 32px; text-align: center; font-weight: 600; font-size: 14px; }
.ci-remove { background: none; border: none; font-size: 22px; color: var(--ink-soft); cursor: pointer; line-height: 1; height: fit-content; }
.ci-remove:hover { color: #cf2e2e; }
.cart-empty { text-align: center; padding: 64px 24px; color: var(--ink-soft); }
.cart-empty svg { width: 50px; height: 50px; opacity: .25; margin: 0 auto 16px; }
.cart-empty p { font-weight: 600; color: var(--ink); margin-bottom: 5px; font-size: 16px; }
.cart-empty span { font-size: 13px; }
.cart-foot { padding: 18px 22px; border-top: 1px solid var(--line); }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; font-size: 15px; }
.cart-total-row strong { font-size: 23px; color: var(--brand); }
.cart-clear { width: 100%; background: none; border: none; color: var(--ink-soft); font-size: 13px; margin-top: 10px; cursor: pointer; font-family: inherit; }
.cart-clear:hover { color: #cf2e2e; }

/* ---------- Toast ---------- */
#toast {
  position: fixed; bottom: 92px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: #fff; padding: 13px 24px; border-radius: 100px; font-size: 14px; font-weight: 500;
  z-index: 600; opacity: 0; pointer-events: none; transition: .3s; box-shadow: var(--shadow); max-width: 90vw; text-align: center;
}
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Age gate ---------- */
.age-gate { position: fixed; inset: 0; z-index: 1000; background: rgba(8,35,31,.85); backdrop-filter: blur(6px); display: grid; place-items: center; padding: 20px; }
.age-gate.hidden { display: none; }
.age-box { background: #fff; border-radius: 20px; max-width: 440px; width: 100%; padding: 38px 32px; text-align: center; box-shadow: var(--shadow-lg); }
.age-box img { height: 42px; margin: 0 auto 18px; }
.age-box h2 { font-size: 22px; margin-bottom: 10px; }
.age-box p { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 24px; }
.age-box .ag-actions { display: flex; gap: 12px; }
.age-box .ag-actions .btn { flex: 1; justify-content: center; }

/* ---------- Mobile drawer ---------- */
.drawer-overlay { position: fixed; inset: 0; background: rgba(8,35,31,.5); z-index: 290; opacity: 0; visibility: hidden; transition: .25s; }
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: -340px; width: 320px; max-width: 86vw; height: 100%; background: #fff;
  z-index: 300; padding: 24px; transition: .3s; overflow-y: auto; box-shadow: var(--shadow-lg);
}
.drawer.open { right: 0; }
.drawer .d-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.drawer .d-head img { height: 34px; }
.drawer .d-close { font-size: 28px; line-height: 1; cursor: pointer; color: var(--ink-soft); background: none; border: none; }
.drawer nav a { display: block; padding: 14px 6px; font-size: 16px; font-weight: 500; border-bottom: 1px solid var(--line); }
.drawer nav .sub a { padding-left: 20px; font-size: 14.5px; font-weight: 400; color: var(--ink-soft); }
.drawer .d-cta { margin-top: 24px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: .6s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  section { padding: 52px 0; }
  .nav, .header-actions .ha-phone, .header-actions .ha-order { display: none; }
  .burger, .cart-btn { display: grid; }
  .cart-panel { width: 100%; }
  .hero .container { grid-template-columns: 1fr; text-align: center; min-height: auto; }
  .hero p { margin: 0 auto; }
  .hero .hero-cta, .hero .trust { justify-content: center; }
  .hero-visual { margin-top: 6px; }
  .hero-shot { max-width: 440px; margin-inline: auto; }
  .cat-grid { grid-template-columns: 1fr; }
  .prod-grid, .prod-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 34px 22px; }
}
@media (max-width: 520px) {
  .prod-grid, .prod-grid.cols-3 { grid-template-columns: 1fr 1fr; gap: 14px; }
  .product .pbody { padding: 13px; }
  .product h3 { font-size: 14.5px; }
  .product .price { font-size: 17px; }
  .product .pactions { gap: 6px; }
  .product .pactions .btn { padding: 11px 8px; font-size: 13px; }
  .product .pactions .btn-icon { flex: 0 0 42px; }
  .feat-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .topbar .tb-left { display: none; }
  .topbar .container { justify-content: center; }
}
