/* ===== KAHYA ASKERİ MARKETİ — STYLE.CSS v7 ===== */
:root {
  --green-dark:   #2a4a18;
  --green-mid:    #3d6525;
  --green-main:   #7fad5f;
  --green-light:  #a8d48a;
  --green-pale:   #d4ecc4;
  --tan:          #c4a882;
  --gold:         #c9a84c;
  --gold-light:   #e8c870;
  --bg:           #f4f2e8;
  --bg-card:      #ffffff;
  --border:       #e0ddd0;
  --text:         #2a2a2a;
  --text-mid:     #555;
  --text-light:   #888;
  --shadow:       0 2px 12px rgba(0,0,0,.06);
  --shadow-hover: 0 12px 36px rgba(0,0,0,.12);
  --radius:       16px;
  --radius-sm:    10px;
  --wa:           #25D366;
  --ptt:          #e63000;
  --product-card-width: 320px;
  --product-card-height: 520px;
  --product-image-height: 215px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Vazirmatn', Arial, sans-serif;
  background: #fbfaf5;
  color: var(--text);
  /* overflow: hidden KALDIRILDI — SEO/araç sayfalarında scroll'u öldürüyordu.
     Anasayfada scroll #snap-container'da yapılıyor; body içeriği zaten 100dvh,
     overflow auto güvenli. */
  overflow-y: auto;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
/* Anasayfa SPA'sında body scroll'u istemiyoruz — sadece anasayfa varsa kapat.
   #snap-container 100dvh ile zaten viewport'u dolduruyor. */
body:has(#snap-container) {
  overflow: hidden;
}
body::before {
  display: none;
  content: none;
}
body::after {
  display: none;
  content: none;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { cursor: pointer; font-family: inherit; }
/* ===== SCROLL SNAP ===== */
#snap-container {
  position: relative;
  z-index: 2;
  height: 100dvh;
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
}
.snap-section {
  position: relative;
  display: flex;
  flex-direction: column;
}
.category-section { min-height: auto; }
/* ===== NAV DOTS ===== */
#nav-dots { display: none !important; }
/* ===== CART BUTTON ===== */
#cart-toggle-btn {
  position: fixed; bottom: 16px; right: 12px; z-index: 950;
  display: flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: var(--gold); border: 2px solid var(--gold); border-radius: 50px;
  padding: 10px 16px; font-family: 'Cinzel',serif; font-size: .82rem; font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,.2); -webkit-tap-highlight-color: transparent;
}
#cart-toggle-btn:active { transform: scale(.95); }
#cart-toggle-btn.cart-bump { animation: cartBump .55s ease; }
#cart-count { background: #e74c3c; color: #fff; border-radius: 50%; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; font-size: .68rem; font-weight: 700; font-family: 'Vazirmatn',sans-serif; }
@keyframes cartBump {
  0% { transform: scale(1); box-shadow: 0 4px 20px rgba(0,0,0,.2); }
  35% { transform: scale(1.08); box-shadow: 0 8px 28px rgba(201,168,76,.45); }
  100% { transform: scale(1); box-shadow: 0 4px 20px rgba(0,0,0,.2); }
}
#cart-toast {
  position: fixed;
  right: 12px;
  bottom: 134px;
  z-index: 1250;
  width: min(320px, calc(100vw - 24px));
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  border: 1px solid rgba(127,173,95,.35);
  box-shadow: 0 10px 34px rgba(0,0,0,.18);
  font-family: 'Vazirmatn',sans-serif;
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}
#cart-toast.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
#cart-toast strong { display: block; color: var(--green-dark); font-size: .86rem; line-height: 1.25; }
#cart-toast span { display: block; color: var(--text-mid); font-size: .78rem; line-height: 1.35; margin-top: 2px; }
.cart-cross-sell {
  display: grid;
  gap: 6px;
  margin-top: 10px;
  padding-top: 9px;
  border-top: 1px solid rgba(42,74,24,.1);
}
.cart-cross-sell small {
  color: #5b613f;
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.cart-cross-sell button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 36px;
  padding: 7px 9px;
  border: 1px solid rgba(127,173,95,.24);
  border-radius: 8px;
  background: rgba(127,173,95,.08);
  color: #263b19;
  font-family: 'Vazirmatn', sans-serif;
  font-size: .74rem;
  font-weight: 800;
}
.cart-cross-sell b {
  white-space: nowrap;
  color: var(--green-dark);
}
#whatsapp-support-btn {
  position: fixed;
  right: 12px;
  bottom: 76px;
  z-index: 949;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 9px 14px 9px 10px;
  border-radius: 999px;
  background: #25D366;
  color: #102414;
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 6px 22px rgba(37,211,102,.28), 0 4px 16px rgba(0,0,0,.14);
  font-family: 'Vazirmatn',sans-serif;
  font-size: .82rem;
  font-weight: 900;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
#whatsapp-support-btn:active { transform: scale(.96); }
.wa-support-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent;
  overflow: hidden;
  flex: 0 0 28px;
  box-shadow: 0 1px 6px rgba(0,0,0,.14);
}
.wa-support-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.wa-support-text { white-space: nowrap; }
/* ===== CART PANEL ===== */
#cart-panel {
  position: fixed; right: 0; top: 0; bottom: 0; width: min(360px, 100vw);
  background: #fff; z-index: 980;
  transform: translateX(105%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  box-shadow: -4px 0 30px rgba(0,0,0,.15); border-left: 1px solid var(--border);
}
#cart-panel.open { transform: translateX(0); }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; background: linear-gradient(135deg, var(--green-dark), var(--green-mid)); color: var(--gold); font-family: 'Cinzel',serif; }
.cart-header h3 { font-size: .95rem; letter-spacing: 1px; }
#cart-close-btn { background: none; border: none; color: var(--gold); font-size: 1.3rem; padding: 4px 8px; min-height: 44px; min-width: 44px; }
#cart-items-list { flex: 1; overflow-y: auto; padding: 12px 14px; -webkit-overflow-scrolling: touch; }
.cart-empty { text-align: center; color: var(--text-light); padding: 40px 0; font-family: 'Vazirmatn',sans-serif; }
.cart-group { margin-bottom: 14px; }
.cart-cat { font-family: 'Cinzel',serif; font-size: .72rem; color: var(--green-mid); letter-spacing: 1px; margin-bottom: 5px; padding-bottom: 4px; border-bottom: 1px solid var(--border); text-transform: uppercase; }
.cart-item { display: flex; align-items: center; gap: 6px; padding: 6px 0; border-bottom: 1px solid rgba(0,0,0,.04); font-family: 'Vazirmatn',sans-serif; font-size: .8rem; }
.cart-item-name { flex: 1; line-height: 1.3; }
.cart-item-qty { color: var(--text-light); white-space: nowrap; }
.cart-item-price { font-weight: 700; white-space: nowrap; }
.cart-remove { background: none; border: none; color: #e74c3c; font-size: .9rem; padding: 2px 6px; min-height: 44px; }
.cart-footer { padding: 14px 18px; border-top: 2px solid var(--border); }
#cart-shipping-bar {
  margin: 0 0 12px 0;
  padding: 10px 12px;
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(243, 215, 123, 0.14), rgba(255, 246, 205, 0.34));
  font-family: 'Vazirmatn', sans-serif;
}
#cart-shipping-bar:empty,
#cart-shipping-bar[style*="display: none"] {
  display: none !important;
}
.csb-message {
  font-size: 0.78rem;
  font-weight: 600;
  color: #493817;
  margin-bottom: 8px;
  text-align: center;
  line-height: 1.35;
}
.csb-message strong {
  color: var(--green-dark);
  font-weight: 800;
  white-space: nowrap;
}
.csb-message.csb-success {
  margin-bottom: 0;
  color: var(--green-dark);
  font-weight: 800;
}
.csb-track {
  position: relative;
  height: 6px;
  background: rgba(42, 74, 24, 0.12);
  border-radius: 999px;
  overflow: hidden;
}
.csb-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-mid), var(--green-main));
  border-radius: inherit;
  transition: width 0.4s cubic-bezier(.4, 0, .2, 1);
}
.cart-total-row { display: flex; justify-content: space-between; font-family: 'Cinzel',serif; font-size: .88rem; margin-bottom: 10px; }
.btn-goto-order { width: 100%; padding: 12px; background: linear-gradient(135deg, var(--green-dark), var(--green-mid)); color: var(--gold); border: 2px solid var(--gold); border-radius: var(--radius-sm); font-family: 'Cinzel',serif; font-size: .85rem; font-weight: 700; letter-spacing: 1px; }
/* ===== HOME PAGE ===== */
.home-section { min-height: auto; min-width: 0; background: linear-gradient(180deg, #fbfaf5 0%, #f3efe5 100%); }
.home-inner { position: relative; z-index: 2; width: 100%; min-width: 0; min-height: auto; display: flex; flex-direction: column; align-items: stretch; }
.home-nav {
  display: flex; flex-wrap: wrap; gap: 5px; padding: 10px 12px;
  background: rgba(38,54,25,.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,.35); position: sticky; top: 0; z-index: 100;
}
.hnav-btn { padding: 8px 12px; border: 1px solid rgba(201,168,76,.4); background: rgba(255,255,255,.06); color: rgba(255,255,255,.9); border-radius: 22px; font-family: 'Vazirmatn',sans-serif; font-size: .73rem; font-weight: 600; white-space: nowrap; -webkit-tap-highlight-color: transparent; min-height: 44px; }
.hn-drop { display: none; padding: 14px 16px; background: rgba(10,18,6,.96); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid rgba(201,168,76,.2); animation: dropIn .2s ease; max-height: 55vh; overflow-y: auto; -webkit-overflow-scrolling: touch; }
@keyframes dropIn { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:translateY(0); } }
.hn-drop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 5px; }
.hn-drop-item { display: flex; align-items: center; padding: 9px 11px; background: rgba(127,173,95,.08); border: 1px solid rgba(127,173,95,.15); border-radius: var(--radius-sm); font-family: 'Vazirmatn',sans-serif; font-size: .78rem; color: rgba(255,255,255,.85); cursor: pointer; text-decoration: none; -webkit-tap-highlight-color: transparent; min-height: 40px; }
.hn-drop-hint { color: rgba(255,255,255,.5); font-family: 'Vazirmatn',sans-serif; font-size: .82rem; margin-bottom: 10px; }
.hn-sil-inner { max-width: 460px; margin: 0 auto; }
.hn-sil-row { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-top: 10px; }
.hn-inp { width: 70px; padding: 10px 6px; border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-sm); background: rgba(255,255,255,.07); color: #fff; font-family: 'Vazirmatn',sans-serif; font-size: .85rem; text-align: center; -moz-appearance: textfield; min-height: 44px; }
/* iOS Safari: input font-size < 16px focus'ta otomatik zoom tetikler.
   Mobilde 16px'e zorlayarak zoom'u engelle (görsel boyut benzer, sadece sayısal değer 16px). */
