/* ===== 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: 1250;
  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-checklist {
  margin-bottom: 12px;
  padding: 10px;
  border: 1px solid rgba(201,168,76,.34);
  border-radius: 8px;
  background: linear-gradient(180deg, #fffaf0 0%, #fffdf8 100%);
  font-family: 'Vazirmatn', sans-serif;
}
.cart-check-title {
  margin-bottom: 7px;
  color: #6c5420;
  font-size: .78rem;
  font-weight: 850;
}
.cart-check-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 28px;
  padding: 4px 0;
  color: #2f3428;
  font-size: .78rem;
  border-top: 1px solid rgba(201,168,76,.14);
}
.cart-check-row:first-of-type {
  border-top: 0;
}
.cart-check-row strong {
  flex: 0 0 auto;
  color: #2f6d25;
  font-size: .74rem;
  font-weight: 850;
  white-space: nowrap;
}
.cart-check-row.is-missing strong {
  color: #a2422d;
}
.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-ist-guide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.hn-ist-card {
  min-width: 0;
  display: grid;
  gap: 5px;
  padding: 10px;
  border: 1px solid rgba(232,200,112,.2);
  border-radius: 8px;
  background: rgba(255,255,255,.065);
  font-family: 'Vazirmatn', sans-serif;
}
.hn-ist-card strong {
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  font-size: .78rem;
  line-height: 1.2;
}
.hn-ist-card span {
  color: rgba(255,255,255,.88);
  font-size: .78rem;
  line-height: 1.35;
}
.hn-ist-card em {
  color: #f3d77b;
  font-size: .76rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.35;
}
.hn-ist-formula {
  margin: 10px 0 0;
  padding: 10px 12px;
  border: 1px solid rgba(232,200,112,.34);
  border-radius: 8px;
  background: rgba(232,200,112,.1);
  color: #fff8df;
  font-family: 'Vazirmatn', sans-serif;
  font-size: .84rem;
  font-weight: 850;
  text-align: center;
}
.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);
  max-width: 100%;
  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-ist-guide,
  .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-ist-card,
  .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-section-mobile-compact {
    margin: 12px 0;
    padding: 0;
    background: linear-gradient(180deg, #203518 0%, #2f4a23 100%);
  }
  .founder-story-section-mobile-compact .founder-story-copy {
    padding: 14px;
    border-radius: 12px;
  }
  .founder-story-section-mobile-compact .founder-story-copy p:nth-of-type(n+3),
  .founder-story-section-mobile-compact .founder-story-copy blockquote {
    display: none;
  }
  .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(6, 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; }
/* ===== PRODUCT DETAIL PAGE ===== */
body.product-detail-open #consent-banner {
  display: none;
}
.product-detail-page {
  position: fixed;
  inset: 0;
  z-index: 1000;
  overflow-y: auto;
  background:
    linear-gradient(180deg, #fffdf6 0%, #f6f0e0 100%);
  color: #203516;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .24s ease, transform .24s ease;
  -webkit-overflow-scrolling: touch;
}
.product-detail-page.active {
  opacity: 1;
  transform: translateY(0);
}
.product-detail-shell {
  min-height: 100dvh;
}
.product-detail-topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 10px clamp(14px, 3vw, 34px);
  border-bottom: 1px solid rgba(216,181,92,.28);
  background:
    linear-gradient(180deg, rgba(31,53,22,.98), rgba(22,39,15,.98));
  color: #fff8df;
  box-shadow: 0 8px 24px rgba(21,34,14,.16);
}
.product-detail-topbar span {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: .84rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-align: center;
}
.product-detail-back,
.product-detail-close {
  min-height: 42px;
  border: 1px solid rgba(232,200,112,.34);
  border-radius: 999px;
  color: #fff8df;
  background: rgba(255,255,255,.07);
  font-family: 'Vazirmatn', sans-serif;
  font-size: .78rem;
  font-weight: 900;
}
.product-detail-back {
  padding: 8px 16px;
}
.product-detail-close {
  width: 42px;
  font-size: 1.4rem;
  line-height: 1;
}
.product-detail-layout {
  display: grid;
  grid-template-columns: 74px minmax(320px, 520px) minmax(280px, 1fr) 300px;
  gap: clamp(18px, 2vw, 28px);
  align-items: start;
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: clamp(18px, 2.4vw, 34px);
}
.product-detail-thumbs {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 10px;
}
.product-detail-thumb {
  width: 64px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(42,74,24,.18);
  border-radius: 8px;
  background: #fff;
  padding: 4px;
  box-shadow: 0 4px 12px rgba(22,35,15,.08);
}
.product-detail-thumb.active {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(216,181,92,.18);
}
.product-detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-detail-media {
  position: sticky;
  top: 88px;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid rgba(216,181,92,.3);
  border-radius: 14px;
  background:
    linear-gradient(135deg, #fff 0%, #fbf8ef 58%, #eee4c9 100%);
  box-shadow:
    0 18px 42px rgba(22,35,15,.14),
    inset 0 1px 0 rgba(255,255,255,.96);
}
.product-detail-main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(14px, 2vw, 24px);
  filter: drop-shadow(0 16px 18px rgba(31,45,18,.13));
}
.product-detail-no-img {
  color: #758066;
  font-family: 'Vazirmatn', sans-serif;
  font-weight: 900;
}
.product-detail-info {
  min-width: 0;
  display: grid;
  gap: 14px;
}
.product-detail-kicker {
  color: #8b7027;
  font-family: 'Cinzel', serif;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.product-detail-info h1 {
  margin: 0;
  color: #182d10;
  font-family: 'Vazirmatn', sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2.08rem);
  line-height: 1.16;
  letter-spacing: 0;
}
.product-detail-badge {
  justify-self: start;
  padding: 6px 12px;
  border-radius: 999px;
  color: #fff8df;
  background: linear-gradient(135deg, #385723 0%, #1d3514 100%);
  font-family: 'Vazirmatn', sans-serif;
  font-size: .72rem;
  font-weight: 950;
}
.product-detail-summary {
  margin: 0;
  color: #536042;
  font-family: 'Vazirmatn', sans-serif;
  font-size: .94rem;
  font-weight: 750;
  line-height: 1.55;
}
.product-detail-section-box {
  padding: 16px;
  border: 1px solid rgba(42,74,24,.13);
  border-radius: 12px;
  background: rgba(255,255,255,.5);
}
.product-detail-section-box h3 {
  margin: 0 0 10px;
  color: #213516;
  font-family: 'Cinzel', serif;
  font-size: .92rem;
}
.product-detail-section-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.product-detail-section-box li {
  color: #47543a;
  font-family: 'Vazirmatn', sans-serif;
  font-size: .84rem;
  line-height: 1.45;
}
.product-detail-section-box li::before {
  content: "- ";
  color: #8b7027;
  font-weight: 900;
}
.product-detail-pack-group {
  display: grid;
  gap: 7px;
  padding-top: 10px;
  border-top: 1px solid rgba(42,74,24,.08);
}
.product-detail-pack-group:first-of-type {
  padding-top: 0;
  border-top: 0;
}
.product-detail-pack-group strong {
  color: #2d421e;
  font-family: 'Vazirmatn', sans-serif;
  font-size: .8rem;
  font-weight: 950;
}
.product-detail-buybox {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(216,181,92,.36);
  border-radius: 14px;
  background: linear-gradient(180deg, #fffdf6 0%, #f1ead6 100%);
  box-shadow:
    0 18px 42px rgba(22,35,15,.14),
    inset 0 1px 0 rgba(255,255,255,.92);
}
.product-detail-trust,
.product-detail-delivery,
.product-detail-option-note {
  margin: 0;
  color: #536042;
  font-family: 'Vazirmatn', sans-serif;
  font-size: .76rem;
  line-height: 1.42;
}
.product-detail-price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.product-detail-price-grid div,
.product-detail-price-single {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(42,74,24,.16);
  border-radius: 10px;
  background: rgba(255,255,255,.64);
}
.product-detail-price-grid span,
.product-detail-price-single span {
  color: #596642;
  font-family: 'Vazirmatn', sans-serif;
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
}
.product-detail-price-grid strong,
.product-detail-price-single strong {
  color: #1f3516;
  font-family: 'Cinzel', serif;
  font-size: 1.55rem;
  line-height: 1;
}
.product-detail-price-grid em {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  color: #fff8df;
  background: #31551f;
  font-style: normal;
  font-size: .62rem;
  font-weight: 900;
}
.product-detail-stock {
  color: #246f25;
  font-family: 'Vazirmatn', sans-serif;
  font-size: .84rem;
  font-weight: 950;
}
.product-detail-actions {
  display: grid;
  gap: 8px;
}
.product-detail-buy-primary,
.product-detail-buy-secondary,
.product-detail-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-family: 'Vazirmatn', sans-serif;
  font-size: .84rem;
  font-weight: 950;
  text-align: center;
  text-decoration: none;
}
.product-detail-buy-primary {
  border: 1px solid #172a0f;
  color: #fff8df;
  background: linear-gradient(180deg, #4a7d2d 0%, #18310f 100%);
  box-shadow: 0 10px 20px rgba(24,43,14,.18);
}
.product-detail-buy-secondary {
  border: 1px solid rgba(42,74,24,.22);
  color: #264019;
  background: rgba(255,255,255,.66);
}
.product-detail-wa {
  border: 1px solid rgba(37,211,102,.34);
  color: #0f321c;
  background: rgba(37,211,102,.16);
}
@media (max-width: 980px) {
  .product-detail-layout {
    grid-template-columns: 64px minmax(0, 1fr);
  }
  .product-detail-info,
  .product-detail-buybox {
    grid-column: 1 / -1;
    position: relative;
    top: auto;
  }
  .product-detail-media,
  .product-detail-thumbs {
    position: relative;
    top: auto;
  }
}
@media (max-width: 620px) {
  .product-detail-topbar {
    min-height: 56px;
    padding: 8px 10px;
  }
  .product-detail-topbar span {
    font-size: .68rem;
  }
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
  }
  .product-detail-thumbs {
    order: 2;
    grid-auto-flow: column;
    grid-auto-columns: 56px;
    overflow-x: auto;
    padding-bottom: 3px;
  }
  .product-detail-media {
    order: 1;
  }
  .product-detail-info {
    order: 3;
  }
  .product-detail-buybox {
    order: 4;
    margin-bottom: calc(18px + env(safe-area-inset-bottom));
  }
  .product-detail-thumb {
    width: 56px;
  }
  .product-detail-info h1 {
    font-size: 1.18rem;
  }
  .product-detail-main-img {
    padding: 12px;
  }
}
/* ===== 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: 100dvh;
  padding: calc(var(--home-nav-h, 72px) + 28px) 18px 42px;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(31, 53, 22, 0.96) 0%, rgba(42, 74, 24, 0.94) 36%, rgba(246, 240, 223, 0.96) 36%, #fffdf6 100%);
}
.ready-note-card {
  width: min(100%, 1040px);
  max-width: calc(100vw - 36px);
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 18px;
  color: #233519;
  background: linear-gradient(180deg, rgba(255, 253, 246, 0.98), rgba(246, 240, 223, 0.98));
  box-shadow:
    0 26px 70px rgba(14, 28, 8, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}
.ready-note-card *,
.ready-note-card *::before,
.ready-note-card *::after {
  box-sizing: border-box;
  min-width: 0;
}
.ready-note-header {
  position: relative;
  padding: clamp(24px, 4vw, 42px);
  color: #fffaf0;
  background:
    linear-gradient(135deg, rgba(216, 181, 92, 0.2), transparent 30%),
    linear-gradient(180deg, #2b4d1c 0%, #16270f 100%);
  border-bottom: 4px solid #d8b55c;
}
.ready-note-header::after {
  content: "";
  position: absolute;
  left: clamp(24px, 4vw, 42px);
  right: clamp(24px, 4vw, 42px);
  bottom: -4px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}
.ready-note-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #e8c870;
  font-family: 'Cinzel', serif;
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.ready-note-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}
.ready-note-card h2,
.ready-note-header h2 {
  margin: 0 0 12px;
  color: #fff4bd;
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 5vw, 3.3rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}
.ready-note-header p {
  width: min(100%, 680px);
  margin: 0;
  color: rgba(255, 250, 236, 0.86);
  font-family: 'Vazirmatn', sans-serif;
  font-size: clamp(0.94rem, 1.4vw, 1.08rem);
  line-height: 1.62;
  overflow-wrap: break-word;
}
.ready-note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
}
.ready-note-tip {
  min-width: 0;
  padding: clamp(18px, 2.5vw, 26px);
  background: rgba(255, 253, 246, 0.96);
}
.ready-note-tip-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 28px;
  margin-bottom: 12px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #3f8f2e, #257223);
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  font-weight: 900;
}
.ready-note-tip h3 {
  margin: 0 0 8px;
  color: #213516;
  font-family: 'Cinzel', serif;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.16;
}
.ready-note-tip p {
  margin: 0;
  color: #47523e;
  font-family: 'Vazirmatn', sans-serif;
  font-size: 0.88rem;
  line-height: 1.58;
  overflow-wrap: break-word;
}
.ready-note-signature {
  display: grid;
  gap: 8px;
  padding: clamp(20px, 3vw, 30px) clamp(24px, 4vw, 42px);
  background:
    linear-gradient(90deg, rgba(216, 181, 92, 0.16), transparent 48%),
    rgba(251, 246, 232, 0.92);
}
.ready-note-signature p {
  width: min(100%, 760px);
  margin: 0;
  color: #3f4b35;
  font-family: 'Vazirmatn', sans-serif;
  font-size: 0.94rem;
  line-height: 1.62;
  overflow-wrap: break-word;
}
.ready-note-signature strong {
  color: #203316;
  font-family: 'Cinzel', serif;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 900;
  line-height: 1.2;
}
.ready-note-signature span {
  color: #7a6222;
  font-family: 'Vazirmatn', sans-serif;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (min-width: 900px) {
  .ready-note-section {
    padding-left: 28px;
    padding-right: 28px;
  }
}
@media (max-width: 520px) {
  .ready-note-section {
    width: 100vw;
    max-width: 100vw;
    padding: calc(var(--home-nav-h, 54px) + 16px) 12px 24px;
    background:
      linear-gradient(180deg, #1f3516 0%, #2c4a1f 28%, #f6f0df 28%, #fffdf6 100%);
  }
  .ready-note-card {
    width: 100%;
    flex: 0 1 auto;
    max-width: calc(100vw - 24px);
    border-radius: 14px;
  }
  .ready-note-header p,
  .ready-note-tip p,
  .ready-note-signature p {
    max-width: 100%;
  }
  .ready-note-grid {
    grid-template-columns: 1fr;
  }
  .ready-note-header,
  .ready-note-signature,
  .ready-note-tip {
    padding: 18px 16px;
  }
  .ready-note-card h2,
  .ready-note-header h2 {
    font-size: clamp(1.55rem, 8vw, 2.15rem);
  }
  .ready-note-header p {
    font-size: 0.92rem;
    line-height: 1.5;
  }
  .ready-note-tip p,
  .ready-note-signature p {
    font-size: 0.88rem;
  }
}
/* ===== 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-title:focus { outline: none; }
.order-stepper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 14px;
}
.order-step-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.58);
  background: rgba(255,255,255,.06);
  font-family: 'Vazirmatn',sans-serif;
  font-size: .76rem;
  font-weight: 850;
  text-align: center;
}
.order-step-pill b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  color: #2a421d;
  background: rgba(255,255,255,.7);
  font-size: .72rem;
  flex: 0 0 auto;
}
.order-step-pill.is-active {
  border-color: rgba(232,200,112,.62);
  color: #fff8d2;
  background: linear-gradient(180deg, rgba(232,200,112,.2), rgba(255,255,255,.08));
}
.order-step-pill.is-active b,
.order-step-pill.is-done b {
  color: #203518;
  background: var(--gold);
}
.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-checkout-actions {
  display: flex;
  gap: 10px;
  margin: 14px 0 0;
}
.btn-order-next,
.btn-order-back {
  width: 100%;
  min-height: 52px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(232,200,112,.42);
  font-family: 'Vazirmatn',sans-serif;
  font-size: .9rem;
  font-weight: 900;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.btn-order-next {
  color: #213516;
  background: linear-gradient(135deg, #f6dc86 0%, #d4af37 100%);
  box-shadow: 0 14px 30px rgba(18, 36, 12, .22);
}
.btn-order-next:disabled {
  opacity: .55;
  cursor: not-allowed;
}
.btn-order-back {
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.07);
}
.order-checkout-recap {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
  padding: 16px;
  border: 1px solid rgba(232,200,112,.34);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.07));
}
.order-checkout-recap div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.order-checkout-recap span,
.order-checkout-recap p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-family: 'Vazirmatn',sans-serif;
  font-size: .78rem;
  font-weight: 750;
}
.order-checkout-recap strong {
  color: var(--gold);
  font-family: 'Cinzel',serif;
  font-size: 1.18rem;
}
.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: linear-gradient(135deg, #efe6d2 0%, #d9c070 100%); color: #2c3a18; border: 1px solid rgba(201,168,76,.55) !important; }
.pay-paytr:disabled { opacity: .58; cursor: not-allowed; }
.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; }
  .order-step-pill {
    min-height: 40px;
    padding: 7px 6px;
    gap: 5px;
    font-size: .68rem;
  }
  .order-step-pill b {
    width: 20px;
    height: 20px;
  }
  .order-checkout-recap div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  .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;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  line-height: 1;
}
.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 {
  background: #efe6d2;
  color: #2c3a18;
  border: 1px solid rgba(201,168,76,.55) !important;
  opacity: 1;
  cursor: pointer;
}
.pay-paytr:disabled {
  opacity: .58;
  cursor: not-allowed;
}
.pay-ptt {
  background: #7b2d24;
  color: #fff;
}
@media (max-width: 760px) {
  .category-section > .cat-header {
    position: relative;
    top: auto;
    z-index: 10;
    display: block;
    min-height: 0;
    margin: 12px 10px 8px;
    padding: 0 !important;
    overflow: hidden;
    border: 1px solid rgba(201,168,76,.36);
    border-radius: 14px;
    background: #f7f4e9;
    box-shadow:
      0 10px 24px rgba(31,43,19,.12),
      inset 0 1px 0 rgba(255,255,255,.72);
  }
  .category-section > .cat-header::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      linear-gradient(90deg, rgba(201,168,76,.34), transparent 42%),
      linear-gradient(180deg, rgba(255,255,255,.18), transparent 48%);
    opacity: .8;
  }
  .category-header-top {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px 12px 10px;
    background:
      linear-gradient(135deg, #223614 0%, #355323 66%, #203313 100%);
  }
  .category-header-top::before {
    content: "";
    position: absolute;
    inset: 0 0 0 auto;
    width: 55%;
    background: linear-gradient(135deg, transparent 0%, rgba(127,173,95,.22) 100%);
    clip-path: polygon(42% 0%, 100% 0%, 100% 100%, 0% 100%);
    pointer-events: none;
  }
  .category-header-top::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  }
  .category-section .cat-parchment {
    position: relative;
    z-index: 1;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .category-section .cat-parchment::before {
    display: none;
  }
  .category-section .parchment-kicker {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 5px;
  }
  .category-section .kicker-num,
  .category-section .kicker-label {
    color: rgba(246,216,124,.82);
    font-family: 'Cinzel', serif;
    font-size: .58rem;
    font-weight: 850;
    letter-spacing: 1.4px;
    text-transform: uppercase;
  }
  .category-section .kicker-line {
    height: 1px;
    flex: 1 1 auto;
    min-width: 18px;
    background: rgba(246,216,124,.32);
  }
  .category-section .parchment-title {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    color: var(--gold-light);
    font-family: 'Cinzel', serif;
    font-size: clamp(1.02rem, 5.2vw, 1.28rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: 0;
    text-shadow: 0 2px 7px rgba(0,0,0,.28);
  }
  .category-section .parchment-icon {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: rgba(255,255,255,.1);
    box-shadow: inset 0 0 0 1px rgba(246,216,124,.24);
    font-size: 1.04rem;
  }
  .category-section .cat-istihkak-leather {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    align-self: stretch;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 7px 9px;
    width: 100%;
    min-height: 0;
    padding: 9px 10px;
    border: 1px solid rgba(246,216,124,.28);
    border-left: 3px solid var(--gold);
    border-radius: 10px;
    background: rgba(12,22,8,.36);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  }
  .category-section .cat-istihkak-leather::before {
    display: none;
  }
  .category-section .istihkak-leather-stamp {
    padding: 3px 6px;
    border-radius: 999px;
    background: rgba(246,216,124,.14);
    color: var(--gold-light);
    font-family: 'Cinzel', serif;
    font-size: .56rem;
    font-weight: 900;
    letter-spacing: 1.1px;
    line-height: 1.1;
    white-space: nowrap;
  }
  .category-section .istihkak-leather-text {
    color: rgba(255,255,255,.9);
    font-family: 'Vazirmatn', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    line-height: 1.34;
  }
  .category-header-accent {
    display: none;
  }
  .category-header-bottom {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 8px;
    padding: 9px 11px 10px;
    border-top: 1px solid rgba(201,168,76,.24);
    background:
      linear-gradient(180deg, #f5efe0 0%, #e8dfcc 100%);
    color: #3e4535;
    font-family: 'Vazirmatn', sans-serif;
    font-size: .74rem;
    font-weight: 650;
    line-height: 1.38;
  }
  .category-note-label {
    align-self: start;
    padding: 3px 6px;
    border-radius: 999px;
    background: rgba(48,72,31,.1);
    color: #5b4316;
    font-family: 'Cinzel', serif;
    font-size: .56rem;
    font-weight: 900;
    letter-spacing: 1px;
    white-space: nowrap;
  }
  .home-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }
  .home-nav::-webkit-scrollbar {
    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: var(--kahya-premium-header-h, 0px);
    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-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: 10px;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 12px;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  color: #2f3e22;
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.2;
  min-height: 50px;
  padding: 8px;
  border: 1px solid rgba(42,74,24,.10);
  border-radius: 10px;
  background: rgba(255,255,255,.54);
}
.trust-logo,
.trust-transport-logo {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 999px;
}
.trust-bar-cargo {
  color: var(--green-dark);
  font-weight: 900;
}
/* ---------- SATIŞ MOTORU BLOKLARI ---------- */
.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-product-rail-shell {
  display: none;
}
.hp-product-desktop-flow {
  display: block;
}
.hp-product-panel-section {
  margin: 0;
}
.hp-product-intro-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 34px 24px;
  border: 1px solid rgba(232,200,112,.34);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 12%, rgba(232,200,112,.18), transparent 30%),
    linear-gradient(145deg, #183813 0%, #234d1b 48%, #17320f 100%);
  color: #fff8df;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), 0 18px 34px rgba(18,40,13,.18);
}
.hp-product-intro-kicker {
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 2.4px;
}
.hp-product-intro-card h2 {
  margin: 0;
  color: #fffdf5;
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 12vw, 3.25rem);
  font-weight: 800;
  line-height: .95;
}
.hp-product-intro-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(232,200,112,.42);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  font-size: 2.45rem;
  box-shadow: 0 10px 26px rgba(0,0,0,.16);
}
.hp-product-intro-card p {
  margin: 0;
  color: rgba(255,253,245,.9);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.18;
}
.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;
}
.hp-faq-a p {
  margin: 0 0 10px;
}
.hp-faq-subtitle {
  display: block;
  margin: 12px 0 10px;
  color: #2a3d1a;
  font-size: .92rem;
  line-height: 1.3;
}
.hp-faq-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 10px 0;
}
.hp-faq-choice {
  min-width: 0;
  display: grid;
  gap: 5px;
  padding: 10px;
  border: 1px solid #e2d6af;
  border-radius: 8px;
  background: linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
}
.hp-faq-choice strong {
  color: #2a3d1a;
  font-size: .82rem;
  line-height: 1.25;
}
.hp-faq-choice span {
  color: #5b5547;
  font-size: .78rem;
  line-height: 1.35;
}
.hp-faq-choice em {
  color: #6c5420;
  font-size: .78rem;
  font-style: normal;
  font-weight: 850;
  line-height: 1.35;
}
.hp-faq-equation {
  display: grid;
  gap: 6px;
  margin: 10px 0 12px;
  padding: 12px;
  border: 1px solid rgba(201,168,76,.58);
  border-radius: 10px;
  background: linear-gradient(135deg, #fff8df 0%, #fffdf6 100%);
  color: #2a3d1a;
  box-shadow: 0 8px 18px rgba(42,61,26,.08);
}
.hp-faq-equation strong {
  color: #203815;
  font-size: 1.08rem;
  line-height: 1.15;
}
.hp-faq-equation span,
.hp-faq-equation em {
  color: #5b5547;
  font-size: .82rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.35;
}
.hp-faq-equation em {
  color: #6c5420;
}
.hp-faq-best,
.hp-faq-bonus {
  margin-top: 12px !important;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(42,61,26,.08);
  color: #2a3d1a;
  font-weight: 850;
}
.hp-faq-bonus {
  background: rgba(201,168,76,.12);
  color: #4d3c18;
}
.hp-faq-cta-box {
  display: grid;
  gap: 10px;
}
.hp-faq-cta-box p {
  margin: 0 !important;
}
.hp-faq-cta {
  width: 100%;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #2a4a18 0%, #3d6525 100%);
  color: #fff8df;
  font-family: 'Vazirmatn', sans-serif;
  font-size: .84rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 4px 14px rgba(42,74,24,.2);
  cursor: pointer;
}
.hp-faq-cta:active {
  transform: scale(.98);
}
.hp-faq-list {
  margin: 0 0 10px;
  padding-left: 20px;
}
.hp-faq-system {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(201,168,76,.42);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(42,61,26,.94), rgba(68,92,42,.94));
  color: #fff8df;
  font-family: 'Vazirmatn', sans-serif;
  font-size: .86rem;
  font-weight: 850;
}
.hp-faq-system span {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  text-align: center;
}
/* ---------- 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(6, minmax(0, 1fr)); }
  .trust-bar-item {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    min-height: 92px;
    padding: 10px 8px;
    font-size: .76rem;
  }
  .trust-logo,
  .trust-transport-logo {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }
  .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;
  }
}
@media (max-width: 768px) {
  .hp-product-desktop-flow {
    display: none;
  }
  .hp-product-rail-shell {
    --hero-breath: clamp(14px, 1.5vw, 24px);
    position: relative;
    display: block;
    width: 100vw;
    max-width: none;
    margin: 24px 0 22px;
    margin-left: 50%;
    padding: var(--hero-breath);
    transform: translateX(-50%);
    overflow: visible;
  }
  .hp-product-rail-shell .hp-hero-mobile-cue {
    position: absolute !important;
    top: 50%;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--hero-breath);
    min-height: 126px;
    padding: 14px 0 28px;
    border: 1px solid rgba(31, 53, 24, 0.18);
    border-radius: 999px;
    background: rgba(251, 250, 245, 0.92);
    box-shadow: 0 8px 18px rgba(31, 53, 24, 0.08);
    color: #000;
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: clamp(0.62rem, 2.85vw, 0.72rem);
    font-style: italic;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1;
    text-orientation: mixed;
    text-transform: none;
    writing-mode: vertical-rl;
    cursor: pointer;
    opacity: 0;
    animation: kahyaHeroFade 0.75s 0.36s ease forwards;
    transition: border-color 220ms ease, color 220ms ease, background 220ms ease;
  }
  .hp-product-rail-shell .hp-hero-mobile-cue-left {
    left: 0;
    transform: translateY(-50%) rotate(180deg);
  }
  .hp-product-rail-shell .hp-hero-mobile-cue-right {
    right: 0;
    transform: translateY(-50%);
  }
  .hp-product-rail-shell .hp-hero-mobile-cue::before {
    content: "\203A";
    position: absolute;
    left: 50%;
    bottom: 4px;
    color: #000;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.08rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    writing-mode: horizontal-tb;
    transform: translateX(-50%);
  }
  .hp-product-rail-shell .hp-hero-mobile-cue.is-hidden {
    opacity: 0 !important;
    pointer-events: none;
    visibility: hidden;
    animation: none;
  }
  .hp-product-rail {
    display: flex;
    align-items: flex-start;
    gap: var(--hero-breath);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    padding: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .hp-product-rail.is-panel-dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
  }
  .hp-product-rail::-webkit-scrollbar {
    display: none;
  }
  .hp-product-panel {
    flex: 0 0 calc(100vw - (var(--hero-breath) * 2));
    min-width: 0;
    height: min(72vh, 640px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    border: 1px solid rgba(201,168,76,.28);
    border-radius: 18px;
    background: linear-gradient(180deg, #fffdf7 0%, #f6f0df 100%);
    box-shadow: 0 14px 28px rgba(42,61,26,.12);
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(106,83,32,.35) transparent;
  }
  .hp-product-panel .hp-section {
    margin: 0;
    padding: 18px 14px 16px;
  }
  .hp-product-panel .hp-section-title {
    margin-bottom: 7px;
    color: #203815;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.52rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.02;
    text-align: center;
  }
  .hp-product-panel .hp-section-sub {
    max-width: 30ch;
    margin: 0 auto 14px;
    color: #5b513e;
    font-size: .86rem;
    line-height: 1.36;
    text-align: center;
  }
  .hp-product-panel .hp-link-inline {
    display: none;
  }
  .hp-product-panel .hp-set-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }
  .hp-product-panel .hp-set-card {
    grid-template-columns: 122px minmax(0, 1fr);
    gap: 12px;
    padding: 10px;
    border-color: rgba(201,168,76,.3);
    border-radius: 13px;
    background: rgba(255,255,255,.84);
    box-shadow: 0 8px 18px rgba(42,61,26,.08);
  }
  .hp-product-panel .hp-set-img {
    width: 122px;
    height: 122px;
    border-radius: 10px;
  }
  .hp-product-panel .hp-set-title {
    font-size: .98rem;
  }
  .hp-product-panel .hp-set-sub {
    font-size: .76rem;
    line-height: 1.32;
  }
  .hp-product-panel .hp-set-price {
    font-size: 1.06rem;
  }
  .hp-product-panel .hp-set-cta {
    min-height: 28px;
    font-size: .68rem;
    letter-spacing: 1.1px;
  }
  .hp-product-panel .hp-set-footer {
    margin-top: 14px;
  }
  .hp-product-panel .hp-single-scroll {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
  }
  .hp-product-panel .hp-single-card {
    flex: 1 1 auto;
    min-width: 0;
    border-color: rgba(201,168,76,.24);
    box-shadow: 0 8px 18px rgba(42,61,26,.08);
  }
  .hp-product-panel .hp-single-body {
    padding: 9px 9px 0;
  }
  .hp-product-panel .hp-single-body h3 {
    font-size: .82rem;
  }
  .hp-product-panel .hp-single-body p {
    min-height: 42px;
    font-size: .68rem;
  }
  .hp-product-panel .hp-single-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 9px;
  }
  .hp-product-panel .hp-single-actions button {
    width: 100%;
    min-height: 34px;
    font-size: .7rem;
  }
  .hp-product-panel-intro {
    padding: 12px;
    background:
      linear-gradient(180deg, rgba(255,253,247,.98), rgba(246,240,223,.98)),
      radial-gradient(circle at top, rgba(201,168,76,.18), transparent 48%);
  }

  .hp-product-panel-intro .hp-product-intro-card {
    justify-content: flex-start;
    gap: 8px;
    min-height: 100%;
    padding: 18px 14px 14px;
  }

  .hp-product-panel-intro .hp-product-intro-card h2 {
    font-size: clamp(1.62rem, 9vw, 2.2rem);
  }

  .hp-product-panel-intro .hp-product-intro-icon {
    width: 46px;
    height: 46px;
    font-size: 1.42rem;
  }

  .hp-product-panel-intro .hp-product-intro-lead {
    font-size: 1rem;
  }

  .hp-mobile-checklist-guide {
    width: 100%;
    display: grid;
    gap: 6px;
    margin-top: 2px;
    padding: 9px;
    border: 1px solid rgba(232, 200, 112, 0.24);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
  }

  .hp-product-intro-card .hp-mobile-checklist-guide p {
    margin: 0;
    color: rgba(255, 253, 245, 0.86);
    font-family: "Vazirmatn", Arial, sans-serif;
    font-size: .66rem;
    font-weight: 650;
    line-height: 1.42;
  }

  .hp-mobile-preferences {
    width: 100%;
    display: grid;
    gap: 7px;
    margin-top: 2px;
    padding: 9px;
    border: 1px solid rgba(232, 200, 112, 0.28);
    border-radius: 12px;
    background:
      linear-gradient(135deg, rgba(232, 200, 112, 0.12), transparent 42%),
      rgba(15, 31, 10, 0.28);
  }

  .hp-mobile-pref-title {
    color: var(--gold-light);
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: .92rem;
    font-style: italic;
    font-weight: 800;
    line-height: 1.1;
  }

  .hp-mobile-pref-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .hp-mobile-pref-grid label {
    min-width: 0;
    display: grid;
    gap: 4px;
    color: rgba(255, 253, 245, 0.76);
    font-family: "Vazirmatn", Arial, sans-serif;
    font-size: .58rem;
    font-weight: 850;
    line-height: 1.12;
    text-align: left;
  }

  .hp-mobile-pref-grid label:first-child {
    grid-column: 1 / -1;
  }

  .hp-mobile-pref-grid input,
  .hp-mobile-pref-grid select {
    width: 100%;
    min-width: 0;
    height: 33px;
    padding: 0 9px;
    border: 1px solid rgba(232, 200, 112, 0.24);
    border-radius: 8px;
    background: rgba(255, 253, 246, 0.96);
    color: #26351c;
    font-family: "Vazirmatn", Arial, sans-serif;
    font-size: .74rem;
    font-weight: 800;
    outline: none;
  }

  .hp-mobile-pref-grid input:focus,
  .hp-mobile-pref-grid select:focus {
    border-color: rgba(232, 200, 112, 0.82);
    box-shadow: 0 0 0 3px rgba(232, 200, 112, 0.16);
  }
}
/* =====================================================================
   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;
}
.unit-blog-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin: 20px 0 30px;
}
.unit-blog-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(201,168,76,.34);
  border-radius: 12px;
  background: #fffdf7;
  color: #253b16;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(42,61,26,.08);
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.unit-blog-card:hover,
.unit-blog-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 12px 26px rgba(42,61,26,.13);
}
.unit-blog-card strong {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  line-height: 1.25;
}
.unit-blog-card span {
  color: #655d4b;
  font-size: .9rem;
  line-height: 1.35;
}
.unit-blog-note,
.unit-official-note {
  margin: 18px 0;
  padding: 14px 16px;
  border: 1px solid rgba(201,168,76,.42);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  background: #fff9e8;
  color: #4d3c18;
  font-weight: 700;
  line-height: 1.45;
}
.unit-fact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  margin: 18px 0 24px;
}
.unit-fact {
  padding: 14px 15px;
  border: 1px solid #e2dccb;
  border-radius: 10px;
  background: #ffffff;
}
.unit-fact b {
  display: block;
  margin-bottom: 4px;
  color: #263f17;
  font-family: 'Cinzel', serif;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.unit-article-layout {
  display: grid;
  gap: 18px;
}
.unit-section {
  padding: 18px;
  border: 1px solid #e2dccb;
  border-radius: 12px;
  background: #fffdf7;
}
.unit-section h2 {
  margin-top: 0;
}
.unit-cta-box {
  margin: 24px 0;
  padding: 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1f3a14 0%, #31591f 100%);
  color: #fff8df;
  text-align: center;
  box-shadow: 0 14px 28px rgba(31,58,20,.16);
}
.unit-cta-box h2 {
  margin-top: 0;
  color: var(--gold-light);
}
.unit-cta-box p {
  color: rgba(255,248,223,.9);
}
.unit-cta-box a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #203815;
  font-weight: 850;
  text-decoration: none;
}
@media (min-width: 680px) {
  .unit-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .unit-fact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 980px) {
  .unit-blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.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(88vw, 340px) !important;
  }
  .hp-set-ad-slide img {
    padding: 6px !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;
  }
  .hp-faq-choice-grid,
  .hp-faq-system {
    grid-template-columns: 1fr;
  }
  .hp-faq-choice {
    padding: 9px;
  }
}

/* ===== MOBILE UX COMPACT PASS ===== */
@media (max-width: 760px) {
  .category-section > .cat-header {
    margin: 10px 10px 6px !important;
  }
  .category-section > .products-grid {
    gap: 8px !important;
    padding: 6px 8px 18px !important;
    align-items: start !important;
  }
  .product-category .military-card,
  .package-category .military-card,
  .military-card,
  .package-card {
    height: auto !important;
    min-height: 0 !important;
  }
  .product-category .military-card .product-body,
  .package-category .military-card .product-body,
  .military-card .product-body,
  .package-card .product-body {
    padding: 8px 8px 10px !important;
    gap: 5px !important;
  }
  .product-category .military-card .product-name,
  .package-category .military-card .product-name,
  .military-card .product-name,
  .package-card .product-name {
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    font-size: .68rem !important;
    line-height: 1.18 !important;
  }
  .product-category .product-desc,
  .package-category .product-desc,
  .product-desc,
  .package-card .product-desc {
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    font-size: .58rem !important;
    line-height: 1.18 !important;
  }
  .product-desc span,
  .product-category .product-desc span,
  .package-category .product-desc span {
    display: block !important;
    overflow: visible !important;
    white-space: normal !important;
    text-overflow: clip !important;
    -webkit-line-clamp: unset !important;
  }
  .product-desc span:nth-child(n+2),
  .package-category .product-desc span:nth-child(n+2),
  .package-card .product-desc span:nth-child(n+2) {
    display: block !important;
  }
  .product-micro,
  .product-features {
    min-height: 0 !important;
    font-size: .52rem !important;
    line-height: 1.2 !important;
  }
  .price-box {
    min-height: 42px !important;
  }
  .package-category .product-note,
  .package-card .product-note {
    display: block !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    padding: 6px 8px !important;
    font-size: .56rem !important;
    line-height: 1.2 !important;
  }
  .product-trust {
    display: flex !important;
    min-height: 0 !important;
    margin-top: 3px !important;
    padding: 0 2px 1px !important;
    overflow: visible !important;
    white-space: normal !important;
    font-size: .55rem !important;
    line-height: 1.18 !important;
  }
}

@media (max-width: 380px) {
  .category-section > .products-grid {
    gap: 7px !important;
    padding-left: 6px !important;
    padding-right: 6px !important;
  }
  .product-category .military-card .product-name,
  .package-category .military-card .product-name,
  .military-card .product-name,
  .package-card .product-name {
    font-size: .64rem !important;
  }
  .product-category .product-desc,
  .package-category .product-desc,
  .product-desc,
  .package-card .product-desc {
    font-size: .54rem !important;
  }
}

/* Desktop product grid should use every available column without changing card ratios. */
@media (min-width: 1120px) {
  .category-section > .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(var(--product-card-width), var(--product-card-width))) !important;
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    justify-content: start !important;
    justify-items: stretch !important;
    gap: 20px !important;
  }
}

@media (min-width: 1500px) {
  .category-section > .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(var(--product-card-width), var(--product-card-width))) !important;
  }
}

/* Premium product strip: header dilini kart gorselinin hemen altina tasir. */
.product-premium-strip {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  height: 38px;
  overflow: hidden;
  display: block;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 232, 133, 0.22), transparent 34%),
    linear-gradient(180deg, #3f8f2e 0%, #257223 100%);
  border-top: 1px solid rgba(255, 232, 133, 0.42);
  border-bottom: 1px solid rgba(25, 100, 30, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -10px 18px rgba(21, 91, 29, 0.18);
  font-family: "Vazirmatn", Arial, sans-serif;
  font-size: clamp(0.78rem, 0.84vw, 0.92rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.22;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 48, 14, 0.42);
}
.product-premium-strip::before,
.product-premium-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 12px;
  pointer-events: none;
  z-index: 2;
}
.product-premium-strip::before {
  left: 0;
  background: linear-gradient(90deg, rgba(31, 101, 28, 0.42), rgba(31, 101, 28, 0));
}
.product-premium-strip::after {
  right: 0;
  background: linear-gradient(270deg, rgba(31, 101, 28, 0.42), rgba(31, 101, 28, 0));
}
.product-premium-strip-track {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.product-premium-strip-track span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0 14px;
  white-space: nowrap;
  transform: translateY(-115%);
  opacity: 0;
  will-change: transform, opacity;
}
.product-premium-strip-track span:nth-child(1) {
  animation: productPremiumStripFirst 5.8s cubic-bezier(0.2, 0.6, 0.2, 1) infinite;
}
.product-premium-strip-track span:nth-child(2) {
  animation: productPremiumStripSecond 5.8s cubic-bezier(0.2, 0.6, 0.2, 1) infinite;
}
.product-trust {
  display: none !important;
}
@keyframes productPremiumStripFirst {
  0%, 44% { transform: translateY(0); opacity: 1; }
  50%, 94% { transform: translateY(115%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes productPremiumStripSecond {
  0%, 44% { transform: translateY(-115%); opacity: 0; }
  50%, 94% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(115%); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .product-premium-strip-track span {
    animation: none;
  }
  .product-premium-strip-track span:nth-child(1) {
    transform: translateY(0);
    opacity: 1;
  }
  .product-premium-strip-track span:nth-child(2) {
    display: none;
  }
}
@media (max-width: 760px) {
  .product-premium-strip {
    height: 34px;
    font-size: clamp(0.66rem, 3.2vw, 0.82rem);
    line-height: 1.16;
  }
  .product-premium-strip-track span {
    padding: 0 5px;
  }
  .product-premium-strip::before,
  .product-premium-strip::after {
    width: 6px;
  }
}

@media (max-width: 380px) {
  .product-premium-strip {
    height: 32px;
    font-size: clamp(0.58rem, 3vw, 0.72rem);
  }
  .product-premium-strip-track span {
    padding: 0 4px;
  }
}

/* ===== PREMIUM PRODUCT CARD PASS ===== */
.product-card,
.military-card,
.package-card {
  position: relative !important;
  isolation: isolate;
  overflow: hidden !important;
  border: 1px solid rgba(172, 139, 55, 0.32) !important;
  border-radius: 14px !important;
  background:
    linear-gradient(180deg, rgba(255, 253, 246, 0.98) 0%, rgba(246, 240, 224, 0.98) 100%) !important;
  box-shadow:
    0 16px 34px rgba(22, 35, 15, 0.16),
    0 2px 8px rgba(22, 35, 15, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92) !important;
}
.product-card::before,
.military-card::before,
.package-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.72),
    inset 0 4px 0 rgba(216, 181, 92, 0.2);
}
.product-card::after,
.military-card::after,
.package-card::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 0;
  z-index: 2;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, transparent, rgba(216, 181, 92, 0.82), transparent);
  pointer-events: none;
}
.product-category .military-card .product-img-wrap,
.package-category .military-card .product-img-wrap,
.military-card .product-img-wrap {
  position: relative !important;
  overflow: hidden !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 247, 237, 0.98) 54%, rgba(239, 231, 211, 0.94) 100%) !important;
  border-bottom: 1px solid rgba(216, 181, 92, 0.24) !important;
  box-shadow:
    inset 0 -18px 26px rgba(42, 74, 24, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.96) !important;
}
.product-category .military-card .product-img-wrap::before,
.package-category .military-card .product-img-wrap::before,
.military-card .product-img-wrap::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 0;
  border: 1px solid rgba(216, 181, 92, 0.18);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.12));
  pointer-events: none;
}
.product-category .military-card .product-img-wrap img,
.package-category .military-card .product-img-wrap img,
.military-card .product-img-wrap img {
  z-index: 1 !important;
  padding: 15px !important;
  filter: drop-shadow(0 10px 14px rgba(31, 45, 18, 0.14));
}
.compat-badge,
.package-badge {
  border: 1px solid rgba(246, 225, 151, 0.62) !important;
  border-radius: 999px !important;
  color: #fff7d8 !important;
  background:
    linear-gradient(135deg, #385723 0%, #1d3514 100%) !important;
  box-shadow:
    0 8px 18px rgba(25, 43, 15, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  letter-spacing: 0.06em !important;
}
.product-premium-strip {
  background:
    linear-gradient(135deg, rgba(255, 238, 164, 0.26), transparent 42%),
    linear-gradient(180deg, #4aa03a 0%, #2b7e2a 100%) !important;
  border-top-color: rgba(255, 239, 180, 0.58) !important;
  border-bottom-color: rgba(25, 84, 25, 0.34) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -9px 18px rgba(16, 75, 21, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.55) !important;
}
.product-category .military-card .product-body,
.package-category .military-card .product-body,
.military-card .product-body,
.package-card .product-body {
  position: relative;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255, 253, 246, 0.98) 0%, rgba(246, 239, 222, 0.98) 100%) !important;
}
.product-category .military-card .product-name,
.package-category .military-card .product-name,
.military-card .product-name,
.package-card .product-name {
  color: #203516 !important;
  font-weight: 950 !important;
  letter-spacing: 0 !important;
}
.product-name-split .product-name-detail {
  color: #765f22 !important;
  font-weight: 850 !important;
}
.product-category .product-desc,
.package-category .product-desc,
.product-desc,
.package-card .product-desc {
  color: #526040 !important;
}
.product-desc span::before {
  color: #8b7027 !important;
}
.product-micro,
.product-features {
  color: #2f4b22 !important;
  border-top: 1px solid rgba(42, 74, 24, 0.08);
  border-bottom: 1px solid rgba(42, 74, 24, 0.08);
  background: rgba(255, 255, 255, 0.26);
}
.price-box {
  overflow: hidden;
  border: 1px solid rgba(42, 74, 24, 0.18) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(244, 239, 224, 0.98) 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 6px 14px rgba(28, 44, 18, 0.06);
}
.price-box::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(42, 74, 24, 0.78), rgba(216, 181, 92, 0.72));
}
.price-box span {
  color: #53603d !important;
  letter-spacing: 0.04em !important;
}
.price-box strong {
  color: #1f3516 !important;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
}
.price-box em {
  color: #fff7d8 !important;
  background: linear-gradient(135deg, #3f6f25 0%, #203516 100%) !important;
  box-shadow: 0 4px 10px rgba(31, 53, 22, 0.18);
}
.military-card .btn-add,
.product-category .military-card .btn-add,
.package-category .military-card .btn-add-single,
.package-card .btn-add-single {
  border: 1px solid rgba(20, 37, 12, 0.82) !important;
  border-radius: 9px !important;
  color: #fff8df !important;
  background:
    linear-gradient(135deg, rgba(246, 216, 124, 0.15), transparent 34%),
    linear-gradient(180deg, #395f24 0%, #162c0e 100%) !important;
  box-shadow:
    0 10px 20px rgba(24, 43, 14, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.16) !important;
  outline: 1px solid rgba(246, 216, 124, 0.22) !important;
  outline-offset: -5px !important;
}
.military-card .btn-add-six {
  background:
    linear-gradient(135deg, rgba(255, 242, 182, 0.2), transparent 36%),
    linear-gradient(180deg, #547a33 0%, #263f17 100%) !important;
}
.btn-pkg-info {
  border-color: rgba(172, 139, 55, 0.34) !important;
  background: rgba(255, 255, 255, 0.38) !important;
  color: #355121 !important;
  font-weight: 900 !important;
}
.slider-dot::after {
  background: rgba(42, 74, 24, 0.18) !important;
  border-color: rgba(255, 255, 255, 0.86) !important;
}
.slider-dot.active::after {
  background: #d8b55c !important;
  border-color: rgba(42, 74, 24, 0.42) !important;
  box-shadow: 0 0 0 2px rgba(31, 53, 22, 0.16) !important;
}
@media (hover: hover) and (pointer: fine) {
  .product-card:hover,
  .military-card:hover,
  .package-card:hover {
    transform: translateY(-5px) !important;
    border-color: rgba(216, 181, 92, 0.62) !important;
    box-shadow:
      0 22px 46px rgba(22, 35, 15, 0.2),
      0 4px 12px rgba(22, 35, 15, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.92) !important;
  }
  .product-card:hover .product-img-wrap img[data-slide],
  .military-card:hover .product-img-wrap img[data-slide] {
    transform: scale(1.035) !important;
  }
}
@media (max-width: 760px) {
  .product-card,
  .military-card,
  .package-card {
    border-radius: 11px !important;
    box-shadow:
      0 8px 18px rgba(22, 35, 15, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  }
  .product-card::after,
  .military-card::after,
  .package-card::after {
    left: 10px;
    right: 10px;
    height: 2px;
  }
  .product-category .military-card .product-img-wrap::before,
  .package-category .military-card .product-img-wrap::before,
  .military-card .product-img-wrap::before {
    inset: 7px;
    border-radius: 9px;
  }
  .product-category .military-card .product-img-wrap img,
  .package-category .military-card .product-img-wrap img,
  .military-card .product-img-wrap img {
    padding: 9px !important;
    filter: drop-shadow(0 6px 9px rgba(31, 45, 18, 0.12));
  }
  .product-micro,
  .product-features {
    background: transparent;
  }
}

/* =====================================================================
   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)); }
}

/* ===== HERO REDESIGN: three-column storefront ===== */
.home-section .hp-hero {
  margin: 8px 0 20px;
  padding: clamp(14px, 1.6vw, 22px);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(31, 53, 24, 0.98) 0%, rgba(45, 74, 34, 0.96) 52%, rgba(30, 50, 20, 0.98) 100%),
    radial-gradient(circle at 68% 0%, rgba(232, 200, 112, 0.16), transparent 34%);
  background-blend-mode: normal, screen;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(24, 34, 16, 0.22);
}

.home-section .hp-hero-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  min-height: clamp(470px, 63vh, 610px);
}

.hp-hero-panel {
  min-width: 0;
  position: relative;
}

.hp-hero-intro {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 3vw, 44px);
  color: #fff8df;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(31, 53, 24, 0.98) 0%, rgba(48, 80, 34, 0.97) 58%, rgba(34, 57, 25, 0.98) 100%),
    linear-gradient(90deg, rgba(232, 200, 112, 0.16), transparent 46%);
  border: 1px solid rgba(232, 200, 112, 0.56);
  border-radius: 16px;
  box-shadow:
    18px 0 40px rgba(11, 22, 7, 0.34),
    inset 0 1px 0 rgba(255,255,255,0.16),
    inset 0 0 0 1px rgba(255,255,255,0.05);
}

.hp-hero-intro::before {
  content: "";
  position: absolute;
  left: clamp(18px, 2vw, 28px);
  right: clamp(18px, 2vw, 28px);
  top: clamp(16px, 1.8vw, 24px);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), rgba(232, 200, 112, 0));
}