@media (max-width: 768px) {
  .hn-inp { font-size: 16px; }
}
.hn-inp::-webkit-inner-spin-button { -webkit-appearance: none; }
.hn-inp::placeholder { color: rgba(255,255,255,.3); }
.hn-inp:focus { outline: none; border-color: var(--green-main); }
.hn-calc-btn { padding: 10px 18px; background: var(--green-main); color: #fff; border: none; border-radius: var(--radius-sm); font-family: 'Vazirmatn',sans-serif; font-size: .85rem; font-weight: 700; min-height: 44px; }
.sil-result { margin-top: 14px; padding: 14px; border-radius: var(--radius-sm); text-align: center; }
.sil-past,.sil-urgent { background: rgba(231,76,60,.15); border: 1px solid rgba(231,76,60,.3); }
.sil-soon { background: rgba(241,196,15,.1); border: 1px solid rgba(241,196,15,.3); }
.sil-medium { background: rgba(52,152,219,.1); border: 1px solid rgba(52,152,219,.3); }
.sil-far { background: rgba(127,173,95,.12); border: 1px solid rgba(127,173,95,.3); }
.sil-num { font-family: 'Cinzel',serif; font-size: 2rem; font-weight: 700; color: var(--gold); margin-bottom: 6px; }
.sil-msg { font-family: 'Vazirmatn',sans-serif; font-size: .85rem; color: rgba(255,255,255,.8); line-height: 1.6; }
.hn-warn { background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.25); border-radius: var(--radius-sm); padding: 10px 14px; margin-bottom: 12px; font-family: 'Vazirmatn',sans-serif; font-size: .82rem; color: rgba(255,255,255,.8); line-height: 1.6; }
.hn-list-grid { display: flex; flex-wrap: wrap; gap: 14px; }
.hn-list-col { min-width: 120px; }
.hn-list-head { font-family: 'Cinzel',serif; font-size: .7rem; color: var(--gold); margin-bottom: 6px; letter-spacing: 1px; }
.hn-list-col > div { font-family: 'Vazirmatn',sans-serif; font-size: .78rem; color: rgba(255,255,255,.7); padding: 2px 0; }
.hn-ist-tabs { display: flex; gap: 8px; margin-bottom: 12px; }
.hn-ist-tab { flex: 1; padding: 10px; border: 1px solid rgba(255,255,255,.2); background: transparent; border-radius: var(--radius-sm); font-family: 'Vazirmatn',sans-serif; font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.7); min-height: 44px; }
.hn-ist-tab.active { border-color: var(--green-main); background: var(--green-main); color: #fff; }
.hn-ist-list { font-family: 'Vazirmatn',sans-serif; font-size: .82rem; color: rgba(255,255,255,.8); line-height: 2; }
.hn-contact-card { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.06); font-family: 'Vazirmatn',sans-serif; font-size: .82rem; color: rgba(255,255,255,.85); }
.hn-contact-card strong { font-family: 'Cinzel',serif; font-size: .82rem; }
.hn-contact-card small { color: rgba(255,255,255,.4); }
.hn-cbtns { display: flex; gap: 6px; flex-shrink: 0; }
.hn-cbtn-call, .hn-cbtn-map { padding: 8px 14px; border-radius: 6px; font-family: 'Vazirmatn',sans-serif; font-size: .72rem; font-weight: 700; text-decoration: none; min-height: 40px; display: flex; align-items: center; }
.hn-cbtn-call { background: var(--green-main); color: #fff; }
.hn-cbtn-map { background: rgba(201,168,76,.12); color: var(--gold); border: 1px solid rgba(201,168,76,.3); }
/* Vertical Category List */
.hn-cat-list { display: flex; flex-direction: column; gap: 2px; max-width: 400px; }
.hn-cat-item { display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.06); font-family: 'Vazirmatn',sans-serif; font-size: .85rem; color: rgba(255,255,255,.9); cursor: pointer; text-decoration: none; -webkit-tap-highlight-color: transparent; }
.hn-cat-icon { font-size: 1.1rem; width: 28px; text-align: center; flex-shrink: 0; }
.hn-cat-item > span:nth-child(2) { flex: 1; }
.hn-cat-arrow { color: rgba(201,168,76,.6); font-size: 1.2rem; }
.hn-cat-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(201,168,76,.3), transparent); margin: 6px 0; }
/* ===== PRODUCTS GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, var(--product-card-width)));
  gap: 24px;
  padding: 28px 24px 36px;
  background: transparent;
  flex: 1; align-content: start;
  align-items: stretch;
  justify-content: center;
}
/* ===== PRODUCT CARD — REDESIGN ===== */
.product-card {
  background: linear-gradient(145deg, #ffffff, #f0efe6);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.04);
  position: relative; display: flex; flex-direction: column;
  -webkit-tap-highlight-color: transparent;
  animation: fadeInUp .35s ease both;
  transition: transform .3s cubic-bezier(.25,.8,.25,1), box-shadow .3s ease;
}
.product-card:active { transform: scale(.97); }
.product-card.featured { border-color: rgba(29,35,19,.08); }
.featured-badge {
  position: absolute; top: 10px; left: 10px; z-index: 10;
  background: linear-gradient(135deg, var(--green-main), #5a9a3a); color: #fff;
  font-family: 'Vazirmatn',sans-serif; font-size: .62rem; font-weight: 700;
  padding: 4px 12px; border-radius: 20px; box-shadow: 0 2px 8px rgba(127,173,95,.4);
}
.product-img-wrap {
  width: 100%; padding-top: 90%;
  position: relative; background: linear-gradient(135deg, #f8f8f4, #eeede4);
  overflow: hidden;
}
.product-img-wrap img { transition: transform .4s cubic-bezier(.25,.8,.25,1), opacity .3s; }
.no-img-box { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; background: linear-gradient(135deg, #f0efe6, #e8e7de); color: var(--border); }
.img-fallback {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  padding: 16px;
  background:
    linear-gradient(135deg, #f8f6ee, #e7e2d3);
  color: #5f624f;
  font-family: 'Vazirmatn', sans-serif;
  font-size: .82rem;
  font-weight: 800;
  text-align: center;
}
.img-fallback span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px dashed rgba(42,74,24,.28);
  border-radius: 8px;
  background: rgba(255,255,255,.55);
}
.hp-set-img,
.hp-single-img {
  position: relative;
  overflow: hidden;
}
.slider-dots { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); display: flex; gap: 5px; z-index: 5; }
.slider-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(0,0,0,.15); cursor: pointer; border: 1px solid rgba(255,255,255,.5); }
.slider-dot.active { background: var(--green-dark); transform: scale(1.2); }
.product-body { padding: 14px 14px 16px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.product-tag { font-family: 'Vazirmatn',sans-serif; font-size: .62rem; font-weight: 700; color: var(--green-main); letter-spacing: .5px; text-transform: uppercase; }
.product-name { font-family: 'Vazirmatn',sans-serif; font-size: .82rem; font-weight: 600; color: var(--text); line-height: 1.35; flex: 1; }
.product-price { font-family: 'Cinzel',serif; font-size: 1.1rem; font-weight: 700; color: var(--green-dark); margin-top: 4px; }
.product-note { font-family: 'Vazirmatn',sans-serif; font-size: .72rem; color: var(--text-mid); line-height: 1.4; }
.size-badge { display: none; font-family: 'Vazirmatn',sans-serif; font-size: .68rem; color: var(--green-mid); background: rgba(127,173,95,.1); border: 1px solid rgba(127,173,95,.2); border-radius: 6px; padding: 3px 10px; cursor: pointer; }
.btn-pkg-info { width: 100%; padding: 8px; margin-top: 6px; background: linear-gradient(135deg, rgba(201,168,76,.08), rgba(201,168,76,.04)); border: 1px solid rgba(201,168,76,.2); border-radius: var(--radius-sm); color: var(--gold); font-family: 'Vazirmatn',sans-serif; font-size: .74rem; font-weight: 700; min-height: 38px; }
.btn-add { width: 100%; padding: 11px; margin-top: 8px; background: linear-gradient(135deg, var(--green-dark), var(--green-mid)); color: #fff; border: none; border-radius: var(--radius-sm); font-family: 'Vazirmatn',sans-serif; font-size: .82rem; font-weight: 700; min-height: 46px; -webkit-tap-highlight-color: transparent; transition: all .2s; }
.btn-add:active { transform: scale(.97); }
.btn-add.is-loading,
.hp-single-actions button.is-loading {
  opacity: .78;
  cursor: wait;
  pointer-events: none;
}
.btn-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 7px;
  border: 2px solid rgba(255,255,255,.42);
  border-top-color: #fff;
  border-radius: 50%;
  vertical-align: -2px;
  animation: spin .65s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.btn-add.hidden { display: none; }
.qty-counter { display: none; align-items: center; justify-content: center; gap: 0; margin-top: 8px; background: linear-gradient(135deg, var(--green-dark), var(--green-mid)); border-radius: var(--radius-sm); overflow: hidden; }
.qty-counter.visible { display: flex; }
.qty-btn { padding: 10px 16px; background: transparent; border: none; color: var(--gold); font-size: 1.2rem; font-weight: 700; min-height: 44px; min-width: 44px; -webkit-tap-highlight-color: transparent; }
.qty-btn:active { background: rgba(255,255,255,.1); }
.qty-disp { width: 46px; padding: 8px 4px; background: rgba(255,255,255,.08); border: none; color: #fff; font-family: 'Vazirmatn',sans-serif; font-size: .9rem; text-align: center; -moz-appearance: textfield; }
.qty-disp::-webkit-inner-spin-button { -webkit-appearance: none; }
/* ===== REFERANS ÜRÜN KARTI ===== */
.military-card {
  position: relative;
  width: 100%;
  height: var(--product-card-height);
  border-radius: 14px;
  background: #fbfaf5;
  border: 1px solid rgba(29,35,19,.08);
  box-shadow: 0 8px 22px rgba(29,35,19,.10);
  overflow: hidden;
}
.military-card > * {
  position: relative;
  z-index: 1;
}
.military-card .product-img-wrap {
  height: var(--product-image-height);
  padding-top: 0;
  flex: 0 0 var(--product-image-height);
  background: linear-gradient(180deg, #f8f8f5 0%, #efeee8 100%);
  border-bottom: 1px solid rgba(42,74,24,.08);
}
.military-card .product-img-wrap img {
  object-fit: contain !important;
  object-position: center center;
  padding: 6px 8px;
}
.military-card .product-body {
  flex: 1;
  min-height: 0;
  padding: 12px 14px 14px;
  gap: 7px;
}
.military-card .product-name {
  min-height: 46px;
  max-height: 46px;
  font-size: .88rem;
  line-height: 1.28;
  font-weight: 800;
  color: #20231d;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.compat-badge {
  align-self: flex-start;
  max-width: 100%;
  padding: 4px 10px;
  border-radius: 999px;
  background: #31431f;
  color: #ead9b5;
  border: 1px dashed rgba(234,217,181,.5);
  font-family: 'Vazirmatn', sans-serif;
  font-size: .58rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: .35px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.package-badge {
  background: #526235;
}
.product-desc {
  display: grid;
  gap: 2px;
  margin-top: -4px;
  font-family: 'Vazirmatn', sans-serif;
  font-size: .76rem;
  line-height: 1.35;
  color: #2f3429;
  min-height: 58px;
  max-height: 58px;
  overflow: hidden;
}
.product-desc span::before {
  content: "- ";
  color: #59613d;
  font-weight: 800;
}
.product-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  align-items: center;
  min-height: 25px;
  padding: 2px 0;
  font-family: 'Vazirmatn', sans-serif;
  font-size: .64rem;
  font-weight: 800;
  color: #3a3d33;
  text-transform: uppercase;
}
.product-features span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  white-space: nowrap;
}
.product-features span + span {
  border-left: 1px solid rgba(42,74,24,.18);
}
.product-features i {
  font-style: normal;
  color: #3f4b27;
  font-size: .98rem;
  line-height: 1;
}
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.price-grid-single {
  grid-template-columns: 1fr;
}
.price-box {
  position: relative;
  min-height: 66px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(42,74,24,.16);
  border-radius: 8px;
  background: #f4f2ed;
  font-family: 'Vazirmatn', sans-serif;
  text-align: center;
}
.price-box span {
  font-size: .66rem;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
  color: #3c3f35;
}
.price-box strong {
  margin-top: 3px;
  font-size: 1.34rem;
  line-height: 1;
  font-weight: 900;
  color: #2e381d;
}
.price-box em {
  position: absolute;
  right: 8px;
  bottom: -7px;
  padding: 2px 8px;
  border-radius: 4px;
  background: #4b562f;
  color: #f4ead0;
  font-style: normal;
  font-size: .62rem;
  font-weight: 800;
  white-space: nowrap;
}
.add-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}
.military-card .btn-add {
  min-height: 48px;
  margin-top: 0;
  border: 2px solid #202817;
  border-radius: 8px;
  background: linear-gradient(180deg, #394320 0%, #1f2a16 100%);
  color: #f4ead0;
  font-family: 'Cinzel', serif;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 2px rgba(244,234,208,.08), 0 4px 10px rgba(0,0,0,.18);
  outline: 1px dashed rgba(244,234,208,.45);
  outline-offset: -7px;
}
.military-card .btn-add-six {
  background: linear-gradient(180deg, #586833 0%, #2f3d1f 100%);
}
.military-card .btn-add-single {
  width: 100%;
  margin-top: 14px;
}
.military-card .btn-add .cart-icon {
  margin-right: 5px;
  font-family: 'Vazirmatn', sans-serif;
}
.military-card .qty-counter {
  min-height: 54px;
  border: 2px solid #202817;
  border-radius: 8px;
  background: linear-gradient(180deg, #394320 0%, #1f2a16 100%);
}
.product-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
  font-family: 'Vazirmatn', sans-serif;
  min-height: 18px;
  font-size: .68rem;
  font-weight: 700;
  color: #3d4136;
}
.package-card .product-note {
  min-height: 42px;
  max-height: 42px;
  padding: 7px 10px;
  border-left: 3px solid #526235;
  border-radius: 6px;
  background: rgba(82,98,53,.08);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.package-card .product-body {
  gap: 5px;
  padding: 10px 14px 12px;
}
.package-card .product-desc {
  min-height: 48px;
  /* max-height kaldırıldı: 3 satır tam görünsün */
}
.package-card .product-features {
  min-height: 22px;
  font-size: .58rem;
}
.package-card .price-box {
  min-height: 58px;
}
.package-card .btn-pkg-info {
  min-height: 34px;
  padding: 6px;
  margin-top: 0;
}
.package-card .btn-add-single {
  min-height: 44px;
}
/* Paket kartında görsel biraz daha küçük, body içeriği daha çok (3 satır desc + note + 2 buton var) */
.package-card .product-img-wrap {
  height: 240px;
  flex: 0 0 240px;
}
.package-card { height: 660px; }
/* ===== REVIZE 15: kompakt ürün kartları ve sığan kategori görünümü ===== */
.category-section > .products-grid {
  gap: 18px;
  padding: 16px 20px 24px;
  align-content: start;
}
.military-card {
  height: var(--product-card-height);
  border-radius: 12px;
}
.military-card .product-img-wrap {
  height: var(--product-image-height);
  flex-basis: var(--product-image-height);
}
.military-card .product-img-wrap img {
  padding: 16px 16px 10px;
  z-index: 1;
}
.compat-badge {
  position: absolute;
  top: 8px;
  left: 10px;
  z-index: 4;
  max-width: calc(100% - 20px);
  padding: 4px 9px;
  font-size: .56rem;
  box-shadow: 0 3px 10px rgba(0,0,0,.18);
}
.slider-dots { z-index: 5; }
.military-card .product-body {
  padding: 10px 12px 12px;
  gap: 4px;
}
.military-card .product-name {
  min-height: 38px;
  max-height: 38px;
  font-size: .8rem;
  line-height: 1.22;
}
.product-desc {
  min-height: 34px;
  max-height: 34px;
  margin-top: -3px;
  font-size: .68rem;
  line-height: 1.25;
}
.product-features,
.product-micro {
  min-height: 20px;
  font-size: .58rem;
  line-height: 1.2;
}
.price-grid { gap: 8px; }
.price-box {
  min-height: 54px;
  border-radius: 7px;
}
.price-box span { font-size: .56rem; }
.price-box strong { font-size: 1.12rem; }
.price-box em {
  right: 6px;
  bottom: -6px;
  font-size: .56rem;
}
.add-choice {
  gap: 8px;
  margin-top: 6px;
}
.military-card .btn-add {
  min-height: 40px;
  padding: 8px 6px;
  font-size: .72rem;
  outline-offset: -6px;
}
.military-card .btn-add-single {
  margin-top: 4px;
}
.product-trust {
  display: none;
}
.package-card {
  height: 540px;
}
.package-card .product-img-wrap {
  height: 190px;
  flex-basis: 190px;
}
.package-card .product-body {
  padding: 9px 12px 11px;
  gap: 5px;
}
.package-card .product-desc {
  min-height: 38px;
  max-height: 38px;
  overflow: hidden;
  font-size: .66rem;
  line-height: 1.25;
}
.package-card .product-note {
  min-height: 28px;
  max-height: 28px;
  padding: 6px 9px;
  font-size: .66rem;
  line-height: 1.25;
  -webkit-line-clamp: 1;
}
.package-card .product-features {
  min-height: 20px;
  font-size: .56rem;
}
.package-card .product-desc span:nth-child(3) {
  display: none;
}
.package-card .price-box {
  min-height: 52px;
}
.package-card .btn-pkg-info,
.package-card .btn-add-single {
  min-height: 38px;
}
@media (min-width: 1120px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, var(--product-card-width)));
    gap: 20px;
    padding: 16px 20px 24px;
  }
}
@media (min-width: 1500px) {
  :root {
    --product-card-width: 300px;
    --product-card-height: 500px;
    --product-image-height: 205px;
  }
  .package-card {
    height: 520px;
  }
  .package-card .product-img-wrap {
    height: 180px;
    flex-basis: 180px;
  }
}
@media (max-width: 760px) {
  :root {
    --product-card-width: min(100%, 340px);
    --product-card-height: auto;
    --product-image-height: 230px;
  }
  .category-section > .products-grid {
    grid-template-columns: minmax(0, min(100%, 340px));
    max-width: 390px;
    margin: 0 auto;
    padding: 12px 12px 96px;
  }
  .military-card,
  .package-card {
    height: auto;
    min-height: 0;
  }
  .military-card .product-img-wrap,
  .package-card .product-img-wrap {
    height: var(--product-image-height);
    flex-basis: var(--product-image-height);
  }
  .military-card .product-name {
    min-height: auto;
    max-height: none;
    font-size: .86rem;
  }
  .product-category .product-desc,
  .package-card .product-desc,
  .package-card .product-note {
    min-height: auto;
    max-height: none;
    -webkit-line-clamp: initial;
  }
}
@media (min-width: 761px) and (max-width: 1119px) {
  :root {
    --product-card-width: 1fr;
    --product-card-height: 500px;
    --product-image-height: 182px;
  }
  .category-section > .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: 980px;
    gap: 12px;
    padding: 14px 12px 22px;
  }
  .military-card {
    min-width: 0;
  }
  .military-card .product-img-wrap img {
    padding: 12px 12px 8px;
  }
  .military-card .product-body {
    padding: 9px 9px 10px;
    gap: 5px;
  }
  .military-card .product-name {
    min-height: 36px;
    max-height: 36px;
    font-size: .74rem;
  }
  .product-desc,
  .product-category .product-desc {
    min-height: 30px;
    max-height: 30px;
    font-size: .62rem;
  }
  .product-micro,
  .product-features {
    min-height: 18px;
    font-size: .54rem;
  }
  .price-grid {
    gap: 6px;
  }
  .price-box {
    min-height: 50px;
    padding: 6px 5px;
  }
  .price-box span,
  .product-category .price-box span,
  .product-category .price-box-set span {
    font-size: .5rem;
  }
  .price-box strong,
  .product-category .price-box strong {
    font-size: 1rem;
  }
  .military-card .btn-add,
  .product-category .military-card .btn-add {
    min-height: 38px;
    font-size: .66rem;
  }
  .package-card {
    height: 520px;
  }
  .package-card .product-img-wrap {
    height: 172px;
    flex-basis: 172px;
  }
  .package-card .product-note,
  .package-category .product-note {
    display: none;
  }
}
/* ===== REVIZE 15 SINGLE ACTION MATCH ===== */
:root {
  --single-action-height-final: 40px;
  --single-action-padding-final: 8px 6px;
  --single-action-font-final: .72rem;
  --single-action-radius-final: 7px;
}
.product-category .add-choice-single,
.package-category .add-choice-single {
  grid-template-columns: 1fr !important;
}
.product-category .add-choice-single .btn-add-one,
.package-category .military-card .btn-add-single,
.package-card .btn-add-single {
  width: 100% !important;
  height: var(--single-action-height-final) !important;
  min-height: var(--single-action-height-final) !important;
  padding: var(--single-action-padding-final) !important;
  border-radius: var(--single-action-radius-final) !important;
  font-size: var(--single-action-font-final) !important;
  line-height: 1.1 !important;
}
@media (max-width: 760px) {
  :root {
    --single-action-height-final: 34px;
    --single-action-padding-final: 6px 3px;
    --single-action-font-final: .6rem;
  }
}
/* ===== REVIZE 15 LOGO SYSTEM ===== */
.home-nav-brand {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(232,200,112,.42);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
  cursor: pointer;
  text-decoration: none;
}
.home-nav-brand img {
  width: 38px;
  height: 38px;
  display: block;
  object-fit: contain;
  border-radius: 999px;
}
.hp-hero-logo {
  width: 76px;
  height: 76px;
  display: block;
  object-fit: contain;
  border-radius: 999px;
  margin: 0 0 10px;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.32));
}
.hp-hero-text .hp-hero-kicker {
  margin-top: 0;
}
.seo-nav-logo {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  font-size: 0 !important;
}
.seo-nav-logo::before {
  content: "";
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 999px;
  background: url("../img/kahya-askeri-malzemeleri-logo.webp") center / contain no-repeat;
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
}
.seo-nav-logo::after {
  content: "Kahya Askeri Market";
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .04em;
  white-space: nowrap;
}
@media (min-width: 900px) {
  .home-nav {
    align-items: center;
  }
  .home-nav-brand {
    margin-right: 4px;
  }
  .hp-hero-logo {
    width: 88px;
    height: 88px;
  }
}
@media (max-width: 760px) {
  .home-nav-brand {
    width: 42px;
    height: 42px;
  }
  .home-nav-brand img {
    width: 34px;
    height: 34px;
  }
  .hp-hero-logo {
    width: 62px;
    height: 62px;
    margin-bottom: 8px;
  }
  .seo-nav-logo::before {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }
  .seo-nav-logo::after {
    font-size: .86rem;
  }
}
/* ===== REVIZE 15 HOME SET RATIO LAST WORD ===== */
@media (min-width: 769px) {
  .hp-set-card {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto !important;
    padding: 0 !important;
    overflow: hidden;
  }
  .hp-set-img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 0 !important;
    border-bottom: 1px solid #f1eee4;
    background: #fff;
  }
  .hp-set-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    padding: 10px !important;
    background: #fff !important;
  }
}
@media (max-width: 768px) {
  .hp-set-img img {
    object-fit: contain !important;
    padding: 6px !important;
    background: #fff !important;
  }
}
/* ===== GLOBAL REDUCED MOTION SAFETY ===== */
@media (prefers-reduced-motion: reduce) {
  html,
  #snap-container {
    scroll-behavior: auto !important;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
  .hp-set-ad-slide,
  .product-card,
  .founder-story-section,
  .hp-cat-media img {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}
/* ===== REVIZE 16 NAV REBUILD FINAL ===== */
:root {
  --home-nav-h: 58px;
}
.home-section .home-inner {
  padding-top: var(--home-nav-h) !important;
}
.home-section .home-nav {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  z-index: 970 !important;
  height: var(--home-nav-h) !important;
  min-height: var(--home-nav-h) !important;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  padding: 7px clamp(12px, 2vw, 24px) !important;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), transparent 42%),
    linear-gradient(135deg, #1f3518 0%, #2d4a22 56%, #203816 100%) !important;
  border-bottom: 1px solid rgba(232,200,112,.42) !important;
  box-shadow: 0 8px 22px rgba(16,28,10,.2), inset 0 -1px 0 rgba(0,0,0,.28) !important;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
body.is-category-zone #site-header-layer .home-nav {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  visibility: hidden;
}
body.is-category-zone #site-header-layer .hn-drop {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(-8px) !important;
}
.home-section .home-nav::-webkit-scrollbar {
  display: none;
}
.home-section .home-nav-brand {
  width: 42px !important;
  height: 42px !important;
  flex: 0 0 42px !important;
  margin-right: 4px !important;
  border-radius: 50% !important;
}
.home-section .home-nav-brand img {
  width: 34px !important;
  height: 34px !important;
}
.home-section .hnav-btn {
  min-height: 44px !important;
  height: 44px !important;
  padding: 0 13px !important;
  border-radius: 10px !important;
  border: 1px solid rgba(232,200,112,.42) !important;
  background: rgba(255,255,255,.045) !important;
  color: #fff7df !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08) !important;
  font-size: .78rem !important;
  font-weight: 850 !important;
  text-decoration: none !important;
  letter-spacing: 0 !important;
  white-space: nowrap;
}
.home-section .hnav-primary,
.home-section .hnav-builder {
  border-color: rgba(246,216,124,.64) !important;
  background: rgba(232,200,112,.1) !important;
}
.home-section .hnav-contact,
.home-section .hnav-whatsapp {
  border-color: rgba(37,211,102,.46) !important;
}
.home-section .hn-drop {
  position: fixed !important;
  top: var(--home-nav-h) !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 965 !important;
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  max-height: calc(100dvh - var(--home-nav-h) - 10px) !important;
  padding: 10px 12px !important;
  overflow-y: auto !important;
  background: linear-gradient(180deg, rgba(13,24,8,.92), rgba(13,24,8,.72)) !important;
  border-bottom: 1px solid rgba(232,200,112,.28) !important;
  box-shadow: 0 18px 34px rgba(0,0,0,.24) !important;
}
.home-section .hn-panel-shell {
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: 14px;
  border: 1px solid rgba(232,200,112,.32);
  border-radius: 12px;
  background:
    radial-gradient(circle at 16% 0%, rgba(232,200,112,.1), transparent 32%),
    linear-gradient(135deg, #203518 0%, #12200c 100%);
  box-shadow: 0 18px 36px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.08);
}
.home-section .hn-category-menu {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 16px;
}
.home-section .hn-cat-groups {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 12px;
  border-right: 1px solid rgba(232,200,112,.2);
}
.home-section .hn-cat-groups span {
  min-height: 36px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  color: rgba(255,248,223,.78);
  font-size: .78rem;
  font-weight: 800;
  background: rgba(255,255,255,.035);
}
.home-section .hn-cat-link-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 18px;
}
.home-section .hn-cat-group {
  min-width: 0;
}
.home-section .hn-cat-group h3 {
  margin: 0 0 7px;
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  font-size: .82rem;
  line-height: 1.2;
}
.home-section .hn-cat-group a {
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  border-radius: 7px;
  color: rgba(255,255,255,.88);
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.home-section .hn-panel-head {
  display: grid;
  gap: 3px;
  margin-bottom: 12px;
}
.home-section .hn-panel-head span {
  color: rgba(232,200,112,.76);
  font-family: 'Cinzel', serif;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .12em;
}
.home-section .hn-panel-head strong {
  color: #fff8df;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
}
.home-section .hn-ist-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 4px;
  margin-bottom: 12px;
  border: 1px solid rgba(232,200,112,.28);
  border-radius: 10px;
  background: rgba(0,0,0,.12);
}
.home-section .hn-ist-tab {
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(255,248,223,.78);
  font-weight: 850;
}
.home-section .hn-ist-tab.active {
  background: linear-gradient(135deg, #d7b54b, #f4db7f);
  color: #203717;
}
.home-section .hn-ist-list,
.home-section .hn-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.home-section .hn-ist-list li,
.home-section .hn-info-list li {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid rgba(232,200,112,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.065);
  color: rgba(255,255,255,.88);
  font-size: .82rem;
  line-height: 1.35;
}
.home-section .hn-help-shell {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
}
.home-section .hn-help-item {
  min-height: 74px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(232,200,112,.2);
  border-radius: 9px;
  background: rgba(255,255,255,.045);
  color: rgba(255,255,255,.82);
  text-decoration: none;
  cursor: pointer;
}
.home-section .hn-help-item strong {
  color: #fff8df;
  font-size: .86rem;
}
.home-section .hn-help-item span {
  color: rgba(255,255,255,.62);
  font-size: .74rem;
  line-height: 1.35;
}
.home-section .hn-help-whatsapp {
  border-color: rgba(37,211,102,.38);
}
.legal-quick-links {
  margin: 24px 0;
  padding: 16px;
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 12px;
  background: linear-gradient(180deg, #fffdf6, #f4efe2);
  box-shadow: 0 10px 24px rgba(32,55,23,.07);
}
.legal-quick-links h2 {
  margin: 0 0 10px;
  color: #263b19;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 850;
}
.legal-quick-links div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.legal-quick-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(201,168,76,.34);
  border-radius: 8px;
  background: rgba(255,255,255,.72);
  color: #2d421f;
  font-size: .82rem;
  font-weight: 800;
  text-decoration: none;
}
.home-section .hn-list-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.home-section .hn-list-col,
.home-section .hn-contact-card {
  border: 1px solid rgba(232,200,112,.18);
  border-radius: 9px;
  background: rgba(255,255,255,.045);
  color: rgba(255,255,255,.86);
  padding: 10px;
}
@media (max-width: 760px) {
  :root {
    --home-nav-h: 56px;
  }
  .home-section .home-inner {
    padding-top: var(--home-nav-h) !important;
  }
  .home-section .home-nav {
    height: var(--home-nav-h) !important;
    min-height: var(--home-nav-h) !important;
    gap: 7px;
    padding: 6px 9px !important;
  }
  .home-section .home-nav-brand {
    width: 40px !important;
    height: 40px !important;
    flex-basis: 40px !important;
  }
  .home-section .home-nav-brand img {
    width: 32px !important;
    height: 32px !important;
  }
  .home-section .hnav-btn {
    height: 44px !important;
    min-height: 44px !important;
    padding: 0 11px !important;
    border-radius: 9px !important;
    font-size: .74rem !important;
  }
  .home-section .hn-drop {
    top: var(--home-nav-h) !important;
    bottom: 0 !important;
    max-height: none !important;
    padding: 10px !important;
  }
  .home-section .hn-panel-shell {
    width: 100%;
    max-height: calc(100dvh - var(--home-nav-h) - 20px);
    overflow-y: auto;
    padding: 12px;
  }
  .home-section .hn-category-menu {
    display: block;
  }
  .home-section .hn-cat-groups {
    display: none;
  }
  .home-section .hn-cat-link-groups {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .home-section .hn-cat-group {
    border: 1px solid rgba(232,200,112,.18);
    border-radius: 9px;
    padding: 8px;
    background: rgba(255,255,255,.035);
  }
  .home-section .hn-cat-group a {
    min-height: 44px;
    padding: 0 8px;
  }
  .home-section .hn-ist-list,
  .home-section .hn-info-list,
  .home-section .hn-help-shell,
  .home-section .hn-list-grid {
    grid-template-columns: 1fr;
  }
  .home-section .hn-ist-tabs {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .home-section .hn-ist-tab,
  .home-section .hn-ist-list li,
  .home-section .hn-info-list li,
  .home-section .hn-help-item {
    min-height: 44px;
  }
}
/* ===== REVIZE 16 PREMIUM COMMAND NAV ===== */
.home-section .home-nav {
  position: sticky;
  top: 0;
  z-index: 320;
  min-height: 68px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  padding: 9px clamp(12px, 2.4vw, 28px);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(232,200,112,.12), transparent 32%),
    linear-gradient(135deg, #203416 0%, #2f4b23 55%, #243d1d 100%);
  border-bottom: 1px solid rgba(232,200,112,.42);
  box-shadow:
    0 10px 24px rgba(22,31,12,.2),
    inset 0 1px 0 rgba(255,255,255,.08),
    inset 0 -1px 0 rgba(0,0,0,.22);
}
.home-section .home-nav::-webkit-scrollbar {
  display: none;
}
.home-section .home-nav::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(246,216,124,.7), transparent);
  pointer-events: none;
}
.home-section .home-nav-brand {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  margin-right: 4px;
  border: 1px solid rgba(232,200,112,.58);
  background:
    radial-gradient(circle, rgba(255,255,255,.1) 0%, rgba(255,255,255,.04) 58%, rgba(0,0,0,.16) 100%);
  box-shadow:
    0 8px 22px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.1);
}
.home-section .home-nav-brand img {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.35));
}
.home-section .hnav-btn {
  min-height: 48px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(232,200,112,.46);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    rgba(31,49,22,.72);
  color: #fff7dc;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.1),
    0 5px 14px rgba(0,0,0,.14);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .01em;
  line-height: 1;
  white-space: nowrap;
  transition: transform .16s ease, background .16s ease, color .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.home-section .hnav-btn:first-of-type {
  border-color: rgba(246,216,124,.72);
  background:
    linear-gradient(180deg, rgba(246,216,124,.18), rgba(246,216,124,.05)),
    rgba(34,56,24,.9);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.13),
    0 0 0 1px rgba(246,216,124,.08),
    0 8px 18px rgba(0,0,0,.18);
}
.home-section .hnav-btn:active {
  transform: translateY(0);
}
.home-section .hn-drop {
  position: relative;
  z-index: 310;
  max-height: min(68vh, 620px);
  padding: 18px clamp(14px, 3vw, 34px);
  overflow-y: auto;
  background:
    radial-gradient(circle at 18% 0%, rgba(232,200,112,.11), transparent 30%),
    linear-gradient(135deg, rgba(16,29,9,.98), rgba(37,59,24,.98));
  border-bottom: 1px solid rgba(232,200,112,.36);
  box-shadow:
    0 18px 30px rgba(16,24,8,.22),
    inset 0 1px 0 rgba(255,255,255,.06);
}
.home-section .hn-cat-list {
  width: min(980px, 100%);
  max-width: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 8px;
  margin: 0 auto;
}
.home-section .hn-cat-item,
.home-section .hn-drop-item {
  min-height: 48px;
  border: 1px solid rgba(232,200,112,.2);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.025)),
    rgba(255,255,255,.035);
  color: rgba(255,250,229,.9);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  transition: background .16s ease, border-color .16s ease, transform .16s ease, color .16s ease;
}
.home-section .hn-cat-arrow {
  color: rgba(246,216,124,.76);
}
.home-section .hn-drop-hint {
  color: rgba(255,248,223,.72);
}
@media (min-width: 1200px) {
  .home-section .home-nav {
    gap: 12px;
  }
  .home-section .hnav-btn {
    padding-inline: 20px;
    font-size: .84rem;
  }
}
@media (max-width: 760px) {
  .home-section .home-nav {
    min-height: 60px;
    gap: 7px;
    padding: 8px 10px;
    -webkit-overflow-scrolling: touch;
  }
  .home-section .home-nav-brand {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    margin-right: 0;
  }
  .home-section .home-nav-brand img {
    width: 36px;
    height: 36px;
  }
  .home-section .hnav-btn {
    min-height: 44px;
    padding: 0 13px;
    font-size: .76rem;
  }
  .home-section .hn-drop {
    max-height: 64vh;
    padding: 14px 12px;
  }
  .home-section .hn-cat-list {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .home-section .hn-cat-item,
  .home-section .hn-drop-item {
    min-height: 46px;
    border-radius: 9px;
  }
}
/* ===== REVIZE 16 SALES NAV ARCHITECTURE ===== */
.home-section .hnav-btn {
  text-decoration: none;
}
.home-section .hnav-cart,
.home-section .hnav-mobile,
.home-section .hnav-label-mobile {
  display: none;
}
.home-section .hnav-sales,
.home-section .hnav-builder {
  border-color: rgba(246,216,124,.64);
}
.home-section .hnav-builder {
  background:
    linear-gradient(180deg, rgba(246,216,124,.2), rgba(246,216,124,.06)),
    rgba(31,49,22,.82);
}
.home-section .hnav-contact,
.home-section .hnav-whatsapp {
  border-color: rgba(58,214,116,.58);
  background:
    linear-gradient(180deg, rgba(37,211,102,.17), rgba(37,211,102,.055)),
    rgba(31,49,22,.78);
}
.home-section .hn-help-list {
  max-width: 780px;
}
@media (max-width: 760px) {
  .home-section .hnav-desktop,
  .home-section .hnav-label-desktop {
    display: none !important;
  }
  .home-section .hnav-cart,
  .home-section .hnav-mobile,
  .home-section .hnav-label-mobile {
    display: inline-flex;
  }
  .home-section .hnav-sales,
  .home-section .hnav-builder,
  .home-section .hnav-whatsapp,
  .home-section .hnav-cart {
    padding-inline: 12px;
  }
  .home-section .hnav-builder {
    min-width: 122px;
  }
  .home-section .hnav-whatsapp {
    min-width: 86px;
  }
  .home-section .hnav-cart {
    min-width: 66px;
  }
}
/* ===== REVIZE 17 FOUNDER STORY ===== */
.founder-story-section {
  margin: 22px 0;
  padding: clamp(14px, 3vw, 26px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  border: 1px solid rgba(201,168,76,.34);
  border-radius: 14px;
  background:
    radial-gradient(circle at 12% 0%, rgba(232,200,112,.14), transparent 34%),
    linear-gradient(135deg, #203518 0%, #2f4a23 48%, #fbf7eb 48%, #fffdf6 100%);
  box-shadow:
    0 16px 34px rgba(32,55,23,.12),
    inset 0 1px 0 rgba(255,255,255,.2);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .45s ease, transform .45s ease;
}
.founder-story-section.is-visible {
  opacity: 1;
  transform: none;
}
.founder-story-copy {
  min-width: 0;
  padding: clamp(16px, 3vw, 24px);
  border: 1px solid rgba(232,200,112,.25);
  border-radius: 12px;
  color: #fff8df;
  background:
    linear-gradient(180deg, rgba(20,38,14,.9), rgba(35,58,26,.86));
  box-shadow:
    0 12px 28px rgba(10,20,8,.16),
    inset 0 1px 0 rgba(255,255,255,.08);
}
.founder-story-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: #e8c870;
  font-family: 'Cinzel', serif;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.founder-story-copy h2 {
  margin: 0 0 12px;
  color: #fffaf0;
  font-family: 'Cinzel', serif;
  font-size: clamp(1.28rem, 5vw, 2rem);
  font-weight: 900;
  line-height: 1.14;
}
.founder-story-copy p {
  margin: 0 0 10px;
  color: rgba(255,250,236,.9);
  font-size: .93rem;
  line-height: 1.6;
}
.founder-story-copy p:last-of-type {
  margin-bottom: 0;
}
.founder-story-copy blockquote {
  margin: 14px 0;
  padding: 12px 14px;
  border-left: 3px solid #e8c870;
  border-radius: 0 10px 10px 0;
  color: #263b19;
  background: linear-gradient(135deg, #f3d77b, #fff0aa);
  font-size: .98rem;
  font-weight: 900;
  line-height: 1.35;
  box-shadow: 0 8px 20px rgba(8,18,6,.16);
}
.founder-story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.founder-story-actions button {
  min-height: 44px;
  min-width: 0;
  padding: 0 16px;
  border-radius: 10px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
}
.founder-story-primary {
  border: 1px solid rgba(232,200,112,.8);
  color: #263b19;
  background: linear-gradient(135deg, #d8b64c, #f3d77b);
  box-shadow: 0 12px 24px rgba(212,175,55,.2);
}
.founder-story-secondary {
  border: 1px solid rgba(232,200,112,.42);
  color: #fff8df;
  background: rgba(255,255,255,.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.founder-story-gallery {
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: center;
}
.founder-story-photo {
  min-width: 0;
  margin: 0;
  padding: 9px;
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 12px;
  background: linear-gradient(180deg, #fffdf6, #f2ebdc);
  box-shadow:
    0 14px 30px rgba(37,51,26,.16),
    inset 0 1px 0 rgba(255,255,255,.92);
}
.founder-story-photo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}
.founder-story-photo figcaption {
  margin-top: 8px;
  color: #39492d;
  font-size: .78rem;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
}
@media (min-width: 700px) {
  .founder-story-section {
    margin: 28px 0;
  }
  .founder-story-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .founder-story-photo img {
    max-height: 300px;
  }
}
@media (min-width: 1000px) {
  .founder-story-section {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
    align-items: center;
    gap: 20px;
  }
  .founder-story-copy p {
    font-size: .96rem;
  }
  .founder-story-photo img {
    max-height: 330px;
  }
}
@media (max-width: 480px) {
  .founder-story-section {
    border-radius: 12px;
    background:
      radial-gradient(circle at 10% 0%, rgba(232,200,112,.14), transparent 30%),
      linear-gradient(180deg, #203518 0%, #2f4a23 46%, #fbf7eb 46%, #fffdf6 100%);
  }
  .founder-story-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .founder-story-actions button {
    width: 100%;
  }
  .founder-story-photo img {
    max-height: 255px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .founder-story-section {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .founder-story-actions button,
  .founder-story-photo {
    transition: none;
  }
}
/* ===== REVIZE 16 BRANDS SECTION ===== */
.brands-section {
  margin: 22px 0;
  padding: 18px clamp(14px, 2.6vw, 24px);
  border: 1px solid rgba(201,168,76,.28);
  border-radius: 14px;
  background:
    radial-gradient(circle at 12% 0%, rgba(127,173,95,.12), transparent 36%),
    linear-gradient(180deg, #fffdf6 0%, #f3efe4 100%);
  box-shadow:
    0 14px 30px rgba(32,55,23,.08),
    inset 0 1px 0 rgba(255,255,255,.86);
}
.brands-head {
  max-width: 980px;
  margin: 0 0 16px;
}
.brands-head h2 {
  margin: 0 0 8px;
  color: #243a18;
  font-family: 'Cinzel', serif;
  font-size: clamp(1.08rem, 4vw, 1.42rem);
  font-weight: 850;
  line-height: 1.2;
}
.brands-head p {
  margin: 0;
  max-width: 920px;
  color: #4f5748;
  font-size: .9rem;
  line-height: 1.55;
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.brands-card {
  min-width: 0;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 10px 12px;
  border: 1px solid rgba(201,168,76,.22);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(250,247,238,.9));
  box-shadow:
    0 8px 20px rgba(45,61,31,.06),
    inset 0 1px 0 rgba(255,255,255,.9);
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}
.brands-logo-box {
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brands-logo {
  display: block;
  width: min(118px, 82%);
  max-height: 58px;
  height: auto;
  object-fit: contain;
  transition: transform .18s ease;
}
.brands-card h3 {
  margin: 0;
  color: #2d421f;
  font-size: .82rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
}
@media (min-width: 700px) {
  .brands-section {
    margin: 28px 0;
    padding: 22px;
  }
  .brands-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
  .brands-card {
    min-height: 144px;
  }
  .brands-logo-box {
    height: 78px;
  }
  .brands-logo {
    width: min(136px, 84%);
    max-height: 64px;
  }
}
@media (min-width: 1100px) {
  .brands-section {
    padding: 24px 26px;
  }
  .brands-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
  }
  .brands-card {
    min-height: 150px;
  }
  .brands-logo-box {
    height: 82px;
  }
  .brands-logo {
    width: min(148px, 86%);
    max-height: 68px;
  }
}
/* ===== REVIZE 15 HERO SET AD FINAL ===== */
.hp-hero-media.hp-set-ad {
  display: block !important;
}
.hp-set-ad {
  position: relative;
  min-width: 0;
}
.hp-set-ad-stage {
  position: relative;
  width: min(100%, 430px);
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(232,200,112,.36);
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
}
.hp-set-ad-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.015);
  transition: opacity .45s ease, transform .45s ease;
  cursor: pointer;
}
.hp-set-ad-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
.hp-set-ad-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  padding: 12px;
  background: #fff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.hp-set-ad-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  padding: 5px 9px;
  border-radius: 999px;
  background: #445a28;
  color: #f4e8c8;
  font-family: 'Cinzel', serif;
  font-size: .68rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
.hp-set-ad-caption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 11px;
  border-radius: 10px;
  background: rgba(255,255,255,.92);
  color: #243816;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}
.hp-set-ad-caption strong,
.hp-set-ad-caption span {
  min-width: 0;
  white-space: nowrap;
}
.hp-set-ad-caption strong {
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'Cinzel', serif;
  font-size: .86rem;
  font-weight: 900;
}
.hp-set-ad-caption span {
  flex: 0 0 auto;
  font-size: 1rem;
  font-weight: 900;
}
.hp-set-ad-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 10px;
}
.hp-set-ad-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.44);
  border: 1px solid rgba(232,200,112,.4);
}
.hp-set-ad-dot.is-active {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.hp-set-ribbon {
  max-width: calc(100% - 32px);
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
  letter-spacing: 1.2px;
}
@media (min-width: 769px) {
  .hp-hero-grid {
    grid-template-columns: minmax(0, .95fr) minmax(320px, 430px) !important;
    align-items: center;
  }
  .hp-set-ad-stage {
    width: min(100%, 430px);
  }
}
@media (max-width: 768px) {
  .hp-set-ad-stage {
    width: min(100%, 320px);
  }
  .hp-set-ad-slide img {
    padding: 9px;
  }
  .hp-set-ad-caption {
    padding: 7px 9px;
  }
  .hp-set-ad-caption strong {
    font-size: .72rem;
  }
  .hp-set-ad-caption span {
    font-size: .86rem;
  }
  .hp-set-ribbon {
    left: 10px;
    right: auto;
    max-width: calc(100% - 20px);
    font-size: .58rem;
    letter-spacing: .8px;
    white-space: nowrap;
  }
}
/* ===== REVIZE 15 HOME SET RATIO FINAL ===== */
@media (min-width: 769px) {
  .hp-set-card {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto !important;
    padding: 0 !important;
    overflow: hidden;
  }
  .hp-set-img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 0 !important;
    border-bottom: 1px solid #f1eee4;
    background: #fff;
  }
  .hp-set-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    padding: 10px !important;
    background: #fff !important;
  }
}
@media (max-width: 768px) {
  .hp-set-img img {
    object-fit: contain !important;
    padding: 6px !important;
    background: #fff !important;
  }
}
/* ===== REVIZE 15 HOME SET RATIO FIX ===== */
.hp-set-card {
  overflow: hidden;
}
.hp-set-img {
  background: #fff;
}
.hp-set-img img {
  object-fit: contain !important;
  background: #fff;
}
@media (min-width: 769px) {
  .hp-set-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding: 0;
  }
  .hp-set-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 0;
    border-bottom: 1px solid #f1eee4;
  }
  .hp-set-img img {
    padding: 10px;
  }
  .hp-set-info {
    padding: 14px 18px 16px;
  }
}
@media (max-width: 768px) {
  .hp-set-card {
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 12px;
  }
  .hp-set-img {
    width: 132px;
    height: 132px;
    aspect-ratio: 1 / 1;
  }
  .hp-set-img img {
    padding: 6px;
  }
}
@media (max-width: 420px) {
  .hp-set-card {
    grid-template-columns: 122px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }
  .hp-set-img {
    width: 122px;
    height: 122px;
  }
}
/* Tekli satışlı ürün butonu, paket ekle butonuyla aynı aksiyon ölçüsünü kullanır. */
:root {
  --single-action-height: 40px;
  --single-action-padding: 8px 6px;
  --single-action-font: .72rem;
  --single-action-radius: 7px;
}
.product-category .add-choice-single,
.package-category .add-choice-single {
  grid-template-columns: 1fr;
}
.product-category .add-choice-single .btn-add-one,
.package-category .military-card .btn-add-single,
.package-card .btn-add-single {
  width: 100%;
  min-height: var(--single-action-height);
  padding: var(--single-action-padding);
  border-radius: var(--single-action-radius);
  font-size: var(--single-action-font);
  line-height: 1.1;
}
@media (max-width: 760px) {
  :root {
    --single-action-height: 34px;
    --single-action-padding: 6px 3px;
    --single-action-font: .6rem;
    --single-action-radius: 7px;
  }
}
/* ===== BOTTOM SHEET ===== */
#bottom-sheet-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 1000; opacity: 0; pointer-events: none; transition: opacity .3s; backdrop-filter: blur(3px); }
#bottom-sheet-overlay.active { opacity: 1; pointer-events: auto; }
#bottom-sheet { position: fixed; bottom: 0; left: 0; right: 0; z-index: 1001; background: #fff; border-radius: 20px 20px 0 0; padding: 0 18px 32px; max-height: 85dvh; overflow-y: auto; transform: translateY(105%); transition: transform .35s cubic-bezier(.4,0,.2,1); box-shadow: 0 -8px 40px rgba(0,0,0,.15); -webkit-overflow-scrolling: touch; }
#bottom-sheet.active { transform: translateY(0); }
.sheet-handle { width: 40px; height: 4px; background: var(--border); border-radius: 2px; margin: 14px auto 18px; }
.sheet-title { font-family: 'Vazirmatn',sans-serif; font-size: .9rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.sheet-price { font-family: 'Cinzel',serif; font-size: 1.15rem; font-weight: 700; color: var(--green-dark); margin-bottom: 16px; }
.sheet-label { font-family: 'Vazirmatn',sans-serif; font-size: .73rem; font-weight: 700; color: var(--text-mid); margin: 14px 0 8px; text-transform: uppercase; letter-spacing: 1px; }
.size-grid, .color-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.size-btn, .color-btn { padding: 10px 16px; border: 2px solid var(--border); border-radius: var(--radius-sm); background: #fff; font-family: 'Vazirmatn',sans-serif; font-size: .82rem; font-weight: 600; color: var(--text); min-height: 44px; -webkit-tap-highlight-color: transparent; }
.size-btn.selected, .color-btn.selected { border-color: var(--green-main); background: var(--green-main); color: #fff; }
.btn-confirm { width: 100%; padding: 14px; margin-top: 18px; background: linear-gradient(135deg, var(--green-dark), var(--green-mid)); color: var(--gold); border: 2px solid var(--gold); border-radius: var(--radius-sm); font-family: 'Cinzel',serif; font-size: .88rem; font-weight: 700; letter-spacing: 1px; min-height: 48px; }
.btn-confirm:disabled { opacity: .4; cursor: not-allowed; }
/* ===== PACKAGE MODAL ===== */
#package-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 1100; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .25s; padding: 16px; }
#package-modal-overlay.active { opacity: 1; pointer-events: auto; }
.package-modal { background: #fff; border-radius: var(--radius); padding: 22px 20px; max-width: 460px; width: 100%; max-height: 80dvh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0,0,0,.25); position: relative; }
.pkg-modal-close { position: absolute; top: 12px; right: 12px; background: none; border: none; font-size: 1.2rem; color: var(--text-light); min-height: 44px; min-width: 44px; }
.package-modal h3 { font-family: 'Cinzel',serif; color: var(--green-dark); font-size: 1rem; margin-bottom: 14px; }
.pkg-group-head { font-family: 'Cinzel',serif; font-size: .73rem; color: var(--gold); letter-spacing: 1px; margin: 12px 0 4px; text-transform: uppercase; }
.package-modal ul { list-style: none; }
.package-modal li { font-family: 'Vazirmatn',sans-serif; font-size: .8rem; padding: 3px 0 3px 12px; color: var(--text-mid); border-bottom: 1px solid rgba(0,0,0,.04); }
.package-modal li::before { content: '·'; margin-right: 6px; color: var(--green-main); }
.pkg-total { margin-top: 14px; padding-top: 12px; border-top: 2px solid var(--gold); font-family: 'Cinzel',serif; font-size: 1rem; color: var(--green-dark); font-weight: 700; }
.tam-note-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1200; display: flex; align-items: center; justify-content: center; padding: 16px; }
.tam-note-box { background: #fff; border: 2px solid var(--green-main); border-radius: var(--radius); padding: 24px 20px; max-width: 400px; width: 100%; text-align: center; font-family: 'Vazirmatn',sans-serif; font-size: .88rem; color: var(--text); line-height: 1.7; box-shadow: 0 20px 60px rgba(0,0,0,.2); }
.btn-continue { display: inline-block; padding: 11px 22px; background: linear-gradient(135deg, var(--green-dark), var(--green-mid)); color: var(--gold); border: 2px solid var(--gold); border-radius: var(--radius-sm); font-family: 'Cinzel',serif; font-size: .83rem; font-weight: 700; letter-spacing: 1px; cursor: pointer; text-decoration: none; margin-top: 14px; min-height: 44px; }
/* ===== EXIT OFFER ===== */
#exit-offer-overlay {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(9,16,5,.56);
  backdrop-filter: blur(5px);
}
#exit-offer-overlay.active { display: flex; }
.exit-offer {
  position: relative;
  width: min(420px, 100%);
  padding: 24px 20px 20px;
  border: 1px solid rgba(232,200,112,.42);
  border-radius: 14px;
  background: linear-gradient(180deg, #fffdf6 0%, #f3ecd9 100%);
  color: #243816;
  box-shadow: 0 20px 54px rgba(0,0,0,.28);
  font-family: 'Vazirmatn', sans-serif;
}
.exit-offer-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #536042;
  font-size: 1.4rem;
}
.exit-offer-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: #6d5619;
  font-family: 'Cinzel', serif;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.exit-offer h3 {
  margin: 0 0 8px;
  color: var(--green-dark);
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  line-height: 1.16;
}
.exit-offer p {
  margin: 0;
  color: #4e5744;
  font-size: .9rem;
  line-height: 1.55;
}
.exit-offer-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: 16px;
}
.exit-offer-actions button,
.exit-offer-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 9px;
  font-family: 'Vazirmatn', sans-serif;
  font-size: .86rem;
  font-weight: 900;
  text-decoration: none;
}
.exit-offer-actions button {
  border: 1px solid rgba(42,74,24,.18);
  background: #fff;
  color: var(--green-dark);
}
.exit-offer-actions a {
  border: 0;
  background: #25D366;
  color: #102414;
}
/* ===== READY NOTE ===== */
.ready-note-section {
  min-height: auto;
  padding: 34px 16px;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 14% 0%, rgba(232,200,112,.14), transparent 34%),
    linear-gradient(160deg, #1f3516 0%, #2c4a1f 52%, #f6f0df 52%, #fffdf6 100%);
}
.ready-note-card {
  width: min(100%, 980px);
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(232,200,112,.36);
  border-radius: 16px;
  color: #fff8df;
  background:
    linear-gradient(180deg, rgba(20,38,14,.92), rgba(37,61,28,.88));
  box-shadow:
    0 18px 40px rgba(24,43,16,.2),
    inset 0 1px 0 rgba(255,255,255,.08);
}
.ready-note-kicker {
  display: inline-flex;
  margin-bottom: 9px;
  color: #e8c870;
  font-family: 'Cinzel', serif;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ready-note-card h2 {
  margin: 0 0 14px;
  color: #f3d77b;
  font-family: 'Cinzel', serif;
  font-size: clamp(1.35rem, 4vw, 2rem);
  font-weight: 900;
  line-height: 1.15;
}
.ready-note-copy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.ready-note-copy p {
  margin: 0;
  color: rgba(255,250,236,.9);
  font-family: 'Vazirmatn', sans-serif;
  font-size: .94rem;
  line-height: 1.65;
}
.ready-note-blessing {
  margin: 18px 0 0;
  padding: 13px 15px;
  border-left: 3px solid #e8c870;
  border-radius: 0 12px 12px 0;
  color: #263b19;
  background: linear-gradient(135deg, #f3d77b, #fff0aa);
  font-family: 'Cinzel', serif;
  font-size: clamp(1rem, 3vw, 1.2rem);
  font-weight: 900;
  line-height: 1.35;
  box-shadow: 0 10px 24px rgba(8,18,6,.16);
}
@media (min-width: 900px) {
  .ready-note-section {
    padding: 46px 18px;
  }
  .ready-note-copy {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
  }
}
@media (max-width: 520px) {
  .ready-note-section {
    padding: 26px 14px;
    background:
      radial-gradient(circle at 14% 0%, rgba(232,200,112,.14), transparent 30%),
      linear-gradient(180deg, #1f3516 0%, #2c4a1f 60%, #f6f0df 60%, #fffdf6 100%);
  }
  .ready-note-card {
    border-radius: 13px;
  }
  .ready-note-copy p {
    font-size: .9rem;
  }
}
/* ===== ORDER SECTION ===== */
.order-section { min-height: 100dvh; background: linear-gradient(160deg, #2a4a18 0%, #3d6525 50%, #4a7a30 100%); padding: 40px 16px 80px; display: flex; flex-direction: column; align-items: center; }
.order-content-wrap { max-width: 680px; width: 100%; }
.order-title { font-family: 'Cinzel',serif; color: var(--gold); font-size: 1.4rem; text-align: center; margin-bottom: 20px; letter-spacing: 2px; }
.order-notebook { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 16px; margin-bottom: 14px; }
.order-group { margin-bottom: 12px; }
.order-cat { font-family: 'Cinzel',serif; font-size: .7rem; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 5px; padding-bottom: 4px; border-bottom: 1px solid rgba(201,168,76,.2); }
.order-row { display: flex; justify-content: space-between; gap: 8px; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.04); font-family: 'Vazirmatn',sans-serif; font-size: .8rem; color: rgba(255,255,255,.8); }
.order-row span:last-child { white-space: nowrap; color: var(--gold); font-weight: 600; }
.order-row.tea { color: rgba(127,173,95,.9); }
.order-total { display: flex; justify-content: space-between; padding: 10px 0 0; margin-top: 8px; border-top: 2px solid rgba(201,168,76,.3); font-family: 'Cinzel',serif; color: var(--gold); font-size: .92rem; font-weight: 700; }
.cargo-free { background: rgba(127,173,95,.12); border: 1px solid rgba(127,173,95,.3); border-radius: var(--radius-sm); padding: 10px 14px; margin: 12px 0; font-family: 'Vazirmatn',sans-serif; font-size: .8rem; color: rgba(150,200,120,.9); text-align: center; }
.cargo-paid { background: rgba(241,196,15,.08); border: 1px solid rgba(241,196,15,.25); border-radius: var(--radius-sm); padding: 10px 14px; margin: 12px 0; font-family: 'Vazirmatn',sans-serif; font-size: .8rem; color: rgba(255,255,255,.8); }
.btn-order-edit { width: 100%; padding: 10px; margin: 10px 0; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-sm); color: rgba(255,255,255,.7); font-family: 'Vazirmatn',sans-serif; font-size: .8rem; font-weight: 600; min-height: 44px; }
.order-customer-form {
  margin: 14px 0;
  padding: 14px;
  border: 1px solid rgba(232,200,112,.28);
  border-radius: var(--radius);
  background: rgba(255,255,255,.07);
}
.order-customer-form h3 {
  margin: 0 0 10px;
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: .9rem;
  letter-spacing: 1px;
}
.order-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.order-form-grid label {
  display: grid;
  gap: 5px;
  color: rgba(255,255,255,.82);
  font-family: 'Vazirmatn', sans-serif;
  font-size: .78rem;
  font-weight: 700;
}
.order-form-grid input,
.order-form-grid select,
.order-form-grid textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 11px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  color: #203518;
  font: inherit;
  font-weight: 600;
}
.order-form-grid textarea {
  resize: vertical;
  min-height: 78px;
}
.order-address-field.is-optional::after {
  content: "Mağazadan teslimde adres gerekmez";
  color: rgba(255,255,255,.5);
  font-size: .72rem;
  font-weight: 500;
}
.order-form-error {
  min-height: 20px;
  margin: 10px 0 0;
  color: #ffe39a;
  font-family: 'Vazirmatn', sans-serif;
  font-size: .78rem;
  font-weight: 800;
}
@media (min-width: 620px) {
  .order-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .order-address-field {
    grid-column: 1 / -1;
  }
}
.payment-btns { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.pay-btn { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: var(--radius); text-decoration: none; font-family: 'Vazirmatn',sans-serif; font-size: .85rem; font-weight: 700; border: none; cursor: pointer; min-height: 56px; -webkit-tap-highlight-color: transparent; }
.pay-btn > span:last-child { display: flex; flex-direction: column; text-align: left; }
.pay-note { font-size: .7rem; font-weight: 400; opacity: .7; margin-top: 2px; }
.pay-btn > span:first-child { font-size: 1.4rem; flex-shrink: 0; }
.pay-wa { background: var(--wa); color: #fff; }
.pay-wa:disabled { opacity: .55; cursor: not-allowed; }
.pay-paytr { background: rgba(255,255,255,.08); color: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.1) !important; }
.pay-ptt { background: var(--ptt); color: #fff; }
.order-edit-wrap { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 14px; margin-bottom: 14px; }
.order-edit-row { display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.order-edit-info { flex: 1; font-family: 'Vazirmatn',sans-serif; font-size: .78rem; color: rgba(255,255,255,.8); }
.order-edit-info span:last-child { display: block; color: var(--gold); font-size: .73rem; margin-top: 2px; }
.order-edit-ctrl { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.oe-btn { padding: 5px 10px; border: 1px solid rgba(255,255,255,.2); background: transparent; color: rgba(255,255,255,.8); border-radius: 4px; font-size: .8rem; font-weight: 700; min-height: 36px; min-width: 36px; }
.oe-rm { color: #e74c3c; border-color: rgba(231,76,60,.3); }
.btn-order-confirm { width: 100%; padding: 13px; background: linear-gradient(135deg, var(--green-dark), var(--green-mid)); color: var(--gold); border: 2px solid var(--gold); border-radius: var(--radius-sm); font-family: 'Cinzel',serif; font-size: .88rem; font-weight: 700; letter-spacing: 1px; min-height: 48px; }
/* ===== FINAL PAGE — HORIZONTAL ===== */
.final-page { min-height: 100dvh; padding: 0; }
.final-bg { position: absolute; inset: 0; background: linear-gradient(160deg, #2a4a18 0%, #1e3515 40%, #152a0e 100%); }
.final-inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; padding: 40px 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 100dvh; }
.final-heading { font-family: 'Cinzel',serif; color: var(--gold); font-size: 1.3rem; letter-spacing: 3px; margin-bottom: 24px; text-align: center; }
.final-row { display: flex; gap: 14px; width: 100%; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 8px; }
.final-card { flex: 1; min-width: 200px; background: rgba(255,255,255,.06); border: 1px solid rgba(201,168,76,.2); border-radius: var(--radius); padding: 20px 16px; }
.final-quote { font-family: Georgia, serif; font-size: .9rem; font-style: italic; color: rgba(255,255,255,.8); line-height: 1.5; margin-bottom: 10px; }
.final-divider { height: 1px; background: linear-gradient(90deg,transparent,var(--gold),transparent); margin-bottom: 10px; }
.final-brand { font-family: 'Cinzel',serif; font-size: .85rem; font-weight: 700; color: var(--gold); margin-bottom: 3px; }
.final-loc { font-family: 'Vazirmatn',sans-serif; font-size: .72rem; color: rgba(255,255,255,.45); margin-bottom: 8px; }
.final-map { display: inline-flex; align-items: center; font-family: 'Vazirmatn',sans-serif; font-size: .72rem; color: var(--gold); border: 1px solid rgba(201,168,76,.3); border-radius: 6px; padding: 6px 12px; text-decoration: none; min-height: 36px; }
.fikri-note { margin-top: 28px; text-align: center; max-width: 620px; }
.fikri-text { font-family: 'Vazirmatn',sans-serif; font-size: .84rem; color: rgba(255,255,255,.75); line-height: 1.8; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 18px 16px; text-align: left; }
.fikri-icon { font-size: 1.1rem; }
.fikri-name { font-family: 'Cinzel',serif; color: var(--gold); }
.fikri-footer { margin-top: 12px; font-family: 'Vazirmatn',sans-serif; font-size: .76rem; color: rgba(255,255,255,.3); }
/* ===== SEO FOOTER ===== */
.seo-footer { background: #f5f5f0; border-top: 2px solid var(--border); }
.seo-inner { max-width: 900px; margin: 0 auto; padding: 36px 16px; }
.seo-inner h2 { font-family: 'Cinzel',serif; color: var(--green-dark); font-size: 1.05rem; margin-bottom: 14px; }
.seo-inner h3 { font-family: 'Vazirmatn',sans-serif; font-size: .83rem; font-weight: 700; color: var(--text); margin: 12px 0 6px; }
.seo-inner p { font-family: 'Vazirmatn',sans-serif; font-size: .8rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 8px; }
.seo-inner a { color: var(--green-mid); text-decoration: underline; }
.seo-copy { margin-top: 20px; font-family: 'Vazirmatn',sans-serif; font-size: .74rem; color: var(--text-light); }
.commerce-footer {
  display: grid;
  gap: 16px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(42,74,24,.12);
  border-radius: 12px;
  background: #fffdf6;
}
.commerce-block h3 {
  margin-bottom: 10px;
}
.payment-methods,
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.payment-methods span,
.legal-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 10px;
  border: 1px solid rgba(42,74,24,.12);
  border-radius: 8px;
  background: #fff;
  color: #2a3d1a;
  font-family: 'Vazirmatn',sans-serif;
  font-size: .78rem;
  font-weight: 800;
  text-decoration: none;
}
.payment-methods small {
  margin-left: 5px;
  color: var(--text-light);
  font-size: .68rem;
  font-weight: 700;
}
.commerce-business p {
  margin: 0 0 8px;
  color: var(--text-mid);
  font-family: 'Vazirmatn',sans-serif;
  font-size: .8rem;
  line-height: 1.5;
}
.commerce-business strong {
  color: var(--green-dark);
}
.commerce-map {
  grid-column: 1 / -1;
}
.commerce-map p {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-family: 'Vazirmatn',sans-serif;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.4;
}
.commerce-map iframe {
  width: 100%;
  min-height: 220px;
  border: 0;
  border-radius: 10px;
  background: #eee;
}
/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from{opacity:0;transform:translateY(14px)} to{opacity:1;transform:translateY(0)} }
.products-grid .product-card:nth-child(1) { animation-delay: 0s; }
.products-grid .product-card:nth-child(2) { animation-delay: .06s; }
.products-grid .product-card:nth-child(3) { animation-delay: .12s; }
.products-grid .product-card:nth-child(4) { animation-delay: .18s; }
.products-grid .product-card:nth-child(5) { animation-delay: .24s; }
.products-grid .product-card:nth-child(6) { animation-delay: .3s; }
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) { #nav-dots { display: none; } }
@media (max-width: 480px) {
  :root { --product-card-width: min(100%, 330px); --product-card-height: 580px; --product-image-height: 260px; }
  html { font-size: 15px; }
  .home-nav { padding: 8px 10px; gap: 4px; }
  .hnav-btn { padding: 6px 10px; font-size: .7rem; }
  .products-grid { gap: 16px; padding: 16px 12px 24px; }
  .product-body { padding: 10px 10px 12px; }
  .product-name { font-size: .76rem; }
  .product-price { font-size: 1rem; }
  .btn-add { padding: 10px; font-size: .78rem; }
  .cat-header { min-height: auto; padding: 14px 12px 16px; gap: 10px; }
  .cat-title-row { gap: 6px; }
  .hn-drop { padding: 12px; }
  .hn-drop-grid { grid-template-columns: repeat(2, 1fr); }
  #bottom-sheet { padding: 0 14px 28px; }
  .order-title { font-size: 1.2rem; }
  .final-inner { padding: 32px 12px; }
  .final-row { flex-direction: column; }
  .final-card { min-width: auto; }
  .fikri-text { font-size: .82rem; }
  #cart-panel { width: 100%; }
  #cart-toggle-btn {
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    width: 52px;
    padding: 9px;
    justify-content: center;
    gap: 0;
    min-height: 44px;
  }
  #cart-price-btn { display: none; }
  #whatsapp-support-btn {
    left: 10px;
    right: auto;
    bottom: calc(10px + env(safe-area-inset-bottom));
    width: 48px;
    min-height: 44px;
    padding: 8px;
    justify-content: center;
  }
  .wa-support-text { display: none; }
  #cart-toast {
    left: 10px;
    right: 10px;
    bottom: calc(64px + env(safe-area-inset-bottom));
    width: auto;
  }
  .hp { padding-bottom: 104px; }
}
@media (max-width: 360px) { .products-grid { gap: 12px; padding: 12px 10px 20px; } .product-img-wrap { padding-top: 80%; } }
@media (min-width: 600px) {
  .products-grid { grid-template-columns: repeat(2, minmax(0, var(--product-card-width))); gap: 22px; padding: 26px 24px 36px; }
}
@media (min-width: 900px) {
  .products-grid { grid-template-columns: repeat(2, minmax(0, var(--product-card-width))); gap: 26px; padding: 30px 32px 40px; }
}
@media (min-width: 1120px) {
  .products-grid { grid-template-columns: repeat(3, minmax(0, var(--product-card-width))); }
}
@media (max-width: 520px) {
  :root { --product-card-width: min(100%, 340px); --product-card-height: 580px; --product-image-height: 260px; }
  .products-grid { grid-template-columns: minmax(0, var(--product-card-width)); max-width: 390px; margin: 0 auto; }
  .price-box strong { font-size: 1.35rem; }
  .military-card .btn-add { font-size: .95rem; }
}
.category-section > .cat-header {
  position: relative;
  top: auto;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.category-header-top {
  gap: 12px;
  padding: 10px clamp(14px, 3vw, 34px);
}
.category-header-top::before,
.category-header-top::after {
  display: none;
}
.category-header-accent {
  height: 2px;
}
.category-header-bottom {
  padding: 6px clamp(14px, 3vw, 34px);
  font-size: .78rem;
  line-height: 1.32;
}
.usage-note-builder {
  display: none;
  margin-top: 9px;
  padding: 9px 10px;
  border: 1px solid rgba(201,168,76,.42);
  border-radius: 10px;
  color: #493817;
  background: linear-gradient(135deg, rgba(243,215,123,.34), rgba(255,246,205,.64));
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.45;
}
.quiz-opt.selected .usage-note-builder {
  display: block;
}
.category-note-label {
  font-size: .6rem;
  letter-spacing: 1.4px;
}
.category-section .parchment-kicker {
  display: none;
}
.category-section .parchment-title {
  font-size: clamp(1.04rem, 2vw, 1.45rem);
  gap: 8px;
  text-shadow: none;
}
.category-section .parchment-icon {
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  filter: none;
}
.category-section .cat-istihkak-leather {
  flex: 0 0 min(190px, 20vw);
  align-self: center;
  padding: 6px 9px;
  gap: 2px;
  background: rgba(18,28,10,.22);
  box-shadow: none;
}
.category-section .istihkak-leather-stamp {
  font-size: .52rem;
  letter-spacing: 1.5px;
}
.category-section .istihkak-leather-text {
  font-size: .68rem;
  line-height: 1.24;
}
.category-section > .products-grid {
  padding-top: clamp(10px, 1.4vw, 18px);
}
.product-category .product-desc {
  display: grid !important;
  gap: 2px;
  min-height: 34px;
  max-height: 34px;
  margin: 0;
  overflow: hidden;
  color: #4e5544;
  font-family: 'Vazirmatn', sans-serif;
  font-size: .66rem;
  font-weight: 600;
  line-height: 1.25;
}
.product-category .product-desc span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-category .product-desc span::before {
  content: "";
}
.product-category .price-box span {
  font-size: .66rem;
}
.product-category .price-box-set span {
  font-size: .6rem;
}
.product-category .price-box strong {
  font-size: 1.08rem;
}
.product-category .military-card .btn-add {
  min-height: 44px;
  padding: 9px 6px;
  font-size: .8rem;
}
.product-category .military-card .btn-add-six {
  box-shadow: 0 2px 8px rgba(31,42,20,.16);
}
.product-category .military-card .btn-add .cart-icon {
  display: inline;
}
.package-category .product-card {
  background: linear-gradient(180deg, #fffdf8 0%, #fbf5e8 100%);
  border: 1px solid rgba(184,146,85,.36);
  box-shadow: 0 4px 14px rgba(40,32,18,.07);
}
.package-category .compat-badge {
  background: #2c3a18;
  border-color: rgba(232,200,112,.8);
  color: #f4e8c8;
}
.package-category .product-desc {
  display: grid;
  gap: 4px;
  min-height: 40px;
  /* max-height ve overflow kaldırıldı: metin tam görünsün */
  color: #4e5544;
  font-family: 'Vazirmatn', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  line-height: 1.4;
}
.package-category .product-desc span {
  min-width: 0;
  /* white-space nowrap + ellipsis kaldırıldı: çok satıra sarılsın */
}
.package-category .product-desc span::before {
  content: "";
}
.package-category .product-note {
  min-height: 32px;
  /* max-height kaldırıldı: not tam görünsün */
  padding: 8px 10px;
  color: #38402f;
  background: rgba(184,146,85,.12);
  font-size: .74rem;
  line-height: 1.45;
  border-radius: 6px;
}
.package-category .btn-pkg-info,
.package-category .military-card .btn-add-single {
  min-height: 44px;
}
/* "Paket İçeriği" ile "Paketi Ekle" arasındaki boşluğu sıkılaştır */
.package-category .btn-pkg-info {
  margin-top: 8px;
  margin-bottom: 6px;
}
.package-category .size-badge:empty {
  display: none;
}
.package-category .product-trust {
  margin-top: 6px;
}
.category-section:not(#cat-1) > .trust-bar {
  display: none;
}
.pay-wa {
  background: #1f8f4d;
  color: #fff;
  box-shadow: 0 4px 14px rgba(31,143,77,.18);
}
.pay-paytr,
.pay-paytr:disabled {
  background: #efe6d2;
  color: #2c3a18;
  border: 1px solid rgba(201,168,76,.55) !important;
  opacity: 1;
  cursor: not-allowed;
}
.pay-ptt {
  background: #7b2d24;
  color: #fff;
}
@media (max-width: 760px) {
  .home-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }
  .home-nav::-webkit-scrollbar {
    display: none;
  }
  .category-header-top {
    padding: 8px 10px;
  }
  .category-header-bottom {
    padding: 5px 10px;
    font-size: .68rem;
  }
  .category-section .cat-istihkak-leather {
    display: none;
  }
  .category-section .parchment-title {
    font-size: clamp(.94rem, 4.8vw, 1.18rem);
  }
  .category-section > .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 10px;
  }
  .product-category .product-desc {
    min-height: 30px;
    max-height: 30px;
    font-size: .6rem;
  }
  .product-category .product-desc span:nth-child(n+2) {
    display: none;
  }
  .product-category .military-card .btn-add {
    min-height: 44px;
    font-size: .68rem;
    padding: 7px 3px;
  }
  .product-category .price-box {
    padding: 6px 4px;
  }
  .product-category .price-box span,
  .product-category .price-box-set span {
    font-size: .5rem;
  }
  .product-category .price-box strong {
    font-size: .86rem;
  }
  .package-category .product-desc {
    min-height: 36px;
    /* max-height kaldırıldı: metin tam görünsün */
    font-size: .68rem;
    line-height: 1.5;
    gap: 6px;
  }
  /* nth-child(n+2) display:none kaldırıldı — tüm satırlar görünsün */
  .package-category .product-note {
    min-height: 28px;
    /* max-height kaldırıldı */
    font-size: .68rem;
    line-height: 1.5;
  }
  .trust-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* =====================================================================
   REVIZE 7: mobil okunabilirlik, Faz 1 ödeme, trust bar kapsamı
   ===================================================================== */
.home-trust-wrap {
  display: none;
}
.home-trust-wrap .trust-bar {
  display: none;
}
.category-section:not(#cat-1) > .trust-bar {
  display: grid;
}
@media (max-width: 760px) {
  .home-trust-wrap {
    display: block;
  }
  .home-trust-wrap .trust-bar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 100%;
    margin: 10px 0 0;
    padding: 14px 12px;
  }
  .category-section > .trust-bar {
    display: none !important;
  }
  .product-category .product-desc,
  .package-category .product-desc {
    display: grid !important;
    min-height: 60px;
    max-height: 68px;
    font-size: .62rem;
    line-height: 1.28;
  }
  .product-category .product-desc span,
  .package-category .product-desc span {
    display: block !important;
    white-space: normal;
    overflow: hidden;
    text-overflow: clip;
  }
  .product-category .product-desc span:nth-child(n+2),
  .package-category .product-desc span:nth-child(n+2) {
    display: block !important;
  }
  .product-category .price-box span,
  .product-category .price-box-set span,
  .package-category .price-box span {
    font-size: .62rem;
    line-height: 1.12;
  }
  .payment-btns {
    gap: 8px;
  }
}
@media (min-width: 769px) {
.category-section > .cat-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: block;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    background: transparent;
    border-bottom: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,.28);
  }
  .category-header-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(10px, 2.4vw, 26px);
    padding: clamp(12px, 2vw, 22px) clamp(16px, 3.4vw, 42px) clamp(14px, 1.9vw, 22px);
    background: linear-gradient(135deg, #243816 0%, #3f5e2a 62%, #2a3d1a 100%);
  }
  .category-header-top::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0 0 0 auto;
    width: 62%;
    background: linear-gradient(135deg, transparent 0%, rgba(127,173,95,.24) 100%);
    clip-path: polygon(35% 0%, 100% 0%, 100% 100%, 0% 100%);
    pointer-events: none;
    z-index: 0;
  }
  .category-header-top::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 18px;
    background: linear-gradient(135deg, var(--gold) 0%, rgba(232,200,112,.72) 50%, var(--gold) 100%);
    clip-path: polygon(0% 40%, 45% 100%, 100% 0%, 100% 100%, 0% 100%);
    pointer-events: none;
    z-index: 2;
  }
  .category-header-accent {
    position: relative;
    z-index: 3;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  }
  .category-header-bottom {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 8px clamp(16px, 3.4vw, 42px);
    background: linear-gradient(135deg, #eee8d8 0%, #dfd6c1 100%);
    border-bottom: 1px solid #d8cfb8;
    color: #4d4a40;
    font-family: 'Vazirmatn', sans-serif;
    font-size: .82rem;
    line-height: 1.42;
  }
  .category-note-label {
    flex: 0 0 auto;
    margin-top: 2px;
    color: #6c5420;
    font-family: 'Cinzel', serif;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: 2px;
  }
  .category-section .cat-parchment {
    flex: 1 1 auto;
    min-width: 0;
    position: relative;
    z-index: 1;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .category-section .cat-parchment::before {
    display: none;
  }
  .category-section .parchment-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 3px;
  }
  .category-section .kicker-num,
  .category-section .kicker-label {
    color: rgba(232,200,112,.72);
    font-family: 'Cinzel', serif;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    text-shadow: none;
  }
  .category-section .kicker-line {
    width: min(92px, 15vw);
    height: 1px;
    flex: 0 1 auto;
    background: rgba(232,200,112,.34);
  }
  .category-section .parchment-title {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    margin: 0;
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: clamp(1.22rem, 2.45vw, 1.76rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: .02em;
    text-shadow: 0 2px 8px rgba(0,0,0,.26);
  }
  .category-section .parchment-icon {
    flex: 0 0 auto;
    font-size: clamp(1.22rem, 2vw, 1.68rem);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,.26));
  }
  .category-section .cat-istihkak-leather {
    flex: 0 0 min(220px, 23vw);
    align-self: stretch;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: auto;
    padding: 9px 12px;
    background: rgba(18, 28, 10, .34);
    border: 1px solid rgba(232,200,112,.34);
    border-radius: 8px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
  }
  .category-section .cat-istihkak-leather::before {
    display: none;
  }
  .category-section .istihkak-leather-stamp {
    padding: 0;
    border: 0;
    color: var(--gold-light);
    font-family: 'Cinzel', serif;
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .category-section .istihkak-leather-text {
    color: rgba(255,255,255,.9);
    font-family: 'Vazirmatn', sans-serif;
    font-size: .72rem;
    line-height: 1.34;
    font-weight: 600;
  }
}
/* =====================================================================
   REVIZE 8 — YENI ANASAYFA (.hp-* namespace)
   Mobil-öncelikli. Mevcut .home-* / kategori / ürün stillerini etkilemez.
   Yeşil + altın askeri kimlik korunur.
   ===================================================================== */
.hp {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 14px 32px;
  font-family: 'Vazirmatn', sans-serif;
  color: #2a2a2a;
}
.hp > *,
.hp-hero-grid,
.hp-quick-grid,
.hp-set-grid,
.hp-cat-grid,
.hp-section-headline,
.hp-trust-wrap .trust-bar,
.hp-social-proof,
.hp-sevk-form,
.hp-single-scroll,
.hp-seo-links,
.commerce-footer {
  min-width: 0;
  max-width: 100%;
}
/* ---------- 1. HERO ---------- */
.hp-hero {
  position: relative;
  margin: 6px 0 18px;
  padding: 18px 16px 20px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(36,56,22,.96) 0%, rgba(63,94,42,.94) 100%),
    radial-gradient(ellipse at top right, rgba(232,200,112,.15), transparent 60%);
  background-blend-mode: normal, overlay;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(0,0,0,.18);
}
.hp-hero-bar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.hp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}
.hp-hero-text { min-width: 0; }
.hp-hero-kicker {
  margin: 0 0 8px;
  color: rgba(232,200,112,.85);
  font-family: 'Cinzel', serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}
.hp-hero-title {
  margin: 0 0 10px;
  color: #fff;
  font-family: 'Cinzel', serif;
  font-size: clamp(1.45rem, 5.6vw, 2.05rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: .005em;
  text-shadow: 0 2px 8px rgba(0,0,0,.32);
}
.hp-hero-title .hp-accent {
  display: inline-block;
  color: var(--gold-light);
}
.hp-hero-sub {
  margin: 0 0 14px;
  color: rgba(255,255,255,.84);
  font-size: .94rem;
  line-height: 1.45;
  max-width: 56ch;
}
.hp-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hp-btn-primary,
.hp-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 min(220px, 100%);
  min-width: 0;
  max-width: 100%;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 10px;
  font-family: 'Vazirmatn', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .01em;
  cursor: pointer;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease, background .15s ease;
}
.hp-btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #1f2a10;
  border: 0;
  box-shadow: 0 4px 14px rgba(201,168,76,.32);
}
.hp-btn-ghost {
  background: rgba(255,255,255,.06);
  color: #fff;
  border: 1px solid rgba(232,200,112,.55);
}
.hp-hero-media {
  display: none;
}
.hp-hero-media img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(232,200,112,.28);
  box-shadow: 0 6px 18px rgba(0,0,0,.28);
}
/* ---------- 2. SECTION GENERİK ---------- */
.hp-section {
  margin: 22px 0;
}
.hp-section-title {
  margin: 0 0 10px;
  color: #2a3d1a;
  font-family: 'Cinzel', serif;
  font-size: clamp(1.05rem, 4vw, 1.35rem);
  font-weight: 800;
  letter-spacing: .01em;
  line-height: 1.2;
}
.hp-section-sub {
  margin: -4px 0 14px;
  color: #5b5b5b;
  font-size: .88rem;
  line-height: 1.4;
}
/* ---------- 2. HIZLI SEÇİM ---------- */
.hp-quick-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}
.hp-quick-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-areas:
    "tag name arrow"
    "tag sub  arrow";
  align-items: center;
  gap: 4px 14px;
  padding: 14px 16px;
  border: 1.5px solid #d8d2bf;
  border-radius: 12px;
  background: #fffdf6;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: border-color .15s ease, transform .12s ease, box-shadow .15s ease;
}
.hp-quick-tag {
  grid-area: tag;
  align-self: center;
  padding: 6px 10px;
  border-radius: 8px;
  background: linear-gradient(135deg, #2a4a18 0%, #3d6525 100%);
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  white-space: nowrap;
}
.hp-quick-name {
  grid-area: name;
  color: #2a3d1a;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.15;
}
.hp-quick-sub {
  grid-area: sub;
  color: #6b6b6b;
  font-size: .82rem;
  line-height: 1.3;
}
.hp-quick-arrow {
  grid-area: arrow;
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 700;
}
/* ---------- 3. HAZIR SETLER ---------- */
.hp-set-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}
.hp-set-card {
  position: relative;
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 14px;
  padding: 12px;
  border: 1.5px solid #e0ddd0;
  border-radius: 14px;
  background: #ffffff;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .15s ease, border-color .15s ease;
}
.hp-set-card:focus-visible {
  outline: 3px solid rgba(201,168,76,.75);
  outline-offset: 3px;
}
.hp-set-featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, #fffaea 0%, #ffffff 60%);
  box-shadow: 0 4px 16px rgba(201,168,76,.20);
}
.hp-set-ribbon {
  position: absolute;
  top: -8px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #1f2a10;
  font-family: 'Cinzel', serif;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: 1.6px;
  box-shadow: 0 2px 8px rgba(201,168,76,.42);
}
.hp-set-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(42,74,24,.88);
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: 1.2px;
}
.hp-set-img {
  width: 140px;
  height: 140px;
  border-radius: 10px;
  background: #f4f2e8;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-set-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hp-set-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hp-set-title {
  margin: 0 0 4px;
  color: #2a3d1a;
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.15;
}
.hp-set-sub {
  margin: 0 0 8px;
  color: #5b5b5b;
  font-size: .82rem;
  line-height: 1.4;
  /* clamp kaldırıldı: tam metin görünsün */
}
.hp-set-price {
  margin: 0 0 6px;
  color: #2a3d1a;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: .01em;
}
.hp-set-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 40px;
  margin-top: 4px;
  width: fit-content;
  padding: 0 4px;
  color: #6c5420;
  font-family: 'Cinzel', serif;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.hp-set-footer {
  margin-top: 10px;
  text-align: center;
}
.hp-link-more {
  background: transparent;
  border: 0;
  color: #2a3d1a;
  font-family: 'Vazirmatn', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  padding: 6px 10px;
}
/* ---------- 4. KATEGORİLER ---------- */
.hp-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.hp-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 8px 14px;
  min-height: 124px;
  border: 1.5px solid #e0ddd0;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,253,246,.98)),
    radial-gradient(circle at 50% 16%, rgba(201,168,76,.16), transparent 58%);
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s ease, border-color .15s ease, box-shadow .15s ease;
  overflow: hidden;
}
.hp-cat-media {
  position: relative;
  display: block;
  width: min(120px, 100%);
  height: 80px;
  margin: 0 auto;
  border-radius: 12px;
  background: linear-gradient(180deg, #f9f8f1 0%, #ece9dc 100%);
  overflow: hidden;
}
.hp-cat-media::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 4px;
  height: 10px;
  border-radius: 999px;
  background: rgba(42,74,24,.12);
  filter: blur(5px);
}
.hp-cat-media img {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 6px 7px rgba(29,35,19,.16));
  opacity: 0;
  transform: scale(.94);
  transition: opacity .55s ease, transform .55s ease;
  z-index: 1;
}
.hp-cat-media img.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}
@media (prefers-reduced-motion: reduce) {
  .hp-cat-media img { transition: none; }
}
.hp-cat-nm {
  color: #2a3d1a;
  font-size: .82rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}
/* ---------- 5. GERÇEK İHTİYAÇ ---------- */
.hp-need {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 22px 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff6dc 0%, #fffdf6 100%);
  border: 1px solid #ecd99a;
  border-left: 4px solid var(--gold);
}
.hp-need-icon {
  flex: 0 0 auto;
  font-size: 1.4rem;
  line-height: 1.3;
}
.hp-need-text {
  margin: 0;
  color: #4d4a40;
  font-size: .92rem;
  line-height: 1.5;
}
/* ---------- 6. TRUST ---------- */
.hp-trust-wrap {
  margin: 22px 0;
}
.hp-trust-wrap .trust-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 14px 12px;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: #2f3e22;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.25;
}
.trust-icon {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(42,74,24,.1);
  border: 1px solid rgba(42,74,24,.22);
}
.trust-transport-logo {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.trust-bar-cargo {
  color: var(--green-dark);
  font-weight: 900;
}
.trust-icon::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--green-dark);
  border-bottom: 2px solid var(--green-dark);
  transform: rotate(-45deg);
}
/* ---------- SATIŞ MOTORU BLOKLARI ---------- */
.hp-social-proof {
  display: grid;
  gap: 10px;
  margin: -4px 0 18px;
  padding: 14px 16px;
  border: 1px solid rgba(201,168,76,.34);
  border-radius: 12px;
  background: #fffdf6;
  box-shadow: 0 4px 14px rgba(42,74,24,.06);
}
.hp-proof-main {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.hp-proof-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 800;
}
.hp-proof-copy {
  color: #2a3d1a;
  font-size: .96rem;
  font-weight: 800;
  line-height: 1.25;
}
.hp-proof-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #5a5a50;
  font-size: .78rem;
}
.hp-proof-stats span {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(42,74,24,.06);
}
.hp-proof-stats strong { color: #2a3d1a; }
.hp-sevk-helper {
  margin: 0 0 22px;
  padding: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2a4a18 0%, #3d6525 100%);
  box-shadow: 0 5px 18px rgba(42,74,24,.18);
}
.hp-sevk-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: center;
}
.hp-sevk-form label {
  color: #fff;
  font-size: .95rem;
  font-weight: 800;
  line-height: 1.25;
}
.hp-sevk-form input {
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(232,200,112,.5);
  border-radius: 10px;
  background: rgba(255,255,255,.95);
  color: #1f2a10;
  font: inherit;
}
.hp-sevk-form button {
  min-height: 46px;
  padding: 10px 14px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1f2a10;
  font-size: .9rem;
  font-weight: 800;
}
.hp-section-headline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.hp-link-inline {
  display: none;
  white-space: nowrap;
}
.hp-single-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 2px 2px 14px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.hp-single-card {
  position: relative;
  flex: 0 0 212px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  border: 1px solid #e0ddd0;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,.05);
}
.hp-single-card:focus-visible {
  outline: 3px solid rgba(201,168,76,.75);
  outline-offset: 3px;
}
.hp-single-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(42,74,24,.9);
  color: var(--gold-light);
  font-size: .62rem;
  font-weight: 800;
}
.hp-single-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, #fbfaf3 0%, #f1ede0 100%);
  border-bottom: 1px solid rgba(42,74,24,.06);
}
.hp-single-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
.hp-single-body {
  display: grid;
  gap: 3px;
  padding: 10px 12px 0;
}
.hp-single-body h3 {
  margin: 0;
  color: #2a3d1a;
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.2;
}
.hp-single-body p {
  min-height: 34px;
  margin: 0;
  color: #626258;
  font-size: .74rem;
  line-height: 1.32;
}
.hp-single-body strong {
  color: #2a3d1a;
  font-family: 'Cinzel', serif;
  font-size: 1.02rem;
}
.hp-single-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding: 10px 12px 12px;
}
.hp-single-actions button {
  min-height: 38px;
  padding: 8px 10px;
  border: 0;
  border-radius: 8px;
  background: var(--green-dark);
  color: #fff;
  font-size: .76rem;
  font-weight: 800;
}
.hp-single-actions span {
  color: #6c5420;
  font-size: .72rem;
  font-weight: 800;
  white-space: nowrap;
}
.hp-seo-links {
  margin: 26px 0 0;
  padding: 16px;
  border: 1px solid #e0ddd0;
  border-radius: 12px;
  background: #fffdf6;
}
.hp-seo-links .hp-section-title {
  margin-bottom: 12px;
  font-size: 1.05rem;
}
.hp-seo-links div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hp-seo-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(42,74,24,.07);
  color: #2a3d1a;
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
}
/* ---------- 7. SSS ---------- */
.hp-faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hp-faq-item {
  border: 1px solid #e0ddd0;
  border-radius: 10px;
  background: #fffdf6;
  overflow: hidden;
}
.hp-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 44px 14px 14px;
  position: relative;
  color: #2a3d1a;
  font-size: .94rem;
  font-weight: 700;
  line-height: 1.3;
}
.hp-faq-item summary::-webkit-details-marker { display: none; }
.hp-faq-item summary::after {
  content: '+';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px; height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: #1f2a10;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
}
.hp-faq-item[open] summary::after { content: '−'; }
.hp-faq-a {
  padding: 0 14px 14px;
  color: #4d4a40;
  font-size: .88rem;
  line-height: 1.55;
}
/* ---------- DESKTOP ---------- */
@media (min-width: 769px) {
  .hp { padding: 20px 24px 48px; }
  .hp-hero {
    margin: 12px 0 28px;
    padding: 32px 36px 36px;
    border-radius: 20px;
  }
  .hp-hero-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 32px;
  }
  .hp-hero-title { font-size: clamp(2rem, 3.6vw, 2.8rem); }
  .hp-hero-sub { font-size: 1.05rem; }
  .hp-btn-primary, .hp-btn-ghost { flex: 0 0 auto; min-width: 200px; }
  .hp-hero-media { display: block; }
  .hp-section { margin: 36px 0; }
  .hp-section-title { font-size: 1.55rem; }
  .hp-section-sub { font-size: .98rem; }
  .hp-quick-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hp-quick-card { padding: 18px 18px; }
  .hp-quick-name { font-size: 1.08rem; }
  .hp-quick-sub { font-size: .86rem; }
  .hp-set-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
  .hp-set-card {
    grid-template-columns: 1fr;
    grid-template-rows: 260px auto;
    padding: 0;
    overflow: hidden;
  }
  .hp-set-img {
    width: 100%;
    height: 260px;
    border-radius: 0;
  }
  .hp-set-img img {
    object-fit: contain;
    padding: 8px;
    background: linear-gradient(180deg, #fbfaf3 0%, #f1ede0 100%);
  }
  .hp-set-info {
    padding: 14px 18px 16px;
    gap: 2px;
  }
  .hp-set-title { font-size: 1.18rem; margin: 0 0 4px; }
  .hp-set-sub {
    font-size: .9rem;
    margin: 0 0 10px;
    color: #4a4a4a;
    line-height: 1.45;
  }
  .hp-set-price { font-size: 1.3rem; margin: 0 0 8px; }
  .hp-set-cta { margin-top: 2px; min-height: 36px; }
  .hp-set-tag { top: 12px; right: 12px; }
  .hp-set-ribbon { top: -10px; left: 16px; font-size: .68rem; padding: 5px 12px; }
  .hp-set-featured { transform: scale(1.02); }
  .hp-cat-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .hp-cat-card { min-height: 168px; padding: 18px 12px 16px; }
  .hp-cat-media { width: 150px; height: 100px; }
  .hp-cat-media img { width: 92px; height: 92px; }
  .hp-cat-media img.is-active { transform: scale(1); }
  .hp-cat-nm { font-size: .92rem; }
  .hp-need { padding: 18px 22px; }
  .hp-need-text { font-size: 1rem; }
  .hp-trust-wrap .trust-bar { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .hp-social-proof {
    grid-template-columns: 1.05fr 1.6fr;
    align-items: center;
    padding: 16px 18px;
  }
  .hp-proof-stats {
    justify-content: flex-end;
    font-size: .84rem;
  }
  .hp-sevk-form {
    grid-template-columns: auto minmax(190px, 260px) auto;
  }
  .hp-sevk-form label {
    font-size: 1.05rem;
  }
  .hp-link-inline {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
  }
  .hp-single-scroll {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible;
  }
  .hp-single-card {
    flex-basis: auto;
  }
  .hp-seo-links {
    padding: 18px 20px;
  }
  .hp-faq-item summary { padding: 16px 50px 16px 18px; font-size: 1rem; }
  .hp-faq-a { padding: 0 18px 18px; font-size: .94rem; }
  .commerce-footer {
    grid-template-columns: 1fr 1.1fr 1.35fr;
  }
  .commerce-map iframe {
    min-height: 280px;
  }
}
/* =====================================================================
   REVIZE 12 — SEO/ARAÇ SAYFALARI
   set-onerisi, sulus-sayar, askere-giderken-alinacaklar,
   bedelli-asker-canta-listesi, acemi-birligi-ihtiyac-listesi
   - Modern, kart tabanlı, mobile-first
   - JS / hesaplama dokunulmaz; sadece CSS sunum
   ===================================================================== */
/* ---------- ORTAK SEO PAGE LAYOUT ---------- */
.seo-page,
.quiz-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #f7f5ed 0%, #fbfaf3 100%);
  color: #2a2a2a;
  font-family: 'Vazirmatn', sans-serif;
  line-height: 1.6;
}
.seo-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #1f3010 0%, #2a4a18 100%);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
}
.seo-nav-logo {
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
}
.seo-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
}
.seo-nav-links a {
  color: rgba(255,255,255,.86);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 6px;
  transition: background .15s ease, color .15s ease;
}
.seo-main,
.quiz-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 22px 16px 48px;
}
.seo-hero,
.quiz-hero {
  text-align: center;
  padding: 26px 18px 22px;
  margin-bottom: 22px;
  background: linear-gradient(180deg, #fff 0%, #fbfaf3 100%);
  border: 1px solid #e6e3d4;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(29,35,19,.05);
}
.seo-hero h1,
.quiz-hero h1 {
  margin: 0 0 10px;
  color: #1f3010;
  font-family: 'Cinzel', serif;
  font-size: clamp(1.4rem, 5.4vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .005em;
}
.seo-hero .seo-hero-sub,
.quiz-hero p {
  margin: 0 auto 14px;
  max-width: 56ch;
  color: #4d4a40;
  font-size: .98rem;
  line-height: 1.55;
}
.seo-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  padding: 12px 22px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #1f2a10;
  font-family: 'Vazirmatn', sans-serif;
  font-size: .95rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(201,168,76,.3);
  transition: transform .12s ease, box-shadow .15s ease;
  min-height: 46px;
}
.seo-tool-box {
  background: #fff;
  border: 1px solid #e6e3d4;
  border-radius: 16px;
  padding: 22px 18px;
  margin-bottom: 22px;
  box-shadow: 0 4px 16px rgba(29,35,19,.06);
}
.seo-article {
  background: #fff;
  border: 1px solid #e6e3d4;
  border-radius: 16px;
  padding: 22px 22px 26px;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(29,35,19,.04);
}
.seo-article h2 {
  margin: 22px 0 10px;
  color: #2a3d1a;
  font-family: 'Cinzel', serif;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: .005em;
}
.seo-article h2:first-child { margin-top: 0; }
.seo-article h3 {
  margin: 16px 0 8px;
  color: #2a3d1a;
  font-family: 'Vazirmatn', sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
.seo-article p {
  margin: 0 0 12px;
  color: #3d3d33;
  font-size: .94rem;
  line-height: 1.7;
}
.seo-article a {
  color: #6c5420;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.seo-article ul,
.seo-article ol {
  margin: 0 0 14px;
  padding-left: 22px;
}
.seo-article li {
  margin: 6px 0;
  font-size: .94rem;
  color: #3d3d33;
  line-height: 1.6;
}
.seo-article strong { color: #1f3010; }
.seo-links {
  background: #fff;
  border: 1px solid #e6e3d4;
  border-radius: 14px;
  padding: 16px 18px;
  margin-top: 18px;
}
.seo-links h3 {
  margin: 0 0 10px;
  color: #2a3d1a;
  font-family: 'Cinzel', serif;
  font-size: .98rem;
  font-weight: 800;
}
.seo-links a {
  display: inline-block;
  margin: 4px 8px 4px 0;
  padding: 6px 12px;
  background: #f7f5ed;
  border: 1px solid #e0ddd0;
  border-radius: 999px;
  color: #2a3d1a;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s, border-color .15s;
}
.seo-footer-mini {
  text-align: center;
  padding: 18px 16px 24px;
  color: #777;
  font-size: .76rem;
}
/* ---------- SÜLÜS SAYAR ---------- */
.silus-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 420px;
  margin: 0 auto;
}
.silus-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 10px;
}
.silus-input {
  padding: 14px 12px;
  border: 1.5px solid #d8d2bf;
  border-radius: 10px;
  background: #fff;
  font-family: 'Vazirmatn', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #2a3d1a;
  text-align: center;
  min-height: 50px;
  transition: border-color .15s, box-shadow .15s;
}
.silus-input::placeholder {
  color: #999;
  font-weight: 400;
}
.silus-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.18);
}
.silus-btn {
  padding: 14px 20px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #2a4a18 0%, #3d6525 100%);
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .04em;
  cursor: pointer;
  min-height: 52px;
  box-shadow: 0 4px 14px rgba(42,74,24,.25);
  transition: transform .12s, box-shadow .15s;
}
.silus-result-box {
  margin: 16px auto 0;
  padding: 22px 18px;
  border-radius: 14px;
  text-align: center;
  background: linear-gradient(135deg, #fff 0%, #fbfaf3 100%);
  border: 2px solid #e6e3d4;
  box-shadow: 0 6px 20px rgba(29,35,19,.08);
}
.silus-result-box.silus-past { border-color: #c84d3a; background: linear-gradient(135deg, #fff5f3 0%, #ffeae6 100%); }
.silus-result-box.silus-urgent { border-color: #e08a2a; background: linear-gradient(135deg, #fff8ec 0%, #ffeed3 100%); }
.silus-result-box.silus-soon { border-color: var(--gold); background: linear-gradient(135deg, #fffaea 0%, #fff5d8 100%); }
.silus-result-box.silus-medium { border-color: #6c8c4a; background: linear-gradient(135deg, #f5f9ee 0%, #ebf2dc 100%); }
.silus-result-box.silus-far { border-color: #4d8c5a; background: linear-gradient(135deg, #effaf2 0%, #d9f0e0 100%); }
.silus-days {
  margin: 0 0 8px;
  color: #1f3010;
  font-family: 'Cinzel', serif;
  font-size: clamp(2.4rem, 9vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
}
.silus-msg {
  margin: 0;
  color: #3d3d33;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}
/* ---------- QUIZ (SET ÖNERİSİ) ---------- */
.quiz-sevk-note {
  margin: 0 0 20px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #fff8ec 0%, #fff3da 100%);
  border: 1px solid #ecd99a;
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  color: #4d4a40;
  font-size: .92rem;
  line-height: 1.5;
}
.quiz-sevk-note strong { color: #6c5420; }
.quiz-progress {
  position: relative;
  width: 100%;
  height: 8px;
  background: #ece9dc;
  border-radius: 999px;
  overflow: hidden;
  margin: 0 0 22px;
}
.quiz-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 999px;
  transition: width .35s cubic-bezier(.65,0,.35,1);
  box-shadow: 0 0 8px rgba(201,168,76,.45);
}
/* Adımlar — yalnızca .active görünür */
.quiz-step {
  display: none;
  background: #fff;
  border: 1px solid #e6e3d4;
  border-radius: 16px;
  padding: 24px 22px;
  margin: 0 0 16px;
  box-shadow: 0 6px 20px rgba(29,35,19,.06);
  animation: quizStepIn .35s ease both;
}
.quiz-step.active { display: block; }
@keyframes quizStepIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.quiz-step h2 {
  margin: 0 0 6px;
  color: #1f3010;
  font-family: 'Cinzel', serif;
  font-size: clamp(1.1rem, 4vw, 1.32rem);
  font-weight: 800;
  line-height: 1.25;
}
.quiz-step h2::before {
  content: attr(data-step-num);
}
.quiz-sub {
  margin: 0 0 18px;
  color: #6b6b6b;
  font-size: .9rem;
  line-height: 1.5;
}
/* Adım sayacı (1/4 vb.) */
.quiz-step::before {
  content: "Adım " attr(data-step) " / 4";
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 10px;
  background: #f4f2e8;
  border: 1px solid #e0ddd0;
  border-radius: 999px;
  color: #6c5420;
  font-family: 'Cinzel', serif;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
/* Seçenekler */
.quiz-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0 0 18px;
}
.quiz-opt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 4px;
  padding: 16px 18px;
  background: #fffdf6;
  border: 2px solid #e0ddd0;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  transition: border-color .15s, background .15s, transform .12s, box-shadow .15s;
  min-height: 60px;
  position: relative;
}
.quiz-opt.selected {
  border-color: #2a4a18;
  background: linear-gradient(135deg, #2a4a18 0%, #3d6525 100%);
  box-shadow: 0 6px 20px rgba(42,74,24,.32);
}
.quiz-opt.selected .opt-label,
.quiz-opt.selected .opt-hint {
  color: #fff;
}
.quiz-opt.selected::after {
  content: "✓";
  position: absolute;
  top: 12px;
  right: 14px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: #1f2a10;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(201,168,76,.5);
}
.quiz-opt .opt-label {
  color: #1f3010;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}
.quiz-opt .opt-hint {
  color: #6b6b6b;
  font-size: .82rem;
  line-height: 1.4;
}
/* Adım navigasyonu */
.quiz-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 4px;
}
.quiz-btn {
  flex: 0 1 auto;
  padding: 12px 20px;
  border-radius: 10px;
  border: 0;
  font-family: 'Vazirmatn', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  cursor: pointer;
  min-height: 46px;
  transition: transform .12s, box-shadow .15s, background .15s;
}
.quiz-btn-back {
  background: transparent;
  color: #6b6b6b;
  border: 1.5px solid #e0ddd0;
}
.quiz-btn-next {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #1f2a10;
  box-shadow: 0 4px 14px rgba(201,168,76,.3);
}
.quiz-btn-next:disabled {
  opacity: .42;
  cursor: not-allowed;
  box-shadow: none;
}
/* Sonuç kartı */
.quiz-result {
  display: none;
  background: linear-gradient(180deg, #fffaea 0%, #ffffff 60%);
  border: 2px solid var(--gold);
  border-radius: 16px;
  padding: 26px 22px;
  box-shadow: 0 8px 28px rgba(201,168,76,.22);
  animation: quizStepIn .4s ease both;
}
.quiz-result.active { display: block; }
.result-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2a4a18 0%, #3d6525 100%);
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  margin-bottom: 12px;
}
.quiz-result h2 {
  margin: 0 0 8px;
  color: #1f3010;
  font-family: 'Cinzel', serif;
  font-size: clamp(1.4rem, 5vw, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
}
.result-price {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 16px;
  border-radius: 10px;
  background: #1f3010;
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: .01em;
}
.result-desc {
  margin: 0 0 14px;
  color: #3d3d33;
  font-size: .95rem;
  line-height: 1.6;
}
.quiz-result ul {
  margin: 0 0 18px;
  padding-left: 0;
  list-style: none;
}
.quiz-result li {
  position: relative;
  padding: 6px 0 6px 26px;
  color: #3d3d33;
  font-size: .92rem;
  line-height: 1.5;
  border-bottom: 1px dashed #e6e3d4;
}
.quiz-result li:last-child { border-bottom: 0; }
.quiz-result li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201,168,76,.16);
  color: #6c5420;
  font-size: .72rem;
  font-weight: 800;
}
.result-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 4px;
}
.result-actions .btn-primary,
.result-actions .btn-wa,
.result-actions .btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-family: 'Vazirmatn', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  min-height: 50px;
  transition: transform .12s, box-shadow .15s;
}
.result-actions .btn-primary {
  background: linear-gradient(135deg, #2a4a18 0%, #3d6525 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(42,74,24,.28);
}
.result-actions .btn-wa {
  background: #1f8f4d;
  color: #fff;
  box-shadow: 0 4px 14px rgba(31,143,77,.28);
}
.result-actions .btn-secondary {
  background: transparent;
  color: #6b6b6b;
  border: 1.5px solid #e0ddd0;
}
/* ---------- DESKTOP ---------- */
@media (min-width: 720px) {
  .seo-main,
  .quiz-container {
    padding: 28px 22px 56px;
  }
  .seo-hero,
  .quiz-hero {
    padding: 36px 28px 30px;
  }
  .quiz-step {
    padding: 28px 28px 24px;
  }
  .quiz-options {
    grid-template-columns: 1fr 1fr;
  }
  .quiz-step[data-step="2"] .quiz-options,
  .quiz-step[data-step="4"] .quiz-options {
    /* 3 seçenekli adımlarda 1 sütun (daha geniş okunaklı kartlar) */
    grid-template-columns: 1fr;
  }
  .result-actions {
    grid-template-columns: 1.4fr 1.4fr 1fr;
  }
}
/* ===== REVIZE 15 FINAL OVERRIDES: sığan kategori + kompakt kart ===== */
.category-section > .products-grid {
  gap: 18px;
  padding: 16px 20px 24px;
  align-content: start;
}
.military-card {
  height: var(--product-card-height);
  border-radius: 12px;
}
.military-card .product-img-wrap {
  height: var(--product-image-height);
  flex: 0 0 var(--product-image-height);
}
.military-card .product-img-wrap img {
  padding: 16px 16px 10px;
  z-index: 1;
}
.compat-badge {
  position: absolute;
  top: 8px;
  left: 10px;
  z-index: 4;
  max-width: calc(100% - 20px);
  padding: 4px 9px;
  font-size: .56rem;
  box-shadow: 0 3px 10px rgba(0,0,0,.18);
}
.slider-dots { z-index: 5; }
.military-card .product-body {
  padding: 10px 12px 12px;
  gap: 6px;
}
.military-card .product-name {
  min-height: 38px;
  max-height: 38px;
  font-size: .8rem;
  line-height: 1.22;
}
.product-desc,
.product-category .product-desc {
  min-height: 34px;
  max-height: 34px;
  margin-top: -2px;
  font-size: .68rem;
  line-height: 1.25;
}
.product-micro,
.product-features {
  min-height: 20px;
  font-size: .58rem;
  line-height: 1.2;
}
.price-grid { gap: 8px; }
.price-box {
  min-height: 54px;
  border-radius: 7px;
}
.price-box span,
.product-category .price-box span,
.product-category .price-box-set span {
  font-size: .56rem;
}
.price-box strong,
.product-category .price-box strong {
  font-size: 1.12rem;
}
.price-box em {
  right: 6px;
  bottom: -6px;
  font-size: .56rem;
}
.add-choice {
  gap: 8px;
  margin-top: 8px;
}
.military-card .btn-add,
.product-category .military-card .btn-add {
  min-height: 40px;
  padding: 8px 6px;
  font-size: .72rem;
  outline-offset: -6px;
}
.military-card .btn-add-single {
  margin-top: 6px;
}
.product-trust {
  display: none;
}
.package-card {
  height: 540px;
}
.package-card .product-img-wrap {
  height: 190px;
  flex-basis: 190px;
}
.package-card .product-body {
  padding: 9px 12px 11px;
  gap: 5px;
}
.package-card .product-desc,
.package-category .product-desc {
  min-height: 38px;
  max-height: 38px;
  overflow: hidden;
  font-size: .66rem;
  line-height: 1.25;
  gap: 2px;
}
.package-card .product-note,
.package-category .product-note {
  min-height: 28px;
  max-height: 28px;
  padding: 6px 9px;
  font-size: .66rem;
  line-height: 1.25;
  -webkit-line-clamp: 1;
}
.package-card .product-features {
  min-height: 20px;
  font-size: .56rem;
}
.package-card .product-desc span:nth-child(3) {
  display: none;
}
.package-card .price-box {
  min-height: 52px;
}
.package-card .btn-pkg-info,
.package-card .btn-add-single,
.package-category .btn-pkg-info,
.package-category .military-card .btn-add-single {
  min-height: 38px;
}
@media (min-width: 1120px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, var(--product-card-width)));
    gap: 20px;
    padding: 16px 20px 24px;
  }
}
@media (min-width: 1500px) {
  :root {
    --product-card-width: 300px;
    --product-card-height: 500px;
    --product-image-height: 205px;
  }
  .package-card {
    height: 520px;
  }
  .package-card .product-img-wrap {
    height: 180px;
    flex-basis: 180px;
  }
}
@media (max-width: 760px) {
  :root {
    --product-card-width: 1fr;
    --product-card-height: 342px;
    --product-image-height: 126px;
  }
  .category-section > .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    gap: 8px;
    padding: 10px 8px 88px;
  }
  .military-card {
    height: var(--product-card-height);
    min-width: 0;
    border-radius: 10px;
  }
  .package-card {
    height: 366px;
    min-width: 0;
    border-radius: 10px;
  }
  .military-card .product-img-wrap {
    height: var(--product-image-height);
    flex-basis: var(--product-image-height);
  }
  .package-card .product-img-wrap {
    height: 116px;
    flex-basis: 116px;
  }
  .military-card .product-img-wrap img {
    padding: 9px 9px 6px;
  }
  .compat-badge {
    top: 6px;
    left: 6px;
    max-width: calc(100% - 12px);
    padding: 3px 6px;
    border-radius: 9px;
    font-size: .46rem;
    line-height: 1.1;
    letter-spacing: .15px;
  }
  .slider-dots {
    bottom: 5px;
  }
  .slider-dot {
    width: 6px;
    height: 6px;
  }
  .military-card .product-body,
  .package-card .product-body {
    padding: 7px 7px 8px;
    gap: 4px;
  }
  .military-card .product-name {
    min-height: 34px;
    max-height: 34px;
    overflow: hidden;
    font-size: .66rem;
    line-height: 1.15;
  }
  .product-name-split .product-name-detail {
    font-size: .6rem;
    line-height: 1.15;
  }
  .product-category .product-desc,
  .product-desc,
  .package-category .product-desc,
  .package-card .product-desc {
    min-height: 26px;
    max-height: 26px;
    overflow: hidden;
    font-size: .55rem;
    line-height: 1.2;
    gap: 1px;
  }
  .product-desc span,
  .product-category .product-desc span,
  .package-category .product-desc span {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .product-desc span:nth-child(n+2),
  .package-category .product-desc span:nth-child(n+2) {
    display: none;
  }
  .product-micro,
  .product-features {
    min-height: 16px;
    font-size: .49rem;
  }
  .price-grid {
    gap: 5px;
  }
  .price-box {
    min-height: 44px;
    padding: 5px 3px;
    border-radius: 6px;
  }
  .price-box span,
  .product-category .price-box span,
  .product-category .price-box-set span {
    font-size: .45rem;
    line-height: 1.05;
  }
  .price-box strong,
  .product-category .price-box strong {
    font-size: .9rem;
    line-height: 1.05;
  }
  .price-box em {
    right: 4px;
    bottom: -5px;
    padding: 2px 5px;
    font-size: .45rem;
  }
  .add-choice {
    gap: 5px;
    margin-top: 6px;
  }
  .military-card .btn-add,
  .product-category .military-card .btn-add,
  .package-category .military-card .btn-add-single {
    min-height: 34px;
    padding: 6px 3px;
    border-radius: 7px;
    font-size: .6rem;
    line-height: 1.1;
    outline-offset: -5px;
  }
  .package-card .product-note,
  .package-category .product-note {
    display: none;
  }
  .package-card {
    height: 366px;
  }
  .package-card .btn-pkg-info,
  .package-category .btn-pkg-info {
    min-height: 32px;
    padding: 6px 4px;
    font-size: .58rem;
  }
}
/* ===== REVIZE 15 ORAN RESTORE: revize-7 kare gorsel dili ===== */
.product-category .military-card,
.package-category .military-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.product-category .military-card .product-img-wrap,
.package-category .military-card .product-img-wrap,
.military-card .product-img-wrap {
  aspect-ratio: 1 / 1;
  height: auto !important;
  flex: 0 0 auto !important;
  padding: 0;
  background: #fff;
  border-bottom: 1px solid #f1eee4;
}
.product-category .military-card .product-img-wrap img,
.package-category .military-card .product-img-wrap img,
.military-card .product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  padding: 10px;
}
.product-category .military-card .product-body,
.package-category .military-card .product-body,
.military-card .product-body {
  flex: 1 1 auto;
}
@media (min-width: 1120px) {
  :root {
    --product-card-width: 320px;
    --product-card-height: 552px;
  }
  .category-section > .products-grid {
    grid-template-columns: repeat(3, var(--product-card-width));
    width: min(100%, 1080px);
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    gap: 20px;
    padding: 16px 20px 28px;
  }
  .product-category .military-card,
  .military-card {
    height: var(--product-card-height);
  }
  .package-category .military-card,
  .package-card {
    height: 640px;
  }
  .package-card .product-desc,
  .package-category .product-desc {
    min-height: 30px;
    max-height: 30px;
  }
  .package-card .product-note,
  .package-category .product-note {
    min-height: 28px;
    max-height: 28px;
  }
  .military-card .product-name {
    min-height: 42px;
    max-height: 42px;
    font-size: .82rem;
  }
  .product-desc,
  .product-category .product-desc {
    min-height: 34px;
    max-height: 34px;
  }
}
@media (min-width: 761px) and (max-width: 1119px) {
  :root {
    --product-card-height: 540px;
  }
  .category-section > .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    gap: 14px;
    padding: 14px 14px 26px;
  }
  .product-category .military-card,
  .military-card {
    height: 548px;
  }
  .package-category .military-card,
  .package-card {
    height: 560px;
  }
  .military-card .product-name {
    min-height: 40px;
    max-height: 40px;
    font-size: .76rem;
  }
  .military-card .product-img-wrap img {
    padding: 9px;
  }
}
@media (max-width: 760px) {
  :root {
    --product-card-height: 410px;
  }
  .category-section > .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 430px;
    gap: 8px;
    padding: 10px 8px 88px;
  }
  .product-category .military-card,
  .military-card {
    height: var(--product-card-height);
  }
  .package-category .military-card,
  .package-card {
    height: 445px;
  }
  .military-card .product-img-wrap img {
    padding: 7px;
  }
  .compat-badge {
    top: 6px;
    left: 6px;
    z-index: 8;
  }
  .military-card .product-body,
  .package-card .product-body {
    padding: 8px 8px 9px;
    gap: 5px;
  }
  .military-card .product-name {
    min-height: 38px;
    max-height: 38px;
    font-size: .66rem;
  }
  .product-category .product-desc,
  .product-desc {
    min-height: 30px;
    max-height: 30px;
  }
  .product-micro,
  .product-features {
    min-height: 16px;
  }
  .package-card .product-note,
  .package-category .product-note {
    display: none;
  }
}
/* ===== REVIZE 15 SINGLE ACTION MATCH FINAL ===== */
:root {
  --single-action-height-final: 40px;
  --single-action-padding-final: 8px 6px;
  --single-action-font-final: .72rem;
  --single-action-radius-final: 7px;
}
.product-category .add-choice-single,
.package-category .add-choice-single {
  grid-template-columns: 1fr !important;
}
.product-category .add-choice-single .btn-add-one,
.package-category .military-card .btn-add-single,
.package-card .btn-add-single {
  width: 100% !important;
  height: var(--single-action-height-final) !important;
  min-height: var(--single-action-height-final) !important;
  padding: var(--single-action-padding-final) !important;
  border-radius: var(--single-action-radius-final) !important;
  font-size: var(--single-action-font-final) !important;
  line-height: 1.1 !important;
}
@media (max-width: 760px) {
  :root {
    --single-action-height-final: 34px;
    --single-action-padding-final: 6px 3px;
    --single-action-font-final: .6rem;
  }
}
/* ===== REVIZE 15 HOME SET RATIO LAST WORD ===== */
@media (min-width: 769px) {
  .hp-set-card {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto !important;
    padding: 0 !important;
    overflow: hidden;
  }
  .hp-set-img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 0 !important;
    border-bottom: 1px solid #f1eee4;
    background: #fff;
  }
  .hp-set-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    padding: 10px !important;
    background: #fff !important;
  }
}
@media (max-width: 768px) {
  .hp-set-img img {
    object-fit: contain !important;
    padding: 6px !important;
    background: #fff !important;
  }
}
/* ===== VISUAL AUDIT EOF OVERRIDES ===== */
.product-card,
.military-card,
.package-card {
  box-shadow: 0 4px 12px rgba(0,0,0,.08) !important;
}
.slider-dots {
  gap: 6px !important;
}
.slider-dot {
  position: relative;
  width: 16px !important;
  height: 16px !important;
  display: inline-grid;
  place-items: center;
  border: 0 !important;
  background: transparent !important;
  -webkit-tap-highlight-color: transparent;
}
.slider-dot::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.68);
}
.slider-dot.active {
  transform: none !important;
}
.slider-dot.active::after {
  background: var(--green-dark);
  border-color: rgba(42,74,24,.65);
  box-shadow: 0 0 0 2px rgba(201,168,76,.22);
}
/* ===== PRODUCT CARD COPY DENSITY ===== */
.product-category .military-card .product-body,
.military-card .product-body {
  gap: 5px !important;
  justify-content: flex-start;
}
.product-category .military-card .product-name,
.military-card .product-name {
  flex: 0 0 auto !important;
  min-height: 28px !important;
  max-height: 34px !important;
  margin-bottom: 0 !important;
  font-size: .82rem !important;
  line-height: 1.2 !important;
}
.product-name-split .product-name-main,
.product-name-split .product-name-detail {
  display: inline !important;
}
.product-name-split .product-name-detail::before {
  content: " ";
}
.product-category .product-desc,
.product-desc {
  min-height: 30px !important;
  max-height: 34px !important;
  margin-top: 0 !important;
}
.product-micro,
.product-features {
  min-height: 18px !important;
}
.product-trust {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 18px !important;
  margin-top: auto !important;
  color: #39452d;
  font-family: 'Vazirmatn', sans-serif;
  font-size: .64rem !important;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}