.hp-hero-intro > * {
  position: relative;
  z-index: 1;
}

.hp-hero-intro .hp-hero-kicker {
  color: rgba(232, 200, 112, 0.9);
}

.hp-hero-intro .hp-hero-title {
  color: #fffdf2;
  font-size: clamp(2rem, 3vw, 3.35rem);
  line-height: 1.05;
  text-shadow: 0 2px 10px rgba(0,0,0,0.28);
}

.hp-hero-intro .hp-accent {
  color: var(--gold-light);
}

.hp-hero-welcome {
  margin: 0 0 14px;
  color: #fff8df;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  font-weight: 700;
}

.hp-hero-intro .hp-hero-sub {
  color: rgba(255,255,255,0.86);
  font-size: clamp(1rem, 1.05vw, 1.13rem);
  line-height: 1.62;
}

.hp-hero-intro .hp-btn-ghost {
  color: #fff8df;
  background: rgba(255,255,255,0.07);
  border-color: rgba(232, 200, 112, 0.46);
}

.hp-hero-packages {
  display: flex;
  flex-direction: column;
  padding: clamp(18px, 1.7vw, 26px);
}

.hp-hero-custom {
  border-left: 1px solid rgba(232, 200, 112, 0.2);
}

.hp-hero-panel-head {
  min-height: 72px;
  margin-bottom: 12px;
  color: #fff7df;
}

.hp-hero-panel-head span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-light);
  font-family: "Cinzel", serif;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.hp-hero-panel-head p {
  margin: 0;
  max-width: 28ch;
  color: rgba(255,255,255,0.88);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 1.45vw, 1.55rem);
  font-weight: 700;
  line-height: 1.08;
}

.hp-hero-package-list {
  flex: 1;
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 10px;
  min-height: 0;
}

.hp-hero-package-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(112px, 42%) minmax(0, 1fr);
  gap: 12px;
  min-height: 0;
  padding: 9px;
  border: 1px solid rgba(232, 200, 112, 0.24);
  border-radius: 12px;
  background: rgba(255,255,255,0.92);
  color: #27351d;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(12, 21, 8, 0.16);
}

.hp-hero-package-card.is-featured {
  background: linear-gradient(180deg, #fff7dc 0%, rgba(255,255,255,0.94) 62%);
  border-color: rgba(232, 200, 112, 0.55);
}

.hp-hero-package-img {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 118px;
  overflow: hidden;
  border-radius: 9px;
  background: #f4f2e8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp-hero-package-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hp-hero-package-tag {
  position: absolute;
  z-index: 1;
  top: 7px;
  left: 7px;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(42, 74, 24, 0.92);
  color: var(--gold-light);
  font-family: "Cinzel", serif;
  font-size: .55rem;
  font-weight: 900;
  letter-spacing: .9px;
}

.hp-hero-package-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.hp-hero-package-copy strong {
  color: #1f3010;
  font-size: clamp(.82rem, .92vw, .98rem);
  font-weight: 900;
  line-height: 1.16;
}

.hp-hero-package-copy span {
  color: #626757;
  font-size: clamp(.68rem, .74vw, .78rem);
  line-height: 1.28;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hp-hero-package-copy em {
  color: #203316;
  font-family: "Cinzel", serif;
  font-size: clamp(.9rem, 1vw, 1.08rem);
  font-style: normal;
  font-weight: 900;
}

@media (max-width: 900px) {
  .home-section .hp-hero {
    margin: 6px 0 18px;
    padding: 12px 0 16px;
    border-radius: 16px;
  }

  .home-section .hp-hero-grid {
    display: flex;
    gap: 12px;
    min-height: 0;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 0 14px 6px;
  }

  .home-section .hp-hero-grid.is-panel-dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
  }

  .home-section .hp-hero-grid::-webkit-scrollbar {
    display: none;
  }

  .hp-hero-panel {
    flex: 0 0 min(420px, calc(100vw - 32px));
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .hp-hero-intro {
    min-height: min(610px, calc(100dvh - var(--home-nav-h, 54px) - 92px));
    padding: 34px 22px 24px;
  }

  .hp-hero-packages {
    padding: 16px 12px 14px;
    border-left: 0;
    border-radius: 14px;
    background: rgba(18, 31, 12, 0.22);
  }

  .hp-hero-panel-head {
    min-height: 66px;
  }

  .hp-hero-package-list {
    grid-template-rows: repeat(3, 138px);
  }

  .hp-hero-package-card {
    grid-template-columns: 138px minmax(0, 1fr);
    gap: 10px;
  }

  .hp-hero-package-img {
    min-height: 120px;
  }
}

@media (max-width: 420px) {
  .hp-hero-intro .hp-hero-title {
    font-size: clamp(2rem, 12vw, 2.7rem) !important;
  }

  .hp-hero-package-card {
    grid-template-columns: 128px minmax(0, 1fr);
  }

  .hp-hero-package-list {
    grid-template-rows: repeat(3, 132px);
  }
}

/* Lock the new storefront hero against older hp-* breakpoint rules. */
@media (min-width: 901px) {
  .home-section .hp-hero .hp-hero-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0 !important;
    align-items: stretch !important;
  }

  .home-section .hp-hero .hp-hero-panel {
    width: auto !important;
    min-width: 0 !important;
  }

  .home-section .hp-hero .hp-hero-package-list {
    display: grid !important;
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .home-section .hp-hero .hp-hero-package-card {
    grid-template-columns: minmax(116px, 38%) minmax(0, 1fr) !important;
  }
}

@media (max-width: 900px) {
  .home-section .hp-hero .hp-hero-grid {
    display: flex !important;
    gap: 12px !important;
    grid-template-columns: none !important;
  }

  .home-section .hp-hero .hp-hero-panel {
    flex: 0 0 min(420px, calc(100vw - 32px)) !important;
    width: min(420px, calc(100vw - 32px)) !important;
  }

  .home-section .hp-hero .hp-hero-intro .hp-hero-title {
    font-size: clamp(2rem, 12vw, 2.7rem) !important;
  }
}

/* ===== HERO V2: equal desktop columns with large rotating visuals ===== */
.home-section .hp-hero {
  --hero-column-gap: clamp(18px, 1.38vw, 27px);
}

.home-section .hp-hero .hp-hero-panel {
  border-radius: 16px;
}

.home-section .hp-hero .hp-hero-ready::before {
  display: none !important;
}

.home-section .hp-hero .hp-hero-showcase-stage {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.home-section .hp-hero .hp-hero-showcase-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  justify-items: center;
  gap: 10px;
  padding: clamp(12px, 1.4vw, 22px);
  color: #fff8df;
  opacity: 0;
  pointer-events: none;
  transform: scale(.985);
  transition: opacity 700ms ease, transform 900ms cubic-bezier(.2,.6,.2,1);
}

.home-section .hp-hero .hp-hero-showcase-media {
  grid-row: 1;
  display: grid;
  place-items: center;
  width: min(88%, 330px);
  aspect-ratio: 1 / 1;
  padding: clamp(8px, 0.75vw, 12px);
  align-self: center;
  justify-self: center;
  border: 1px solid rgba(232, 200, 112, 0.14);
  border-radius: 10px;
  background: rgba(15, 27, 10, 0.13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.home-section .hp-hero .hp-hero-showcase-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.home-section .hp-hero .hp-hero-showcase-slide img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(0,0,0,.28));
}

.home-section .hp-hero .hp-hero-showcase-badge {
  position: absolute;
  top: clamp(12px, 1.2vw, 18px);
  left: clamp(12px, 1.2vw, 18px);
  z-index: 2;
  padding: 5px 10px;
  border: 1px solid rgba(232,200,112,.42);
  border-radius: 999px;
  background: rgba(31, 50, 18, .82);
  color: var(--gold-light);
  font-family: "Cinzel", serif;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: 1px;
}

.home-section .hp-hero .hp-hero-showcase-caption {
  z-index: 2;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  width: min(100%, 360px);
  padding: 8px 12px;
  border: 1px solid rgba(232,200,112,.28);
  border-radius: 999px;
  background: rgba(13, 23, 9, .44);
  box-shadow: 0 14px 28px rgba(0,0,0,.18);
}

.home-section .hp-hero .hp-hero-showcase-caption strong,
.home-section .hp-hero .hp-hero-showcase-caption em {
  color: #fff8df;
  font-style: normal;
  line-height: 1;
  white-space: nowrap;
}

.home-section .hp-hero .hp-hero-showcase-caption strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: clamp(.78rem, .9vw, .98rem);
  font-weight: 900;
}

.home-section .hp-hero .hp-hero-showcase-caption em {
  color: var(--gold-light);
  font-family: "Cinzel", serif;
  font-size: clamp(.82rem, .96vw, 1rem);
  font-weight: 900;
}

.home-section .hp-hero .hp-hero-showcase-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  z-index: 3;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.home-section .hp-hero .hp-hero-showcase-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.34);
  transition: width 300ms ease, background 300ms ease;
}

.home-section .hp-hero .hp-hero-showcase-dot.is-active {
  width: 18px;
  background: var(--gold-light);
}

@media (min-width: 901px) {
  .home-section .hp-hero {
    padding: var(--hero-column-gap) !important;
    background: #fbfaf5 !important;
    box-shadow: 0 18px 44px rgba(24, 34, 16, 0.16) !important;
  }

  .home-section .hp-hero .hp-hero-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: var(--hero-column-gap) !important;
    height: clamp(468px, calc(100dvh - var(--home-nav-h, 72px) - 136px), 560px) !important;
    min-height: 0 !important;
    overflow: visible !important;
  }

  .home-section .hp-hero .hp-hero-panel {
    width: auto !important;
    height: 100% !important;
    margin: 0 !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .home-section .hp-hero .hp-hero-intro {
    clip-path: polygon(72px 0, 100% 0, 100% 100%, 0 100%, 0 72px);
    border: 0 !important;
    background:
      linear-gradient(135deg, rgba(31, 53, 24, 0.99) 0%, rgba(48, 80, 34, 0.97) 58%, rgba(34, 57, 25, 0.99) 100%),
      radial-gradient(circle at 80% 0%, rgba(232,200,112,.14), transparent 34%);
    box-shadow: none !important;
  }

  .home-section .hp-hero .hp-hero-ready,
  .home-section .hp-hero .hp-hero-custom {
    border-left: 0 !important;
    background:
      linear-gradient(135deg, rgba(31, 53, 24, .98) 0%, rgba(45, 74, 34, .96) 100%),
      radial-gradient(circle at 50% 24%, rgba(232,200,112,.1), transparent 38%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  }

  .home-section .hp-hero .hp-hero-packages {
    padding: clamp(12px, 1.3vw, 18px) !important;
  }

  .home-section .hp-hero .hp-hero-panel-head {
    min-height: auto;
    margin: 0 0 4px;
    text-align: center;
  }

  .home-section .hp-hero .hp-hero-panel-head p {
    max-width: none;
  }
}

@media (max-width: 900px) {
  .home-section .hp-hero .hp-hero-showcase-stage {
    min-height: 390px;
  }

  .home-section .hp-hero .hp-hero-showcase-slide {
    padding: 14px;
  }

  .home-section .hp-hero .hp-hero-showcase-media {
    width: min(90%, 335px);
  }

  .home-section .hp-hero .hp-hero-showcase-slide img {
    width: 100%;
    height: 100%;
  }

  .home-section .hp-hero .hp-hero-showcase-caption {
    width: min(100%, 310px);
  }
}

/* Desktop hero height budget: keep the full first screen inside shorter laptop viewports. */
@media (min-width: 901px) {
  .home-section .hp {
    padding-top: 8px !important;
  }

  .home-section .hp-hero {
    margin-top: 4px !important;
    margin-bottom: 12px !important;
    padding: clamp(10px, 1.1vw, 16px) !important;
  }

  .home-section .hp-hero .hp-hero-grid {
    min-height: 0 !important;
    height: clamp(462px, calc(100dvh - var(--home-nav-h, 72px) - 128px), 548px) !important;
    overflow: hidden !important;
  }

  .home-section .hp-hero .hp-hero-panel {
    height: 100% !important;
    min-height: 0 !important;
    overflow: hidden !important;
  }

  .home-section .hp-hero .hp-hero-intro {
    padding: clamp(20px, 1.9vw, 28px) !important;
    justify-content: center;
    margin-left: clamp(10px, 1.2vw, 18px);
    margin-right: clamp(16px, 1.6vw, 24px);
    border: 0 !important;
    clip-path: polygon(64px 0, 100% 0, 100% 100%, 0 100%, 0 64px);
    box-shadow: 18px 0 40px rgba(11, 22, 7, 0.28) !important;
  }

  .home-section .hp-hero .hp-hero-ready::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(-1 * clamp(16px, 1.6vw, 24px));
    width: clamp(16px, 1.6vw, 24px);
    z-index: 0;
    background: linear-gradient(180deg, #fbfaf5 0%, #f2efe3 100%);
    box-shadow:
      inset -1px 0 rgba(232, 200, 112, 0.18),
      inset 1px 0 rgba(255,255,255,0.86);
  }

  .home-section .hp-hero .hp-hero-ready {
    overflow: visible !important;
  }

  .home-section .hp-hero .hp-hero-ready > * {
    position: relative;
    z-index: 1;
  }

  .home-section .hp-hero .hp-hero-intro::before {
    left: 74px;
    top: 14px;
  }

  .home-section .hp-hero .hp-hero-intro .hp-hero-kicker {
    margin-bottom: 5px;
    font-size: .56rem;
    letter-spacing: 1.7px;
  }

  .home-section .hp-hero .hp-hero-intro .hp-hero-title {
    margin-bottom: 8px;
    font-size: clamp(1.68rem, 2.25vw, 2.45rem) !important;
    line-height: 1.02;
  }

  .home-section .hp-hero .hp-hero-welcome {
    margin-bottom: 8px;
    font-size: clamp(1.08rem, 1.45vw, 1.35rem);
  }

  .home-section .hp-hero .hp-hero-sub {
    margin-bottom: 10px;
    font-size: clamp(.84rem, .88vw, .94rem);
    line-height: 1.4;
  }

  .home-section .hp-hero .hp-hero-cta {
    gap: 10px;
  }

  .home-section .hp-hero .hp-btn-primary,
  .home-section .hp-hero .hp-btn-ghost {
    min-height: 38px;
    padding: 8px 12px;
    font-size: .82rem;
  }

  .home-section .hp-hero .hp-hero-packages {
    min-height: 0 !important;
    padding: clamp(10px, 1vw, 14px) !important;
  }

  .home-section .hp-hero .hp-hero-panel-head {
    min-height: 48px;
    margin-bottom: 6px;
  }

  .home-section .hp-hero .hp-hero-panel-head span {
    margin-bottom: 3px;
    font-size: .65rem;
  }

  .home-section .hp-hero .hp-hero-panel-head p {
    font-size: clamp(.92rem, 1.08vw, 1.16rem);
  }

  .home-section .hp-hero .hp-hero-package-list {
    min-height: 0 !important;
    gap: 7px !important;
  }

  .home-section .hp-hero .hp-hero-package-card {
    grid-template-columns: minmax(88px, 35%) minmax(0, 1fr) !important;
    gap: 8px;
    min-height: 0 !important;
    padding: 6px;
    border-radius: 10px;
  }

  .home-section .hp-hero .hp-hero-package-img {
    min-height: 0;
    border-radius: 8px;
  }

  .home-section .hp-hero .hp-hero-package-copy {
    gap: 3px;
  }

  .home-section .hp-hero .hp-hero-package-copy strong {
    font-size: clamp(.74rem, .82vw, .88rem);
  }

  .home-section .hp-hero .hp-hero-package-copy span {
    font-size: clamp(.61rem, .66vw, .7rem);
    line-height: 1.2;
  }

  .home-section .hp-hero .hp-hero-package-copy em {
    font-size: clamp(.8rem, .88vw, .96rem);
  }
}

/* HERO V2 final lock: later compact rules must not reintroduce old spacing/card layout. */
@media (min-width: 901px) {
  .home-section .hp-hero {
    --hero-page-pad: clamp(14px, 2vw, 38px);
    width: 96vw !important;
    max-width: none !important;
    margin-left: 50% !important;
    margin-right: 0 !important;
    transform: translateX(-50%);
    padding: var(--hero-column-gap) !important;
    background: #fbfaf5 !important;
  }

  .home-section .hp-hero .hp-hero-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: var(--hero-column-gap) !important;
    height: clamp(468px, calc(100dvh - var(--home-nav-h, 72px) - 136px), 560px) !important;
    overflow: visible !important;
  }

  .home-section .hp-hero .hp-hero-panel {
    margin: 0 !important;
    width: auto !important;
    overflow: hidden !important;
  }

  .home-section .hp-hero .hp-hero-intro {
    margin: 0 !important;
    clip-path: polygon(72px 0, 100% 0, 100% 100%, 0 100%, 0 72px) !important;
    box-shadow: none !important;
  }

  .home-section .hp-hero .hp-hero-ready::before {
    display: none !important;
    content: none !important;
  }

  .home-section .hp-hero .hp-hero-ready,
  .home-section .hp-hero .hp-hero-custom {
    overflow: hidden !important;
  }
}

/* HERO V3: equal green columns with page-color breathing room. */
.home-section .hp-hero {
  --hero-breath: clamp(14px, 1.5vw, 24px);
  --hero-panel-radius: 14px;
  position: relative !important;
  width: 100vw !important;
  max-width: none !important;
  margin: 0 0 20px !important;
  margin-left: 50% !important;
  padding: var(--hero-breath) !important;
  background: #fbfaf5 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: translateX(-50%) !important;
  overflow: visible !important;
}

.home-section .hp-hero .hp-hero-grid {
  gap: var(--hero-breath) !important;
}

.home-section .hp-hero .hp-hero-panel {
  min-width: 0 !important;
  border-radius: var(--hero-panel-radius) !important;
  background:
    linear-gradient(135deg, rgba(31, 53, 24, 0.99) 0%, rgba(49, 82, 35, 0.97) 54%, rgba(24, 42, 17, 0.99) 100%),
    radial-gradient(circle at 72% 16%, rgba(232, 200, 112, 0.17), transparent 34%) !important;
  box-shadow: 0 16px 34px rgba(22, 34, 14, 0.18) !important;
  overflow: hidden !important;
}

.home-section .hp-hero .hp-hero-intro {
  align-items: center !important;
  justify-content: center !important;
  padding: clamp(28px, 3vw, 46px) !important;
  border: 0 !important;
  clip-path: none !important;
  text-align: center !important;
}

.home-section .hp-hero .hp-hero-intro::after {
  content: "";
  position: absolute;
  inset: clamp(10px, 1vw, 14px);
  border: 1px solid rgba(232, 200, 112, 0.2);
  border-radius: calc(var(--hero-panel-radius) - 3px);
  pointer-events: none;
}

.home-section .hp-hero .hp-hero-intro::before {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  display: block !important;
  width: 38px !important;
  height: 1px !important;
  margin: 0 auto 24px !important;
  flex: 0 0 auto;
  background: rgba(246, 242, 234, 0.45) !important;
  opacity: 0;
  animation: kahyaHeroFade 1.3s 0.62s ease forwards;
}

.home-section .hp-hero .hp-hero-mobile-cue {
  display: none;
}