@media (max-width: 760px) {
  .product-category .military-card .product-name,
  .military-card .product-name {
    min-height: 24px !important;
    max-height: 30px !important;
    font-size: .66rem !important;
  }
  .product-category .product-desc,
  .product-desc {
    min-height: 26px !important;
    max-height: 30px !important;
  }
  .product-trust {
    font-size: .54rem !important;
  }
}
@media (max-width: 768px) {
  .hp-set-ad-stage {
    width: min(72vw, 280px) !important;
  }
}
@media (max-width: 480px) {
  .hp-hero {
    margin: 4px 0 14px !important;
    padding: 12px 12px 14px !important;
  }
  .hp-hero-grid {
    gap: 10px !important;
  }
  .hp-hero-logo {
    width: 58px !important;
    height: 58px !important;
  }
  .hp-hero-title {
    font-size: clamp(1.3rem, 6vw, 1.62rem) !important;
    margin-bottom: 8px !important;
  }
  .hp-hero-sub {
    margin-bottom: 10px !important;
    font-size: .86rem !important;
    line-height: 1.36 !important;
  }
  .hp-set-ad-stage {
    width: min(58vw, 214px) !important;
  }
  .hp-set-ad-slide img {
    padding: 7px !important;
  }
  .hp-set-ad-caption {
    left: 7px !important;
    right: 7px !important;
    bottom: 7px !important;
    padding: 6px 7px !important;
  }
  .hp-set-ad-caption strong {
    font-size: .66rem !important;
  }
  .hp-set-ad-caption span {
    font-size: .78rem !important;
  }
  .hp-set-ad-tag {
    top: 7px !important;
    right: 7px !important;
    font-size: .56rem !important;
    padding: 4px 7px !important;
  }
}
/* =====================================================================
   KVKK / GDPR CONSENT BANNER
   ===================================================================== */
#consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;                           /* cart-toggle (950) üzerinde, modal (1100+) altında */
  background: linear-gradient(180deg, rgba(255, 251, 240, 0.98) 0%, rgba(247, 240, 220, 0.98) 100%);
  border-top: 2px solid var(--gold);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.18);
  padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
  font-family: 'Vazirmatn', sans-serif;
  color: #2a2a2a;
  transform: translateY(105%);
  transition: transform 0.32s cubic-bezier(.4, 0, .2, 1);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
#consent-banner.visible {
  transform: translateY(0);
}
.consent-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}
.consent-text strong {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.92rem;
  color: var(--green-dark);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}
.consent-text p {
  font-size: 0.78rem;
  line-height: 1.5;
  color: #4a4a4a;
  margin: 0;
}
.consent-text p a {
  color: var(--green-dark);
  text-decoration: underline;
  font-weight: 600;
}
.consent-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: stretch;
}
.consent-btn {
  flex: 1 1 auto;
  min-width: 90px;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: 'Vazirmatn', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  -webkit-tap-highlight-color: transparent;
  border: 1.5px solid transparent;
}
.consent-btn:active {
  transform: scale(0.97);
}
.consent-reject {
  background: #fff;
  color: #6a6a6a;
  border-color: #d0d0d0;
}
.consent-details {
  background: rgba(127, 173, 95, 0.08);
  color: var(--green-dark);
  border-color: rgba(127, 173, 95, 0.3);
}
.consent-accept {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 2px 8px rgba(42, 74, 24, 0.2);
}
@media (min-width: 760px) {
  .consent-inner {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
  .consent-text {
    flex: 1 1 auto;
    min-width: 0;
  }
  .consent-actions {
    flex: 0 0 auto;
    flex-wrap: nowrap;
  }
  .consent-btn {
    flex: 0 0 auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  #consent-banner { transition: none; }
  .consent-btn { transition: none; }
}
/* =====================================================================
   HOVER STATE CONSOLIDATION (mobile sticky-hover fix)
   Tüm :hover kuralları sadece hover yetenekli cihazlarda (fare/trackpad)
   uygulanır. Dokunmatik cihazlarda hover state'i sticky kalmaz.
   ===================================================================== */
@media (hover: hover) and (pointer: fine) {
  .home-section .hnav-btn:hover,
  .home-section .hnav-btn:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(246,216,124,.82) !important;
    background: linear-gradient(135deg, #d7b54b, #f4db7f) !important;
    color: #203717 !important;
    box-shadow: 0 0 0 3px rgba(232,200,112,.12), 0 10px 20px rgba(0,0,0,.16) !important;
  }
  .home-section .hn-cat-group a:hover {
    background: rgba(232,200,112,.12);
    color: #fff8df;
  }
  .home-section .hn-help-item:hover {
    border-color: rgba(232,200,112,.55);
    background: rgba(232,200,112,.1);
  }
  .legal-quick-links a:hover {
    border-color: rgba(201,168,76,.72);
    background: rgba(232,200,112,.16);
  }
  .home-section .hnav-btn:hover,
  .home-section .hnav-btn:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(255,236,156,.92);
    background: linear-gradient(135deg, #d7b54b 0%, #f4db7f 100%);
    color: #203717;
    box-shadow:
      0 0 0 3px rgba(232,200,112,.14),
      0 12px 24px rgba(0,0,0,.18),
      inset 0 1px 0 rgba(255,255,255,.35);
  }
  .home-section .hn-cat-item:hover,
  .home-section .hn-drop-item:hover {
    transform: translateY(-1px);
    border-color: rgba(246,216,124,.55);
    background: rgba(232,200,112,.12);
    color: #fff8df;
  }
  .home-section .hnav-contact:hover,
  .home-section .hnav-contact:focus-visible,
  .home-section .hnav-whatsapp:hover,
  .home-section .hnav-whatsapp:focus-visible {
    background: linear-gradient(135deg, #25d366 0%, #74eca1 100%);
    color: #0f2a16;
    border-color: rgba(214,255,224,.9);
  }
  .founder-story-actions button:hover {
    transform: translateY(-1px);
    box-shadow:
      0 14px 28px rgba(212,175,55,.18),
      0 0 0 3px rgba(232,200,112,.1);
  }
  .brands-card:hover {
    transform: translateY(-2px);
    border-color: rgba(212,175,55,.72);
    box-shadow:
      0 12px 28px rgba(45,61,31,.11),
      0 0 0 3px rgba(212,175,55,.08),
      inset 0 1px 0 rgba(255,255,255,.95);
  }
  .brands-card:hover .brands-logo {
    transform: scale(1.035);
  }
    .product-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-6px) scale(1.02); }
  .product-card:hover .product-img-wrap img[data-slide] { transform: scale(1.06); }
  .btn-add:hover { background: linear-gradient(135deg, var(--green-mid), var(--green-main)); }
  .btn-pkg-info:hover { background: rgba(201,168,76,.12); }
  .hnav-btn:hover { background: rgba(201,168,76,.15); border-color: var(--gold); color: #fff; }
  .btn-goto-order:hover { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--green-dark); }
  .btn-confirm:not(:disabled):hover { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--green-dark); }
  .btn-continue:hover { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--green-dark); }
  .final-card:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
  .hn-drop-item:hover { background: rgba(127,173,95,.2); color: #fff; }
  .hn-cat-item:hover { background: rgba(127,173,95,.12); }
  .hp-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(201,168,76,.42); }
  .hp-btn-ghost:hover { background: rgba(255,255,255,.12); }
  .hp-quick-card:hover {
    border-color: var(--gold);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(201,168,76,.16);
  }
  .hp-set-card:hover {
    transform: translateY(-1px);
    border-color: var(--gold);
    box-shadow: 0 6px 18px rgba(0,0,0,.10);
  }
  .hp-link-more:hover { color: var(--gold); }
  .hp-cat-card:hover {
    transform: translateY(-1px);
    border-color: var(--gold);
    box-shadow: 0 4px 12px rgba(201,168,76,.16);
  }
  .seo-nav-links a:hover {
    background: rgba(232,200,112,.12);
    color: var(--gold-light);
  }
  .seo-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(201,168,76,.42);
  }
  .seo-article a:hover { color: var(--gold); }
  .seo-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #1f2a10;
  }
  .silus-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(42,74,24,.35);
  }
  .quiz-opt:hover {
    border-color: var(--gold);
    background: #fffaea;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(201,168,76,.18);
  }
  .quiz-btn-back:hover {
    border-color: #6b6b6b;
    color: #2a3d1a;
  }
  .quiz-btn-next:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(201,168,76,.42);
  }
  .result-actions .btn-primary:hover,
  .result-actions .btn-wa:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
  }
  .result-actions .btn-secondary:hover {
    border-color: #6b6b6b;
    color: #2a3d1a;
  }
  .product-card:hover,
  .military-card:hover,
  .package-card:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,.12) !important;
  }
    .consent-reject:hover { background: #f5f5f5; }
  .consent-details:hover { background: rgba(127, 173, 95, 0.15); }
  .consent-accept:hover { background: linear-gradient(135deg, var(--green-mid), var(--green-main)); }
}