.home-section .hp-hero .hp-hero-cta {
  display: none !important;
}

.home-section .hp-hero .hp-hero-intro .hp-hero-kicker {
  display: none !important;
  margin-bottom: 9px !important;
  color: rgba(246, 242, 234, 0.68) !important;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif !important;
  font-size: clamp(0.82rem, 0.9vw, 1rem) !important;
  font-style: italic !important;
  font-weight: 300 !important;
  letter-spacing: 0 !important;
  line-height: 1.35 !important;
  opacity: 0;
  transform: translateY(12px);
  animation: kahyaHeroRise 1.35s 0.85s cubic-bezier(0.2, 0.6, 0.15, 1) forwards;
}

.home-section .hp-hero .hp-hero-intro .hp-hero-title {
  width: 100%;
  max-width: 100%;
  margin: 0 auto 20px !important;
  color: #f6f2ea !important;
  font-family: "Bodoni Moda", "Didot", "Bodoni 72", Georgia, serif !important;
  font-size: clamp(1.76rem, 2.24vw, 2.64rem) !important;
  font-style: italic !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1.04 !important;
  opacity: 0;
  transform: translateY(18px);
  animation: kahyaHeroRise 1.5s 0.25s cubic-bezier(0.2, 0.6, 0.15, 1) forwards;
}

.home-section .hp-hero .hp-title-line {
  display: block;
  white-space: nowrap;
}

.home-section .hp-hero .hp-hero-intro .hp-accent {
  display: block;
  margin-top: 6px;
  color: var(--gold-light) !important;
  font-style: normal !important;
  font-weight: 600 !important;
}

.home-section .hp-hero .hp-hero-welcome {
  order: -1;
  margin: 0 0 16px !important;
  color: rgba(246, 242, 234, 0.82) !important;
  font-family: "Bodoni Moda", "Didot", Georgia, serif !important;
  font-size: clamp(1.28rem, 1.55vw, 1.86rem) !important;
  font-style: italic !important;
  font-weight: 400 !important;
  letter-spacing: 0.01em !important;
  line-height: 1.2 !important;
  opacity: 0;
  transform: translateY(10px);
  animation: kahyaHeroRise 1.35s 0.88s cubic-bezier(0.2, 0.6, 0.15, 1) forwards;
}

.home-section .hp-hero .hp-hero-sub {
  width: 100%;
  max-width: 100%;
  margin: 0 auto !important;
  color: rgba(246, 242, 234, 0.74) !important;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif !important;
  font-size: clamp(0.95rem, 1vw, 1.12rem) !important;
  font-style: italic !important;
  font-weight: 300 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.34 !important;
  opacity: 0;
  transform: translateY(12px);
  animation: kahyaHeroRise 1.35s 1.08s cubic-bezier(0.2, 0.6, 0.15, 1) forwards;
}

.home-section .hp-hero .hp-sub-line {
  display: block;
  white-space: nowrap;
}

.home-section .hp-hero .hp-sub-line-main {
  color: rgba(246, 242, 234, 0.86);
  font-size: clamp(1.06rem, 1.12vw, 1.28rem);
}

.home-section .hp-hero .hp-sub-line-strong {
  margin-top: 4px;
  color: #f6f2ea;
  font-style: normal;
  font-weight: 600;
}

.home-section .hp-hero .hp-hero-system {
  width: 100%;
  max-width: 100%;
  margin: 20px auto 0 !important;
  color: rgba(246, 242, 234, 0.76);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(12px);
  animation: kahyaHeroRise 1.35s 1.26s cubic-bezier(0.2, 0.6, 0.15, 1) forwards;
}

.home-section .hp-hero .hp-system-line {
  display: block;
  white-space: nowrap;
}

.home-section .hp-hero .hp-system-line-strong {
  color: #f6f2ea;
  font-size: clamp(0.78rem, 0.82vw, 0.94rem);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
}

.home-section .hp-hero .hp-system-line-soft {
  margin-top: 5px;
  color: rgba(246, 242, 234, 0.66);
  font-size: clamp(0.76rem, 0.8vw, 0.9rem);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.home-section .hp-hero .hp-hero-link-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  min-height: 36px;
  padding: 0 2px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(246, 242, 234, 0.86);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(0.96rem, 0.98vw, 1.08rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
  cursor: default;
  opacity: 0;
  transform: translateY(10px);
  animation: kahyaHeroRise 1.35s 1.45s cubic-bezier(0.2, 0.6, 0.15, 1) forwards;
  transition: color 220ms ease, text-shadow 220ms ease;
}

.home-section .hp-hero .hp-hero-link-btn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 380ms cubic-bezier(0.2, 0.6, 0.2, 1);
}

.home-section .hp-hero .hp-hero-link-btn:hover,
.home-section .hp-hero .hp-hero-link-btn:focus-visible {
  color: var(--gold-light);
  outline: none;
  text-shadow: 0 0 18px rgba(216, 181, 92, 0.18);
}

.home-section .hp-hero .hp-hero-link-btn:hover::after,
.home-section .hp-hero .hp-hero-link-btn:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.home-section .hp-hero .hp-hero-trust {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
  row-gap: 7px;
  width: 100%;
  max-width: 100%;
  margin: 18px auto 0;
  padding: 0;
  border: 0;
  background: transparent;
  opacity: 0;
  transform: translateY(10px);
  animation: kahyaHeroRise 1.35s 1.62s cubic-bezier(0.2, 0.6, 0.15, 1) forwards;
}

.home-section .hp-hero .hp-hero-trust .trust-bar-item {
  position: relative;
  min-height: 22px;
  padding: 0 0 0 18px;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(246, 242, 234, 0.82);
  box-shadow: none;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(0.7rem, 0.74vw, 0.82rem);
  font-weight: 600;
  line-height: 1.12;
  text-align: left;
  transform-origin: left center;
  animation: kahyaTrustPulse 1.15s ease-in-out 3.05s 1 both;
  will-change: transform, color, text-shadow;
}

.home-section .hp-hero .hp-hero-trust .trust-bar-item:nth-child(2) {
  animation-delay: 3.42s;
}

.home-section .hp-hero .hp-hero-trust .trust-bar-item:nth-child(3) {
  animation-delay: 3.79s;
}

.home-section .hp-hero .hp-hero-trust .trust-bar-item:nth-child(4) {
  animation-delay: 4.16s;
}

.home-section .hp-hero .hp-hero-trust .trust-bar-item:nth-child(5) {
  animation-delay: 4.53s;
}

.home-section .hp-hero .hp-hero-trust .trust-bar-item:nth-child(6) {
  animation-delay: 4.9s;
}

.home-section .hp-hero .hp-hero-trust .trust-bar-item::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 0.34em;
  width: 8px;
  height: 4px;
  border-left: 1px solid rgba(232, 200, 112, 0.9);
  border-bottom: 1px solid rgba(232, 200, 112, 0.9);
  transform: rotate(-45deg);
  opacity: 0.86;
  filter: drop-shadow(0 0 4px rgba(232, 200, 112, 0.14));
}

.home-section .hp-hero .hp-hero-trust .trust-logo {
  display: none !important;
}

.home-section .hp-hero .hp-hero-trust .trust-bar-cargo {
  color: rgba(246, 242, 234, 0.82);
}

.home-section .hp-hero .hp-hero-packages {
  display: grid !important;
  grid-template-rows: minmax(0, 1fr) clamp(62px, 5vw, 72px);
  gap: clamp(10px, 1vw, 14px);
  padding: clamp(16px, 1.45vw, 22px) !important;
  border-left: 0 !important;
}

.home-section .hp-hero .hp-hero-ready,
.home-section .hp-hero .hp-hero-custom {
  background:
    linear-gradient(142deg, rgba(26, 45, 18, 0.99) 0%, rgba(48, 78, 34, 0.97) 52%, rgba(18, 32, 13, 0.99) 100%),
    radial-gradient(circle at 50% 20%, rgba(246, 242, 234, 0.08), transparent 36%),
    radial-gradient(circle at 84% 86%, rgba(232, 200, 112, 0.12), transparent 32%) !important;
}

.home-section .hp-hero .hp-hero-packages::before {
  content: "";
  position: absolute;
  inset: clamp(10px, 1vw, 14px);
  border: 1px solid rgba(232, 200, 112, 0.22);
  border-radius: calc(var(--hero-panel-radius) - 3px);
  pointer-events: none;
}

.home-section .hp-hero .hp-hero-ready::before {
  content: "" !important;
  position: absolute !important;
  inset: clamp(10px, 1vw, 14px) !important;
  width: auto !important;
  height: auto !important;
  border: 1px solid rgba(232, 200, 112, 0.22) !important;
  border-radius: calc(var(--hero-panel-radius) - 3px) !important;
  background: transparent !important;
  box-shadow: none !important;
  display: block !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

.home-section .hp-hero .hp-hero-packages::after {
  content: "";
  position: absolute;
  left: clamp(34px, 3vw, 50px);
  right: clamp(34px, 3vw, 50px);
  bottom: clamp(82px, 7vw, 106px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 200, 112, 0.36), transparent);
  pointer-events: none;
}

.home-section .hp-hero .hp-hero-packages > * {
  position: relative;
  z-index: 1;
}

.home-section .hp-hero .hp-hero-panel-head {
  align-self: end;
  min-height: clamp(62px, 5vw, 72px) !important;
  margin: 0 !important;
  padding: 2px clamp(10px, 1vw, 16px) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.home-section .hp-hero .hp-hero-panel-head span {
  color: rgba(232, 200, 112, 0.9) !important;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif !important;
  font-size: clamp(0.76rem, 0.82vw, 0.9rem) !important;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.1em !important;
}

.home-section .hp-hero .hp-hero-panel-head p {
  max-width: none !important;
  min-height: 2.16em;
  color: rgba(246, 242, 234, 0.9) !important;
  font-family: "Bodoni Moda", "Didot", Georgia, serif !important;
  font-size: clamp(1rem, 1.12vw, 1.26rem) !important;
  font-style: italic;
  font-weight: 400;
  line-height: 1.08;
}

.home-section .hp-hero .hp-hero-showcase-slide {
  padding: clamp(18px, 1.8vw, 28px) clamp(18px, 1.8vw, 28px) clamp(12px, 1.2vw, 18px) !important;
}

.home-section .hp-hero .hp-hero-showcase-slide img {
  width: 100% !important;
  height: 100% !important;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.22)) saturate(0.96);
}

.home-section .hp-hero .hp-hero-showcase-badge {
  top: clamp(18px, 1.8vw, 26px) !important;
  left: clamp(18px, 1.8vw, 26px) !important;
  padding: 4px 9px !important;
  border-color: rgba(232, 200, 112, 0.35) !important;
  background: rgba(15, 27, 10, 0.54) !important;
  color: rgba(246, 242, 234, 0.86) !important;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif !important;
  font-size: 0.68rem !important;
  font-style: italic;
  letter-spacing: 0.08em !important;
}

.home-section .hp-hero .hp-hero-showcase-caption {
  width: min(100%, 330px) !important;
  padding: 7px 0 0 !important;
  border: 0 !important;
  border-top: 1px solid rgba(232, 200, 112, 0.26) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.home-section .hp-hero .hp-hero-showcase-caption strong {
  color: rgba(246, 242, 234, 0.9) !important;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(0.86rem, 0.92vw, 1rem) !important;
  font-style: italic !important;
  font-weight: 600 !important;
}

.home-section .hp-hero .hp-hero-showcase-caption em {
  color: var(--gold-light) !important;
  font-family: "Bodoni Moda", "Didot", Georgia, serif !important;
  font-size: clamp(0.86rem, 0.94vw, 1.02rem) !important;
  font-style: normal !important;
  font-weight: 500 !important;
}

.home-section .hp-hero .hp-hero-showcase-dot {
  background: rgba(246, 242, 234, 0.32) !important;
}

.home-section .hp-hero .hp-hero-showcase-dot.is-active {
  background: var(--gold-light) !important;
}

.home-section .hp-hero .hp-hero-merged-cta {
  display: none;
}

.home-section .hp-hero .hp-hero-custom-showcases {
  display: none;
}

.home-section .hp-hero .hp-hero-custom-mobile-showcase {
  display: flex;
  min-height: 0;
}

@media (min-width: 901px) {
  .home-section .hp-hero {
    width: 100vw !important;
    margin-left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .home-section .hp-hero .hp-hero-grid {
    position: relative;
    display: grid !important;
    grid-template-columns:
      calc((100% - (var(--hero-breath) * 2)) / 3)
      var(--hero-breath)
      repeat(3, minmax(0, 1fr)) !important;
    height: clamp(468px, calc(100dvh - var(--home-nav-h, 72px) - 128px), 560px) !important;
    gap: 0 !important;
    min-height: 0 !important;
    overflow: visible !important;
  }

  .home-section .hp-hero:not(.hp-action-hero) .hp-hero-grid::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: calc(((100% - (var(--hero-breath) * 2)) / 3) + var(--hero-breath));
    border-radius: var(--hero-panel-radius);
    background:
      linear-gradient(142deg, rgba(26, 45, 18, 0.99) 0%, rgba(48, 78, 34, 0.97) 52%, rgba(18, 32, 13, 0.99) 100%),
      radial-gradient(circle at 50% 20%, rgba(246, 242, 234, 0.08), transparent 36%),
      radial-gradient(circle at 84% 86%, rgba(232, 200, 112, 0.12), transparent 32%);
    box-shadow: 0 16px 34px rgba(22, 34, 14, 0.18);
    pointer-events: none;
    z-index: 0;
  }

  .home-section .hp-hero:not(.hp-action-hero) .hp-hero-grid::after {
    content: "";
    position: absolute;
    top: clamp(10px, 1vw, 14px);
    right: clamp(10px, 1vw, 14px);
    bottom: clamp(10px, 1vw, 14px);
    left: calc(((100% - (var(--hero-breath) * 2)) / 3) + var(--hero-breath) + clamp(10px, 1vw, 14px));
    border: 1px solid rgba(232, 200, 112, 0.22);
    border-radius: calc(var(--hero-panel-radius) - 3px);
    pointer-events: none;
    z-index: 1;
  }

  .home-section .hp-hero .hp-hero-ready,
  .home-section .hp-hero .hp-hero-custom {
    grid-row: 1;
    width: 100%;
    height: 100%;
    align-self: stretch;
    justify-self: stretch;
    z-index: 2;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  .home-section .hp-hero .hp-hero-ready::before,
  .home-section .hp-hero .hp-hero-custom::before {
    content: none !important;
    display: none !important;
  }

  .home-section .hp-hero .hp-hero-ready {
    grid-column: 3;
    padding-left: clamp(4px, 0.5vw, 8px) !important;
    padding-right: clamp(4px, 0.5vw, 8px) !important;
  }

  .home-section .hp-hero .hp-hero-custom {
    grid-column: 4 / 6;
    padding-left: clamp(4px, 0.5vw, 8px) !important;
    padding-right: clamp(12px, 1.4vw, 22px) !important;
  }

  .home-section .hp-hero .hp-hero-custom .hp-hero-panel-head {
    display: none !important;
  }

  .home-section .hp-hero .hp-hero-custom.hp-hero-packages {
    grid-template-rows: minmax(0, 1fr);
    padding-bottom: clamp(82px, 7vw, 96px) !important;
  }

  .home-section .hp-hero .hp-hero-custom.hp-hero-packages::after {
    content: none;
    display: none;
  }

  .home-section .hp-hero .hp-hero-custom-mobile-showcase {
    display: none !important;
  }

  .home-section .hp-hero .hp-hero-custom-showcases {
    display: grid;
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(6px, 0.8vw, 12px);
  }

  .home-section .hp-hero .hp-hero-mini-showcase {
    display: flex;
    min-width: 0;
    min-height: 0;
  }

  .home-section .hp-hero .hp-hero-ready .hp-hero-showcase-media {
    width: min(100%, clamp(249px, 19.45vw, 300px));
  }

  .home-section .hp-hero .hp-hero-ready .hp-hero-showcase-slide {
    padding: clamp(8px, 0.8vw, 12px) 4px 12px !important;
  }

  .home-section .hp-hero .hp-hero-mini-showcase .hp-hero-showcase-media {
    width: min(100%, clamp(249px, 19.45vw, 300px));
  }

  .home-section .hp-hero .hp-hero-ready .hp-hero-showcase-media,
  .home-section .hp-hero .hp-hero-mini-showcase .hp-hero-showcase-media {
    border-color: rgba(232, 200, 112, 0.2);
    background:
      linear-gradient(180deg, rgba(246, 242, 234, 0.05), rgba(15, 27, 10, 0.12)),
      rgba(15, 27, 10, 0.13);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      0 12px 24px rgba(0, 0, 0, 0.08);
  }

  .home-section .hp-hero .hp-hero-mini-showcase .hp-hero-showcase-slide {
    padding: clamp(8px, 0.8vw, 12px) 4px 12px !important;
  }

  .home-section .hp-hero .hp-hero-mini-showcase .hp-hero-showcase-caption {
    width: min(100%, clamp(249px, 19.45vw, 300px)) !important;
  }

  .home-section .hp-hero .hp-hero-mini-showcase .hp-hero-showcase-caption strong,
  .home-section .hp-hero .hp-hero-mini-showcase .hp-hero-showcase-caption em {
    font-size: clamp(0.78rem, 0.82vw, 0.94rem) !important;
  }

  .home-section .hp-hero .hp-hero-mini-showcase .hp-hero-showcase-dots {
    bottom: 2px;
    display: flex;
    gap: 6px;
  }

  .home-section .hp-hero .hp-hero-mini-showcase .hp-hero-showcase-dot {
    width: 5px;
    height: 5px;
  }

  .home-section .hp-hero .hp-hero-merged-cta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: clamp(24px, 3vw, 34px);
    z-index: 3;
    display: flex;
    min-height: 58px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
  }

  .home-section .hp-hero .hp-hero-merged-cta span {
    color: rgba(232, 200, 112, 0.9);
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: clamp(0.76rem, 0.82vw, 0.9rem);
    font-style: italic;
    font-weight: 600;
    letter-spacing: 0.1em;
  }

  .home-section .hp-hero .hp-hero-merged-cta p {
    margin: 6px 0 0;
    color: rgba(246, 242, 234, 0.92);
    font-family: "Bodoni Moda", "Didot", Georgia, serif;
    font-size: clamp(1rem, 1.12vw, 1.26rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.08;
  }

}

@media (max-width: 900px) {
  .home-section .hp-hero {
    margin-bottom: 18px !important;
    padding: var(--hero-breath) !important;
  }

  .home-section .hp-hero .hp-hero-grid {
    padding: 0 !important;
    gap: var(--hero-breath) !important;
  }

  .home-section .hp-hero .hp-hero-panel {
    flex: 0 0 calc(100vw - (var(--hero-breath) * 2)) !important;
    width: calc(100vw - (var(--hero-breath) * 2)) !important;
  }

  .home-section .hp-hero .hp-hero-intro {
    min-height: min(560px, calc(100dvh - var(--home-nav-h, 64px) - (var(--hero-breath) * 2))) !important;
    padding: clamp(34px, 8vw, 46px) clamp(28px, 8vw, 36px) !important;
    overflow: visible !important;
  }

  .home-section .hp-hero .hp-hero-intro::after {
    z-index: 0;
  }

  .home-section .hp-hero .hp-hero-intro > :not(.hp-hero-mobile-cue) {
    width: min(100%, 304px) !important;
    max-width: calc(100% - 26px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .home-section .hp-hero .hp-hero-mobile-cue {
    position: absolute !important;
    top: 50%;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--hero-breath);
    min-height: 126px;
    padding: 14px 0 28px;
    border: 1px solid rgba(31, 53, 24, 0.18);
    border-radius: 999px;
    background: rgba(251, 250, 245, 0.9);
    box-shadow: 0 8px 18px rgba(31, 53, 24, 0.08);
    color: #000;
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: clamp(0.62rem, 2.85vw, 0.72rem);
    font-style: italic;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1;
    text-orientation: mixed;
    text-transform: none;
    writing-mode: vertical-rl;
    cursor: pointer;
    opacity: 0;
    animation: kahyaHeroFade 0.75s 0.36s ease forwards;
    transition: border-color 220ms ease, color 220ms ease, background 220ms ease;
  }

  .home-section .hp-hero .hp-hero-mobile-cue-left {
    left: 0;
    transform: translateY(-50%) rotate(180deg);
  }

  .home-section .hp-hero .hp-hero-mobile-cue-right {
    right: 0;
    transform: translateY(-50%);
  }

  .home-section .hp-hero .hp-hero-mobile-cue::before {
    content: "\203A";
    position: absolute;
    left: 50%;
    bottom: 4px;
    color: #000;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.08rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    writing-mode: horizontal-tb;
    transform: translateX(-50%);
  }

  .home-section .hp-hero .hp-hero-mobile-cue.is-hidden {
    opacity: 0 !important;
    pointer-events: none;
    visibility: hidden;
    animation: none;
  }

  .home-section .hp-hero .hp-hero-mobile-cue:hover,
  .home-section .hp-hero .hp-hero-mobile-cue:focus-visible {
    color: #000;
    outline: none;
  }

  .home-section .hp-hero .hp-hero-intro .hp-hero-title {
    max-width: 100%;
    font-size: clamp(1.56rem, 7.05vw, 2.02rem) !important;
  }

  .home-section .hp-hero .hp-hero-sub {
    max-width: 100%;
    font-size: clamp(0.78rem, 3.7vw, 0.93rem) !important;
  }

  .home-section .hp-hero .hp-sub-line-main {
    font-size: clamp(0.86rem, 4.2vw, 1.02rem);
  }

  .home-section .hp-hero .hp-hero-system {
    margin-top: 18px !important;
  }

  .home-section .hp-hero .hp-system-line-strong {
    font-size: clamp(0.66rem, 3.05vw, 0.78rem);
  }

  .home-section .hp-hero .hp-system-line-soft {
    font-size: clamp(0.66rem, 3.05vw, 0.78rem);
  }

  .home-section .hp-hero .hp-hero-link-btn {
    margin-top: 18px;
    font-size: clamp(0.9rem, 4.1vw, 1rem);
  }

  .home-section .hp-hero .hp-hero-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 12px;
    row-gap: 6px;
    margin-top: 14px;
  }

  .home-section .hp-hero .hp-hero-trust .trust-bar-item {
    min-height: 19px;
    padding-left: 15px;
    font-size: clamp(0.62rem, 2.85vw, 0.72rem);
  }

  .home-section .hp-hero .hp-hero-trust .trust-bar-item::before {
    top: 0.34em;
    width: 7px;
    height: 4px;
  }

  .home-section .hp-hero .hp-hero-showcase-stage {
    min-height: min(390px, 92vw) !important;
  }

  .home-section .hp-hero .hp-hero-showcase-slide {
    padding: 8px 5px 12px !important;
  }

  .home-section .hp-hero .hp-hero-showcase-media {
    width: min(100%, 322px) !important;
    padding: clamp(5px, 1.4vw, 7px);
  }

  .home-section .hp-hero .hp-hero-packages {
    grid-template-rows: minmax(0, 1fr) 72px;
  }

  .home-section .hp-hero .hp-hero-panel-head {
    min-height: 72px !important;
  }

  .home-section .hp-hero .hp-hero-packages::after {
    bottom: 76px;
  }

  .home-section .hp-hero .hp-hero-panel-head p {
    font-size: clamp(0.94rem, 4.4vw, 1.12rem) !important;
  }
}

/* HERO V70: light premium product wing for the first hero only. */
@media (min-width: 901px) {
  .home-section .hp-hero:not(.hp-action-hero) .hp-hero-grid::before {
    background:
      radial-gradient(circle at 18% 12%, rgba(232, 200, 112, 0.18), transparent 30%),
      radial-gradient(circle at 86% 86%, rgba(45, 68, 31, 0.08), transparent 34%),
      linear-gradient(135deg, #fffdf7 0%, #f7f0df 48%, #fffaf0 100%) !important;
    box-shadow:
      0 20px 42px rgba(22, 34, 14, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.86) !important;
  }

  .home-section .hp-hero:not(.hp-action-hero) .hp-hero-grid::after {
    border-color: rgba(190, 151, 62, 0.42) !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
  }
}

@media (max-width: 900px) {
  .home-section .hp-hero:not(.hp-action-hero) .hp-hero-ready,
  .home-section .hp-hero:not(.hp-action-hero) .hp-hero-custom {
    background:
      radial-gradient(circle at 18% 10%, rgba(232, 200, 112, 0.16), transparent 34%),
      linear-gradient(135deg, #fffdf7 0%, #f7f0df 52%, #fffaf0 100%) !important;
    box-shadow: 0 16px 32px rgba(22, 34, 14, 0.14) !important;
  }

  .home-section .hp-hero:not(.hp-action-hero) .hp-hero-packages::before,
  .home-section .hp-hero:not(.hp-action-hero) .hp-hero-ready::before {
    border-color: rgba(190, 151, 62, 0.42) !important;
  }
}

.home-section .hp-hero:not(.hp-action-hero) .hp-hero-packages::after {
  background: linear-gradient(90deg, transparent, rgba(171, 130, 43, 0.42), transparent) !important;
}

.home-section .hp-hero:not(.hp-action-hero) .hp-hero-ready .hp-hero-showcase-media,
.home-section .hp-hero:not(.hp-action-hero) .hp-hero-mini-showcase .hp-hero-showcase-media {
  border-color: rgba(190, 151, 62, 0.36) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 246, 232, 0.9)),
    #fff !important;
  box-shadow:
    0 18px 30px rgba(45, 68, 31, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92) !important;
}

.home-section .hp-hero:not(.hp-action-hero) .hp-hero-showcase-slide img {
  filter: drop-shadow(0 14px 18px rgba(45, 68, 31, 0.16)) saturate(0.98) !important;
}

.home-section .hp-hero:not(.hp-action-hero) .hp-hero-showcase-badge {
  border-color: rgba(171, 130, 43, 0.46) !important;
  background: rgba(255, 250, 237, 0.92) !important;
  color: #243816 !important;
  box-shadow: 0 8px 18px rgba(45, 68, 31, 0.1);
}

.home-section .hp-hero:not(.hp-action-hero) .hp-hero-showcase-caption {
  border-top-color: rgba(171, 130, 43, 0.42) !important;
}

.home-section .hp-hero:not(.hp-action-hero) .hp-hero-showcase-caption strong {
  color: rgba(38, 54, 26, 0.92) !important;
}

.home-section .hp-hero:not(.hp-action-hero) .hp-hero-showcase-caption em {
  color: #a97b22 !important;
}

.home-section .hp-hero:not(.hp-action-hero) .hp-hero-panel-head span,
.home-section .hp-hero:not(.hp-action-hero) .hp-hero-merged-cta span {
  color: #a97b22 !important;
}

.home-section .hp-hero:not(.hp-action-hero) .hp-hero-panel-head p,
.home-section .hp-hero:not(.hp-action-hero) .hp-hero-merged-cta p {
  color: rgba(38, 54, 26, 0.92) !important;
}

.home-section .hp-hero:not(.hp-action-hero) .hp-hero-showcase-dot {
  background: rgba(171, 130, 43, 0.32) !important;
}

.home-section .hp-hero:not(.hp-action-hero) .hp-hero-showcase-dot.is-active {
  background: #a97b22 !important;
}

/* HERO V4: second three-column action hero, cloned from the primary hero shell. */
.home-section .hp-action-hero {
  margin-top: 10px !important;
}

.home-section .hp-action-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--gold);
  pointer-events: none;
}

.home-section .hp-action-hero .hp-action-grid {
  min-height: clamp(520px, 62vh, 640px) !important;
}

.home-section .hp-action-hero .hp-action-panel {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 2.2vw, 34px) !important;
  text-align: center;
  color: #f6f2ea;
}

.home-section .hp-action-hero .hp-action-choice {
  width: min(100%, 31ch);
  margin: 0 auto;
  padding: 0 0 8px;
}

.home-section .hp-action-hero .hp-action-choice + .hp-action-choice {
  padding-top: 8px;
  border-top: 1px solid rgba(232, 200, 112, 0.16);
}

.home-section .hp-action-hero .hp-action-panel::before {
  content: "";
  position: absolute;
  inset: clamp(10px, 1vw, 14px);
  border: 1px solid rgba(232, 200, 112, 0.22);
  border-radius: calc(var(--hero-panel-radius) - 3px);
  pointer-events: none;
}

.home-section .hp-action-hero .hp-action-panel > * {
  position: relative;
  z-index: 1;
}

.home-section .hp-action-hero .hp-action-kicker {
  display: block;
  max-width: 100%;
  margin: 0 auto 7px;
  color: rgba(232, 200, 112, 0.92);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(0.78rem, 0.86vw, 0.98rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.16;
}

.home-section .hp-action-hero .hp-action-title {
  max-width: 100%;
  margin: 0 auto 8px;
  color: #f6f2ea;
  font-family: "Bodoni Moda", "Didot", Georgia, serif;
  font-size: clamp(0.96rem, 1.08vw, 1.28rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.1;
}

.home-section .hp-action-hero .hp-action-copy {
  max-width: 28ch;
  margin: 0 auto;
  color: rgba(246, 242, 234, 0.78);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(0.76rem, 0.82vw, 0.94rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.24;
}

.home-section .hp-action-hero .hp-action-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  min-height: 28px;
  padding: 0 2px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(246, 242, 234, 0.88);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(0.76rem, 0.84vw, 0.96rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: color 220ms ease, text-shadow 220ms ease;
}

.home-section .hp-action-hero .hp-action-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 520ms cubic-bezier(0.2, 0.6, 0.2, 1);
}

.home-section .hp-action-hero .hp-action-link:hover,
.home-section .hp-action-hero .hp-action-link:focus-visible {
  color: var(--gold-light);
  outline: none;
  text-shadow: 0 0 18px rgba(216, 181, 92, 0.18);
}

.home-section .hp-action-hero .hp-action-link:hover::after,
.home-section .hp-action-hero .hp-action-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.home-section .hp-action-hero .hp-action-note {
  display: grid;
  gap: 4px;
  max-width: 31ch;
  margin: 0 auto;
  padding-top: 8px;
  border-top: 1px solid rgba(232, 200, 112, 0.22);
  color: rgba(246, 242, 234, 0.76);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(0.72rem, 0.78vw, 0.88rem);
  font-style: italic;
  line-height: 1.25;
}

.home-section .hp-action-hero .hp-action-note strong {
  color: rgba(232, 200, 112, 0.94);
  font-style: normal;
  font-weight: 700;
}

.home-section .hp-action-hero .hp-action-note em {
  color: #f6f2ea;
  font-weight: 600;
}

.home-section .hp-action-hero .hp-action-cats,
.home-section .hp-action-hero .hp-action-brands {
  justify-content: flex-start;
}

.home-section .hp-action-hero .hp-action-cat-grid {
  width: min(100%, 390px);
  margin: 18px auto 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.home-section .hp-action-hero .hp-action-cat-grid .hp-cat-card {
  display: grid;
  min-height: 114px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  gap: 4px;
  justify-items: center;
  text-decoration: none;
}

.home-section .hp-action-hero .hp-action-cat-grid .hp-cat-media {
  width: 126px;
  max-width: 100%;
  height: 88px;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.home-section .hp-action-hero .hp-action-cat-grid .hp-cat-media::after {
  display: none;
}

.home-section .hp-action-hero .hp-action-cat-grid .hp-cat-media img {
  width: min(100%, 126px);
  height: 88px;
  filter: drop-shadow(0 10px 12px rgba(0, 0, 0, 0.22));
}

.home-section .hp-action-hero .hp-action-cat-grid .hp-cat-nm {
  display: block;
  max-width: 100%;
  color: rgba(246, 242, 234, 0.88);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(0.72rem, 0.78vw, 0.86rem);
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.05;
  text-align: center;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
  white-space: nowrap;
}

.home-section .hp-action-hero .hp-action-brand-grid {
  display: grid;
  width: min(100%, 350px);
  margin: 16px auto 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.home-section .hp-action-hero .hp-action-brand-card {
  display: grid;
  gap: 5px;
  justify-items: center;
  min-width: 0;
  padding: 8px 5px;
  border: 1px solid rgba(232, 200, 112, 0.16);
  border-radius: 10px;
  background: rgba(246, 242, 234, 0.08);
}

.home-section .hp-action-hero .hp-action-brand-logo-box {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(246, 242, 234, 0.92);
}

.home-section .hp-action-hero .hp-action-brand-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.home-section .hp-action-hero .hp-action-brand-card h3 {
  margin: 0;
  color: rgba(246, 242, 234, 0.86);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.1;
}

.home-section .hp-action-hero .hp-action-tool-shell {
  color: #f6f2ea;
  border: 1px solid rgba(232, 200, 112, 0.26);
  border-radius: calc(var(--hero-panel-radius) - 3px);
  background:
    radial-gradient(circle at 12% 10%, rgba(232, 200, 112, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(31, 53, 24, 0.99), rgba(20, 35, 15, 0.99));
  box-shadow: 0 18px 42px rgba(9, 16, 6, 0.28);
  overflow: hidden;
}

.home-section .hp-action-hero .hp-action-tool-shell.is-open {
  display: flex;
  flex-direction: column;
}

.home-section .hp-action-hero .hp-action-tool-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(14px, 1.4vw, 18px) clamp(16px, 1.8vw, 24px) 10px;
  border-bottom: 1px solid rgba(232, 200, 112, 0.14);
}

.home-section .hp-action-hero .hp-action-tool-head .hp-action-title {
  margin-top: 2px;
  font-size: clamp(1rem, 1.45vw, 1.38rem);
}

.home-section .hp-action-hero .hp-action-tool-head .hp-action-copy {
  margin-top: 4px;
  max-width: 48ch;
  font-size: 0.82rem;
}

.home-section .hp-action-hero .hp-action-tool-close {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(246, 242, 234, 0.08);
  color: rgba(246, 242, 234, 0.86);
  font-size: 1.35rem;
  line-height: 1;
}

.home-section .hp-action-hero .hp-action-tool-close:hover,
.home-section .hp-action-hero .hp-action-tool-close:focus-visible {
  background: rgba(232, 200, 112, 0.16);
  color: #fff3bf;
  outline: none;
}

.home-section .hp-action-hero .hp-action-tool-body {
  min-height: 0;
  flex: 1;
  overflow: auto;
  padding: clamp(12px, 1.2vw, 16px);
  -webkit-overflow-scrolling: touch;
}

.home-section .hp-action-hero .hp-action-tool-loading {
  min-height: 220px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  color: rgba(246, 242, 234, 0.82);
  font-weight: 800;
}

.home-section .hp-action-hero .hp-action-tool-loading span {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 2px solid rgba(232, 200, 112, 0.25);
  border-top-color: rgba(232, 200, 112, 0.9);
  animation: hpActionToolSpin 800ms linear infinite;
}

@keyframes hpActionToolSpin {
  to { transform: rotate(360deg); }
}

.home-section .hp-action-hero .hp-action-tool-body .quick-package-section {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
}

.home-section .hp-action-hero .hp-action-tool-body .quick-package-inner {
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  border-radius: 8px !important;
}

.home-section .hp-action-hero .hp-action-tool-body .quick-package-head {
  padding: 16px 18px 14px !important;
}

.home-section .hp-action-hero .hp-action-tool-body .quick-package-head h2 {
  font-size: clamp(1.08rem, 1.45vw, 1.42rem) !important;
}

.home-section .hp-action-hero .hp-action-tool-body .quick-package-head p,
.home-section .hp-action-hero .hp-action-tool-body .quick-package-share {
  display: none !important;
}

.home-section .hp-action-hero .hp-action-tool-body .quick-package-stage {
  min-height: 0 !important;
  flex: 1 !important;
  overflow: auto !important;
  padding-bottom: 18px !important;
}

body #kma-chat-btn.kma-embedded-hidden {
  display: none !important;
}

body #kma-chat-panel.kma-embedded {
  position: static !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  max-height: none !important;
  min-height: 420px;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: none !important;
  border-radius: 10px !important;
  box-shadow: 0 0 0 1px rgba(232, 200, 112, 0.18) !important;
}

@media (min-width: 901px) {
  .home-section .hp-action-hero .hp-action-grid {
    position: relative;
    display: grid !important;
    grid-template-columns:
      calc((100% - (var(--hero-breath) * 2)) / 3)
      var(--hero-breath)
      minmax(0, 1.06fr)
      minmax(0, 0.94fr) !important;
    height: clamp(560px, calc(100dvh - var(--home-nav-h, 72px) - 86px), 640px) !important;
    gap: 0 !important;
  }

  .home-section .hp-action-hero .hp-action-grid::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: calc(((100% - (var(--hero-breath) * 2)) / 3) + var(--hero-breath));
    border-radius: var(--hero-panel-radius);
    background:
      linear-gradient(135deg, rgba(31, 53, 24, 0.99) 0%, rgba(49, 82, 35, 0.97) 54%, rgba(24, 42, 17, 0.99) 100%),
      radial-gradient(circle at 72% 16%, rgba(232, 200, 112, 0.17), transparent 34%);
    box-shadow: 0 16px 34px rgba(22, 34, 14, 0.18);
    pointer-events: none;
    z-index: 0;
  }

  .home-section .hp-action-hero .hp-action-grid::after {
    content: "";
    position: absolute;
    top: clamp(10px, 1vw, 14px);
    right: clamp(10px, 1vw, 14px);
    bottom: clamp(10px, 1vw, 14px);
    left: calc(((100% - (var(--hero-breath) * 2)) / 3) + var(--hero-breath) + clamp(10px, 1vw, 14px));
    border: 1px solid rgba(232, 200, 112, 0.22);
    border-radius: calc(var(--hero-panel-radius) - 3px);
    pointer-events: none;
    z-index: 1;
  }

  .home-section .hp-action-hero .hp-action-grid > .hp-action-panel:first-child {
    grid-column: 1;
  }

  .home-section .hp-action-hero .hp-action-cats,
  .home-section .hp-action-hero .hp-action-brands {
    grid-row: 1;
    width: 100%;
    height: 100%;
    align-self: stretch;
    justify-self: stretch;
    z-index: 2;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  .home-section .hp-action-hero .hp-action-cats::before,
  .home-section .hp-action-hero .hp-action-brands::before {
    content: none;
    display: none;
  }

  .home-section .hp-action-hero .hp-action-cats {
    grid-column: 3;
    padding-left: clamp(22px, 2.2vw, 36px) !important;
    padding-right: clamp(8px, 1vw, 16px) !important;
  }

  .home-section .hp-action-hero .hp-action-brands {
    grid-column: 4;
    padding-left: clamp(8px, 1vw, 16px) !important;
    padding-right: clamp(22px, 2.2vw, 36px) !important;
  }

  .home-section .hp-action-hero .hp-action-cat-grid {
    width: min(100%, 460px);
    margin-top: 16px;
    gap: clamp(4px, 0.65dvh, 6px) clamp(24px, 2.2vw, 32px);
  }

  .home-section .hp-action-hero .hp-action-cat-grid .hp-cat-card {
    min-height: clamp(91px, 10.8dvh, 102px);
  }

  .home-section .hp-action-hero .hp-action-cat-grid .hp-cat-media {
    min-height: 0;
    width: 138px;
    max-width: 100%;
    height: clamp(72px, 9dvh, 84px);
  }

  .home-section .hp-action-hero .hp-action-cat-grid .hp-cat-media img {
    width: min(100%, 138px);
    height: clamp(72px, 9dvh, 84px);
  }

  .home-section .hp-action-hero .hp-action-brands .hp-action-copy {
    max-width: 35ch;
  }

  .home-section .hp-action-hero .hp-action-brand-grid {
    width: min(100%, 390px);
    margin-top: 20px;
    gap: clamp(8px, 1dvh, 12px);
  }

  .home-section .hp-action-hero .hp-action-brand-card {
    min-height: clamp(88px, 10dvh, 106px);
    padding: 11px 8px;
  }

  .home-section .hp-action-hero .hp-action-brand-logo-box {
    width: clamp(52px, 4.6vw, 64px);
    height: clamp(52px, 4.6vw, 64px);
  }

  .home-section .hp-action-hero .hp-action-brand-logo {
    width: clamp(40px, 3.4vw, 48px);
    height: clamp(40px, 3.4vw, 48px);
  }

  .home-section .hp-action-hero .hp-action-brand-card h3 {
    font-size: clamp(0.72rem, 0.78vw, 0.82rem);
  }

  .home-section .hp-action-hero .hp-action-tool-shell {
    position: absolute;
    top: clamp(10px, 1vw, 14px);
    right: clamp(10px, 1vw, 14px);
    bottom: clamp(10px, 1vw, 14px);
    left: calc(((100% - (var(--hero-breath) * 2)) / 3) + var(--hero-breath) + clamp(10px, 1vw, 14px));
    z-index: 6;
  }
}

@media (min-width: 760px) and (max-width: 900px) {
  .home-section .hp-hero .hp-hero-panel {
    flex: 0 0 calc((100vw - (var(--hero-breath) * 3)) / 2) !important;
    width: calc((100vw - (var(--hero-breath) * 3)) / 2) !important;
  }

  .home-section .hp-hero .hp-hero-mobile-cue {
    display: none !important;
  }

  .home-section .hp-action-hero .hp-action-cat-grid {
    width: min(100%, 370px);
    gap: 10px 16px;
  }

  .home-section .hp-action-hero .hp-action-cat-grid .hp-cat-card {
    min-height: 104px;
  }

  .home-section .hp-action-hero .hp-action-cat-grid .hp-cat-media {
    min-height: 0;
    width: 116px;
    max-width: 100%;
    height: 84px;
  }

  .home-section .hp-action-hero .hp-action-cat-grid .hp-cat-media img {
    width: min(100%, 116px);
    height: 84px;
  }
}

@media (max-width: 900px) {
  body.kahya-action-tool-open #snap-container {
    overscroll-behavior: contain;
  }

  .home-section .hp-action-hero .hp-action-tool-shell {
    position: fixed;
    top: calc(var(--home-nav-h, 64px) + env(safe-area-inset-top, 0px) + 8px);
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    left: 10px;
    z-index: 1320;
  }

  .home-section .hp-action-hero .hp-action-tool-head {
    padding: 14px 14px 9px;
  }

  .home-section .hp-action-hero .hp-action-tool-body {
    padding: 10px;
  }

  .home-section .hp-action-hero .hp-action-tool-body .quick-package-head {
    padding: 14px 14px 12px !important;
  }

  body #kma-chat-panel.kma-embedded {
    min-height: 0;
  }

  .home-section .hp-action-hero .hp-action-grid {
    min-height: 0 !important;
  }

  .home-section .hp-action-hero .hp-action-panel {
    min-height: min(520px, calc(100dvh - var(--home-nav-h, 64px) - (var(--hero-breath) * 2))) !important;
    padding: clamp(28px, 7vw, 38px) clamp(24px, 7vw, 32px) !important;
  }

  .home-section .hp-action-hero .hp-action-title {
    font-size: clamp(1rem, 4.9vw, 1.34rem);
  }

  .home-section .hp-action-hero .hp-action-cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 320px);
    margin-top: 16px;
    gap: 8px 12px;
  }

  .home-section .hp-action-hero .hp-action-cat-grid .hp-cat-card {
    min-height: 94px;
  }

  .home-section .hp-action-hero .hp-action-cat-grid .hp-cat-media {
    min-height: 0;
    width: 104px;
    max-width: 100%;
    height: 74px;
  }

  .home-section .hp-action-hero .hp-action-cat-grid .hp-cat-media img {
    width: min(100%, 104px);
    height: 74px;
  }

  .home-section .hp-action-hero .hp-action-brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 760px) and (max-width: 900px) {
  .home-section .hp-action-hero .hp-action-cat-grid {
    width: min(100%, 370px);
    margin-top: 18px;
    gap: 10px 16px;
  }

  .home-section .hp-action-hero .hp-action-cat-grid .hp-cat-card {
    min-height: 104px;
  }

  .home-section .hp-action-hero .hp-action-cat-grid .hp-cat-media {
    min-height: 0;
    width: 116px;
    max-width: 100%;
    height: 84px;
  }

  .home-section .hp-action-hero .hp-action-cat-grid .hp-cat-media img {
    width: min(100%, 116px);
    height: 84px;
  }
}

@keyframes kahyaHeroRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes kahyaHeroFade {
  to {
    opacity: 1;
  }
}

@keyframes kahyaTrustPulse {
  0%, 100% {
    color: rgba(246, 242, 234, 0.82);
    text-shadow: none;
    transform: scale(1);
  }

  45% {
    color: #fff7d8;
    text-shadow:
      0 0 12px rgba(232, 200, 112, 0.42),
      0 0 24px rgba(232, 200, 112, 0.16);
    transform: scale(1.045);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-section .hp-hero .hp-hero-intro::before,
  .home-section .hp-hero .hp-hero-intro .hp-hero-kicker,
  .home-section .hp-hero .hp-hero-intro .hp-hero-title,
  .home-section .hp-hero .hp-hero-welcome,
  .home-section .hp-hero .hp-hero-sub,
  .home-section .hp-hero .hp-hero-system,
  .home-section .hp-hero .hp-hero-link-btn,
  .home-section .hp-hero .hp-hero-trust {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .home-section .hp-hero .hp-hero-mobile-cue {
    opacity: 1 !important;
    animation: none !important;
  }

  .home-section .hp-hero .hp-hero-trust .trust-bar-item {
    animation: none !important;
    transform: none !important;
  }
}

/* First hero desktop vitrines: keep the three product showcases visually identical. */
@media (min-width: 901px) {
  .home-section .hp-hero:not(.hp-action-hero) {
    --first-hero-vitrine-size: clamp(228px, 17.6vw, 286px);
    --first-hero-vitrine-caption-h: 48px;
  }

  .home-section .hp-hero:not(.hp-action-hero) .hp-hero-ready,
  .home-section .hp-hero:not(.hp-action-hero) .hp-hero-custom {
    min-width: 0;
  }

  .home-section .hp-hero:not(.hp-action-hero) .hp-hero-ready .hp-hero-showcase-stage,
  .home-section .hp-hero:not(.hp-action-hero) .hp-hero-mini-showcase,
  .home-section .hp-hero:not(.hp-action-hero) .hp-hero-mini-showcase .hp-hero-showcase-stage {
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
  }

  .home-section .hp-hero:not(.hp-action-hero) .hp-hero-ready .hp-hero-showcase-slide,
  .home-section .hp-hero:not(.hp-action-hero) .hp-hero-mini-showcase .hp-hero-showcase-slide {
    grid-template-rows: minmax(0, var(--first-hero-vitrine-size)) var(--first-hero-vitrine-caption-h) !important;
    align-content: center !important;
    gap: 10px !important;
    padding: clamp(10px, 0.9vw, 14px) 8px 12px !important;
  }

  .home-section .hp-hero:not(.hp-action-hero) .hp-hero-ready .hp-hero-showcase-media,
  .home-section .hp-hero:not(.hp-action-hero) .hp-hero-mini-showcase .hp-hero-showcase-media {
    width: min(100%, var(--first-hero-vitrine-size)) !important;
    height: var(--first-hero-vitrine-size) !important;
    padding: 10px !important;
    border-radius: 12px !important;
  }

  .home-section .hp-hero:not(.hp-action-hero) .hp-hero-showcase-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
  }

  .home-section .hp-hero:not(.hp-action-hero) .hp-hero-showcase-caption,
  .home-section .hp-hero:not(.hp-action-hero) .hp-hero-mini-showcase .hp-hero-showcase-caption {
    width: min(100%, var(--first-hero-vitrine-size)) !important;
    height: var(--first-hero-vitrine-caption-h) !important;
    min-height: var(--first-hero-vitrine-caption-h) !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 0 0 !important;
  }

  .home-section .hp-hero:not(.hp-action-hero) .hp-hero-showcase-caption strong,
  .home-section .hp-hero:not(.hp-action-hero) .hp-hero-mini-showcase .hp-hero-showcase-caption strong {
    min-width: 0;
    overflow: hidden;
    color: rgba(38, 54, 26, 0.92) !important;
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif !important;
    font-size: clamp(0.86rem, 0.88vw, 0.98rem) !important;
    font-style: italic !important;
    font-weight: 600 !important;
    line-height: 1.05 !important;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .home-section .hp-hero:not(.hp-action-hero) .hp-hero-showcase-caption em,
  .home-section .hp-hero:not(.hp-action-hero) .hp-hero-mini-showcase .hp-hero-showcase-caption em {
    color: #a97b22 !important;
    font-family: "Bodoni Moda", "Didot", Georgia, serif !important;
    font-size: clamp(0.86rem, 0.88vw, 0.98rem) !important;
    font-style: normal !important;
    font-weight: 500 !important;
    line-height: 1.05 !important;
    white-space: nowrap;
  }

  .home-section .hp-hero:not(.hp-action-hero) .hp-hero-showcase-badge {
    top: 14px !important;
    left: 14px !important;
    min-height: 26px;
    display: inline-flex;
    align-items: center;
    padding: 4px 9px !important;
    font-family: "Cinzel", Georgia, serif !important;
    font-size: 0.58rem !important;
    font-style: normal !important;
    font-weight: 800 !important;
    letter-spacing: 0.08em !important;
  }
}

/* ===== PREMIUM PRODUCT CARD FINAL LOCK ===== */
@media (hover: hover) and (pointer: fine) {
  .product-card:hover,
  .military-card:hover,
  .package-card:hover {
    transform: translateY(-5px) !important;
    border-color: rgba(216, 181, 92, 0.62) !important;
    box-shadow:
      0 22px 46px rgba(22, 35, 15, 0.2),
      0 4px 12px rgba(22, 35, 15, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.92) !important;
  }
  .product-card:hover .product-img-wrap img[data-slide],
  .military-card:hover .product-img-wrap img[data-slide],
  .package-card:hover .product-img-wrap img[data-slide] {
    transform: scale(1.035) !important;
  }
}

/* ===== PERFORMANS OPTİMİZASYON - KART TAŞMA DÜZELTMELERİ ===== */

/* Grid hücreleri: içerik kartı kesinlikle taşamaz */
.products-grid > * {
  min-width: 0;
  max-width: 100%;
}

/* Military kart: tüm flex çocuklar sıfır min-width */
.military-card,
.military-card .product-body,
.military-card .product-name,
.military-card .product-desc,
.military-card .price-grid,
.military-card .add-choice {
  min-width: 0;
  max-width: 100%;
}

/* Product features: nowrap taşma önlemi */
.military-card .product-features span {
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

/* Price box: içerik taşırsa gizle */
.military-card .price-box {
  min-width: 0;
  overflow: hidden;
}

.military-card .price-box strong {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  display: block;
}

/* compat-badge: kart genişliğini aşamaz */
.military-card .compat-badge {
  max-width: calc(100% - 20px);
}

/* Kart yüksekliği: sabit height yerine otomatik — taşma önlenir */
@media (max-width: 760px) {
  .military-card {
    height: auto;
    min-height: var(--product-card-height);
  }
}

/* Strip animasyon rengi güncelleme — Kapıda Ödeme için */
.product-premium-strip-track span:nth-child(2) {
  /* Kapıda ödeme: biraz farklı ton */
  color: #fff0c8;
}

/* ===== TAKSİT SEÇİCİ ===== */
.inst-selector {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 10px;
  padding: 14px 14px 10px;
  margin-bottom: 14px;
}

.inst-header {
  margin-bottom: 10px;
}
.inst-title {
  display: block;
  font-family: 'Vazirmatn', sans-serif;
  font-size: .9rem;
  font-weight: 800;
  color: #f4ead0;
  margin-bottom: 2px;
}
.inst-subtitle {
  font-family: 'Vazirmatn', sans-serif;
  font-size: .7rem;
  color: rgba(244,234,208,.55);
}

.inst-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 300px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,168,76,.3) transparent;
}

.inst-row {
  display: grid;
  grid-template-columns: 60px 1fr 80px 1fr;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.03);
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
.inst-row input[type="radio"] { display: none; }

.inst-row:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(201,168,76,.25);
}
.inst-row-active {
  background: rgba(201,168,76,.12) !important;
  border-color: rgba(201,168,76,.45) !important;
}
.inst-row-free .inst-count { color: #c9e8a0; }

.inst-count {
  font-family: 'Vazirmatn', sans-serif;
  font-size: .78rem;
  font-weight: 800;
  color: #f4ead0;
  white-space: nowrap;
}
.inst-monthly {
  font-family: 'Vazirmatn', sans-serif;
  font-size: .8rem;
  color: rgba(244,234,208,.85);
}
.inst-monthly strong {
  font-size: .92rem;
  color: #f4ead0;
}
.inst-info {
  text-align: center;
}
.inst-badge-free {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 20px;
  background: rgba(100,190,80,.22);
  border: 1px solid rgba(100,190,80,.4);
  color: #b8e890;
  font-family: 'Vazirmatn', sans-serif;
  font-size: .62rem;
  font-weight: 800;
  white-space: nowrap;
}
.inst-badge-paid {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 20px;
  background: rgba(220,160,50,.15);
  border: 1px solid rgba(220,160,50,.3);
  color: #e8c878;
  font-family: 'Vazirmatn', sans-serif;
  font-size: .62rem;
  font-weight: 800;
  white-space: nowrap;
}
.inst-total {
  font-family: 'Vazirmatn', sans-serif;
  font-size: .68rem;
  color: rgba(244,234,208,.5);
  text-align: right;
  white-space: nowrap;
}
.inst-summary {
  margin: 8px 0 0;
  font-family: 'Vazirmatn', sans-serif;
  font-size: .75rem;
  color: rgba(244,234,208,.7);
  text-align: center;
  min-height: 18px;
}

@media (max-width: 420px) {
  .inst-row {
    grid-template-columns: 52px 1fr 70px;
  }
  .inst-total { display: none; }
  .inst-monthly strong { font-size: .84rem; }
}

/* Product image width alignment */
.product-category .military-card .product-img-wrap,
.package-category .military-card .product-img-wrap,
.military-card .product-img-wrap,
.package-card .product-img-wrap {
  width: 100% !important;
  margin-inline: 0 !important;
  border-radius: 0 !important;
}

.product-category .military-card .product-img-wrap::before,
.package-category .military-card .product-img-wrap::before,
.military-card .product-img-wrap::before,
.package-card .product-img-wrap::before {
  inset: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-radius: 0 !important;
}

.product-category .military-card .product-img-wrap img,
.package-category .military-card .product-img-wrap img,
.military-card .product-img-wrap img,
.package-card .product-img-wrap img {
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  padding: 0 !important;
  object-fit: contain !important;
}

.military-card .product-img-wrap .size-badge,
.size-badge.size-badge-overlay {
  position: absolute !important;
  top: 10px;
  left: 10px;
  z-index: 9;
  max-width: calc(100% - 20px);
  display: inline-grid;
  gap: 2px;
  padding: 6px 9px;
  border: 1px solid rgba(246, 225, 151, 0.7);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(246, 216, 124, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(45, 80, 27, 0.96) 0%, rgba(22, 44, 14, 0.96) 100%);
  color: #fff8df;
  box-shadow:
    0 8px 18px rgba(25, 43, 15, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  cursor: pointer;
  text-align: left;
}

.size-badge-title,
.size-badge-detail {
  display: block;
  min-width: 0;
  overflow: hidden;
  line-height: 1.12;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.size-badge-title {
  font-size: .56rem;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.size-badge-detail {
  color: #f0dfb7;
  font-size: .58rem;
  font-weight: 800;
}

.military-card .product-img-wrap.has-cart-variant .compat-badge {
  top: auto !important;
  bottom: 10px;
}

@media (max-width: 760px) {
  .military-card .product-img-wrap .size-badge,
  .size-badge.size-badge-overlay {
    top: 7px;
    left: 7px;
    max-width: calc(100% - 14px);
    padding: 5px 7px;
    border-radius: 8px;
  }
  .size-badge-title {
    font-size: .5rem;
  }
  .size-badge-detail {
    font-size: .52rem;
  }
  .military-card .product-img-wrap.has-cart-variant .compat-badge {
    bottom: 7px;
  }
}

/* Product card action clipping fix */
.product-category .military-card,
.package-category .military-card,
.product-card,
.military-card,
.package-card {
  height: auto !important;
  min-height: var(--product-card-height) !important;
  overflow: visible !important;
}

.package-category .military-card,
.package-card {
  min-height: 640px !important;
}

.product-category .military-card .product-body,
.package-category .military-card .product-body,
.military-card .product-body,
.package-card .product-body {
  min-height: 0 !important;
  overflow: visible !important;
}

.product-category .add-choice,
.package-category .add-choice,
.military-card .add-choice {
  flex: 0 0 auto !important;
}

.product-category .btn-pkg-info,
.package-category .btn-pkg-info,
.military-card .btn-pkg-info,
.package-card .btn-pkg-info,
.product-category .btn-add,
.package-category .btn-add,
.military-card .btn-add,
.package-card .btn-add {
  flex: 0 0 auto !important;
  white-space: normal !important;
}

/* Small mobile card height trim */
@media (max-width: 760px) {
  .product-category .military-card,
  .package-category .military-card,
  .product-card,
  .military-card,
  .package-card {
    min-height: 0 !important;
  }
}

@media (max-width: 380px) {
  .category-section > .products-grid {
    align-items: start !important;
  }

  .product-category .military-card,
  .package-category .military-card,
  .product-card,
  .military-card,
  .package-card {
    min-height: 0 !important;
  }
}

/* Align product card actions across each category row */
.category-section > .products-grid {
  align-items: stretch !important;
}

.product-category .military-card,
.package-category .military-card,
.product-card,
.military-card,
.package-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.product-category .military-card .product-body,
.package-category .military-card .product-body,
.military-card .product-body,
.package-card .product-body {
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
}

.product-category .add-choice,
.military-card .add-choice {
  margin-top: auto !important;
}

.package-category .btn-pkg-info,
.package-card .btn-pkg-info {
  margin-top: auto !important;
}

@media (max-width: 380px) {
  .category-section > .products-grid {
    align-items: stretch !important;
  }
}

/* Keep desktop scroll geometry stable while the premium header hides. */
body.kahya-premium-header-active.is-category-zone {
  --home-nav-h: var(--kahya-premium-header-h) !important;
}

/* Mobile category divider redesign: compact premium-header language */
@media (max-width: 760px) {
  .category-section > .cat-header.premium-category-hero {
    margin: 8px 8px 6px !important;
    overflow: hidden !important;
    border: 1px solid rgba(216, 181, 92, 0.34) !important;
    border-radius: 12px !important;
    background:
      linear-gradient(180deg, rgba(251, 246, 232, 0.98), rgba(241, 234, 215, 0.98)) !important;
    box-shadow:
      0 10px 22px rgba(15, 24, 9, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.86) !important;
  }

  .category-section > .cat-header.premium-category-hero::before {
    display: none !important;
  }

  .premium-category-hero .category-header-top {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 6px !important;
    padding: 9px 10px 8px !important;
    background:
      linear-gradient(135deg, rgba(216, 181, 92, 0.18), transparent 28%),
      linear-gradient(180deg, rgba(22, 36, 15, 0.98), rgba(28, 45, 18, 0.96)) !important;
  }

  .premium-category-hero .category-header-top::before {
    display: none !important;
  }

  .premium-category-hero .category-header-top::after {
    height: 1px !important;
    background: linear-gradient(90deg, transparent, rgba(216, 181, 92, 0.82), transparent) !important;
  }

  .premium-category-hero .cat-parchment {
    position: relative !important;
    min-width: 0 !important;
    padding: 0 34px 0 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .premium-category-hero .parchment-kicker {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin: 0 !important;
    min-height: 24px !important;
  }

  .premium-category-hero .kicker-num,
  .premium-category-hero .kicker-label {
    min-width: 0 !important;
    color: rgba(247, 241, 221, 0.9) !important;
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif !important;
    font-size: .86rem !important;
    font-weight: 700 !important;
    letter-spacing: .02em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
  }

  .premium-category-hero .kicker-label {
    overflow: hidden !important;
    color: var(--kahya-premium-gold-soft, #f2d985) !important;
    text-overflow: ellipsis !important;
  }

  .premium-category-hero .kicker-line {
    flex: 0 0 26px !important;
    min-width: 26px !important;
    height: 1px !important;
    background: rgba(216, 181, 92, 0.62) !important;
  }

  .premium-category-hero .parchment-title {
    position: absolute !important;
    top: 50% !important;
    right: 0 !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 26px !important;
    height: 26px !important;
    min-height: 26px !important;
    padding: 0 !important;
    border: 1px solid rgba(216, 181, 92, 0.28) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    color: var(--kahya-premium-gold-soft, #f2d985) !important;
    box-shadow: none !important;
  }

  .premium-category-hero .parchment-name {
    display: none !important;
  }

  .premium-category-hero .parchment-icon {
    width: auto !important;
    height: auto !important;
    flex: 0 0 auto !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: .92rem !important;
    line-height: 1 !important;
  }

  .premium-category-hero .cat-istihkak-leather {
    width: 100% !important;
    min-height: 0 !important;
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) !important;
    align-items: start !important;
    gap: 6px !important;
    padding: 6px 8px !important;
    border: 1px solid rgba(216, 181, 92, 0.24) !important;
    border-left: 2px solid rgba(216, 181, 92, 0.8) !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.055) !important;
    box-shadow: none !important;
  }

  .premium-category-hero .istihkak-leather-stamp {
    padding: 2px 6px !important;
    border-radius: 999px !important;
    background: rgba(216, 181, 92, 0.14) !important;
    color: var(--kahya-premium-gold-soft, #f2d985) !important;
    font-size: .5rem !important;
    letter-spacing: .08em !important;
    line-height: 1.15 !important;
  }

  .premium-category-hero .istihkak-leather-text {
    color: rgba(247, 241, 221, 0.84) !important;
    font-size: .66rem !important;
    font-weight: 650 !important;
    line-height: 1.24 !important;
  }

  .premium-category-hero .category-header-accent {
    display: none !important;
  }

  .premium-category-hero .category-header-bottom {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) !important;
    gap: 7px !important;
    align-items: start !important;
    padding: 7px 10px 8px !important;
    border-top: 1px solid rgba(216, 181, 92, 0.22) !important;
    background:
      linear-gradient(180deg, rgba(255, 253, 246, 0.96), rgba(239, 232, 211, 0.96)) !important;
    color: #3b432f !important;
    font-size: .66rem !important;
    font-weight: 650 !important;
    line-height: 1.28 !important;
  }

  .premium-category-hero .category-note-label {
    padding: 2px 6px !important;
    border: 1px solid rgba(45, 68, 31, 0.14) !important;
    border-radius: 999px !important;
    background: rgba(216, 181, 92, 0.16) !important;
    color: #304322 !important;
    font-size: .48rem !important;
    font-weight: 900 !important;
    letter-spacing: .08em !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
  }
}

/* Mobile overflow trim: category divider only needs number + name. */
@media (max-width: 760px) {
  .premium-category-hero .cat-parchment {
    padding-right: 0 !important;
  }

  .premium-category-hero .parchment-kicker {
    gap: 7px !important;
  }

  .premium-category-hero .kicker-prefix,
  .premium-category-hero .kicker-line,
  .premium-category-hero .parchment-title {
    display: none !important;
  }

  .premium-category-hero .kicker-num {
    flex: 0 0 auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 26px !important;
    height: 22px !important;
    padding: 0 7px !important;
    border: 1px solid rgba(216, 181, 92, 0.34) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.07) !important;
    color: var(--kahya-premium-gold-soft, #f2d985) !important;
    font-size: .74rem !important;
    line-height: 1 !important;
  }

  .premium-category-hero .kicker-label {
    flex: 1 1 auto !important;
    white-space: normal !important;
    overflow: hidden !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    line-height: 1.08 !important;
  }

  .product-category .military-card .product-name,
  .package-category .military-card .product-name,
  .military-card .product-name,
  .package-card .product-name,
  .product-name-split .product-name-main,
  .product-name-split .product-name-detail,
  .product-desc,
  .product-desc span,
  .product-micro,
  .product-features,
  .product-features span {
    min-width: 0 !important;
    max-width: 100% !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }
}

/* iPhone SE hero column trim: let first-page text wrap inside the left panel. */
@media (max-width: 760px) {
  .home-section .hp-hero .hp-hero-intro .hp-hero-title,
  .home-section .hp-hero .hp-hero-sub,
  .home-section .hp-hero .hp-hero-system,
  .home-section .hp-hero .hp-title-line,
  .home-section .hp-hero .hp-sub-line,
  .home-section .hp-hero .hp-system-line {
    min-width: 0 !important;
    max-width: 100% !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }

  .home-section .hp-hero .hp-title-line,
  .home-section .hp-hero .hp-sub-line,
  .home-section .hp-hero .hp-system-line {
    width: 100% !important;
  }

  .home-section .hp-hero .hp-hero-intro .hp-accent,
  .home-section .hp-hero .hp-sub-line-strong,
  .home-section .hp-hero .hp-system-line-soft {
    margin-top: 5px !important;
  }
}

/* Desktop compact category divider: keep it sticky, but closer to the mobile density. */
@media (min-width: 761px) {
  .category-section > .cat-header.premium-category-hero {
    position: sticky !important;
    top: var(--kahya-premium-current-header-h, var(--kahya-premium-header-h, 0px)) !important;
    z-index: 100 !important;
    margin: 8px clamp(12px, 2vw, 28px) 8px !important;
    padding: 0 !important;
    overflow: hidden !important;
    border: 1px solid rgba(216, 181, 92, 0.34) !important;
    border-radius: 12px !important;
    background: linear-gradient(180deg, rgba(251, 246, 232, 0.98), rgba(241, 234, 215, 0.98)) !important;
    box-shadow:
      0 10px 24px rgba(15, 24, 9, 0.13),
      inset 0 1px 0 rgba(255, 255, 255, 0.82) !important;
  }

  .category-section > .cat-header.premium-category-hero::before {
    display: none !important;
  }

  .premium-category-hero .category-header-top {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr) !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 8px clamp(14px, 2.1vw, 30px) !important;
    background:
      linear-gradient(135deg, rgba(216, 181, 92, 0.18), transparent 28%),
      linear-gradient(180deg, rgba(22, 36, 15, 0.98), rgba(28, 45, 18, 0.96)) !important;
  }

  .premium-category-hero .category-header-top::before {
    display: none !important;
  }

  .premium-category-hero .category-header-top::after {
    display: block !important;
    height: 1px !important;
    bottom: 0 !important;
    clip-path: none !important;
    background: linear-gradient(90deg, transparent, rgba(216, 181, 92, 0.82), transparent) !important;
  }

  .premium-category-hero .cat-parchment {
    min-width: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .premium-category-hero .parchment-kicker {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    min-height: 24px !important;
    margin: 0 !important;
  }

  .premium-category-hero .kicker-prefix,
  .premium-category-hero .kicker-line,
  .premium-category-hero .parchment-title {
    display: none !important;
  }

  .premium-category-hero .kicker-num {
    flex: 0 0 auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 30px !important;
    height: 24px !important;
    padding: 0 8px !important;
    border: 1px solid rgba(216, 181, 92, 0.36) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.07) !important;
    color: var(--kahya-premium-gold-soft, #f2d985) !important;
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif !important;
    font-size: .78rem !important;
    font-weight: 800 !important;
    letter-spacing: .02em !important;
    line-height: 1 !important;
  }

  .premium-category-hero .kicker-label {
    min-width: 0 !important;
    overflow: hidden !important;
    color: var(--kahya-premium-gold-soft, #f2d985) !important;
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif !important;
    font-size: .94rem !important;
    font-weight: 800 !important;
    letter-spacing: .02em !important;
    line-height: 1.05 !important;
    text-overflow: ellipsis !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
  }

  .premium-category-hero .cat-istihkak-leather {
    width: 100% !important;
    min-height: 0 !important;
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 7px !important;
    padding: 6px 8px !important;
    border: 1px solid rgba(216, 181, 92, 0.24) !important;
    border-left: 2px solid rgba(216, 181, 92, 0.8) !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.055) !important;
    box-shadow: none !important;
  }

  .premium-category-hero .cat-istihkak-leather::before {
    display: none !important;
  }

  .premium-category-hero .istihkak-leather-stamp {
    padding: 2px 6px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: rgba(216, 181, 92, 0.14) !important;
    color: var(--kahya-premium-gold-soft, #f2d985) !important;
    font-size: .5rem !important;
    letter-spacing: .08em !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
  }

  .premium-category-hero .istihkak-leather-text {
    min-width: 0 !important;
    overflow: visible !important;
    color: rgba(247, 241, 221, 0.84) !important;
    font-size: .66rem !important;
    font-weight: 650 !important;
    line-height: 1.22 !important;
    text-overflow: clip !important;
    white-space: normal !important;
  }

  .premium-category-hero .category-header-accent {
    display: none !important;
  }

  .premium-category-hero .category-header-bottom {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) !important;
    align-items: start !important;
    gap: 8px !important;
    padding: 6px clamp(14px, 2.1vw, 30px) 7px !important;
    border-top: 1px solid rgba(216, 181, 92, 0.22) !important;
    background: linear-gradient(180deg, rgba(255, 253, 246, 0.96), rgba(239, 232, 211, 0.96)) !important;
    color: #3b432f !important;
    font-size: .68rem !important;
    font-weight: 650 !important;
    line-height: 1.24 !important;
  }

  .premium-category-hero .category-note-label {
    margin-top: 0 !important;
    padding: 2px 6px !important;
    border: 1px solid rgba(45, 68, 31, 0.14) !important;
    border-radius: 999px !important;
    background: rgba(216, 181, 92, 0.16) !important;
    color: #304322 !important;
    font-size: .48rem !important;
    font-weight: 900 !important;
    letter-spacing: .08em !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
  }
}
