@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,400;14..32,500;14..32,600;14..32,700&display=swap');

/* ════════════════════════════════════════
YAPIMCI : OFISIMO 
Versiyon: v8.0.0

    CSS INDEX OFISIMO SOFTWARE
   ════════════════════════════════════════ */

:root {
  --fg-950:   #09090b;
  --fg-900:   #18181b;
  --fg-800:   #27272a;
  --fg-700:   #3f3f46;
  --fg-600:   #52525b;
  --fg-500:   #71717a;
  --fg-400:   #a1a1aa;
  --fg-300:   #d4d4d8;
  --fg-200:   #e4e4e7;
  --fg-100:   #f4f4f5;
  --fg-50:    #fafafa;
  --fg-white: #ffffff;
  --fg-r-sm:  6px;
  --fg-r:     8px;
  --fg-r-lg:  10px;
  --fg-font:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fg-sh-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --fg-sh:    0 4px 16px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.05);
}

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

body {
  font-family: var(--fg-font);
  background: var(--fg-100);
  color: var(--fg-900);
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  line-height: 1.5;
}

/* ── Kampanya Bandi ── */
.fg-promo-banner {
  background: var(--fg-950);
  color: var(--fg-400);
  text-align: center;
  padding: 9px 20px;
  font-size: 12.5px;
  letter-spacing: 0.01em;
}
.fg-promo-banner strong { color: var(--fg-white); font-weight: 600; }
.fg-promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--fg-white);
  text-decoration: none;
  margin-left: 12px;
  font-size: 11.5px;
  font-weight: 500;
  border: 1px solid var(--fg-700);
  padding: 2px 10px 2px 12px;
  border-radius: var(--fg-r-sm);
  transition: background 0.15s, border-color 0.15s;
  vertical-align: middle;
}
.fg-promo-btn:hover { background: var(--fg-800); border-color: var(--fg-600); color: var(--fg-white); }

/* ── Ust Bar ── */
.fg-top-bar {
  background: var(--fg-white);
  border-bottom: 1px solid var(--fg-200);
  color: var(--fg-500);
  font-size: 12px;
  padding: 6px 0;
}
.fg-top-bar a { color: var(--fg-500); text-decoration: none; margin-left: 18px; transition: color 0.15s; }
.fg-top-bar a:hover { color: var(--fg-950); }
.fg-top-bar .fg-left i { margin-right: 5px; font-size: 11px; }

/* ── Ana Header ── */
.fg-main-header {
  background: var(--fg-white);
  border-bottom: 1px solid var(--fg-200);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--fg-sh-sm);
}

/* Logo */
.fg-logo { flex-shrink: 0; }
.fg-logo a { text-decoration: none; display: flex; align-items: center; gap: 10px; }
.fg-logo-icon {
  width: 36px; height: 36px;
  background: var(--fg-950);
  border-radius: var(--fg-r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--fg-white); flex-shrink: 0;
}
.fg-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.fg-logo-text .fg-brand  { font-size: 17px; font-weight: 700; color: var(--fg-950); letter-spacing: -0.04em; }
.fg-logo-text .fg-tagline { font-size: 9.5px; color: var(--fg-400); letter-spacing: 0.07em; text-transform: uppercase; font-weight: 500; }

/* Arama */
.fg-search-box {
  flex: 1; display: flex; max-width: 500px;
  border: 1px solid var(--fg-200);
  border-radius: var(--fg-r);
  overflow: hidden;
  background: var(--fg-50);
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.fg-search-box:focus-within { border-color: var(--fg-900); box-shadow: 0 0 0 3px rgba(9,9,11,0.08); background: var(--fg-white); }
.fg-search-box input { flex: 1; padding: 9px 14px; border: none; background: transparent; color: var(--fg-950); font-size: 13.5px; font-family: var(--fg-font); outline: none; min-width: 0; }
.fg-search-box input::placeholder { color: var(--fg-400); }
.fg-search-box select {
  padding: 9px 30px 9px 14px;
  border: none;
  border-left: 1px solid var(--fg-300);
  background-color: var(--fg-100);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%23737378' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 11px center;
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  color: var(--fg-700); font-size: 12.5px; font-family: var(--fg-font);
  cursor: pointer; outline: none; max-width: 170px;
  box-shadow: none;
  height: auto;
  transition: background-color 0.15s, color 0.15s;
}
.fg-search-box select:hover { background-color: var(--fg-200); color: var(--fg-950); }
.fg-search-box select:focus { box-shadow: none; outline: none; }
.fg-search-box select option { color: var(--fg-950); background: var(--fg-white); }
.fg-search-box button {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px;
  background: var(--fg-950); color: var(--fg-white);
  border: none; cursor: pointer;
  font-size: 13px; font-family: var(--fg-font); font-weight: 500;
  letter-spacing: -0.01em; transition: background 0.15s; white-space: nowrap;
}
.fg-search-box button:hover { background: var(--fg-800); }

/* Ikonlar */
.fg-header-icons { display: flex; align-items: center; gap: 1px; margin-left: auto; }
.fg-icon-btn {
  position: relative;
  display: inline-flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 7px 12px;
  color: var(--fg-600); text-decoration: none;
  border-radius: var(--fg-r-sm);
  transition: background 0.12s, color 0.12s;
  font-size: 10.5px; font-weight: 500; cursor: pointer;
  background: transparent; border: none; font-family: var(--fg-font);
}
.fg-icon-btn i { font-size: 16px; }
.fg-icon-btn:hover { background: var(--fg-100); color: var(--fg-950); }

/* Rozet */
.fg-badge {
  position: absolute; top: 3px; right: 5px;
  background: var(--fg-950); color: var(--fg-white);
  font-size: 9px; font-weight: 600; min-width: 16px; height: 16px;
  border-radius: 99px; display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--fg-white);
}

/* ── Navigasyon ── */
.fg-navbar { background: var(--fg-white); border-bottom: 1px solid var(--fg-200); }
.fg-nav-menu { display: flex; list-style: none; margin: 0; padding: 0; }
.fg-nav-menu > li { position: relative; }
.fg-nav-menu > li > a,
.fg-nav-menu > li > .fg-nav-row > a {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 12px 15px;
  color: var(--fg-600); text-decoration: none;
  font-size: 13.5px; font-weight: 500; letter-spacing: -0.01em;
  transition: color 0.15s; white-space: nowrap;
}
.fg-nav-menu > li > a:hover,
.fg-nav-menu > li > .fg-nav-row > a:hover { color: var(--fg-950); }
.fg-nav-menu > li.fg-active > a,
.fg-nav-menu > li.fg-active > .fg-nav-row > a { color: var(--fg-950); font-weight: 600; box-shadow: inset 0 -2px 0 var(--fg-950); }
.fg-nav-menu > li > a i,
.fg-nav-menu > li > .fg-nav-row > a i { font-size: 10px; color: var(--fg-400); transition: transform 0.2s; }
.fg-nav-menu > li:hover > a i,
.fg-nav-menu > li:hover > .fg-nav-row > a i { transform: rotate(180deg); }

/* Dropdown */
.fg-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--fg-white); min-width: 200px;
  border: 1px solid var(--fg-200); border-radius: var(--fg-r-lg);
  box-shadow: var(--fg-sh); z-index: 999; padding: 6px; list-style: none;
}
@media (min-width: 769px) {
  .fg-nav-menu > li:hover .fg-dropdown-menu { display: block; }
}
.fg-nav-menu > li.fg-mob-open > .fg-dropdown-menu { display: block; }
.fg-nav-menu > li.fg-mob-open .fg-nav-toggle i { transform: rotate(180deg); }
.fg-dropdown-menu li + li { margin-top: 1px; }
.fg-dropdown-menu li a {
  display: flex; align-items: center;
  padding: 8px 12px; color: var(--fg-700); text-decoration: none;
  font-size: 13px; font-weight: 400; border-radius: var(--fg-r-sm);
  transition: background 0.12s, color 0.12s; letter-spacing: -0.01em;
}
.fg-dropdown-menu li a:hover { background: var(--fg-100); color: var(--fg-950); }

/* Promo tag — outline buton */
.fg-promo-tag {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--fg-white); color: var(--fg-800);
  border: 1px solid var(--fg-200);
  padding: 5px 14px; border-radius: var(--fg-r-sm);
  font-size: 12.5px; font-weight: 500; white-space: nowrap; cursor: pointer;
  transition: background 0.12s, border-color 0.12s, color 0.12s;
  font-family: var(--fg-font); letter-spacing: -0.01em;
  box-shadow: var(--fg-sh-sm); text-decoration: none;
}
.fg-promo-tag:hover { background: var(--fg-950); border-color: var(--fg-950); color: var(--fg-white); }
.fg-promo-tag .fg-dot { width: 6px; height: 6px; background: var(--fg-950); border-radius: 50%; display: inline-block; flex-shrink: 0; transition: background 0.12s; }
.fg-promo-tag:hover .fg-dot { background: var(--fg-white); }

/* Hamburger */
.fg-hamburger {
  display: none; align-items: center; justify-content: center;
  background: var(--fg-white); border: 1px solid var(--fg-200);
  color: var(--fg-700); font-size: 15px; cursor: pointer; margin-left: auto;
  padding: 7px 10px; border-radius: var(--fg-r-sm);
  transition: background 0.12s, color 0.12s; box-shadow: var(--fg-sh-sm);
}
.fg-hamburger:hover { background: var(--fg-100); color: var(--fg-950); }

/* Separator */
.fg-nav-sep { width: 1px; height: 16px; background: var(--fg-200); align-self: center; margin: 0 4px; }

/* ── Nav satır wrapper (mobil accordion) ── */
.fg-nav-row { display: flex; align-items: stretch; }
.fg-nav-row > a { flex: 1; }

/* Accordion toggle — masaüstünde gizli */
.fg-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  background: transparent;
  border: none;
  border-left: 1px solid var(--fg-200);
  color: var(--fg-400);
  font-size: 12px;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
  flex-shrink: 0;
}
.fg-nav-toggle:hover { background: var(--fg-100); color: var(--fg-950); }
.fg-nav-toggle i { transition: transform 0.25s; }

/* Masaüstüne özel (mobilde gizli) */
.fg-desktop-only { /* default: görünür */ }

/* Mobil arama toggle — masaüstünde gizli */
.fg-search-toggle { display: none; }

/* Mobil arama çubuğu */
.fg-mobile-search {
  display: none;
  background: var(--fg-white);
  border-bottom: 1px solid var(--fg-200);
  padding: 10px 0;
  animation: fg-fade-in 0.15s ease;
}
.fg-mobile-search.fg-open { display: block; }
.fg-mobile-search-inner {
  display: flex;
  align-items: center;
  border: 1px solid var(--fg-200);
  border-radius: var(--fg-r);
  overflow: hidden;
  background: var(--fg-50);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.fg-mobile-search-inner:focus-within {
  border-color: var(--fg-900);
  box-shadow: 0 0 0 3px rgba(9,9,11,0.08);
  background: var(--fg-white);
}
.fg-mobile-search-icon { padding: 0 12px; color: var(--fg-400); font-size: 14px; flex-shrink: 0; }
.fg-mobile-search-inner input {
  flex: 1; padding: 11px 4px;
  border: none; background: transparent;
  color: var(--fg-950); font-size: 14px; font-family: var(--fg-font); outline: none;
}
.fg-mobile-search-inner input::placeholder { color: var(--fg-400); }
.fg-mobile-search-inner button {
  padding: 11px 18px;
  background: var(--fg-950); color: var(--fg-white);
  border: none; font-size: 13px; font-weight: 500;
  font-family: var(--fg-font); cursor: pointer; transition: background 0.15s;
}
.fg-mobile-search-inner button:hover { background: var(--fg-800); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .fg-search-box { display: none; }
}

@media (max-width: 768px) {
  /* Üst bar tamamen gizle */
  .fg-top-bar { display: none; }

  /* Header compact */
  .fg-main-header { padding: 10px 0; }

  /* Masaüstü ikonlarını gizle */
  .fg-desktop-only { display: none !important; }

  /* Mobil: arama butonu + hamburger göster */
  .fg-search-toggle { display: inline-flex; }
  .fg-hamburger { display: inline-flex; }

  /* Sepet ikonu: badge boyutunu koru, label gizle */
  .fg-icon-btn .fg-mob-hide { display: none; }

  /* Nav menü — tam genişlik slide-down */
  .fg-nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--fg-white);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 998;
    border-bottom: 1px solid var(--fg-200);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    padding: 6px;
    max-height: calc(100svh - 120px);
    overflow-y: auto;
  }
  .fg-nav-menu.fg-open { display: flex; }
  .fg-navbar { position: relative; }

  /* Nav linkleri — tam genişlik */
  .fg-nav-menu > li > a,
  .fg-nav-row > a {
    padding: 13px 16px;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    display: flex;
    align-items: center;
    color: var(--fg-800);
    border-radius: var(--fg-r-sm);
  }
  .fg-nav-menu > li > a:hover,
  .fg-nav-row > a:hover { background: var(--fg-100); color: var(--fg-950); }
  .fg-nav-menu > li.fg-active > a {
    box-shadow: none;
    background: var(--fg-100);
    color: var(--fg-950);
  }

  /* Accordion toggle göster */
  .fg-nav-toggle { display: inline-flex; }

  /* Dropdown — statik, girintili accordion */
  .fg-dropdown-menu {
    position: static !important;
    box-shadow: none !important;
    border: none !important;
    border-left: 2px solid var(--fg-200) !important;
    border-radius: 0 !important;
    margin: 0 0 4px 30px;
    padding: 4px 0;
    background: transparent;
    min-width: 0;
    top: auto;
    animation: fg-fade-in 0.15s ease;
  }
  .fg-dropdown-menu li a {
    padding: 9px 12px;
    font-size: 13.5px;
    color: var(--fg-600);
    border-radius: var(--fg-r-sm);
  }
  .fg-dropdown-menu li a:hover { background: var(--fg-100); color: var(--fg-950); }

  /* Promo ve separator gizle */
  .fg-promo-tag { display: none; }
  .fg-nav-sep { display: none; }
}

@media (max-width: 400px) {
  .fg-logo-text .fg-tagline { display: none; }
}

/* ═══════════════════════════════════════════
   Sepet Drawer
═══════════════════════════════════════════ */

/* Overlay */
.fg-cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1099;
  backdrop-filter: blur(2px);
  animation: fg-fade-in 0.2s ease;
}
.fg-cart-overlay.fg-open { display: block; }

@keyframes fg-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Drawer paneli */
.fg-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  max-width: 100vw;
  background: var(--fg-white);
  border-left: 1px solid var(--fg-200);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}
.fg-cart-drawer.fg-open {
  transform: translateX(0);
}

/* Başlık */
.fg-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--fg-200);
  flex-shrink: 0;
}
.fg-cart-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--fg-950);
  letter-spacing: -0.02em;
}
.fg-cart-title i { font-size: 16px; color: var(--fg-700); }
.fg-cart-count {
  font-size: 11px;
  font-weight: 500;
  color: var(--fg-500);
  background: var(--fg-100);
  border: 1px solid var(--fg-200);
  padding: 2px 8px;
  border-radius: 99px;
  letter-spacing: 0;
}
.fg-cart-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px solid var(--fg-200);
  border-radius: var(--fg-r-sm);
  color: var(--fg-600);
  font-size: 14px;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
}
.fg-cart-close:hover { background: var(--fg-100); color: var(--fg-950); }

/* Ürün listesi (scroll’lanabilir) */
.fg-cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fg-cart-body::-webkit-scrollbar { width: 4px; }
.fg-cart-body::-webkit-scrollbar-track { background: transparent; }
.fg-cart-body::-webkit-scrollbar-thumb { background: var(--fg-300); border-radius: 99px; }

/* Ürün satırı */
.fg-cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--fg-200);
  border-radius: var(--fg-r);
  background: var(--fg-white);
  transition: background 0.12s;
}
.fg-cart-item:hover { background: var(--fg-50); }
.fg-cart-img {
  width: 44px;
  height: 44px;
  background: var(--fg-100);
  border: 1px solid var(--fg-200);
  border-radius: var(--fg-r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--fg-600);
  flex-shrink: 0;
}
.fg-cart-info { flex: 1; min-width: 0; }
.fg-cart-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-900);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 3px;
}
.fg-cart-meta { font-size: 11.5px; color: var(--fg-400); }
.fg-cart-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}
.fg-cart-price {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--fg-950);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.fg-cart-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--fg-r-sm);
  color: var(--fg-400);
  font-size: 12px;
  cursor: pointer;
  transition: background 0.12s, color 0.12s, border-color 0.12s;
}
.fg-cart-remove:hover { background: var(--fg-100); color: var(--fg-950); border-color: var(--fg-200); }

/* Alt footer */
.fg-cart-footer {
  padding: 16px 20px 20px;
  border-top: 1px solid var(--fg-200);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fg-cart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--fg-600);
}
.fg-cart-free {
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-700);
  background: var(--fg-100);
  border: 1px solid var(--fg-200);
  padding: 1px 8px;
  border-radius: 99px;
}
.fg-cart-divider {
  height: 1px;
  background: var(--fg-200);
  margin: 2px 0;
}
.fg-cart-total {
  font-size: 15px;
  font-weight: 700;
  color: var(--fg-950);
  letter-spacing: -0.02em;
}
.fg-cart-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  padding: 11px;
  background: var(--fg-950);
  color: var(--fg-white);
  text-decoration: none;
  border-radius: var(--fg-r);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background 0.15s;
}
.fg-cart-checkout:hover { background: var(--fg-800); color: var(--fg-white); }
.fg-cart-view {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
  background: var(--fg-white);
  color: var(--fg-700);
  text-decoration: none;
  border: 1px solid var(--fg-200);
  border-radius: var(--fg-r);
  font-size: 13px;
  font-weight: 500;
  transition: background 0.12s, color 0.12s;
}
.fg-cart-view:hover { background: var(--fg-100); color: var(--fg-950); }

@media (max-width: 480px) {
  .fg-cart-drawer { width: 100vw; border-left: none; }
}

/* ═══════════════════════════════════════════
   Footer  —  prefix: fg-
   Tema: zinc monochrome (koyu)
═══════════════════════════════════════════ */

/* ── Newsletter ── */
.fg-footer-newsletter {
  background: var(--fg-900);
  border-top: 1px solid var(--fg-800);
  padding: 32px 0;
}
.fg-newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.fg-newsletter-title {
  color: var(--fg-white);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 3px;
}
.fg-newsletter-sub {
  color: var(--fg-400);
  font-size: 13.5px;
}
.fg-newsletter-form {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.fg-newsletter-form input {
  padding: 10px 16px;
  background: var(--fg-800);
  border: 1px solid var(--fg-700);
  border-radius: var(--fg-r);
  color: var(--fg-white);
  font-size: 13.5px;
  font-family: var(--fg-font);
  outline: none;
  min-width: 260px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.fg-newsletter-form input::placeholder { color: var(--fg-500); }
.fg-newsletter-form input:focus {
  border-color: var(--fg-500);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.06);
}
.fg-newsletter-form button {
  padding: 10px 22px;
  background: var(--fg-white);
  color: var(--fg-950);
  border: none;
  border-radius: var(--fg-r);
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--fg-font);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.fg-newsletter-form button:hover { background: var(--fg-100); }

/* ── Ana footer ── */
.fg-footer-main {
  background: var(--fg-950);
  padding: 52px 0 40px;
}
.fg-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
}

/* Marka sütunu */
.fg-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}
.fg-footer-logo-icon {
  width: 36px; height: 36px;
  background: var(--fg-800);
  border-radius: var(--fg-r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--fg-white); flex-shrink: 0;
}
.fg-footer-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.fg-footer-logo-text .fg-brand  { font-size: 17px; font-weight: 700; color: var(--fg-white); letter-spacing: -0.04em; }
.fg-footer-logo-text .fg-tagline { font-size: 9.5px; color: var(--fg-500); letter-spacing: 0.07em; text-transform: uppercase; font-weight: 500; }

.fg-footer-desc {
  color: var(--fg-400);
  font-size: 13.5px;
  line-height: 1.75;
  margin-bottom: 22px;
}
.fg-social-links { display: flex; gap: 8px; }
.fg-social-btn {
  width: 36px; height: 36px;
  border-radius: var(--fg-r-sm);
  background: var(--fg-800);
  color: var(--fg-400);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.fg-social-btn:hover { background: var(--fg-700); color: var(--fg-white); }

/* Link sütunları */
.fg-footer-heading {
  color: var(--fg-300);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.fg-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fg-footer-links li a {
  color: var(--fg-500);
  text-decoration: none;
  font-size: 13.5px;
  transition: color 0.15s;
}
.fg-footer-links li a:hover { color: var(--fg-white); }

/* İletişim sütunu */
.fg-footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fg-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--fg-500);
  font-size: 13.5px;
}
.fg-footer-contact li i {
  color: var(--fg-600);
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}
.fg-footer-contact li span { line-height: 1.65; }

/* ── Alt bar ── */
.fg-footer-bottom {
  background: var(--fg-900);
  border-top: 1px solid var(--fg-800);
  padding: 16px 0;
}
.fg-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.fg-footer-copy {
  color: var(--fg-600);
  font-size: 12.5px;
}
.fg-payment-icons { display: flex; align-items: center; gap: 6px; }
.fg-payment-pill {
  background: var(--fg-800);
  color: var(--fg-300);
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  border: 1px solid var(--fg-700);
}

/* ── Footer Responsive ── */
@media (max-width: 960px) {
  .fg-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .fg-footer-brand { grid-column: 1 / -1; }
  .fg-newsletter-inner { flex-direction: column; align-items: flex-start; }
  .fg-newsletter-form { width: 100%; }
  .fg-newsletter-form input { min-width: 0; flex: 1; }
}
@media (max-width: 600px) {
  .fg-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .fg-footer-main { padding: 36px 0 28px; }
  .fg-footer-bottom-inner { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
}

/* ═══════════════════════════════════════════
   Ürün Detay Sayfası  —  prefix: fg-
   Tema: zinc monochrome
═══════════════════════════════════════════ */

.fg-page { background: var(--fg-50); font-family: var(--fg-font); min-height: 100vh; }

/* ── Breadcrumb ── */
.fg-bc-section { background: var(--fg-white); border-bottom: 1px solid var(--fg-200); padding: 12px 0; }
.fg-bc { display: flex; align-items: center; gap: 6px; list-style: none; flex-wrap: wrap; margin: 0; padding: 0; }
.fg-bc li { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; line-height: 1; }
.fg-bc li + li::before { content: '/'; color: var(--fg-300); display: inline-block; }
.fg-bc a { color: var(--fg-500); text-decoration: none; transition: color 0.15s; display: inline-flex; align-items: center; line-height: 1; }
.fg-bc a i { font-size: 13px; line-height: 1; vertical-align: middle; }
.fg-bc a:hover { color: var(--fg-950); }
.fg-bc li:last-child a { color: var(--fg-800); font-weight: 500; pointer-events: none; }

/* ── Ürün Ana Bölüm ── */
.fg-pd-section { padding: 36px 0 56px; }
.fg-pd-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 52px;
  align-items: start;
}

/* ── Galeri ── */
.fg-gallery { display: flex; gap: 14px; position: sticky; top: 80px; }
.fg-gallery-thumbs { display: flex; flex-direction: column; gap: 10px; width: 74px; flex-shrink: 0; }
.fg-g-thumb {
  width: 74px; height: 74px;
  border-radius: var(--fg-r);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: var(--fg-white);
  box-shadow: var(--fg-sh-sm);
  transition: border-color 0.15s, transform 0.12s, box-shadow 0.15s;
  flex-shrink: 0;
}
.fg-g-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fg-g-thumb:hover { border-color: var(--fg-300); transform: translateX(2px); }
.fg-g-thumb.fg-active { border-color: var(--fg-950); box-shadow: 0 0 0 1px var(--fg-950); }

.fg-gallery-main {
  flex: 1;
  border-radius: var(--fg-r-lg);
  overflow: hidden;
  background: var(--fg-white);
  border: 1px solid var(--fg-200);
  position: relative;
  aspect-ratio: 1;
  cursor: zoom-in;
}
.fg-gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.2s;
}
.fg-gallery-main:hover img { transform: scale(1.06); }

.fg-g-sale-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--fg-950); color: var(--fg-white);
  font-size: 11px; font-weight: 700;
  padding: 4px 11px; border-radius: 99px; letter-spacing: 0.03em;
}
.fg-g-wish {
  position: absolute; top: 14px; right: 14px;
  width: 40px; height: 40px;
  background: var(--fg-white);
  border: 1px solid var(--fg-200);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-400); font-size: 15px;
  cursor: pointer;
  transition: all 0.18s;
  box-shadow: var(--fg-sh-sm);
}
.fg-g-wish:hover { background: var(--fg-950); color: var(--fg-white); border-color: var(--fg-950); transform: scale(1.08); }
.fg-g-wish.fg-wished { color: #e11d48; background: #fff1f2; border-color: #fecdd3; }

/* ── Ürün Bilgi Paneli ── */
.fg-pd-info { display: flex; flex-direction: column; }

.fg-pd-badges { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.fg-b-new {
  background: var(--fg-950); color: var(--fg-white);
  font-size: 10px; font-weight: 700; padding: 3px 10px;
  border-radius: 99px; letter-spacing: 0.06em; text-transform: uppercase;
}
.fg-b-hot {
  background: transparent; color: var(--fg-700);
  border: 1.5px solid var(--fg-300);
  font-size: 10px; font-weight: 700; padding: 3px 10px;
  border-radius: 99px; letter-spacing: 0.05em; text-transform: uppercase;
}
.fg-b-stock {
  display: flex; align-items: center; gap: 5px;
  margin-left: auto; color: #15803d; font-size: 12px; font-weight: 500;
}
.fg-b-stock::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #22c55e; flex-shrink: 0; }

.fg-pd-brand { color: var(--fg-400); font-size: 11.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.fg-pd-name { font-size: 23px; font-weight: 700; color: var(--fg-950); letter-spacing: -0.03em; line-height: 1.25; margin-bottom: 6px; }
.fg-pd-sku { color: var(--fg-400); font-size: 12px; margin-bottom: 14px; }

/* Rating */
.fg-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.fg-stars-row { display: flex; gap: 2px; }
.fg-stars-row i { color: var(--fg-950); font-size: 13.5px; }
.fg-stars-row i.fg-empty { color: var(--fg-200); }
.fg-rating-score { font-size: 14px; font-weight: 700; color: var(--fg-950); }
.fg-rating-link { color: var(--fg-500); font-size: 13px; text-decoration: underline; cursor: pointer; transition: color 0.15s; }
.fg-rating-link:hover { color: var(--fg-950); }
.fg-rating-dot { color: var(--fg-300); font-size: 11px; }

/* Fiyat bloğu */
.fg-price-block {
  background: var(--fg-50);
  border: 1px solid var(--fg-200);
  border-radius: var(--fg-r-lg);
  padding: 18px 20px 16px;
  margin-bottom: 22px;
}
.fg-price-top { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.fg-price-old { font-size: 14.5px; color: var(--fg-400); text-decoration: line-through; font-weight: 400; }
.fg-price-off {
  background: var(--fg-950); color: var(--fg-white);
  font-size: 11px; font-weight: 700; padding: 2px 9px; border-radius: 99px;
}
.fg-price-now { font-size: 36px; font-weight: 800; color: var(--fg-950); letter-spacing: -0.05em; line-height: 1; margin-bottom: 6px; }
.fg-price-install { color: var(--fg-500); font-size: 12.5px; }
.fg-price-install strong { color: var(--fg-700); font-weight: 600; }

/* Seçenekler */
.fg-info-divider { border: none; border-top: 1px solid var(--fg-200); margin: 10px 0; }
.fg-option-block { margin-bottom: 18px; }
.fg-opt-label {
  font-size: 13px; font-weight: 600; color: var(--fg-600);
  margin-bottom: 10px; display: flex; align-items: center; gap: 6px;
}
.fg-opt-label em { font-style: normal; font-weight: 500; color: var(--fg-950); }

.fg-color-list { display: flex; gap: 10px; flex-wrap: wrap; }
.fg-cswatch {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid transparent; cursor: pointer;
  outline: 2.5px solid transparent; outline-offset: 2px;
  transition: transform 0.15s, outline-color 0.12s;
  position: relative;
}
.fg-cswatch:hover { transform: scale(1.15); }
.fg-cswatch.fg-active { outline-color: var(--fg-950); }

.fg-size-list { display: flex; gap: 8px; flex-wrap: wrap; }
.fg-szb {
  height: 38px; min-width: 54px; padding: 10px 10px;
  background: var(--fg-white); border: 1.5px solid var(--fg-200);
  border-radius: var(--fg-r-sm); color: var(--fg-600);
  font-size: 13px; font-weight: 500; font-family: var(--fg-font);
  cursor: pointer; transition: border-color 0.12s, color 0.12s, background 0.12s;
}
.fg-szb:hover:not(.fg-dis) { border-color: var(--fg-800); color: var(--fg-950); }
.fg-szb.fg-active { background: var(--fg-950); border-color: var(--fg-950); color: var(--fg-white); font-weight: 600; }
.fg-szb.fg-dis { opacity: 0.3; cursor: not-allowed; text-decoration: line-through; }

/* Adet */
.fg-qty-row { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.fg-qty-wrap {
  display: flex; align-items: center;
  border: 1.5px solid var(--fg-200); border-radius: var(--fg-r); overflow: hidden;
}
.fg-qbtn {
  width: 42px; height: 46px;
  background: transparent; border: none; color: var(--fg-600);
  font-size: 20px; cursor: pointer; font-family: var(--fg-font);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.12s, color 0.12s;
}
.fg-qbtn:hover { background: var(--fg-100); color: var(--fg-950); }
.fg-qval {
  width: 52px; height: 46px; text-align: center;
  border: none; border-left: 1.5px solid var(--fg-200); border-right: 1.5px solid var(--fg-200);
  font-size: 15px; font-weight: 600; color: var(--fg-950);
  font-family: var(--fg-font); outline: none; background: var(--fg-white);
}
.fg-qty-note { color: var(--fg-500); font-size: 12px; }

/* Aksiyon butonları */
.fg-pd-actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.fg-btn-add {
  height: 52px; border-radius: var(--fg-r);
  background: var(--fg-950); color: var(--fg-white); border: none;
  font-size: 15px; font-weight: 600; font-family: var(--fg-font);
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 9px;
  letter-spacing: -0.02em; transition: background 0.15s, transform 0.1s;
}
.fg-btn-add:hover { background: var(--fg-800); }
.fg-btn-add:active { transform: scale(0.99); }
.fg-btn-now {
  height: 52px; border-radius: var(--fg-r);
  background: var(--fg-white); color: var(--fg-950);
  border: 1.5px solid var(--fg-950);
  font-size: 15px; font-weight: 600; font-family: var(--fg-font);
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 9px;
  letter-spacing: -0.02em; transition: background 0.15s, color 0.15s;
}
.fg-btn-now:hover { background: var(--fg-950); color: var(--fg-white); }

/* Güven şeridi */
.fg-trust {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--fg-200); border-radius: var(--fg-r);
  overflow: hidden; background: var(--fg-200); gap: 1px; margin-bottom: 22px;
}
.fg-trust-i { background: var(--fg-white); display: flex; align-items: center; gap: 10px; padding: 13px 12px; }
.fg-trust-i i { font-size: 17px; color: var(--fg-950); flex-shrink: 0; }
.fg-trust-i-txt strong { display: block; font-size: 12px; font-weight: 600; color: var(--fg-900); }
.fg-trust-i-txt span { font-size: 11px; color: var(--fg-500); }

/* Meta bilgileri */
.fg-pd-meta { display: flex; flex-direction: column; gap: 7px; }
.fg-meta-r { display: flex; gap: 8px; font-size: 13px; }
.fg-meta-r dt { color: var(--fg-500); width: 88px; flex-shrink: 0; font-weight: 400; }
.fg-meta-r dd { color: var(--fg-800); font-weight: 500; }
.fg-meta-r dd a { color: var(--fg-800); }

/* ── Tab bölümü ── */
.fg-tabs-wrap { background: var(--fg-white); border-top: 1px solid var(--fg-200); }
.fg-tab-nav {
  display: flex; border-bottom: 1px solid var(--fg-200);
  overflow-x: auto; scrollbar-width: none;
}
.fg-tab-nav::-webkit-scrollbar { display: none; }
.fg-tabn {
  padding: 16px 26px;
  background: transparent; border: none;
  color: var(--fg-500); font-size: 14px; font-weight: 500;
  font-family: var(--fg-font); cursor: pointer;
  border-bottom: 2.5px solid transparent; margin-bottom: -1px;
  transition: color 0.15s, border-color 0.15s; white-space: nowrap;
}
.fg-tabn:hover { color: var(--fg-800); }
.fg-tabn.fg-active { color: var(--fg-950); font-weight: 600; border-bottom-color: var(--fg-950); }
.fg-tab-panels { padding: 44px 0 60px; }
.fg-tab-panel { display: none; }
.fg-tab-panel.fg-active { display: block; }

/* Açıklama */
.fg-desc p { color: var(--fg-600); font-size: 14.5px; line-height: 1.85; margin-bottom: 16px; max-width: 780px; }
.fg-desc-feats { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-top: 26px; max-width: 680px; }
.fg-desc-feats li { display: flex; align-items: flex-start; gap: 11px; font-size: 14px; color: var(--fg-700); line-height: 1.6; }
.fg-desc-feats li i { color: var(--fg-950); font-size: 12px; margin-top: 4px; flex-shrink: 0; }

/* Teknik özellikler */
.fg-spec-tbl { width: 100%; max-width: 800px; border-collapse: separate; border-spacing: 0; border: 1px solid var(--fg-200); border-radius: var(--fg-r-lg); overflow: hidden; }
.fg-spec-tbl th, .fg-spec-tbl td { padding: 12px 20px; font-size: 13.5px; text-align: left; border-bottom: 1px solid var(--fg-100); }
.fg-spec-tbl tr:last-child th, .fg-spec-tbl tr:last-child td { border-bottom: none; }
.fg-spec-tbl th { width: 38%; color: var(--fg-500); font-weight: 500; background: var(--fg-white); }
.fg-spec-tbl td { color: var(--fg-900); font-weight: 500; background: var(--fg-white); }
.fg-spec-tbl tr:nth-child(even) th, .fg-spec-tbl tr:nth-child(even) td { background: var(--fg-50); }

/* Değerlendirmeler */
.fg-rev-layout { display: grid; grid-template-columns: 260px 1fr; gap: 44px; align-items: start; }
.fg-rev-summary {
  background: var(--fg-50); border: 1px solid var(--fg-200);
  border-radius: var(--fg-r-lg); padding: 28px 22px; text-align: center;
  position: sticky; top: 90px;
}
.fg-rev-avg { font-size: 60px; font-weight: 800; color: var(--fg-950); letter-spacing: -0.06em; line-height: 1; }
.fg-rev-avg-stars { display: flex; justify-content: center; gap: 3px; margin: 6px 0; }
.fg-rev-avg-stars i { color: var(--fg-950); font-size: 15px; }
.fg-rev-total { color: var(--fg-500); font-size: 13px; margin-bottom: 20px; }
.fg-rev-bars { display: flex; flex-direction: column; gap: 9px; text-align: left; }
.fg-rev-bar { display: flex; align-items: center; gap: 9px; font-size: 12px; }
.fg-rev-bar-n { width: 14px; color: var(--fg-600); font-weight: 500; flex-shrink: 0; }
.fg-rev-bar-track { flex: 1; height: 5px; background: var(--fg-200); border-radius: 99px; overflow: hidden; }
.fg-rev-bar-fill { height: 100%; background: var(--fg-950); border-radius: 99px; }
.fg-rev-bar-pct { width: 30px; text-align: right; color: var(--fg-500); flex-shrink: 0; }

.fg-rev-list { display: flex; flex-direction: column; gap: 18px; }
.fg-rev-card { background: var(--fg-white); border: 1px solid var(--fg-200); border-radius: var(--fg-r-lg); padding: 22px 24px; }
.fg-rev-head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; }
.fg-rev-av {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--fg-800); color: var(--fg-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; flex-shrink: 0;
}
.fg-rev-name { font-size: 14px; font-weight: 600; color: var(--fg-900); margin-bottom: 4px; }
.fg-rev-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.fg-rev-stars { display: flex; gap: 2px; }
.fg-rev-stars i { font-size: 11px; color: var(--fg-950); }
.fg-rev-date { color: var(--fg-400); font-size: 12px; }
.fg-rev-verified { background: var(--fg-100); color: var(--fg-600); border: 1px solid var(--fg-200); font-size: 10.5px; font-weight: 500; padding: 2px 8px; border-radius: 99px; }
.fg-rev-text { color: var(--fg-600); font-size: 13.5px; line-height: 1.72; }
.fg-rev-foot { display: flex; align-items: center; gap: 10px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--fg-100); }
.fg-rev-foot span { color: var(--fg-500); font-size: 12px; }
.fg-rev-foot button { background: transparent; border: 1px solid var(--fg-200); color: var(--fg-600); font-size: 12px; font-family: var(--fg-font); padding: 4px 12px; border-radius: 99px; cursor: pointer; transition: all 0.12s; }
.fg-rev-foot button:hover { background: var(--fg-950); color: var(--fg-white); border-color: var(--fg-950); }

/* ── İlgili ürünler ── */
.fg-rel-section { background: var(--fg-50); border-top: 1px solid var(--fg-200); padding: 52px 0; }
.fg-sec-hd { font-size: 21px; font-weight: 700; color: var(--fg-950); letter-spacing: -0.03em; margin-bottom: 26px; }
.fg-rel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.fg-pcard { background: var(--fg-white); border: 1px solid var(--fg-200); border-radius: var(--fg-r-lg); overflow: hidden; transition: box-shadow 0.22s, transform 0.22s; }
.fg-pcard:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-4px); }
.fg-pcard-img { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--fg-50); }
.fg-pcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94); display: block; }
.fg-pcard:hover .fg-pcard-img img { transform: scale(1.07); }
.fg-pcard-dbadge { position: absolute; top: 10px; left: 10px; background: var(--fg-950); color: var(--fg-white); font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 99px; }
.fg-pcard-quick {
  position: absolute; bottom: 10px; left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0; white-space: nowrap;
  background: var(--fg-950); color: var(--fg-white);
  border: none; font-size: 12px; font-weight: 600;
  font-family: var(--fg-font); padding: 8px 18px;
  border-radius: 99px; cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.fg-pcard:hover .fg-pcard-quick { opacity: 1; transform: translateX(-50%) translateY(0); }
.fg-pcard-body { padding: 18px 18px 20px; }
.fg-pcard-desc { display: none; }   /* Grid mode'da gizli — sadece list mode'da görünür (override aşağıda) */
.fg-pcard-name { font-size: 13.5px; font-weight: 500; color: var(--fg-800); line-height: 1.4; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.fg-pcard-stars-sm { display: flex; gap: 2px; margin-bottom: 8px; }
.fg-pcard-stars-sm i { font-size: 10.5px; color: var(--fg-950); }
.fg-pcard-prices { display: flex; align-items: baseline; gap: 8px; }
.fg-pcard-p { font-size: 16px; font-weight: 700; color: var(--fg-950); letter-spacing: -0.02em; }
.fg-pcard-op { font-size: 12.5px; color: var(--fg-400); text-decoration: line-through; }

/* ── Ürün Detay Responsive ── */
@media (max-width: 1024px) {
  .fg-pd-layout { grid-template-columns: 1fr 1fr; gap: 36px; }
  .fg-rel-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .fg-pd-layout { grid-template-columns: 1fr; }
  .fg-gallery { position: static; }
  .fg-rev-layout { grid-template-columns: 1fr; }
  .fg-rev-summary { position: static; display: flex; flex-direction: column; align-items: center; }
  .fg-rel-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 600px) {
  .fg-gallery { flex-direction: column-reverse; }
  .fg-gallery-thumbs { flex-direction: row; width: 100%; overflow-x: auto; }
  .fg-g-thumb { width: 68px; height: 68px; }
  .fg-trust { grid-template-columns: 1fr; }
  .fg-pd-name { font-size: 20px; }
  .fg-price-now { font-size: 30px; }
  .fg-spec-tbl { font-size: 13px; }
  .fg-spec-tbl th { width: auto; }
}
@media (max-width: 440px) {
  .fg-rel-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .fg-pcard-name { font-size: 12.5px; }
}

/* ══════════════════════════════════════════════════════
   KATEGORİ SAYFASI  —  fg-cat-*
   ══════════════════════════════════════════════════════ */

/* ── Kategori Hero ── */
.fg-cat-hero {
  background: var(--fg-white);
  border-bottom: 1px solid var(--fg-200);
  padding: 32px 0 28px;
}
.fg-cat-hero-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}
.fg-cat-hero-icon {
  width: 72px; height: 72px;
  background: var(--fg-950);
  border-radius: var(--fg-r-lg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fg-cat-hero-icon i { font-size: 28px; color: var(--fg-white); }
.fg-cat-hero-label {
  font-size: 12px; font-weight: 500;
  color: var(--fg-500); letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 4px;
}
.fg-cat-hero-title {
  font-size: 28px; font-weight: 700;
  color: var(--fg-950); letter-spacing: -0.035em;
  margin-bottom: 6px;
}
.fg-cat-hero-desc {
  font-size: 13.5px; color: var(--fg-500); line-height: 1.6;
}
.fg-cat-hero-stats {
  display: flex; gap: 24px; margin-top: 12px;
}
.fg-cat-stat { display: flex; flex-direction: column; }
.fg-cat-stat-val {
  font-size: 18px; font-weight: 700;
  color: var(--fg-950); letter-spacing: -0.03em;
}
.fg-cat-stat-lbl { font-size: 11.5px; color: var(--fg-500); }

/* ── Sub Kategoriler ── */
.fg-sub-cats {
  background: var(--fg-white);
  border-bottom: 1px solid var(--fg-200);
  padding: 14px 0;
  overflow: hidden;
}
.fg-sub-cats-row {
  display: flex; gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.fg-sub-cats-row::-webkit-scrollbar { display: none; }
.fg-sub-cat-btn {
  display: inline-flex; align-items: center; gap: 7px;
  white-space: nowrap;
  background: var(--fg-100);
  border: 1px solid var(--fg-200);
  border-radius: 99px;
  padding: 7px 16px;
  font-size: 13px; font-weight: 500;
  color: var(--fg-700);
  cursor: pointer; transition: all 0.15s;
  text-decoration: none;
}
.fg-sub-cat-btn:hover {
  background: var(--fg-950); color: var(--fg-white);
  border-color: var(--fg-950);
}
.fg-sub-cat-btn.fg-active {
  background: var(--fg-950); color: var(--fg-white);
  border-color: var(--fg-950);
}
.fg-sub-cat-btn .fg-cnt {
  background: rgba(255,255,255,0.18);
  border-radius: 99px;
  font-size: 11px; font-weight: 600;
  padding: 1px 7px;
}
.fg-sub-cat-btn:not(.fg-active) .fg-cnt {
  background: var(--fg-200); color: var(--fg-600);
}

/* ── Ana Sayfa Gövdesi ── */
.fg-cat-page { background: var(--fg-100); }
.fg-cat-wrap { padding: 28px 0 60px; }

/* ── Layout: Sidebar + İçerik ── */
.fg-cat-layout {
  display: grid;
  grid-template-columns: 248px 1fr;
  gap: 22px;
  align-items: start;
}

/* ── Sidebar ── */
.fg-cat-sidebar {
  position: sticky;
  top: 16px;
}
.fg-flt-card {
  background: var(--fg-white);
  border: 1px solid var(--fg-200);
  border-radius: var(--fg-r-lg);
  overflow: hidden;
  margin-bottom: 10px;
}
.fg-flt-card:last-child { margin-bottom: 0; }

.fg-flt-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px 14px;
  border-bottom: 1px solid var(--fg-200);
}
.fg-flt-top-title {
  font-size: 13.5px; font-weight: 700;
  color: var(--fg-950); letter-spacing: -0.01em;
}
.fg-flt-clear {
  font-size: 12px; color: var(--fg-500);
  background: none; border: none; cursor: pointer;
  font-family: var(--fg-font);
  padding: 0; transition: color 0.12s;
}
.fg-flt-clear:hover { color: var(--fg-950); }

.fg-flt-hd {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 18px;
  cursor: pointer; user-select: none;
  transition: background 0.12s;
}
.fg-flt-hd:hover { background: var(--fg-50); }
.fg-flt-hd-title {
  font-size: 13px; font-weight: 600; color: var(--fg-800);
}
.fg-flt-hd i {
  font-size: 10px; color: var(--fg-500);
  transition: transform 0.2s;
}
.fg-flt-section { border-top: 1px solid var(--fg-100); }
.fg-flt-section.fg-collapsed .fg-flt-bd { display: none; }
.fg-flt-section.fg-collapsed .fg-flt-hd i { transform: rotate(-90deg); }

.fg-flt-bd { padding: 4px 18px 14px; }

/* Checkbox items */
.fg-flt-item {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0; cursor: pointer;
  transition: opacity 0.12s;
}
.fg-flt-item:hover { opacity: 0.8; }
.fg-flt-item input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 16px; height: 16px;
  border: 1.5px solid var(--fg-300);
  border-radius: 4px;
  background: var(--fg-white);
  cursor: pointer; flex-shrink: 0;
  transition: all 0.12s;
  position: relative;
}
.fg-flt-item input[type="checkbox"]:checked {
  background: var(--fg-950);
  border-color: var(--fg-950);
}
.fg-flt-item input[type="checkbox"]:checked::after {
  content: '';
  position: absolute; top: 2px; left: 5px;
  width: 4px; height: 7px;
  border: 2px solid var(--fg-white);
  border-top: none; border-left: none;
  transform: rotate(42deg);
}
.fg-flt-lbl {
  font-size: 13px; color: var(--fg-700);
  flex: 1; display: flex; align-items: center; justify-content: space-between;
}
.fg-flt-cnt { font-size: 11.5px; color: var(--fg-400); }

/* Alt kategori öğesi (link şeklinde, checkbox değil) */
.fg-flt-cat { padding: 7px 0; transition: color 0.12s; opacity: 1; }
.fg-flt-cat:hover { opacity: 1; color: var(--fg-950); }
.fg-flt-cat:hover .fg-flt-lbl { color: var(--fg-950); font-weight: 500; }
.fg-flt-cat:hover .fg-flt-lbl i { color: var(--fg-950); transform: translateX(2px); transition: transform 0.15s, color 0.12s; }
.fg-flt-cat .fg-flt-lbl i { transition: transform 0.15s, color 0.12s; }
.fg-flt-cat + .fg-flt-cat { border-top: 1px dashed var(--fg-100); }
.fg-flt-cat--active .fg-flt-lbl { color: var(--fg-950); font-weight: 700; }
.fg-flt-cat--active .fg-flt-lbl i { color: var(--fg-950); }

/* Kategoriler kartı — ayrı kart olarak en üstte */
.fg-cats-card { margin-bottom: 12px; }
.fg-cats-card-body { padding: 4px 18px 12px; }

/* ── Kategori ağacı (sidebar accordion) ── */
.fg-cat-tree { list-style: none; padding: 0; margin: 0; }
.fg-cat-node + .fg-cat-node { border-top: 1px dashed var(--fg-100); }
.fg-cat-row {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 0;
}
.fg-cat-link {
  flex: 1; display: flex; align-items: center; gap: 6px;
  text-decoration: none; color: var(--fg-700);
  font-size: 13.5px; font-weight: 500;
  transition: color 0.12s;
}
.fg-cat-link:hover { color: var(--fg-950); }
.fg-cat-node--active > .fg-cat-row > .fg-cat-link { color: var(--fg-950); font-weight: 700; }
.fg-cat-toggle {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--fg-200);
  border-radius: var(--fg-r-sm); color: var(--fg-500);
  cursor: pointer; padding: 0; flex-shrink: 0;
  transition: all 0.15s;
}
.fg-cat-toggle:hover { background: var(--fg-100); border-color: var(--fg-300); color: var(--fg-950); }
.fg-cat-toggle i { font-size: 10px; transition: transform 0.2s; }
.fg-cat-node--open > .fg-cat-row > .fg-cat-toggle i { transform: rotate(180deg); }

/* Alt liste accordion (default kapalı, açıkken görünür) */
.fg-cat-tree--sub {
  display: none;
  margin: 0 0 6px 4px;
  padding: 4px 0 4px 10px;
  border-left: 2px solid var(--fg-100);
  list-style: none;
}
.fg-cat-node--open > .fg-cat-tree--sub { display: block; }

.fg-cat-tree--sub li { padding: 0; border: 0; }
.fg-cat-link--child {
  font-size: 12.5px; color: var(--fg-600); font-weight: 400;
  padding: 5px 0;
}
.fg-cat-link--child i { font-size: 9px; color: var(--fg-400); transition: transform 0.15s, color 0.12s; }
.fg-cat-link--child:hover i { color: var(--fg-950); transform: translateX(2px); }
.fg-cat-link--active { color: var(--fg-950) !important; font-weight: 700 !important; }
.fg-cat-link--active i { color: var(--fg-950); }

/* Fiyat */
.fg-price-track {
  position: relative; height: 4px;
  background: var(--fg-200); border-radius: 99px;
  margin: 12px 0 16px;
}
.fg-price-fill {
  position: absolute; height: 100%;
  background: var(--fg-950); border-radius: 99px;
  left: 8%; right: 15%;
}
.fg-price-inputs {
  display: flex; gap: 8px; align-items: center;
}
.fg-price-inputs input {
  flex: 1; padding: 7px 10px;
  border: 1px solid var(--fg-200);
  border-radius: var(--fg-r-sm);
  font-size: 12.5px; font-family: var(--fg-font);
  color: var(--fg-800); background: var(--fg-50);
  outline: none; transition: border-color 0.15s;
  width: 0; /* flex stretches it */
}
.fg-price-inputs input:focus { border-color: var(--fg-950); }
.fg-price-sep { color: var(--fg-400); font-size: 12px; }
.fg-price-apply {
  width: 100%; margin-top: 10px;
  background: var(--fg-950); color: var(--fg-white);
  border: none; border-radius: var(--fg-r); padding: 9px;
  font-size: 13px; font-weight: 600; font-family: var(--fg-font);
  cursor: pointer; transition: opacity 0.15s;
}
.fg-price-apply:hover { opacity: 0.85; }

/* Puan filtresi */
.fg-rating-row {
  display: flex; align-items: center; gap: 8px; padding: 5px 0; cursor: pointer;
}
.fg-rating-row input[type="radio"] { display: none; }
.fg-rstar-wrap { display: flex; gap: 2px; }
.fg-rstar-wrap i { font-size: 12px; color: var(--fg-950); }
.fg-rstar-wrap i.fa-regular { color: var(--fg-300); }
.fg-rating-row span { font-size: 12.5px; color: var(--fg-500); }
.fg-rating-row:hover .fg-rstar-wrap i { color: var(--fg-700); }

/* ── Toolbar ── */
.fg-cat-content {}
.fg-toolbar {
  background: var(--fg-white);
  border: 1px solid var(--fg-200);
  border-radius: var(--fg-r-lg);
  padding: 11px 18px;
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.fg-toolbar-left {
  display: flex; align-items: center; gap: 10px; flex: 1;
}
.fg-result-count {
  font-size: 13px; color: var(--fg-500);
  white-space: nowrap;
}
.fg-result-count strong { color: var(--fg-950); font-weight: 700; }
.fg-toolbar-right { display: flex; align-items: center; gap: 10px; }

.fg-sort-wrap {
  position: relative;
}
.fg-sort-sel {
  appearance: none; -webkit-appearance: none;
  background: var(--fg-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2371717a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 10px center;
  border: 1px solid var(--fg-200);
  border-radius: var(--fg-r);
  padding: 7px 32px 7px 12px;
  font-size: 13px; font-family: var(--fg-font); color: var(--fg-700);
  cursor: pointer; outline: none;
  transition: border-color 0.15s;
  min-width: 170px;
}
.fg-sort-sel:focus { border-color: var(--fg-950); }

.fg-view-btns { display: flex; gap: 2px; }
.fg-vt-btn {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--fg-200);
  background: var(--fg-50);
  border-radius: var(--fg-r-sm);
  color: var(--fg-500); cursor: pointer;
  font-size: 14px; transition: all 0.12s;
}
.fg-vt-btn.fg-active {
  background: var(--fg-950); color: var(--fg-white);
  border-color: var(--fg-950);
}
.fg-vt-btn:not(.fg-active):hover {
  background: var(--fg-100); color: var(--fg-800);
}

/* Mobil filtre butonu */
.fg-flt-mob-trigger {
  display: none;
  align-items: center; gap: 7px;
  background: var(--fg-950); color: var(--fg-white);
  border: none; border-radius: var(--fg-r);
  padding: 8px 14px; font-size: 13px; font-weight: 600;
  font-family: var(--fg-font); cursor: pointer;
  white-space: nowrap;
}
.fg-flt-mob-trigger .fg-flt-badge {
  background: var(--fg-white); color: var(--fg-950);
  font-size: 11px; font-weight: 700;
  border-radius: 99px; padding: 1px 7px;
}

/* ── Aktif Filtreler ── */
.fg-active-flt {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap; margin-bottom: 14px;
}
.fg-flt-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--fg-950); color: var(--fg-white);
  border-radius: 99px; padding: 5px 12px 5px 14px;
  font-size: 12.5px; font-weight: 500;
}
.fg-flt-chip button {
  background: none; border: none; color: var(--fg-400);
  cursor: pointer; padding: 0; line-height: 1;
  font-size: 13px; display: flex; align-items: center;
  transition: color 0.12s;
}
.fg-flt-chip button:hover { color: var(--fg-white); }
.fg-clear-all {
  font-size: 12.5px; color: var(--fg-500);
  background: none; border: 1px solid var(--fg-200);
  border-radius: 99px; padding: 5px 12px;
  cursor: pointer; font-family: var(--fg-font);
  transition: all 0.12s; white-space: nowrap;
}
.fg-clear-all:hover { border-color: var(--fg-950); color: var(--fg-950); }

/* ── Ürün Izgarası ── */
.fg-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

/* ── Liste Görünümü ── */
.fg-cat-grid.fg-list-mode {
  grid-template-columns: 1fr;
  gap: 10px;
}
.fg-cat-grid.fg-list-mode .fg-pcard {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  border-radius: var(--fg-r);
}
.fg-cat-grid.fg-list-mode .fg-pcard-img {
  aspect-ratio: auto;
  height: 160px;
  border-radius: var(--fg-r) 0 0 var(--fg-r);
}
.fg-cat-grid.fg-list-mode .fg-pcard-img img { height: 160px; object-fit: cover; }
.fg-cat-grid.fg-list-mode .fg-pcard-body {
  padding: 18px 20px; display: flex; flex-direction: column; justify-content: center;
}
.fg-cat-grid.fg-list-mode .fg-pcard-name {
  -webkit-line-clamp: 2; font-size: 14px; margin-bottom: 10px;
}
.fg-cat-grid.fg-list-mode .fg-pcard-desc {
  font-size: 13px; color: var(--fg-500); line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; margin-bottom: 10px; padding: 0 4px;
}
.fg-cat-grid.fg-list-mode .fg-pcard-action {
  display: flex; flex-direction: column; justify-content: center;
  align-items: flex-end; gap: 10px; padding: 18px 18px 18px 0;
}
.fg-cat-grid.fg-list-mode .fg-pcard-quick {
  position: static;
  opacity: 1;
  transform: none;
  white-space: nowrap;
  padding: 10px 20px;
  border-radius: var(--fg-r);
  font-size: 13px;
}
.fg-pcard-action { display: none; }
.fg-pcard-wish {
  width: 34px; height: 34px;
  border-radius: 50%; border: 1px solid var(--fg-200);
  background: var(--fg-white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.15s; font-size: 14px; color: var(--fg-400);
}
.fg-pcard-wish:hover { border-color: var(--fg-950); color: var(--fg-950); }
.fg-pcard-wish.fg-wished { color: #e11d48; border-color: #e11d48; }

/* Kart alt kısım — fiyat + yıldız düzeni */
.fg-pcard-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 8px;
}
.fg-pcard-rating-sm { font-size: 12px; color: var(--fg-500); }

/* ── Sayfalama ── */
.fg-pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; padding: 8px 0;
}
.fg-pg-btn {
  min-width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--fg-200);
  background: var(--fg-white);
  border-radius: var(--fg-r);
  font-size: 13.5px; font-weight: 500; color: var(--fg-700);
  cursor: pointer; transition: all 0.15s;
  font-family: var(--fg-font);
  padding: 0 6px;
}
.fg-pg-btn:hover:not(.fg-active):not(:disabled) {
  background: var(--fg-100); border-color: var(--fg-300); color: var(--fg-950);
}
.fg-pg-btn.fg-active {
  background: var(--fg-950); color: var(--fg-white);
  border-color: var(--fg-950); font-weight: 700;
}
.fg-pg-btn:disabled { opacity: 0.35; cursor: default; }
.fg-pg-ellipsis {
  display: flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; color: var(--fg-400); font-size: 14px;
}
.fg-pg-info {
  font-size: 12.5px; color: var(--fg-500);
  text-align: center; margin-top: 14px;
}

/* ── Mobil Filtre Drawer ── */
.fg-flt-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1200;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.25s;
}
.fg-flt-overlay.fg-open { display: block; opacity: 1; }

.fg-flt-drawer {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 88%; max-width: 340px;
  background: var(--fg-white);
  z-index: 1210;
  display: flex; flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
  overflow: hidden;
}
.fg-flt-drawer.fg-open { transform: translateX(0); }

.fg-flt-drw-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--fg-200);
  background: var(--fg-50);
}
.fg-flt-drw-title {
  font-size: 16px; font-weight: 700; color: var(--fg-950);
}
.fg-flt-drw-close {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: var(--fg-200); border: none; border-radius: 50%;
  color: var(--fg-700); cursor: pointer; font-size: 15px;
  transition: background 0.12s;
}
.fg-flt-drw-close:hover { background: var(--fg-300); }

.fg-flt-drw-body {
  flex: 1; overflow-y: auto;
  padding: 14px 16px;
  scrollbar-width: thin;
}
.fg-flt-drw-foot {
  padding: 14px 16px;
  border-top: 1px solid var(--fg-200);
  display: flex; gap: 10px;
}
.fg-drw-apply {
  flex: 1; background: var(--fg-950); color: var(--fg-white);
  border: none; border-radius: var(--fg-r); padding: 12px;
  font-size: 14px; font-weight: 700; font-family: var(--fg-font);
  cursor: pointer;
}
.fg-drw-reset {
  padding: 12px 18px; background: var(--fg-white);
  border: 1px solid var(--fg-200); border-radius: var(--fg-r);
  font-size: 13px; font-family: var(--fg-font); color: var(--fg-600);
  cursor: pointer;
}

/* ── Kategori Responsive ── */
@media (max-width: 1080px) {
  .fg-cat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .fg-cat-layout { grid-template-columns: 1fr; }
  .fg-cat-sidebar { display: none; }
  .fg-flt-mob-trigger { display: inline-flex; }
  .fg-cat-grid { grid-template-columns: repeat(3, 1fr); }
  .fg-cat-grid.fg-list-mode .fg-pcard {
    grid-template-columns: 130px 1fr;
  }
  .fg-cat-grid.fg-list-mode .fg-pcard-action { display: none; }
}
@media (max-width: 640px) {
  .fg-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .fg-cat-hero { padding: 20px 0 18px; }
  .fg-cat-hero-icon { width: 54px; height: 54px; }
  .fg-cat-hero-icon i { font-size: 22px; }
  .fg-cat-hero-title { font-size: 22px; }
  .fg-cat-hero-stats { gap: 16px; }
  .fg-cat-hero-desc { display: none; }
  .fg-cat-grid.fg-list-mode { grid-template-columns: 1fr; }
  .fg-cat-grid.fg-list-mode .fg-pcard {
    grid-template-columns: 110px 1fr;
  }
  .fg-cat-grid.fg-list-mode .fg-pcard-img { height: 130px; }
  .fg-cat-grid.fg-list-mode .fg-pcard-img img { height: 130px; }
}
@media (max-width: 400px) {
  .fg-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .fg-pg-btn { min-width: 34px; height: 34px; font-size: 12.5px; }
}

/* ══════════════════════════════════════════════════════
   AUTH SAYFALARI  —  fg-auth-*  (Login & Kayıt)
   ══════════════════════════════════════════════════════ */

.fg-auth-page {
  min-height: 100vh;
  background: var(--fg-100);
  display: flex;
  flex-direction: column;
}
.fg-auth-bg {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(39,39,42,.05) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(39,39,42,.07) 0%, transparent 45%),
    var(--fg-100);
}

/* ── Login: ortalanmış kart ── */
.fg-auth-card {
  background: var(--fg-white);
  border: 1px solid var(--fg-200);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.04);
  width: 100%;
  max-width: 430px;
  padding: 44px 40px 36px;
}

/* ── Register: bölünmüş kart ── */
.fg-auth-split {
  display: grid;
  grid-template-columns: 360px 1fr;
  width: 100%;
  max-width: 880px;
  background: var(--fg-white);
  border: 1px solid var(--fg-200);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.04);
  overflow: hidden;
}

/* Sol koyu panel */
.fg-auth-side {
  background: var(--fg-950);
  padding: 48px 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.fg-auth-side::before {
  content: '';
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.05);
  bottom: -130px; right: -130px;
}
.fg-auth-side::after {
  content: '';
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.05);
  top: -60px; left: -60px;
}
.fg-as-logo {
  display: flex; align-items: center; gap: 11px; text-decoration: none;
}
.fg-as-logo-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--fg-800); border-radius: var(--fg-r);
  display: flex; align-items: center; justify-content: center;
}
.fg-as-logo-icon i { color: var(--fg-white); font-size: 17px; }
.fg-as-logo-text { display: flex; flex-direction: column; }
.fg-as-brand { font-size: 17px; font-weight: 700; color: var(--fg-white); letter-spacing: -.02em; }
.fg-as-tag { font-size: 11px; color: var(--fg-600); }

.fg-as-body { padding: 8px 0; }
.fg-as-title {
  font-size: 24px; font-weight: 700; color: var(--fg-white);
  letter-spacing: -.04em; line-height: 1.25; margin-bottom: 12px;
}
.fg-as-desc { font-size: 13px; color: var(--fg-400); line-height: 1.7; margin-bottom: 28px; }

.fg-as-perks { display: flex; flex-direction: column; gap: 14px; }
.fg-as-perk { display: flex; align-items: center; gap: 12px; }
.fg-as-perk-ico {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--fg-800); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--fg-300);
}
.fg-as-perk-text { font-size: 13px; color: var(--fg-400); line-height: 1.45; }
.fg-as-perk-text strong { color: var(--fg-200); font-weight: 600; }

.fg-as-foot { font-size: 12px; color: var(--fg-700); line-height: 1.6; }
.fg-as-foot a { color: var(--fg-600); text-decoration: none; }
.fg-as-foot a:hover { color: var(--fg-400); }

/* Sağ form alanı (register) */
.fg-auth-form-wrap {
  padding: 48px 44px;
  display: flex; flex-direction: column; justify-content: center;
  overflow-y: auto;
}

/* ── Küçük logo (login kart içi) ── */
.fg-auth-logo-sm {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; margin-bottom: 26px;
}
.fg-auth-logo-sm-ico {
  width: 36px; height: 36px;
  background: var(--fg-950); border-radius: var(--fg-r);
  display: flex; align-items: center; justify-content: center;
}
.fg-auth-logo-sm-ico i { color: var(--fg-white); font-size: 15px; }
.fg-auth-logo-sm span { font-size: 16px; font-weight: 700; color: var(--fg-950); letter-spacing: -.02em; }

/* ── Başlıklar ── */
.fg-auth-title {
  font-size: 23px; font-weight: 700;
  color: var(--fg-950); letter-spacing: -.035em; margin-bottom: 6px;
}
.fg-auth-sub {
  font-size: 13.5px; color: var(--fg-500);
  line-height: 1.5; margin-bottom: 26px;
}
.fg-auth-sub a { color: var(--fg-950); font-weight: 600; text-decoration: none; }
.fg-auth-sub a:hover { text-decoration: underline; }

/* ── Form Elemanları ── */
.fg-form-group { margin-bottom: 14px; }
.fg-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.fg-form-label {
  display: block; font-size: 12.5px; font-weight: 600;
  color: var(--fg-700); margin-bottom: 6px; letter-spacing: .005em;
}
.fg-form-label .fg-req { color: #dc2626; margin-left: 2px; }

.fg-input-wrap { position: relative; }
.fg-form-input {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--fg-200);
  border-radius: var(--fg-r);
  font-size: 13.5px; font-family: var(--fg-font);
  color: var(--fg-900); background: var(--fg-white);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  -webkit-appearance: none;
}
.fg-form-input::placeholder { color: var(--fg-400); }
.fg-form-input:focus {
  border-color: var(--fg-900);
  box-shadow: 0 0 0 3px rgba(9,9,11,.08);
}
.fg-form-input.fg-has-icon { padding-left: 40px; }
.fg-form-input.fg-has-btn  { padding-right: 46px; }
.fg-form-input.fg-is-error { border-color: #dc2626; }
.fg-form-input.fg-is-error:focus { box-shadow: 0 0 0 3px rgba(220,38,38,.1); }

.fg-input-ico {
  position: absolute; left: 13px; top: 50%;
  transform: translateY(-50%);
  color: var(--fg-400); font-size: 13px; pointer-events: none;
}
.fg-input-btn {
  position: absolute; right: 0; top: 0; bottom: 0; width: 44px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  color: var(--fg-400); font-size: 14px; transition: color .12s;
}
.fg-input-btn:hover { color: var(--fg-800); }

.fg-form-hint  { font-size: 11.5px; color: var(--fg-500); margin-top: 5px; }
.fg-form-error { font-size: 11.5px; color: #dc2626; margin-top: 5px; display: none; }
.fg-form-error.fg-show { display: block; }

/* ── Şifre güçlülük göstergesi ── */
.fg-pass-strength { margin-top: 9px; }
.fg-pass-bars { display: flex; gap: 4px; margin-bottom: 5px; }
.fg-pass-bar {
  flex: 1; height: 3px; border-radius: 99px;
  background: var(--fg-200); transition: background .3s;
}
.fg-pass-bar.fg-s-weak   { background: #ef4444; }
.fg-pass-bar.fg-s-fair   { background: #f59e0b; }
.fg-pass-bar.fg-s-good   { background: #22c55e; }
.fg-pass-bar.fg-s-strong { background: var(--fg-950); }
.fg-pass-lbl { font-size: 11.5px; color: var(--fg-500); }

/* ── Checkbox satırı ── */
.fg-check-row {
  display: flex; align-items: flex-start; gap: 10px;
  cursor: pointer; margin-bottom: 14px; user-select: none;
}
.fg-check-row input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 17px; height: 17px; flex-shrink: 0; margin-top: 1px;
  border: 1.5px solid var(--fg-300); border-radius: 4px;
  background: var(--fg-white); cursor: pointer;
  transition: all .12s; position: relative;
}
.fg-check-row input[type="checkbox"]:checked {
  background: var(--fg-950); border-color: var(--fg-950);
}
.fg-check-row input[type="checkbox"]:checked::after {
  content: '';
  position: absolute; top: 2px; left: 5px;
  width: 4px; height: 7px;
  border: 2px solid var(--fg-white);
  border-top: none; border-left: none;
  transform: rotate(42deg);
}
.fg-check-txt { font-size: 13px; color: var(--fg-600); line-height: 1.55; }
.fg-check-txt a { color: var(--fg-950); font-weight: 600; text-decoration: none; }
.fg-check-txt a:hover { text-decoration: underline; }

/* ── Beni hatırla + şifremi unuttum ── */
.fg-form-extras {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.fg-forgot { font-size: 13px; color: var(--fg-600); text-decoration: none; font-weight: 500; }
.fg-forgot:hover { color: var(--fg-950); }

/* ── Ana buton ── */
.fg-auth-btn {
  width: 100%; padding: 12px 20px;
  background: var(--fg-950); color: var(--fg-white);
  border: none; border-radius: var(--fg-r); cursor: pointer;
  font-size: 14px; font-weight: 700; font-family: var(--fg-font);
  letter-spacing: .01em; transition: opacity .15s, transform .1s;
  margin-bottom: 20px; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.fg-auth-btn:hover  { opacity: .85; }
.fg-auth-btn:active { transform: scale(.99); }

/* ── Ayırıcı ── */
.fg-auth-divider {
  display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
}
.fg-auth-divider::before, .fg-auth-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--fg-200);
}
.fg-auth-divider span { font-size: 12px; color: var(--fg-400); font-weight: 500; }

/* ── Sosyal giriş ── */
.fg-social-auth { display: flex; gap: 10px; }
.fg-social-auth-btn {
  flex: 1; padding: 10px 12px;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--fg-white); border: 1.5px solid var(--fg-200); border-radius: var(--fg-r);
  font-size: 13px; font-weight: 600; color: var(--fg-800);
  font-family: var(--fg-font); cursor: pointer; transition: all .15s;
}
.fg-social-auth-btn:hover { background: var(--fg-50); border-color: var(--fg-300); }
.fg-social-auth-btn i { font-size: 15px; }

/* ── Alt link ── */
.fg-auth-foot {
  text-align: center; margin-top: 22px;
  font-size: 13.5px; color: var(--fg-500);
}
.fg-auth-foot a { color: var(--fg-950); font-weight: 700; text-decoration: none; }
.fg-auth-foot a:hover { text-decoration: underline; }

/* ── Auth Responsive ── */
@media (max-width: 860px) {
  .fg-auth-split { grid-template-columns: 1fr; max-width: 480px; }
  .fg-auth-side  { display: none; }
  .fg-auth-form-wrap { padding: 40px 36px; }
}
@media (max-width: 520px) {
  .fg-auth-card { padding: 32px 24px 28px; }
  .fg-auth-form-wrap { padding: 32px 22px; }
  .fg-form-row { grid-template-columns: 1fr; gap: 0; }
  .fg-auth-title { font-size: 21px; }
  .fg-social-auth { flex-direction: column; }
}

/* ══════════════════════════════════════════════════════
   SEPETİM SAYFASI  —  fg-crt-*
   ══════════════════════════════════════════════════════ */

.fg-crt-page { background: var(--fg-100); }
.fg-crt-wrap { padding: 28px 0 64px; }

.fg-crt-layout {
  display: grid;
  grid-template-columns: 1fr 356px;
  gap: 22px;
  align-items: start;
}

/* ── Başlık ── */
.fg-crt-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.fg-crt-title {
  font-size: 20px; font-weight: 700; color: var(--fg-950);
  letter-spacing: -.03em;
}
.fg-crt-title span { font-size: 14px; font-weight: 400; color: var(--fg-400); margin-left: 6px; }
.fg-crt-clear {
  font-size: 12.5px; color: var(--fg-500);
  background: none; border: 1px solid var(--fg-200);
  border-radius: 99px; padding: 5px 14px;
  cursor: pointer; font-family: var(--fg-font);
  transition: all .15s;
}
.fg-crt-clear:hover { border-color: #dc2626; color: #dc2626; }

/* ── Ürün Satırı ── */
.fg-crt-item {
  background: var(--fg-white);
  border: 1px solid var(--fg-200);
  border-radius: var(--fg-r-lg);
  padding: 18px;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  margin-bottom: 10px;
  transition: box-shadow .2s;
}
.fg-crt-item:hover { box-shadow: var(--fg-sh-sm); }

.fg-crt-img {
  width: 96px; height: 96px;
  border-radius: var(--fg-r);
  overflow: hidden;
  border: 1px solid var(--fg-100);
  flex-shrink: 0;
}
.fg-crt-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.fg-crt-body { display: flex; flex-direction: column; justify-content: space-between; }
.fg-crt-brand {
  font-size: 10.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; color: var(--fg-500); margin-bottom: 3px;
}
.fg-crt-name {
  font-size: 14px; font-weight: 500; color: var(--fg-800);
  line-height: 1.4; margin-bottom: 5px;
}
.fg-crt-variant { font-size: 12px; color: var(--fg-400); }

.fg-crt-row2 {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 10px; flex-wrap: wrap; gap: 10px;
}
.fg-crt-prices { display: flex; align-items: baseline; gap: 7px; }
.fg-crt-price  { font-size: 17px; font-weight: 700; color: var(--fg-950); letter-spacing: -.02em; }
.fg-crt-oprice { font-size: 12.5px; color: var(--fg-400); text-decoration: line-through; }

.fg-crt-controls { display: flex; align-items: center; gap: 8px; }

/* Adet stepper */
.fg-c-qty {
  display: flex; align-items: center;
  border: 1px solid var(--fg-200); border-radius: var(--fg-r); overflow: hidden;
}
.fg-c-qty-btn {
  width: 32px; height: 32px; border: none;
  background: var(--fg-50); color: var(--fg-700);
  cursor: pointer; font-size: 16px; font-weight: 400;
  transition: background .12s; display: flex; align-items: center; justify-content: center;
}
.fg-c-qty-btn:hover { background: var(--fg-200); }
.fg-c-qty-val {
  width: 38px; text-align: center;
  font-size: 13.5px; font-weight: 700; color: var(--fg-900);
  background: var(--fg-white); border: none; outline: none;
  font-family: var(--fg-font);
}

.fg-c-wish {
  width: 32px; height: 32px;
  border: 1px solid var(--fg-200); border-radius: var(--fg-r);
  background: var(--fg-white); color: var(--fg-400);
  cursor: pointer; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: all .15s;
}
.fg-c-wish:hover  { border-color: #e11d48; color: #e11d48; }
.fg-c-wish.fg-w   { color: #e11d48; border-color: #e11d48; }

.fg-c-del {
  width: 32px; height: 32px;
  border: 1px solid var(--fg-200); border-radius: var(--fg-r);
  background: var(--fg-white); color: var(--fg-400);
  cursor: pointer; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: all .15s;
}
.fg-c-del:hover { border-color: #dc2626; color: #dc2626; background: #fff5f5; }

/* ── Altta devam et ── */
.fg-crt-bottom {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 16px; padding-top: 16px;
}
.fg-continue-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13.5px; color: var(--fg-600); text-decoration: none;
  font-weight: 500; transition: color .15s;
}
.fg-continue-link:hover { color: var(--fg-950); }
.fg-crt-item-count { font-size: 13px; color: var(--fg-400); }

/* ── Sipariş Özeti Kartı ── */
.fg-crt-sidebar { position: sticky; top: 16px; }

.fg-order-card {
  background: var(--fg-white);
  border: 1px solid var(--fg-200);
  border-radius: var(--fg-r-lg);
  padding: 22px 24px;
  margin-bottom: 10px;
}
.fg-order-title {
  font-size: 15px; font-weight: 700; color: var(--fg-950);
  letter-spacing: -.02em; margin-bottom: 18px;
}
.fg-order-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13.5px; color: var(--fg-600); margin-bottom: 10px;
}
.fg-order-row .fg-val { font-weight: 500; color: var(--fg-800); }
.fg-order-row .fg-green { color: #16a34a; font-weight: 600; }
.fg-order-row.fg-total-row {
  border-top: 1px solid var(--fg-200);
  padding-top: 14px; margin-top: 6px; margin-bottom: 0;
  font-size: 16px; font-weight: 700; color: var(--fg-950);
}
.fg-order-row.fg-total-row .fg-val { font-size: 18px; color: var(--fg-950); }
.fg-order-divider { height: 1px; background: var(--fg-100); margin: 12px 0; }

/* Kupon */
.fg-coupon-wrap { margin: 16px 0 0; }
.fg-coupon-lbl { font-size: 12px; font-weight: 600; color: var(--fg-700); margin-bottom: 7px; }
.fg-coupon-row { display: flex; gap: 8px; }
.fg-coupon-input {
  flex: 1; padding: 9px 12px;
  border: 1.5px solid var(--fg-200); border-radius: var(--fg-r);
  font-size: 13px; font-family: var(--fg-font);
  color: var(--fg-800); outline: none;
  text-transform: uppercase; letter-spacing: .05em;
  transition: border-color .15s;
}
.fg-coupon-input::placeholder { text-transform: none; letter-spacing: 0; color: var(--fg-400); }
.fg-coupon-input:focus { border-color: var(--fg-950); }
.fg-coupon-btn {
  padding: 9px 14px; background: var(--fg-100);
  border: 1px solid var(--fg-200); border-radius: var(--fg-r);
  font-size: 13px; font-weight: 600; font-family: var(--fg-font);
  color: var(--fg-700); cursor: pointer; white-space: nowrap;
  transition: all .15s;
}
.fg-coupon-btn:hover { background: var(--fg-950); color: var(--fg-white); border-color: var(--fg-950); }

/* Sepete git butonu */
.fg-checkout-btn {
  width: 100%; padding: 14px 20px;
  background: var(--fg-950); color: var(--fg-white);
  border: none; border-radius: var(--fg-r); cursor: pointer;
  font-size: 15px; font-weight: 700; font-family: var(--fg-font);
  display: flex; align-items: center; justify-content: center; gap: 9px;
  margin-top: 18px; transition: opacity .15s, transform .1s;
  text-decoration: none;
}
.fg-checkout-btn:hover { opacity: .85; color: var(--fg-white); }
.fg-checkout-btn:active { transform: scale(.99); }

.fg-secure-note {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  font-size: 11.5px; color: var(--fg-400); margin-top: 12px;
}
.fg-pay-chips {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 10px; flex-wrap: wrap;
}
.fg-pay-chip {
  background: var(--fg-100); border: 1px solid var(--fg-200);
  border-radius: 4px; padding: 3px 9px;
  font-size: 10px; font-weight: 700; color: var(--fg-600); letter-spacing: .02em;
}

/* Teslimat notu kartı */
.fg-delivery-card {
  background: var(--fg-white);
  border: 1px solid var(--fg-200); border-radius: var(--fg-r-lg);
  padding: 16px 18px;
  display: flex; align-items: flex-start; gap: 12px;
}
.fg-delivery-card i { font-size: 17px; color: var(--fg-500); margin-top: 1px; flex-shrink: 0; }
.fg-delivery-text { font-size: 12.5px; color: var(--fg-600); line-height: 1.6; }
.fg-delivery-text strong { color: var(--fg-800); }

/* ── Boş sepet ── */
.fg-crt-empty {
  background: var(--fg-white);
  border: 1px solid var(--fg-200); border-radius: var(--fg-r-lg);
  padding: 64px 32px; text-align: center;
}
.fg-crt-empty i { font-size: 52px; color: var(--fg-300); margin-bottom: 18px; }
.fg-crt-empty-title { font-size: 19px; font-weight: 700; color: var(--fg-800); margin-bottom: 8px; }
.fg-crt-empty-desc { font-size: 13.5px; color: var(--fg-500); margin-bottom: 22px; }

/* ── Sepet Responsive ── */
@media (max-width: 960px) {
  .fg-crt-layout { grid-template-columns: 1fr; }
  .fg-crt-sidebar { position: static; }
}
@media (max-width: 520px) {
  .fg-crt-item { grid-template-columns: 76px 1fr; gap: 12px; }
  .fg-crt-img { width: 76px; height: 76px; }
  .fg-crt-price { font-size: 15px; }
}


/* ══════════════════════════════════════════════════════
   KASA SAYFASI  —  fg-chk-*
   ══════════════════════════════════════════════════════ */

.fg-chk-page { background: var(--fg-100); }
.fg-chk-wrap { padding: 28px 0 64px; }

.fg-chk-layout {
  display: grid;
  grid-template-columns: 1fr 356px;
  gap: 22px;
  align-items: start;
}
.fg-chk-sidebar { position: sticky; top: 16px; }

/* ── Adım Çubuğu ── */
.fg-stepper {
  display: flex; align-items: flex-start;
  background: var(--fg-white);
  border: 1px solid var(--fg-200);
  border-radius: var(--fg-r-lg);
  padding: 20px 28px;
  margin-bottom: 18px;
}
.fg-step {
  display: flex; flex-direction: column; align-items: center;
  flex: 1; position: relative;
}
.fg-step-num {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--fg-300);
  background: var(--fg-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--fg-400);
  z-index: 1; transition: all .25s;
}
.fg-step.fg-s-done .fg-step-num   { background: var(--fg-950); border-color: var(--fg-950); color: var(--fg-white); }
.fg-step.fg-s-active .fg-step-num { border-color: var(--fg-950); color: var(--fg-950); box-shadow: 0 0 0 4px rgba(9,9,11,.08); }
.fg-step-lbl {
  font-size: 11.5px; color: var(--fg-400);
  margin-top: 7px; text-align: center; white-space: nowrap;
  transition: color .25s;
}
.fg-step.fg-s-active .fg-step-lbl { color: var(--fg-950); font-weight: 700; }
.fg-step.fg-s-done .fg-step-lbl   { color: var(--fg-700); font-weight: 500; }

.fg-step-conn {
  flex: 1; height: 2px; background: var(--fg-200);
  margin-top: 15px; transition: background .35s;
}
.fg-step-conn.fg-s-done { background: var(--fg-950); }

/* ── Bölüm Kartı ── */
.fg-section-card {
  background: var(--fg-white);
  border: 1px solid var(--fg-200);
  border-radius: var(--fg-r-lg);
  padding: 24px;
  margin-bottom: 14px;
  transition: opacity .2s;
}
.fg-section-card.fg-sc-locked {
  opacity: .45; pointer-events: none;
}
.fg-section-hd {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px;
}
.fg-section-title {
  display: flex; align-items: center; gap: 11px;
  font-size: 15px; font-weight: 700; color: var(--fg-950); letter-spacing: -.02em;
}
.fg-sn {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--fg-950); color: var(--fg-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.fg-sn.fg-sn-done { background: var(--fg-500); }
.fg-sn.fg-sn-done::after {
  font-family: "Font Awesome 6 Free"; font-weight: 900;
  content: "\f00c"; font-size: 11px;
}
.fg-section-edit {
  font-size: 12.5px; color: var(--fg-600);
  background: none; border: 1px solid var(--fg-200);
  border-radius: 99px; padding: 5px 14px;
  cursor: pointer; font-family: var(--fg-font);
  transition: all .15s; display: none;
}
.fg-section-edit:hover { border-color: var(--fg-950); color: var(--fg-950); }
.fg-section-edit.fg-show { display: inline-flex; align-items: center; gap: 5px; }

/* ── Teslimat Seçenekleri ── */
.fg-ship-opts { display: flex; flex-direction: column; gap: 10px; }
.fg-ship-opt {
  border: 1.5px solid var(--fg-200); border-radius: var(--fg-r);
  padding: 14px 16px; cursor: pointer;
  display: flex; align-items: center; gap: 14px;
  transition: all .15s;
}
.fg-ship-opt:hover { border-color: var(--fg-400); }
.fg-ship-opt.fg-s-sel { border-color: var(--fg-950); background: var(--fg-50); }
.fg-ship-radio {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--fg-300); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all .15s;
}
.fg-ship-opt.fg-s-sel .fg-ship-radio { border-color: var(--fg-950); }
.fg-ship-opt.fg-s-sel .fg-ship-radio::after {
  content: ''; width: 8px; height: 8px;
  background: var(--fg-950); border-radius: 50%;
}
.fg-ship-ico {
  width: 42px; height: 42px; background: var(--fg-100);
  border-radius: var(--fg-r); display: flex; align-items: center;
  justify-content: center; font-size: 19px; color: var(--fg-700); flex-shrink: 0;
}
.fg-ship-info { flex: 1; }
.fg-ship-name  { font-size: 14px; font-weight: 600; color: var(--fg-900); margin-bottom: 3px; }
.fg-ship-desc  { font-size: 12.5px; color: var(--fg-500); }
.fg-ship-price { font-size: 14px; font-weight: 700; color: var(--fg-950); white-space: nowrap; }
.fg-ship-free  { color: #16a34a; }

/* ── Ödeme Sekmeleri ── */
.fg-pay-tabs {
  display: flex; gap: 10px; margin-bottom: 22px;
}
.fg-pay-tab {
  flex: 1; padding: 11px 12px;
  border: 1.5px solid var(--fg-200); border-radius: var(--fg-r);
  cursor: pointer; text-align: center;
  font-size: 13px; font-weight: 600; color: var(--fg-500);
  transition: all .15s;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  background: var(--fg-white);
}
.fg-pay-tab i { font-size: 20px; }
.fg-pay-tab:hover { border-color: var(--fg-400); color: var(--fg-800); }
.fg-pay-tab.fg-pt-sel { border-color: var(--fg-950); color: var(--fg-950); background: var(--fg-50); }
.fg-pay-panel { display: none; }
.fg-pay-panel.fg-pp-active { display: block; }

/* ── Kredi Kartı Görseli ── */
.fg-card-visual {
  background: var(--fg-900);
  border-radius: 14px; padding: 22px 24px;
  margin-bottom: 22px; color: var(--fg-white);
  height: 174px; position: relative; overflow: hidden;
  background-image:
    radial-gradient(circle at 70% -10%, rgba(255,255,255,.06) 0%, transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(255,255,255,.04) 0%, transparent 45%);
}
.fg-cv-chip {
  width: 36px; height: 26px;
  background: linear-gradient(135deg, rgba(255,255,255,.2), rgba(255,255,255,.1));
  border-radius: 5px; margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,.15);
}
.fg-cv-number {
  font-size: 16px; letter-spacing: .22em; font-weight: 500;
  margin-bottom: 18px; font-variant-numeric: tabular-nums;
  color: rgba(255,255,255,.9);
}
.fg-cv-bottom { display: flex; align-items: flex-end; justify-content: space-between; }
.fg-cv-sub   { font-size: 9px; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.4); margin-bottom: 4px; }
.fg-cv-val   { font-size: 13px; font-weight: 600; letter-spacing: .02em; }
.fg-cv-logo  { position: absolute; top: 20px; right: 22px; }
.fg-cv-logo i { font-size: 30px; opacity: .4; }

/* Kart formu */
.fg-card-fields { display: flex; flex-direction: column; gap: 14px; }
.fg-card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fg-card-field-lbl {
  font-size: 12px; font-weight: 600; color: var(--fg-700);
  margin-bottom: 6px; display: block;
}
.fg-card-input {
  width: 100%; padding: 10px 13px;
  border: 1.5px solid var(--fg-200); border-radius: var(--fg-r);
  font-size: 13.5px; font-family: var(--fg-font);
  color: var(--fg-900); background: var(--fg-white); outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.fg-card-input:focus {
  border-color: var(--fg-900);
  box-shadow: 0 0 0 3px rgba(9,9,11,.07);
}
.fg-card-input::placeholder { color: var(--fg-400); }

/* ── Taksit Seçenekleri ── */
.fg-inst-title { font-size: 13px; font-weight: 600; color: var(--fg-700); margin-bottom: 10px; }
.fg-inst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.fg-inst-opt {
  border: 1.5px solid var(--fg-200); border-radius: var(--fg-r);
  padding: 10px 8px; cursor: pointer; text-align: center;
  transition: all .15s;
}
.fg-inst-opt:hover { border-color: var(--fg-400); }
.fg-inst-opt.fg-io-sel { border-color: var(--fg-950); background: var(--fg-50); }
.fg-inst-num   { font-size: 13px; font-weight: 700; color: var(--fg-950); }
.fg-inst-price { font-size: 11.5px; color: var(--fg-500); margin-top: 2px; }
.fg-inst-total { font-size: 10.5px; color: var(--fg-400); margin-top: 1px; }

/* Banka havalesi */
.fg-bank-list { display: flex; flex-direction: column; gap: 10px; }
.fg-bank-row {
  display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--fg-200); border-radius: var(--fg-r); padding: 14px 16px;
}
.fg-bank-logo {
  width: 42px; height: 42px; background: var(--fg-100);
  border-radius: var(--fg-r-sm); display: flex; align-items: center;
  justify-content: center; font-size: 10px; font-weight: 800;
  color: var(--fg-700); flex-shrink: 0;
}
.fg-bank-info { flex: 1; }
.fg-bank-name { font-size: 13.5px; font-weight: 600; color: var(--fg-900); }
.fg-bank-iban { font-size: 12px; color: var(--fg-500); font-variant-numeric: tabular-nums; margin-top: 2px; }
.fg-bank-copy {
  font-size: 12px; color: var(--fg-600);
  background: none; border: 1px solid var(--fg-200);
  border-radius: 99px; padding: 4px 12px;
  cursor: pointer; font-family: var(--fg-font); transition: all .15s;
}
.fg-bank-copy:hover { background: var(--fg-950); color: var(--fg-white); border-color: var(--fg-950); }

/* ── Adım ilerleme butonu ── */
.fg-step-next {
  width: 100%; padding: 13px 20px;
  background: var(--fg-950); color: var(--fg-white);
  border: none; border-radius: var(--fg-r); cursor: pointer;
  font-size: 14px; font-weight: 700; font-family: var(--fg-font);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 22px; transition: opacity .15s, transform .1s;
}
.fg-step-next:hover { opacity: .85; }
.fg-step-next:active { transform: scale(.99); }

/* ── Tamamlandı özeti ── */
.fg-done-summary {
  background: var(--fg-50); border: 1px solid var(--fg-200);
  border-radius: var(--fg-r); padding: 14px 16px;
  font-size: 13px; color: var(--fg-700); display: none;
}
.fg-done-summary.fg-show { display: block; }
.fg-done-summary strong { color: var(--fg-950); }

/* ── Sipariş Mini Özeti ── */
.fg-mini-items { margin-bottom: 16px; }
.fg-mini-item {
  display: flex; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid var(--fg-100);
}
.fg-mini-item:last-child { border-bottom: none; }
.fg-mini-img {
  width: 54px; height: 54px; border-radius: var(--fg-r-sm);
  overflow: hidden; flex-shrink: 0;
  border: 1px solid var(--fg-100);
}
.fg-mini-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fg-mini-info { flex: 1; min-width: 0; }
.fg-mini-name {
  font-size: 12.5px; font-weight: 500; color: var(--fg-800);
  line-height: 1.35; margin-bottom: 3px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.fg-mini-var { font-size: 11.5px; color: var(--fg-400); }
.fg-mini-price { font-size: 13px; font-weight: 700; color: var(--fg-950); white-space: nowrap; margin-left: 6px; }
.fg-mini-qty { font-size: 11px; color: var(--fg-400); margin-top: 2px; }

/* Sipariş tamamla butonu */
.fg-place-btn {
  width: 100%; padding: 15px 20px;
  background: var(--fg-950); color: var(--fg-white);
  border: none; border-radius: var(--fg-r); cursor: pointer;
  font-size: 15px; font-weight: 700; font-family: var(--fg-font);
  display: flex; align-items: center; justify-content: center; gap: 9px;
  margin-top: 18px; transition: opacity .15s, transform .1s;
}
.fg-place-btn:hover { opacity: .85; }
.fg-place-btn:active { transform: scale(.99); }

/* Güvenlik rozetleri */
.fg-security {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin-top: 14px; flex-wrap: wrap;
}
.fg-sec-badge {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; color: var(--fg-400);
}
.fg-sec-badge i { font-size: 12px; color: var(--fg-500); }

/* ── Kasa Responsive ── */
@media (max-width: 980px) {
  .fg-chk-layout { grid-template-columns: 1fr; }
  .fg-chk-sidebar { position: static; }
  .fg-chk-sidebar { order: -1; }
}
@media (max-width: 600px) {
  .fg-stepper { padding: 16px 12px; }
  .fg-step-lbl { font-size: 10px; }
  .fg-card-row { grid-template-columns: 1fr; }
  .fg-inst-grid { grid-template-columns: repeat(2, 1fr); }
  .fg-pay-tabs { flex-wrap: wrap; }
  .fg-pay-tab { min-width: 120px; }
  .fg-ship-opt { flex-wrap: wrap; gap: 8px; }
}

/* ══════════════════════════════════════════════
   HESAP SAYFASI  —  fg-acc-*
══════════════════════════════════════════════ */
.fg-acc-page { background: var(--fg-100); min-height: 100vh; }
.fg-acc-wrap { padding: 32px 0 64px; }
.fg-acc-layout {
  display: grid;
  grid-template-columns: 256px 1fr;
  gap: 22px;
  align-items: start;
}

/* ── Sidebar ── */
.fg-acc-sidebar { position: sticky; top: 16px; }
.fg-acc-user {
  background: var(--fg-white);
  border: 1px solid var(--fg-200);
  border-radius: var(--fg-r-lg);
  padding: 20px 16px;
  text-align: center;
  margin-bottom: 10px;
}
.fg-acc-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--fg-950); color: var(--fg-white);
  font-size: 26px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.fg-acc-name { font-size: 15px; font-weight: 700; color: var(--fg-950); margin-bottom: 3px; }
.fg-acc-email { font-size: 12.5px; color: var(--fg-500); margin-bottom: 10px; }
.fg-acc-member-since {
  display: inline-block; font-size: 11.5px; color: var(--fg-500);
  background: var(--fg-100); padding: 3px 10px; border-radius: 20px;
}
.fg-acc-nav-card {
  background: var(--fg-white);
  border: 1px solid var(--fg-200);
  border-radius: var(--fg-r-lg);
  overflow: hidden;
}
.fg-acc-nav { list-style: none; margin: 0; padding: 6px 0; }
.fg-acc-nav-sep { height: 1px; background: var(--fg-100); margin: 4px 0; }
.fg-acc-nav-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  font-size: 13.5px; font-weight: 500; color: var(--fg-600);
  text-decoration: none; transition: all .12s;
  border-left: 3px solid transparent;
}
.fg-acc-nav-link i { width: 18px; text-align: center; font-size: 13px; color: var(--fg-400); transition: color .12s; }
.fg-acc-nav-link:hover { background: var(--fg-50); color: var(--fg-950); }
.fg-acc-nav-link:hover i { color: var(--fg-700); }
.fg-acc-nav-link.fg-active { background: var(--fg-50); color: var(--fg-950); font-weight: 700; border-left-color: var(--fg-950); }
.fg-acc-nav-link.fg-active i { color: var(--fg-950); }
.fg-acc-nav-badge {
  margin-left: auto; background: var(--fg-950); color: var(--fg-white);
  font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 20px; min-width: 18px; text-align: center;
}
.fg-acc-nav-link.fg-logout { color: #dc2626; }
.fg-acc-nav-link.fg-logout i { color: #dc2626; }
.fg-acc-nav-link.fg-logout:hover { background: #fef2f2; }

/* ── İçerik Alanı ── */
.fg-acc-content { min-width: 0; }
.fg-acc-card {
  background: var(--fg-white);
  border: 1px solid var(--fg-200);
  border-radius: var(--fg-r-lg);
  margin-bottom: 16px; overflow: hidden;
}
.fg-acc-card-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--fg-100);
}
.fg-acc-card-title {
  font-size: 15px; font-weight: 700; color: var(--fg-950);
  display: flex; align-items: center; gap: 9px;
}
.fg-acc-card-title i { color: var(--fg-500); font-size: 14px; }
.fg-acc-card-body { padding: 20px; }
.fg-acc-card-action {
  font-size: 12.5px; font-weight: 600; color: var(--fg-600);
  text-decoration: none; border: 1.5px solid var(--fg-200);
  padding: 5px 12px; border-radius: var(--fg-r-sm); transition: all .12s;
  display: inline-flex; align-items: center; gap: 5px; cursor: pointer; background: var(--fg-white);
}
.fg-acc-card-action:hover { border-color: var(--fg-950); color: var(--fg-950); }

/* ── Dashboard İstatistik Kartları ── */
.fg-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 16px; }
.fg-stat-card {
  background: var(--fg-white); border: 1px solid var(--fg-200);
  border-radius: var(--fg-r-lg); padding: 16px;
  display: flex; align-items: center; gap: 14px;
}
.fg-stat-icon {
  width: 46px; height: 46px; background: var(--fg-100);
  border-radius: var(--fg-r); display: flex; align-items: center;
  justify-content: center; font-size: 19px; color: var(--fg-700); flex-shrink: 0;
}
.fg-stat-val { font-size: 22px; font-weight: 800; color: var(--fg-950); line-height: 1; }
.fg-stat-lbl { font-size: 12px; color: var(--fg-500); margin-top: 4px; }

/* ── Sipariş Durum Rozetleri ── */
.fg-ord-status { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 11.5px; font-weight: 600; }
.fg-os-pending   { background: #fef3c7; color: #92400e; }
.fg-os-confirmed { background: #dbeafe; color: #1e40af; }
.fg-os-shipped   { background: #e0f2fe; color: #0369a1; }
.fg-os-delivered { background: #dcfce7; color: #166534; }
.fg-os-cancelled { background: #fee2e2; color: #991b1b; }
.fg-os-returned  { background: #f3e8ff; color: #7c3aed; }

/* ── Sipariş Tablosu ── */
.fg-ord-table { width: 100%; border-collapse: collapse; }
.fg-ord-table th {
  padding: 11px 14px; font-size: 12px; font-weight: 600;
  color: var(--fg-500); text-align: left;
  background: var(--fg-50); border-bottom: 1px solid var(--fg-200); white-space: nowrap;
}
.fg-ord-table td {
  padding: 13px 14px; font-size: 13.5px; color: var(--fg-700);
  border-bottom: 1px solid var(--fg-100); vertical-align: middle;
}
.fg-ord-table tr:last-child td { border-bottom: none; }
.fg-ord-table tr:hover td { background: var(--fg-50); }
.fg-ord-num { font-weight: 700; color: var(--fg-950); }
.fg-ord-link { color: var(--fg-950); text-decoration: none; font-weight: 700; display: inline-flex; align-items: center; gap: 4px; }
.fg-ord-link:hover { text-decoration: underline; }
.fg-ord-detail-btn {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12.5px; font-weight: 600; color: var(--fg-600);
  border: 1.5px solid var(--fg-200); border-radius: var(--fg-r-sm);
  padding: 5px 11px; text-decoration: none; transition: all .12s;
  background: var(--fg-white); cursor: pointer;
}
.fg-ord-detail-btn:hover { border-color: var(--fg-950); color: var(--fg-950); }
.fg-ord-search-wrap {
  display: flex; gap: 10px; align-items: center; padding: 16px 20px;
  border-bottom: 1px solid var(--fg-100);
}
.fg-ord-search {
  flex: 1; height: 38px; padding: 0 14px;
  border: 1.5px solid var(--fg-200); border-radius: var(--fg-r-sm);
  font-size: 13.5px; color: var(--fg-800); font-family: var(--fg-font);
  background: var(--fg-white); outline: none; transition: border-color .15s;
}
.fg-ord-search:focus { border-color: var(--fg-950); }
.fg-ord-filter-tabs { display: flex; gap: 0; }
.fg-ord-ftab {
  padding: 8px 14px; font-size: 12.5px; font-weight: 600;
  color: var(--fg-500); cursor: pointer; border: 1.5px solid var(--fg-200);
  background: var(--fg-white); transition: all .12s;
}
.fg-ord-ftab:first-child { border-radius: var(--fg-r-sm) 0 0 var(--fg-r-sm); }
.fg-ord-ftab:last-child  { border-radius: 0 var(--fg-r-sm) var(--fg-r-sm) 0; border-left: none; }
.fg-ord-ftab:not(:first-child):not(:last-child) { border-left: none; }
.fg-ord-ftab.fg-active { background: var(--fg-950); color: var(--fg-white); border-color: var(--fg-950); }

/* ── Sipariş Detay ── */
.fg-det-layout { display: grid; grid-template-columns: 1fr 300px; gap: 16px; align-items: start; }
.fg-det-timeline { list-style: none; padding: 0; margin: 0; }
.fg-det-tl-item {
  display: flex; gap: 14px; padding-bottom: 22px; position: relative;
}
.fg-det-tl-item:not(:last-child)::before {
  content: ''; position: absolute; left: 13px; top: 28px;
  width: 2px; height: calc(100% - 10px); background: var(--fg-200);
}
.fg-det-tl-item.fg-tl-done::before { background: var(--fg-950); }
.fg-tl-dot {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--fg-200); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--fg-500); z-index: 1;
}
.fg-det-tl-item.fg-tl-done .fg-tl-dot    { background: var(--fg-950); color: var(--fg-white); }
.fg-det-tl-item.fg-tl-current .fg-tl-dot { background: var(--fg-white); border: 2px solid var(--fg-950); color: var(--fg-950); }
.fg-tl-info { padding-top: 3px; }
.fg-tl-title { font-size: 13.5px; font-weight: 700; color: var(--fg-950); }
.fg-tl-date  { font-size: 12px; color: var(--fg-500); margin-top: 2px; }
.fg-tl-desc  { font-size: 12.5px; color: var(--fg-600); margin-top: 4px; }
.fg-det-product {
  display: flex; gap: 14px; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--fg-100);
}
.fg-det-product:last-child { border-bottom: none; }
.fg-det-prod-img {
  width: 72px; height: 72px; border-radius: var(--fg-r); overflow: hidden;
  flex-shrink: 0; border: 1px solid var(--fg-200);
}
.fg-det-prod-img img { width: 100%; height: 100%; object-fit: cover; }
.fg-det-prod-info { flex: 1; }
.fg-det-prod-brand { font-size: 11px; color: var(--fg-500); font-weight: 600; text-transform: uppercase; }
.fg-det-prod-name  { font-size: 13.5px; font-weight: 600; color: var(--fg-900); margin: 2px 0; }
.fg-det-prod-var   { font-size: 12px; color: var(--fg-500); }
.fg-det-prod-price { font-size: 14px; font-weight: 700; color: var(--fg-950); white-space: nowrap; }

/* ── Adres Kitabı ── */
.fg-addr-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.fg-addr-card {
  border: 1.5px solid var(--fg-200); border-radius: var(--fg-r-lg);
  padding: 16px 18px; transition: border-color .15s; position: relative;
}
.fg-addr-card.fg-addr-default { border-color: var(--fg-950); }
.fg-addr-default-badge {
  display: inline-block; background: var(--fg-950); color: var(--fg-white);
  font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 20px; margin-bottom: 8px;
}
.fg-addr-title { font-size: 13.5px; font-weight: 700; color: var(--fg-950); margin-bottom: 6px; display: flex; align-items: center; gap: 7px; }
.fg-addr-line  { font-size: 13px; color: var(--fg-600); line-height: 1.6; }
.fg-addr-actions { display: flex; gap: 8px; margin-top: 12px; }
.fg-addr-btn {
  flex: 1; padding: 7px 10px; font-size: 12px; font-weight: 600;
  cursor: pointer; border-radius: var(--fg-r-sm); border: 1.5px solid var(--fg-200);
  background: var(--fg-white); color: var(--fg-600);
  display: flex; align-items: center; justify-content: center; gap: 5px; transition: all .12s;
}
.fg-addr-btn:hover { border-color: var(--fg-950); color: var(--fg-950); }
.fg-addr-btn.fg-del:hover { border-color: #dc2626; color: #dc2626; }
.fg-addr-add {
  border: 2px dashed var(--fg-200); border-radius: var(--fg-r-lg);
  padding: 40px 18px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  cursor: pointer; transition: all .15s; text-decoration: none; color: var(--fg-400);
}
.fg-addr-add:hover { border-color: var(--fg-950); color: var(--fg-950); }
.fg-addr-add i { font-size: 24px; }
.fg-addr-add-lbl { font-size: 13.5px; font-weight: 600; }

/* ── Favoriler ── */
.fg-wish-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.fg-wish-card {
  border: 1px solid var(--fg-200); border-radius: var(--fg-r-lg);
  overflow: hidden; transition: box-shadow .15s;
}
.fg-wish-card:hover { box-shadow: var(--fg-sh); }
.fg-wish-img { aspect-ratio: 1; overflow: hidden; position: relative; background: var(--fg-100); }
.fg-wish-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.fg-wish-card:hover .fg-wish-img img { transform: scale(1.04); }
.fg-wish-del {
  position: absolute; top: 8px; right: 8px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--fg-white); border: 1.5px solid var(--fg-200);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 13px; color: var(--fg-500); transition: all .15s;
}
.fg-wish-del:hover { border-color: #dc2626; color: #dc2626; }
.fg-wish-body { padding: 12px; }
.fg-wish-brand  { font-size: 11px; font-weight: 600; color: var(--fg-500); text-transform: uppercase; margin-bottom: 3px; }
.fg-wish-name   { font-size: 13px; font-weight: 600; color: var(--fg-900); margin-bottom: 8px; line-height: 1.4; }
.fg-wish-price  { font-size: 15px; font-weight: 800; color: var(--fg-950); }
.fg-wish-oprice { font-size: 12px; color: var(--fg-400); text-decoration: line-through; margin-left: 5px; }
.fg-wish-add-btn {
  display: block; width: 100%; margin-top: 10px; padding: 9px 0;
  border-radius: var(--fg-r-sm); background: var(--fg-950); color: var(--fg-white);
  font-size: 12.5px; font-weight: 700; text-align: center;
  border: none; cursor: pointer; transition: background .15s;
}
.fg-wish-add-btn:hover { background: var(--fg-700); }

/* ── İade Talebi ── */
.fg-ret-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--fg-100);
}
.fg-ret-item:last-child { border-bottom: none; }
.fg-ret-img { width: 64px; height: 64px; border-radius: var(--fg-r); overflow: hidden; flex-shrink: 0; border: 1px solid var(--fg-200); }
.fg-ret-img img { width: 100%; height: 100%; object-fit: cover; }
.fg-ret-info { flex: 1; }
.fg-ret-name   { font-size: 13.5px; font-weight: 600; color: var(--fg-900); margin-bottom: 3px; }
.fg-ret-meta   { font-size: 12px; color: var(--fg-500); margin-bottom: 6px; }
.fg-ret-reason { font-size: 12.5px; color: var(--fg-600); background: var(--fg-50); border-radius: 4px; padding: 5px 10px; }
.fg-ret-right  { text-align: right; flex-shrink: 0; }
.fg-ret-date   { font-size: 12px; color: var(--fg-400); margin-bottom: 6px; }
.fg-rs-pending    { background: #fef3c7; color: #92400e; }
.fg-rs-approved   { background: #dcfce7; color: #166534; }
.fg-rs-rejected   { background: #fee2e2; color: #991b1b; }
.fg-rs-processing { background: #dbeafe; color: #1e40af; }

/* ── Profil Sekmeleri ── */
.fg-prof-tabs { display: flex; border-bottom: 1px solid var(--fg-200); padding: 0 20px; }
.fg-prof-tab {
  padding: 12px 16px; font-size: 13.5px; font-weight: 600; color: var(--fg-500);
  cursor: pointer; border-bottom: 2.5px solid transparent; transition: all .12s;
  text-decoration: none; background: none; border-top: none; border-left: none; border-right: none;
  font-family: var(--fg-font);
}
.fg-prof-tab:hover { color: var(--fg-950); }
.fg-prof-tab.fg-active { color: var(--fg-950); border-bottom-color: var(--fg-950); }
.fg-prof-panel { display: none; padding: 22px 20px; }
.fg-prof-panel.fg-active { display: block; }

/* ── Bildirim Toggle ── */
.fg-toggle-wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; border-bottom: 1px solid var(--fg-100);
}
.fg-toggle-wrap:last-child { border-bottom: none; }
.fg-toggle-info p { font-size: 13.5px; font-weight: 600; color: var(--fg-900); margin-bottom: 2px; }
.fg-toggle-info small { font-size: 12px; color: var(--fg-500); }
.fg-toggle {
  width: 44px; height: 24px; border-radius: 12px;
  background: var(--fg-200); border: none; cursor: pointer;
  position: relative; transition: background .2s; flex-shrink: 0;
}
.fg-toggle::after {
  content: ''; width: 18px; height: 18px; border-radius: 50%;
  background: var(--fg-white); box-shadow: 0 1px 3px rgba(0,0,0,.2);
  position: absolute; top: 3px; left: 3px; transition: left .2s;
}
.fg-toggle.fg-on { background: var(--fg-950); }
.fg-toggle.fg-on::after { left: 23px; }

/* ── Kupon Kartı ── */
.fg-coupon-card {
  border: 1.5px dashed var(--fg-200); border-radius: var(--fg-r-lg);
  padding: 16px 18px; display: flex; align-items: center; gap: 14px; transition: border-color .15s;
}
.fg-coupon-card:hover { border-color: var(--fg-400); }
.fg-coupon-ico {
  width: 44px; height: 44px; background: var(--fg-100);
  border-radius: var(--fg-r); display: flex; align-items: center;
  justify-content: center; font-size: 20px; color: var(--fg-700); flex-shrink: 0;
}
.fg-coupon-info { flex: 1; }
.fg-coupon-code { font-size: 16px; font-weight: 800; color: var(--fg-950); letter-spacing: 1px; margin-bottom: 3px; }
.fg-coupon-desc { font-size: 12.5px; color: var(--fg-600); }
.fg-coupon-exp  { font-size: 11.5px; color: var(--fg-400); margin-top: 3px; }
.fg-coupon-pct {
  font-size: 22px; font-weight: 900; color: var(--fg-950);
  background: var(--fg-100); border-radius: var(--fg-r); padding: 6px 12px;
  white-space: nowrap;
}
.fg-coupon-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.fg-coupon-used { opacity: .5; }
.fg-coupon-used .fg-coupon-code { text-decoration: line-through; }

/* ── Hesap Responsive ── */
@media (max-width: 960px) {
  .fg-acc-layout { grid-template-columns: 1fr; }
  .fg-acc-sidebar { position: static; }
  .fg-acc-user { display: flex; align-items: center; gap: 14px; text-align: left; }
  .fg-acc-avatar { margin: 0; width: 52px; height: 52px; font-size: 20px; }
  .fg-acc-nav-card { display: flex; overflow-x: auto; border-radius: var(--fg-r); }
  .fg-acc-nav { display: flex; padding: 0; white-space: nowrap; }
  .fg-acc-nav-sep { width: 1px; height: auto; margin: 8px 0; }
  .fg-acc-nav-link { flex-direction: column; gap: 4px; font-size: 11px; padding: 10px 12px; border-left: none; border-bottom: 3px solid transparent; }
  .fg-acc-nav-link.fg-active { border-bottom-color: var(--fg-950); border-left-color: transparent; }
  .fg-acc-nav-link i { width: auto; }
  .fg-acc-nav-badge { position: absolute; top: 4px; right: 4px; }
  .fg-stat-grid { grid-template-columns: repeat(2, 1fr); }
  .fg-addr-grid { grid-template-columns: 1fr; }
  .fg-wish-grid { grid-template-columns: repeat(2, 1fr); }
  .fg-det-layout { grid-template-columns: 1fr; }
  .fg-coupon-grid { grid-template-columns: 1fr; }
  .fg-ord-table th:nth-child(3), .fg-ord-table td:nth-child(3) { display: none; }
}
@media (max-width: 540px) {
  .fg-stat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .fg-wish-grid { grid-template-columns: repeat(2, 1fr); }
  .fg-ord-table th:nth-child(2), .fg-ord-table td:nth-child(2) { display: none; }
  .fg-prof-tabs { padding: 0 12px; }
  .fg-prof-tab { padding: 10px 10px; font-size: 12.5px; }
}

/* ═══════════════════════════════════════════════════════════════
   ARAMA SAYFASI
═══════════════════════════════════════════════════════════════ */
.fg-srch-page { background: var(--fg-50); }
.fg-srch-bar-section { background: var(--fg-white); border-bottom: 1px solid var(--fg-200); padding: 32px 0 24px; }
.fg-srch-bar-wrap { max-width: 680px; margin: 0 auto; }
.fg-srch-bar-form { display: flex; }
.fg-srch-bar-input {
  flex: 1; height: 54px; border: 2px solid var(--fg-950); border-radius: var(--fg-r-sm) 0 0 var(--fg-r-sm);
  padding: 0 18px; font-size: 16px; font-family: var(--fg-font); color: var(--fg-950);
  outline: none; background: var(--fg-white);
}
.fg-srch-bar-input::placeholder { color: var(--fg-400); }
.fg-srch-bar-btn {
  height: 54px; padding: 0 24px; background: var(--fg-950); border: 2px solid var(--fg-950);
  border-left: none; border-radius: 0 var(--fg-r-sm) var(--fg-r-sm) 0;
  color: var(--fg-white); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: opacity .15s;
}
.fg-srch-bar-btn:hover { opacity: .85; }
.fg-srch-meta { text-align: center; margin-top: 14px; font-size: 14px; color: var(--fg-600); line-height: 1.6; }
.fg-srch-meta strong { color: var(--fg-950); }
.fg-srch-cats { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 14px; justify-content: center; }
.fg-srch-cat-lbl { font-size: 12.5px; color: var(--fg-500); font-weight: 600; }
.fg-srch-cat-btn {
  border: 1px solid var(--fg-200); background: var(--fg-50); border-radius: 20px;
  padding: 5px 14px; font-size: 12.5px; color: var(--fg-700); cursor: pointer;
  font-family: var(--fg-font); transition: all .15s; text-decoration: none; display: inline-block;
}
.fg-srch-cat-btn:hover, .fg-srch-cat-btn.fg-active { background: var(--fg-950); color: var(--fg-white); border-color: var(--fg-950); }
.fg-srch-spell { font-size: 13px; color: var(--fg-600); margin-top: 10px; text-align: center; }
.fg-srch-spell a { color: var(--fg-950); font-weight: 700; text-decoration: none; }
.fg-srch-spell a:hover { text-decoration: underline; }
/* Empty state */
.fg-srch-empty { text-align: center; padding: 80px 20px; }
.fg-srch-empty-ico { font-size: 52px; color: var(--fg-300); margin-bottom: 20px; }
.fg-srch-empty-title { font-size: 20px; font-weight: 900; color: var(--fg-950); margin-bottom: 8px; }
.fg-srch-empty-desc { font-size: 14px; color: var(--fg-500); max-width: 400px; margin: 0 auto 20px; line-height: 1.7; }
.fg-srch-sug-title { font-size: 13px; font-weight: 700; color: var(--fg-700); margin-bottom: 10px; }
.fg-srch-suggestions { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.fg-srch-sug-btn {
  border: 1px solid var(--fg-200); background: var(--fg-50); border-radius: 20px;
  padding: 7px 16px; font-size: 13px; color: var(--fg-700); cursor: pointer;
  font-family: var(--fg-font); transition: all .15s; text-decoration: none; display: inline-block;
}
.fg-srch-sug-btn:hover { background: var(--fg-950); color: var(--fg-white); border-color: var(--fg-950); }
/* Highlight matched text in product names */
.fg-srch-hl { background: none; color: var(--fg-950); font-weight: 800; }

/* ═══════════════════════════════════════════════════════════════
   İLETİŞİM SAYFASI
═══════════════════════════════════════════════════════════════ */
.fg-contact-page { background: var(--fg-50); }
.fg-contact-hero { background: var(--fg-950); color: var(--fg-white); padding: 60px 0 80px; text-align: center; }
.fg-contact-hero-label { font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--fg-500); margin-bottom: 12px; }
.fg-contact-hero-title { font-size: clamp(28px, 4vw, 40px); font-weight: 900; margin-bottom: 14px; }
.fg-contact-hero-desc { font-size: 15px; color: var(--fg-400); max-width: 500px; margin: 0 auto; line-height: 1.75; }
.fg-contact-cards-wrap { position: relative; z-index: 2; margin-top: -44px; padding-bottom: 0; }
.fg-contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.fg-contact-card {
  background: var(--fg-white); border: 1px solid var(--fg-100); border-radius: var(--fg-r-lg);
  padding: 28px 22px; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,.07);
  transition: box-shadow .2s;
}
.fg-contact-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.12); }
.fg-contact-icon {
  width: 52px; height: 52px; border-radius: 50%; background: var(--fg-950);
  color: var(--fg-white); display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin: 0 auto 14px;
}
.fg-contact-card-title { font-size: 14px; font-weight: 800; color: var(--fg-950); margin-bottom: 6px; }
.fg-contact-card-val { font-size: 13.5px; color: var(--fg-600); line-height: 1.75; }
.fg-contact-card-val a { color: var(--fg-600); text-decoration: none; }
.fg-contact-card-val a:hover { color: var(--fg-950); }
/* Main section */
.fg-contact-section { padding: 48px 0 56px; }
.fg-contact-layout { display: grid; grid-template-columns: 1fr 360px; gap: 24px; align-items: start; }
.fg-contact-form-card {
  background: var(--fg-white); border: 1px solid var(--fg-100); border-radius: var(--fg-r-lg);
  padding: 32px 28px;
}
.fg-contact-form-title { font-size: 20px; font-weight: 900; color: var(--fg-950); margin-bottom: 4px; }
.fg-contact-form-sub { font-size: 13.5px; color: var(--fg-500); margin-bottom: 26px; line-height: 1.6; }
.fg-contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg-contact-send-btn {
  width: 100%; height: 52px; background: var(--fg-950); border: none; border-radius: var(--fg-r-sm);
  color: var(--fg-white); font-size: 15px; font-weight: 700; font-family: var(--fg-font);
  cursor: pointer; transition: opacity .15s; margin-top: 8px;
  display: flex; align-items: center; justify-content: center; gap: 9px;
}
.fg-contact-send-btn:hover { opacity: .85; }
.fg-contact-send-btn:active { transform: scale(.99); }
/* Right column */
.fg-contact-info-col { display: flex; flex-direction: column; gap: 16px; }
.fg-contact-info-card {
  background: var(--fg-white); border: 1px solid var(--fg-100); border-radius: var(--fg-r-lg); padding: 22px 20px;
}
.fg-contact-info-card-title {
  font-size: 14px; font-weight: 800; color: var(--fg-950); margin-bottom: 14px;
  display: flex; align-items: center; gap: 9px;
}
.fg-contact-info-card-title i { color: var(--fg-500); font-size: 14px; }
.fg-contact-hours-row {
  display: flex; justify-content: space-between; font-size: 13px;
  color: var(--fg-600); padding: 7px 0; border-bottom: 1px solid var(--fg-50);
}
.fg-contact-hours-row:last-child { border-bottom: none; }
.fg-contact-hours-row span:last-child { font-weight: 700; color: var(--fg-950); }
.fg-contact-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.fg-contact-soc-btn {
  width: 40px; height: 40px; border-radius: 50%; background: var(--fg-50);
  border: 1px solid var(--fg-200); display: flex; align-items: center;
  justify-content: center; color: var(--fg-700); font-size: 15px;
  text-decoration: none; transition: all .15s;
}
.fg-contact-soc-btn:hover { background: var(--fg-950); color: var(--fg-white); border-color: var(--fg-950); }
/* Map */
.fg-map-section { padding: 0 0 48px; }
.fg-map-frame {
  width: 100%; height: 340px; background: var(--fg-100); border-radius: var(--fg-r-lg);
  border: 1px solid var(--fg-200); display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px; color: var(--fg-400); font-size: 14px;
  position: relative; overflow: hidden; cursor: pointer;
}
.fg-map-frame:hover .fg-map-overlay { opacity: 1; }
.fg-map-overlay {
  position: absolute; inset: 0; background: rgba(9,9,11,.04);
  display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .2s;
}
.fg-map-pin { font-size: 44px; color: var(--fg-700); margin-bottom: 6px; }
/* Embedded iframe (info/contact map) */
.fg-map-frame iframe {
  width: 100%; height: 100%; border: 0; display: block;
}
/* FAQ */
.fg-faq-section { padding: 0 0 64px; }
.fg-faq-title { font-size: 22px; font-weight: 900; color: var(--fg-950); margin-bottom: 18px; }
.fg-faq-item { background: var(--fg-white); border: 1px solid var(--fg-100); border-radius: var(--fg-r); margin-bottom: 8px; overflow: hidden; }
.fg-faq-q {
  width: 100%; text-align: left; background: none; border: none; padding: 17px 20px;
  font-size: 14px; font-weight: 700; color: var(--fg-950); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  font-family: var(--fg-font); transition: background .15s;
}
.fg-faq-q:hover { background: var(--fg-50); }
.fg-faq-q i { color: var(--fg-400); font-size: 12px; transition: transform .25s; flex-shrink: 0; }
.fg-faq-q.fg-open i { transform: rotate(180deg); }
.fg-faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.fg-faq-a.fg-open { max-height: 400px; }
.fg-faq-a-inner { padding: 0 20px 18px; font-size: 13.5px; color: var(--fg-600); line-height: 1.8; }
/* Success state */
.fg-contact-success { display: none; text-align: center; padding: 48px 20px; }
.fg-contact-success-ico { font-size: 52px; color: #16a34a; margin-bottom: 16px; }
.fg-contact-success-title { font-size: 20px; font-weight: 900; color: var(--fg-950); margin-bottom: 8px; }
.fg-contact-success-desc { font-size: 14px; color: var(--fg-500); line-height: 1.7; }
/* Responsive */
@media (max-width: 960px) {
  .fg-contact-cards { grid-template-columns: 1fr; }
  .fg-contact-cards-wrap { margin-top: 0; padding-top: 20px; }
  .fg-contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .fg-contact-row { grid-template-columns: 1fr; }
  .fg-contact-hero { padding: 44px 0 60px; }
}

/* ═══════════════════════════════════════════════════════════════
   BLOG LİSTESİ SAYFASI
═══════════════════════════════════════════════════════════════ */
.fg-blog-page { background: var(--fg-50); }

/* Hero */
.fg-blog-hero { background: var(--fg-950); color: var(--fg-white); padding: 64px 0 80px; }
.fg-blog-hero-label { font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--fg-500); margin-bottom: 12px; }
.fg-blog-hero-title { font-size: clamp(28px, 4vw, 42px); font-weight: 900; margin-bottom: 14px; }
.fg-blog-hero-desc { font-size: 15px; color: var(--fg-400); max-width: 520px; line-height: 1.75; margin-bottom: 28px; }
.fg-blog-hero-search { display: flex; max-width: 480px; }
.fg-blog-hero-input {
  flex: 1; height: 48px; border: 1.5px solid var(--fg-700); border-radius: var(--fg-r-sm) 0 0 var(--fg-r-sm);
  padding: 0 16px; font-size: 14px; font-family: var(--fg-font); background: var(--fg-900);
  color: var(--fg-white); outline: none; transition: border-color .15s;
}
.fg-blog-hero-input::placeholder { color: var(--fg-600); }
.fg-blog-hero-input:focus { border-color: var(--fg-400); }
.fg-blog-hero-btn {
  height: 48px; padding: 0 20px; background: var(--fg-white); color: var(--fg-950);
  border: 1.5px solid var(--fg-white); border-left: none; border-radius: 0 var(--fg-r-sm) var(--fg-r-sm) 0;
  font-size: 15px; cursor: pointer; transition: opacity .15s;
}
.fg-blog-hero-btn:hover { opacity: .85; }

/* Kategori sekmeleri */
.fg-blog-cats { background: var(--fg-white); border-bottom: 1px solid var(--fg-100); padding: 0; }
.fg-blog-cats-inner { display: flex; align-items: center; gap: 0; overflow-x: auto; -ms-overflow-style: none; scrollbar-width: none; }
.fg-blog-cats-inner::-webkit-scrollbar { display: none; }
.fg-blog-cat-btn {
  white-space: nowrap; padding: 16px 20px; font-size: 13.5px; font-weight: 600;
  color: var(--fg-500); background: none; border: none; border-bottom: 2.5px solid transparent;
  cursor: pointer; font-family: var(--fg-font); transition: all .15s; text-decoration: none;
  display: flex; align-items: center; gap: 7px;
}
.fg-blog-cat-btn:hover { color: var(--fg-950); }
.fg-blog-cat-btn.fg-active { color: var(--fg-950); border-bottom-color: var(--fg-950); }
.fg-blog-cat-cnt { font-size: 11px; background: var(--fg-100); color: var(--fg-600); border-radius: 10px; padding: 2px 7px; font-weight: 700; }
.fg-blog-cat-btn.fg-active .fg-blog-cat-cnt { background: var(--fg-950); color: var(--fg-white); }

/* Ana layout */
.fg-blog-wrap { padding: 44px 0 64px; }
.fg-blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 28px; align-items: start; }

/* Öne çıkan yazı */
.fg-blog-featured {
  background: var(--fg-white); border: 1px solid var(--fg-100); border-radius: var(--fg-r-lg);
  overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 24px;
  transition: box-shadow .2s;
}
.fg-blog-featured:hover { box-shadow: 0 8px 32px rgba(0,0,0,.1); }
.fg-blog-featured-img { aspect-ratio: 4/3; overflow: hidden; }
.fg-blog-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.fg-blog-featured:hover .fg-blog-featured-img img { transform: scale(1.04); }
.fg-blog-featured-body { padding: 32px 28px; display: flex; flex-direction: column; justify-content: center; }
.fg-blog-featured-badge { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; background: var(--fg-950); color: var(--fg-white); border-radius: 4px; padding: 3px 9px; margin-bottom: 14px; width: fit-content; }
.fg-blog-featured-title { font-size: 22px; font-weight: 900; color: var(--fg-950); line-height: 1.35; margin-bottom: 12px; }
.fg-blog-featured-title a { color: inherit; text-decoration: none; }
.fg-blog-featured-title a:hover { text-decoration: underline; }
.fg-blog-featured-excerpt { font-size: 14px; color: var(--fg-600); line-height: 1.75; margin-bottom: 20px; }
.fg-blog-featured-meta { display: flex; align-items: center; gap: 14px; font-size: 12.5px; color: var(--fg-500); flex-wrap: wrap; }
.fg-blog-featured-meta img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.fg-blog-featured-author { font-weight: 700; color: var(--fg-800); }
.fg-blog-read-btn {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 20px;
  padding: 10px 20px; background: var(--fg-950); color: var(--fg-white); border-radius: var(--fg-r-sm);
  font-size: 13.5px; font-weight: 700; text-decoration: none; transition: opacity .15s; width: fit-content;
}
.fg-blog-read-btn:hover { opacity: .85; color: var(--fg-white); }

/* Kart grid */
.fg-blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.fg-blog-card {
  background: var(--fg-white); border: 1px solid var(--fg-100); border-radius: var(--fg-r-lg);
  overflow: hidden; transition: box-shadow .2s, transform .2s;
}
.fg-blog-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.09); transform: translateY(-2px); }
.fg-blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.fg-blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.fg-blog-card:hover .fg-blog-card-img img { transform: scale(1.05); }
.fg-blog-card-body { padding: 18px 18px 20px; }
.fg-blog-card-cat { display: inline-block; font-size: 10.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--fg-600); background: var(--fg-100); border-radius: 4px; padding: 3px 8px; margin-bottom: 10px; }
.fg-blog-card-title { font-size: 15.5px; font-weight: 800; color: var(--fg-950); line-height: 1.4; margin-bottom: 8px; }
.fg-blog-card-title a { color: inherit; text-decoration: none; }
.fg-blog-card-title a:hover { text-decoration: underline; }
.fg-blog-card-excerpt { font-size: 13px; color: var(--fg-600); line-height: 1.7; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.fg-blog-card-meta { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--fg-500); border-top: 1px solid var(--fg-50); padding-top: 12px; gap: 8px; flex-wrap: wrap; }
.fg-blog-card-author { display: flex; align-items: center; gap: 7px; }
.fg-blog-card-author img { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; }
.fg-blog-card-author-name { font-weight: 700; color: var(--fg-800); }
.fg-blog-card-stats { display: flex; align-items: center; gap: 10px; }
.fg-blog-card-stat { display: flex; align-items: center; gap: 4px; }

/* Sayfalama blog */
.fg-blog-pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 32px; }

/* Sidebar */
.fg-blog-sidebar { display: flex; flex-direction: column; gap: 18px; }
.fg-blog-widget { background: var(--fg-white); border: 1px solid var(--fg-100); border-radius: var(--fg-r-lg); padding: 22px 20px; }
.fg-blog-widget-title { font-size: 14px; font-weight: 900; color: var(--fg-950); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1.5px solid var(--fg-100); display: flex; align-items: center; gap: 8px; }
.fg-blog-widget-title i { color: var(--fg-500); font-size: 13px; }

/* Popüler yazılar widget */
.fg-blog-pop-item { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--fg-50); }
.fg-blog-pop-item:last-child { border-bottom: none; padding-bottom: 0; }
.fg-blog-pop-num { font-size: 18px; font-weight: 900; color: var(--fg-200); min-width: 28px; line-height: 1; }
.fg-blog-pop-info { flex: 1; }
.fg-blog-pop-title { font-size: 13px; font-weight: 700; color: var(--fg-950); line-height: 1.4; margin-bottom: 4px; text-decoration: none; display: block; }
.fg-blog-pop-title:hover { color: var(--fg-600); }
.fg-blog-pop-meta { font-size: 11.5px; color: var(--fg-500); }

/* Etiketler */
.fg-blog-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.fg-blog-tag { border: 1px solid var(--fg-200); border-radius: 20px; padding: 5px 12px; font-size: 12.5px; color: var(--fg-700); text-decoration: none; transition: all .15s; }
.fg-blog-tag:hover { background: var(--fg-950); color: var(--fg-white); border-color: var(--fg-950); }

/* Bülten widget */
.fg-blog-nl-desc { font-size: 13px; color: var(--fg-600); line-height: 1.65; margin-bottom: 14px; }
.fg-blog-nl-form { display: flex; flex-direction: column; gap: 9px; }

/* Responsive */
@media (max-width: 1024px) {
  .fg-blog-layout { grid-template-columns: 1fr; }
  .fg-blog-featured { grid-template-columns: 1fr; }
  .fg-blog-featured-img { aspect-ratio: 16/9; }
}
@media (max-width: 640px) {
  .fg-blog-grid { grid-template-columns: 1fr; }
  .fg-blog-hero { padding: 44px 0 56px; }
}

/* ═══════════════════════════════════════════════════════════════
   BLOG DETAY SAYFASI
═══════════════════════════════════════════════════════════════ */
.fg-blogd-page { background: var(--fg-50); }

/* Hero */
.fg-blogd-hero { background: var(--fg-950); padding: 56px 0 72px; color: var(--fg-white); }
.fg-blogd-hero-inner { max-width: 760px; }
.fg-blogd-cat-badge {
  display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; background: rgba(255,255,255,.1);
  color: var(--fg-300); border-radius: 4px; padding: 4px 10px; margin-bottom: 16px;
}
.fg-blogd-title { font-size: clamp(26px, 4vw, 38px); font-weight: 900; line-height: 1.25; margin-bottom: 18px; }
.fg-blogd-meta { display: flex; align-items: center; gap: 20px; font-size: 13px; color: var(--fg-500); flex-wrap: wrap; }
.fg-blogd-meta-author { display: flex; align-items: center; gap: 9px; }
.fg-blogd-meta-author img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; border: 2px solid var(--fg-700); }
.fg-blogd-meta-author-name { font-weight: 700; color: var(--fg-200); }
.fg-blogd-meta-dot { color: var(--fg-700); }
.fg-blogd-meta-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--fg-700); flex-shrink: 0; }

/* Cover image */
.fg-blogd-cover { margin-top: -40px; position: relative; z-index: 2; margin-bottom: 0; }
.fg-blogd-cover img { width: 100%; max-height: 500px; object-fit: cover; border-radius: var(--fg-r-lg); display: block; box-shadow: 0 16px 64px rgba(0,0,0,.18); }

/* Layout */
.fg-blogd-wrap { padding: 44px 0 64px; }
.fg-blogd-layout { display: grid; grid-template-columns: 1fr 280px; gap: 36px; align-items: start; }

/* İçerik */
.fg-blogd-content { background: var(--fg-white); border: 1px solid var(--fg-100); border-radius: var(--fg-r-lg); padding: 40px 40px; }
.fg-blogd-content h2 { font-size: 22px; font-weight: 900; color: var(--fg-950); margin: 32px 0 14px; }
.fg-blogd-content h3 { font-size: 17px; font-weight: 800; color: var(--fg-950); margin: 26px 0 10px; }
.fg-blogd-content p { font-size: 15px; color: var(--fg-700); line-height: 1.85; margin-bottom: 18px; }
.fg-blogd-content ul, .fg-blogd-content ol { padding-left: 22px; margin-bottom: 18px; }
.fg-blogd-content li { font-size: 15px; color: var(--fg-700); line-height: 1.8; margin-bottom: 6px; }
.fg-blogd-content strong { color: var(--fg-950); font-weight: 700; }
.fg-blogd-content a { color: var(--fg-950); font-weight: 600; }
.fg-blogd-content a:hover { text-decoration: none; opacity: .75; }
.fg-blogd-blockquote {
  border-left: 4px solid var(--fg-950); background: var(--fg-50); border-radius: 0 var(--fg-r) var(--fg-r) 0;
  padding: 18px 22px; margin: 24px 0; font-size: 15.5px; font-style: italic;
  color: var(--fg-700); line-height: 1.75;
}
.fg-blogd-blockquote cite { display: block; font-size: 12.5px; font-style: normal; font-weight: 700; color: var(--fg-500); margin-top: 10px; }
.fg-blogd-infobox {
  background: var(--fg-50); border: 1px solid var(--fg-200); border-radius: var(--fg-r);
  padding: 18px 20px; margin: 24px 0; font-size: 13.5px; color: var(--fg-600); line-height: 1.75;
  display: flex; gap: 12px;
}
.fg-blogd-infobox i { color: var(--fg-500); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.fg-blogd-img-block { margin: 28px 0; }
.fg-blogd-img-block img { width: 100%; border-radius: var(--fg-r-lg); border: 1px solid var(--fg-100); }
.fg-blogd-img-caption { font-size: 12.5px; color: var(--fg-500); text-align: center; margin-top: 8px; }
.fg-blogd-divider { border: none; border-top: 1px solid var(--fg-100); margin: 32px 0; }

/* Etiketler */
.fg-blogd-footer-tags { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--fg-100); }
.fg-blogd-footer-tags-lbl { font-size: 13px; font-weight: 700; color: var(--fg-700); }

/* Yazar kutusu */
.fg-blogd-author-box {
  background: var(--fg-white); border: 1px solid var(--fg-100); border-radius: var(--fg-r-lg);
  padding: 26px 28px; margin-top: 18px; display: flex; gap: 20px; align-items: flex-start;
}
.fg-blogd-author-avatar { width: 68px; height: 68px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--fg-200); }
.fg-blogd-author-info { flex: 1; }
.fg-blogd-author-role { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--fg-500); margin-bottom: 4px; }
.fg-blogd-author-name { font-size: 16px; font-weight: 900; color: var(--fg-950); margin-bottom: 8px; }
.fg-blogd-author-bio { font-size: 13.5px; color: var(--fg-600); line-height: 1.7; }

/* Paylaş */
.fg-blogd-share { background: var(--fg-white); border: 1px solid var(--fg-100); border-radius: var(--fg-r-lg); padding: 22px 24px; margin-top: 18px; }
.fg-blogd-share-title { font-size: 14px; font-weight: 800; color: var(--fg-950); margin-bottom: 14px; }
.fg-blogd-share-btns { display: flex; gap: 9px; flex-wrap: wrap; }
.fg-blogd-share-btn {
  display: inline-flex; align-items: center; gap: 7px; padding: 9px 16px;
  border-radius: var(--fg-r-sm); font-size: 13px; font-weight: 700;
  text-decoration: none; transition: opacity .15s; cursor: pointer; border: none; font-family: var(--fg-font);
}
.fg-blogd-share-btn:hover { opacity: .85; }
.fg-blogd-share-tw { background: #000; color: #fff; }
.fg-blogd-share-fb { background: #1877f2; color: #fff; }
.fg-blogd-share-wa { background: #22c55e; color: #fff; }
.fg-blogd-share-copy { background: var(--fg-100); color: var(--fg-800); }

/* İlgili yazılar */
.fg-blogd-related { margin-top: 18px; }
.fg-blogd-related-title { font-size: 18px; font-weight: 900; color: var(--fg-950); margin-bottom: 18px; }
.fg-blogd-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* Yorumlar */
.fg-blogd-comments { background: var(--fg-white); border: 1px solid var(--fg-100); border-radius: var(--fg-r-lg); padding: 28px 28px; margin-top: 18px; }
.fg-blogd-comments-title { font-size: 17px; font-weight: 900; color: var(--fg-950); margin-bottom: 22px; }
.fg-blogd-comment { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--fg-50); }
.fg-blogd-comment:last-of-type { border-bottom: none; }
.fg-blogd-comment-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 1px solid var(--fg-100); }
.fg-blogd-comment-body { flex: 1; }
.fg-blogd-comment-head { display: flex; align-items: baseline; gap: 10px; margin-bottom: 7px; }
.fg-blogd-comment-name { font-size: 14px; font-weight: 800; color: var(--fg-950); }
.fg-blogd-comment-date { font-size: 12px; color: var(--fg-400); }
.fg-blogd-comment-text { font-size: 14px; color: var(--fg-700); line-height: 1.75; margin-bottom: 8px; }
.fg-blogd-comment-reply { font-size: 12px; font-weight: 700; color: var(--fg-500); background: none; border: none; cursor: pointer; font-family: var(--fg-font); padding: 0; }
.fg-blogd-comment-reply:hover { color: var(--fg-950); }
.fg-blogd-comment-form-title { font-size: 15px; font-weight: 800; color: var(--fg-950); margin: 24px 0 16px; padding-top: 16px; border-top: 1px solid var(--fg-100); }
.fg-blogd-comment-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Sticky sidebar */
.fg-blogd-sidebar { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 20px; }
.fg-blogd-toc { background: var(--fg-white); border: 1px solid var(--fg-100); border-radius: var(--fg-r-lg); padding: 22px 20px; }
.fg-blogd-toc-title { font-size: 13px; font-weight: 900; color: var(--fg-950); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.fg-blogd-toc-title i { color: var(--fg-500); font-size: 12px; }
.fg-blogd-toc-list { list-style: none; padding: 0; margin: 0; }
.fg-blogd-toc-item { padding: 6px 0; border-bottom: 1px solid var(--fg-50); }
.fg-blogd-toc-item:last-child { border-bottom: none; }
.fg-blogd-toc-link { font-size: 13px; color: var(--fg-600); text-decoration: none; display: flex; gap: 8px; align-items: flex-start; transition: color .15s; line-height: 1.5; }
.fg-blogd-toc-link:hover, .fg-blogd-toc-link.fg-active { color: var(--fg-950); font-weight: 700; }
.fg-blogd-toc-n { font-size: 11px; color: var(--fg-300); font-weight: 900; min-width: 16px; margin-top: 2px; }
.fg-blogd-progress { height: 3px; background: var(--fg-100); border-radius: 2px; margin-bottom: 14px; overflow: hidden; }
.fg-blogd-progress-bar { height: 100%; background: var(--fg-950); border-radius: 2px; width: 35%; transition: width .2s; }

/* Responsive */
@media (max-width: 1024px) {
  .fg-blogd-layout { grid-template-columns: 1fr; }
  .fg-blogd-sidebar { position: static; }
  .fg-blogd-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .fg-blogd-content { padding: 24px 18px; }
  .fg-blogd-related-grid { grid-template-columns: 1fr; }
  .fg-blogd-comment-row { grid-template-columns: 1fr; }
  .fg-blogd-author-box { flex-direction: column; }
  .fg-blogd-hero { padding: 40px 0 56px; }
}

/* ════════════════════════════════════════════════════════════
   FG OC entegrasyon ekleri (header.html'de olmayan ama
   OpenCart'a bağlanırken gereken küçük yardımcılar)
   ════════════════════════════════════════════════════════════ */

/* Topbar widget'ları (currency/language formları yan yana) */
.fg-top-bar .fg-topbar-widgets { display: inline-flex; align-items: center; gap: 6px; margin-left: 18px; }
.fg-top-bar .fg-topbar-widgets form { display: inline-block; margin: 0; }
.fg-top-bar .fg-topbar-widgets .btn-link,
.fg-top-bar .fg-topbar-widgets a { color: var(--fg-500); text-decoration: none; padding: 0 4px; font-size: 12px; }
.fg-top-bar .fg-topbar-widgets .dropdown-menu { font-size: 13px; }

/* Logo görsel (img tag varsa) */
.fg-logo a img { max-height: 42px; width: auto; display: block; }

/* Hesap dropdown */
.fg-account-wrap { position: relative; }
.fg-account-trigger { cursor: pointer; background: transparent; border: 0; }
.fg-account-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 220px; background: var(--fg-white);
  border: 1px solid var(--fg-200); border-radius: 12px;
  box-shadow: 0 12px 32px rgba(9,9,11,0.10);
  padding: 8px; z-index: 200;
  display: none;
}
.fg-account-wrap.fg-open .fg-account-menu { display: block; }
.fg-account-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 8px;
  color: var(--fg-700); text-decoration: none;
  font-size: 13.5px; transition: background 0.12s, color 0.12s;
}
.fg-account-menu a i { width: 16px; text-align: center; color: var(--fg-400); }
.fg-account-menu a:hover { background: var(--fg-100); color: var(--fg-950); }
.fg-account-menu a:hover i { color: var(--fg-950); }
.fg-account-divider { height: 1px; background: var(--fg-200); margin: 6px 4px; }

/* Boş sepet durumu */
.fg-cart-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; padding: 60px 24px; text-align: center;
}
.fg-cart-empty i { font-size: 42px; color: var(--fg-300); }
.fg-cart-empty p { margin: 0; color: var(--fg-500); font-size: 14px; }

/* Cart trigger (badge'li sepet butonu, .fg-icon-btn üzerinden gelir) */
button.fg-cart-trigger { background: transparent; }

/* Cart item ürün adı linki */
.fg-cart-name a { color: inherit; text-decoration: none; }
.fg-cart-name a:hover { color: var(--fg-950); text-decoration: underline; }

/* Cart drawer içindeki img'ler (yer tutucu icon yerine) */
.fg-cart-img img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; display: block; }

/* OC stock pagination → fg-pg-btn görünümü
   ({{ pagination }} <ul class="pagination"><li class="active|disabled"><a|span>...</a></li>...</ul> üretir) */
.fg-pagination-wrap .pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; padding: 8px 0; margin: 0;
  list-style: none; flex-wrap: wrap;
}
.fg-pagination-wrap .pagination > li > a,
.fg-pagination-wrap .pagination > li > span {
  min-width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--fg-200);
  background: var(--fg-white);
  border-radius: var(--fg-r);
  font-size: 13.5px; font-weight: 500; color: var(--fg-700);
  text-decoration: none; padding: 0 10px;
  transition: all 0.15s; cursor: pointer;
}
.fg-pagination-wrap .pagination > li > a:hover {
  background: var(--fg-100); border-color: var(--fg-300); color: var(--fg-950);
}
.fg-pagination-wrap .pagination > li.active > span,
.fg-pagination-wrap .pagination > li.active > a {
  background: var(--fg-950); color: var(--fg-white);
  border-color: var(--fg-950); font-weight: 700;
}
.fg-pagination-wrap .pagination > li.disabled > span,
.fg-pagination-wrap .pagination > li.disabled > a {
  opacity: 0.35; cursor: default; pointer-events: none;
}

/* OC cart modules (coupon/voucher/shipping/reward) — BS3 .panel
   markup'ını kart-stiline nötralize ediyoruz */
.fg-cart-modules .panel-group { display: flex; flex-direction: column; gap: 8px; }
.fg-cart-modules .panel {
  background: var(--fg-white); border: 1px solid var(--fg-200);
  border-radius: var(--fg-r-lg); overflow: hidden; margin: 0;
}
.fg-cart-modules .panel-heading {
  background: var(--fg-50); padding: 0;
  border-bottom: 1px solid var(--fg-200);
}
.fg-cart-modules .panel-title { margin: 0; padding: 0; font-size: 14px; }
.fg-cart-modules .panel-title > a,
.fg-cart-modules .panel-title > a.accordion-toggle {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; text-decoration: none;
  color: var(--fg-800); font-weight: 600; font-size: 14px;
}
.fg-cart-modules .panel-title > a:hover { color: var(--fg-950); background: var(--fg-100); }
.fg-cart-modules .panel-body { padding: 16px 18px; }
.fg-cart-modules .panel-body .control-label { display: block; font-size: 12.5px; font-weight: 600; color: var(--fg-700); margin-bottom: 6px; padding: 0; }
.fg-cart-modules .panel-body .form-control,
.fg-cart-modules .panel-body input[type=text],
.fg-cart-modules .panel-body select {
  width: 100%; padding: 9px 12px;
  border: 1.5px solid var(--fg-200); border-radius: var(--fg-r);
  font-size: 13.5px; font-family: var(--fg-font);
  background: var(--fg-white); outline: none;
}
.fg-cart-modules .panel-body .form-control:focus,
.fg-cart-modules .panel-body input:focus,
.fg-cart-modules .panel-body select:focus { border-color: var(--fg-900); box-shadow: 0 0 0 3px rgba(9,9,11,.08); }
.fg-cart-modules .panel-body .input-group { display: flex; gap: 8px; align-items: stretch; margin-top: 6px; }
.fg-cart-modules .panel-body .input-group .form-control { flex: 1; }
.fg-cart-modules .panel-body .input-group-btn { display: flex; }
.fg-cart-modules .panel-body .btn,
.fg-cart-modules .panel-body input[type=button],
.fg-cart-modules .panel-body input[type=submit] {
  background: var(--fg-950); color: var(--fg-white); border: 0;
  padding: 9px 16px; border-radius: var(--fg-r);
  font-size: 13px; font-weight: 600; font-family: var(--fg-font); cursor: pointer;
  transition: opacity .15s;
}
.fg-cart-modules .panel-body .btn:hover { opacity: .85; }
.fg-cart-modules .panel-body .panel-collapse:not(.show):not(.in) { display: none; }
.fg-cart-modules .panel-collapse.in,
.fg-cart-modules .panel-collapse.show { display: block; }

/* OC checkout (BS3 panel-group) → fg-section-card görünümü */
.fg-chk-accordion { display: flex; flex-direction: column; gap: 10px; }
.fg-chk-accordion .panel,
.fg-chk-accordion .panel-default {
  background: var(--fg-white); border: 1px solid var(--fg-200);
  border-radius: var(--fg-r-lg); overflow: hidden; margin: 0; box-shadow: none;
}
.fg-chk-accordion .panel-heading {
  background: var(--fg-50); padding: 0;
  border-bottom: 1px solid var(--fg-200);
}
.fg-chk-accordion .panel-title {
  margin: 0; padding: 0; font-size: 15px; font-weight: 700; color: var(--fg-950);
}
.fg-chk-accordion .panel-title > a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; text-decoration: none;
  color: var(--fg-950); font-weight: 700; font-size: 15px;
  letter-spacing: -.02em;
}
.fg-chk-accordion .panel-title > a:hover { background: var(--fg-100); }
.fg-chk-accordion .panel-title:not(:has(a)) {
  padding: 16px 20px; color: var(--fg-400);
}
.fg-chk-accordion .panel-body { padding: 18px 22px; }

/* Form elemanları — checkout panel'leri içinde OC default form-control'a fg-form-input görünümü ver */
.fg-chk-accordion .form-group { margin-bottom: 14px; }
.fg-chk-accordion .control-label,
.fg-chk-accordion label { display: block; font-size: 12.5px; font-weight: 600; color: var(--fg-700); margin-bottom: 6px; padding: 0; }
.fg-chk-accordion .form-control,
.fg-chk-accordion input[type=text],
.fg-chk-accordion input[type=tel],
.fg-chk-accordion input[type=email],
.fg-chk-accordion input[type=password],
.fg-chk-accordion select,
.fg-chk-accordion textarea {
  width: 100%; padding: 9px 12px;
  border: 1.5px solid var(--fg-200); border-radius: var(--fg-r);
  font-size: 13.5px; font-family: var(--fg-font);
  color: var(--fg-900); background: var(--fg-white);
  outline: none; transition: border-color .15s, box-shadow .15s;
}
.fg-chk-accordion .form-control:focus,
.fg-chk-accordion input:focus, .fg-chk-accordion select:focus, .fg-chk-accordion textarea:focus {
  border-color: var(--fg-900); box-shadow: 0 0 0 3px rgba(9,9,11,.08);
}
.fg-chk-accordion .form-group.required > .control-label::after,
.fg-chk-accordion .form-group.required > label::after { content: ' *'; color: #dc2626; }
.fg-chk-accordion .has-error .form-control,
.fg-chk-accordion .has-error input,
.fg-chk-accordion .has-error select,
.fg-chk-accordion .has-error textarea { border-color: #dc2626; }
.fg-chk-accordion .text-danger { color: #dc2626; font-size: 12px; margin-top: 4px; }
.fg-chk-accordion .radio, .fg-chk-accordion .checkbox { margin: 6px 0; }
.fg-chk-accordion .radio label, .fg-chk-accordion .checkbox label {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--fg-700); cursor: pointer; font-weight: 400; margin-bottom: 0;
}
.fg-chk-accordion .radio input, .fg-chk-accordion .checkbox input { width: auto; }

/* Butonlar */
.fg-chk-accordion .btn,
.fg-chk-accordion input[type=submit], .fg-chk-accordion input[type=button] {
  background: var(--fg-950); color: var(--fg-white); border: 0;
  padding: 10px 20px; border-radius: var(--fg-r);
  font-size: 13.5px; font-weight: 600; font-family: var(--fg-font); cursor: pointer;
  transition: opacity .15s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.fg-chk-accordion .btn:hover { opacity: .85; color: var(--fg-white); }
.fg-chk-accordion .btn-default { background: var(--fg-white); color: var(--fg-700); border: 1.5px solid var(--fg-200); }
.fg-chk-accordion .btn-default:hover { background: var(--fg-50); color: var(--fg-950); }
.fg-chk-accordion .btn-link { background: transparent; color: var(--fg-700); padding: 6px 10px; }
.fg-chk-accordion .btn-link:hover { background: var(--fg-50); color: var(--fg-950); }
.fg-chk-accordion .buttons { margin-top: 18px; display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.fg-chk-accordion .buttons .pull-left, .fg-chk-accordion .buttons .pull-right { display: contents; }

/* BS3 collapse → BS5 .show */
.fg-chk-accordion .collapse:not(.show):not(.in) { display: none; }
.fg-chk-accordion .collapse.in, .fg-chk-accordion .collapse.show { display: block; }

/* Mini cart items (checkout sidebar) */
.fg-mini-items { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.fg-mini-item { display: flex; gap: 10px; align-items: flex-start; }
.fg-mini-img {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: var(--fg-r); overflow: hidden;
  border: 1px solid var(--fg-200);
}
.fg-mini-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fg-mini-info { flex: 1; min-width: 0; }
.fg-mini-name { font-size: 12.5px; font-weight: 600; color: var(--fg-900); line-height: 1.4; margin: 0 0 2px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.fg-mini-var, .fg-mini-qty { font-size: 11px; color: var(--fg-500); margin: 0; }
.fg-mini-price { font-size: 13px; font-weight: 700; color: var(--fg-950); white-space: nowrap; }

/* Checkout layout */
.fg-chk-page { background: var(--fg-50); }
.fg-chk-wrap { padding: 24px 0 56px; }
.fg-chk-layout { display: grid; grid-template-columns: 1fr 360px; gap: 22px; align-items: start; }
.fg-chk-main { min-width: 0; }
.fg-chk-sidebar .fg-order-card { position: sticky; top: 16px; }
@media (max-width: 991px) {
  .fg-chk-layout { grid-template-columns: 1fr; }
  .fg-chk-sidebar .fg-order-card { position: static; }
}

/* Information / Sitemap sayfaları */
.fg-info-hero {
  background: var(--fg-950);
  color: var(--fg-white);
  padding: 56px 0 64px;
  position: relative; overflow: hidden;
  text-align: center;
}
.fg-info-hero-label {
  font-size: 11px; color: var(--fg-500); font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  margin: 0 0 12px;
}
.fg-info-hero-title {
  font-size: 36px; font-weight: 700; color: var(--fg-white);
  letter-spacing: -.04em; line-height: 1.15; margin: 0;
}
.fg-info-wrap { padding: 32px 0 64px; background: var(--fg-50); }
.fg-info-card {
  background: var(--fg-white); border: 1px solid var(--fg-200);
  border-radius: var(--fg-r-lg); padding: 34px 38px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}
.fg-info-content {
  font-size: 14.5px; color: var(--fg-700); line-height: 1.75;
}
.fg-info-content h1, .fg-info-content h2, .fg-info-content h3,
.fg-info-content h4, .fg-info-content h5 {
  color: var(--fg-950); font-weight: 700; letter-spacing: -.025em;
  margin: 24px 0 12px; line-height: 1.3;
}
.fg-info-content h1 { font-size: 22px; }
.fg-info-content h2 { font-size: 19px; }
.fg-info-content h3 { font-size: 17px; }
.fg-info-content h4 { font-size: 15.5px; }
.fg-info-content p { margin: 0 0 14px; }
.fg-info-content a { color: var(--fg-950); font-weight: 600; text-decoration: underline; }
.fg-info-content a:hover { color: var(--fg-700); }
.fg-info-content ul, .fg-info-content ol { margin: 0 0 14px 22px; padding: 0; }
.fg-info-content li { margin-bottom: 6px; }
.fg-info-content strong { color: var(--fg-950); }
.fg-info-content blockquote {
  border-left: 3px solid var(--fg-200); padding: 6px 16px;
  margin: 14px 0; color: var(--fg-500); font-style: italic;
}
.fg-info-content img { max-width: 100%; height: auto; border-radius: var(--fg-r); margin: 14px 0; }
.fg-info-content table {
  width: 100%; border-collapse: collapse; margin: 14px 0;
  font-size: 13.5px;
}
.fg-info-content th, .fg-info-content td {
  padding: 10px 12px; border: 1px solid var(--fg-200); text-align: left;
}
.fg-info-content th { background: var(--fg-50); font-weight: 700; }

/* Sitemap özel */
.fg-sitemap-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.fg-sitemap-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 700; color: var(--fg-950);
  letter-spacing: -.02em; margin: 0 0 14px;
}
.fg-sitemap-title i { color: var(--fg-500); font-size: 14px; }
.fg-sitemap-list { list-style: none; padding: 0; margin: 0; }
.fg-sitemap-list > li { padding: 6px 0; border-bottom: 1px dashed var(--fg-100); }
.fg-sitemap-list > li:last-child { border-bottom: none; }
.fg-sitemap-list a {
  color: var(--fg-800); text-decoration: none; font-size: 13.5px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
}
.fg-sitemap-list a:hover { color: var(--fg-950); }
.fg-sitemap-list ul {
  list-style: none; padding: 8px 0 4px 18px; margin: 0;
  border-left: 2px solid var(--fg-100);
}
.fg-sitemap-list ul li { padding: 4px 0; border: 0; }
.fg-sitemap-list ul a { font-size: 12.5px; color: var(--fg-600); font-weight: 400; }
@media (max-width: 768px) {
  .fg-sitemap-grid { grid-template-columns: 1fr; }
  .fg-info-hero { padding: 44px 0 50px; }
  .fg-info-hero-title { font-size: 28px; }
  .fg-info-card { padding: 24px 22px; }
}

/* Adres kartları */
.fg-address-card {
  background: var(--fg-white); border: 1px solid var(--fg-200);
  border-radius: var(--fg-r-lg); padding: 16px 18px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 12px;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.fg-address-card:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.06); border-color: var(--fg-300); }
.fg-address-body { flex: 1; }
.fg-address-actions { display: flex; gap: 8px; }
.fg-address-actions .fg-ord-detail-btn { flex: 1; justify-content: center; }

/* Hesabım hızlı işlemler grid */
.fg-acc-quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.fg-acc-quick {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 9px;
  padding: 20px 14px;
  background: var(--fg-white);
  border: 1px solid var(--fg-200); border-radius: var(--fg-r-lg);
  color: var(--fg-700); text-decoration: none;
  transition: all 0.15s;
  font-size: 12.5px; font-weight: 600;
}
.fg-acc-quick i { font-size: 22px; color: var(--fg-500); transition: color 0.15s; }
.fg-acc-quick:hover { border-color: var(--fg-950); color: var(--fg-950); transform: translateY(-2px); }
.fg-acc-quick:hover i { color: var(--fg-950); }
@media (max-width: 768px) {
  .fg-acc-quick-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Security badges */
.fg-security { display: flex; gap: 8px; flex-wrap: wrap; }
.fg-sec-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; color: var(--fg-700); font-weight: 600;
  background: var(--fg-50); border: 1px solid var(--fg-200);
  padding: 4px 9px; border-radius: 99px;
}
.fg-sec-badge i { color: var(--fg-500); }

/* Category sidebar mobil drawer */
@media (max-width: 991px) {
  .fg-cat-sidebar {
    position: fixed; top: 0; left: -100%; bottom: 0;
    width: 86%; max-width: 360px; z-index: 9995;
    background: var(--fg-white); overflow-y: auto;
    transition: left 0.25s ease; padding: 16px;
    box-shadow: 4px 0 24px rgba(0,0,0,.15);
  }
  .fg-cat-sidebar.fg-mob-open { left: 0; }
}

/* ════════════════════════════════════════
   ANASAYFA SECTION'LARI  —  fg-home
   Modüller (slideshow/banner/featured/category/latest) Home layout'a atanır.
   ════════════════════════════════════════ */

.fg-home { background: var(--fg-white); }

/* ── Ortak section çerçevesi ── */
.fg-home-section { padding: 40px 0; }
.fg-home-section + .fg-home-section { padding-top: 4px; }

/* ── Ortak section başlığı ── */
.fg-sec-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px; margin-bottom: 22px; flex-wrap: wrap;
}
.fg-sec-title {
  font-size: 23px; font-weight: 700; color: var(--fg-950);
  letter-spacing: -0.01em; line-height: 1.2; position: relative;
}
.fg-sec-title::after {
  content: ""; display: block; width: 44px; height: 3px;
  background: var(--fg-950); border-radius: 99px; margin-top: 10px;
}
.fg-sec-sub { font-size: 13.5px; color: var(--fg-500); }
.fg-sec-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--fg-700);
  text-decoration: none; transition: color 0.15s;
}
.fg-sec-link:hover { color: var(--fg-950); }
.fg-sec-link i { font-size: 11px; }

/* ── Ürün ızgarası (Featured / Latest) — fg-pcard'ı yeniden kullanır ── */
.fg-prod-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}

/* ── Promo banner satırı ── */
.fg-banner-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px;
}
.fg-banner-row[data-count="1"] { grid-template-columns: 1fr; }
.fg-banner-tile {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--fg-r-lg); border: 1px solid var(--fg-200);
  background: var(--fg-50); text-decoration: none;
}
.fg-banner-tile img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.fg-banner-tile:hover img { transform: scale(1.05); }
.fg-banner-cap {
  position: absolute; left: 14px; bottom: 14px;
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(9,9,11,0.82); color: var(--fg-white);
  font-size: 13px; font-weight: 600; padding: 8px 14px; border-radius: 99px;
  backdrop-filter: blur(4px);
}
.fg-banner-cap i { font-size: 11px; }

/* ── Kategori vitrini kartları ── */
.fg-cat-cards {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
}
.fg-cat-card {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 22px 14px; text-align: center; text-decoration: none;
  background: var(--fg-white); border: 1px solid var(--fg-200);
  border-radius: var(--fg-r-lg); transition: all 0.18s; position: relative;
}
.fg-cat-card:hover {
  border-color: var(--fg-950); transform: translateY(-3px); box-shadow: var(--fg-sh-sm);
}
.fg-cat-card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--fg-100); color: var(--fg-950); font-size: 20px;
  transition: all 0.18s;
}
.fg-cat-card:hover .fg-cat-card-icon { background: var(--fg-950); color: var(--fg-white); }
.fg-cat-card-name {
  font-size: 13px; font-weight: 600; color: var(--fg-800); line-height: 1.3;
}
.fg-cat-card-arrow {
  position: absolute; top: 12px; right: 12px;
  font-size: 11px; color: var(--fg-300); transition: all 0.18s; opacity: 0;
}
.fg-cat-card:hover .fg-cat-card-arrow { opacity: 1; color: var(--fg-950); }

/* ── Statik güven şeridi ── */
.fg-trust-strip { padding: 8px 0 36px; }
.fg-trust-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  background: var(--fg-50); border: 1px solid var(--fg-200);
  border-radius: var(--fg-r-lg); padding: 22px;
}
.fg-trust-item { display: flex; align-items: center; gap: 14px; }
.fg-trust-item > i {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--fg-white); border: 1px solid var(--fg-200);
  color: var(--fg-950); font-size: 18px;
}
.fg-trust-item > div { display: flex; flex-direction: column; }
.fg-trust-t { font-size: 13.5px; font-weight: 700; color: var(--fg-950); }
.fg-trust-d { font-size: 12px; color: var(--fg-500); margin-top: 1px; }
.fg-trust-item + .fg-trust-item { border-left: 1px solid var(--fg-200); padding-left: 14px; }

/* ════════════════════════════════════════
   HERO SLIDESHOW  —  fg-slideshow
   (swiper 2.x; swiper.min.css + opencart.css modül controller'ından gelir)
   ════════════════════════════════════════ */
.fg-hero { padding: 22px 0 8px; }
.fg-slideshow {
  position: relative;
  border-radius: var(--fg-r-lg);
  overflow: hidden;
  background: var(--fg-100);
  box-shadow: var(--fg-sh-sm);
}
.fg-slideshow__viewport { border-radius: var(--fg-r-lg); }
.fg-slide { position: relative; }
.fg-slide__link { display: block; }
.fg-slide__img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 1140 / 400; object-fit: cover;
}
/* Caption — sol-alt overlay */
.fg-slide__caption {
  position: absolute; left: 26px; bottom: 26px; z-index: 3;
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  max-width: 70%;
}
.fg-slide__tag {
  background: rgba(9,9,11,0.86); color: var(--fg-white);
  font-size: 18px; font-weight: 700; letter-spacing: -0.01em;
  padding: 10px 18px; border-radius: var(--fg-r);
  backdrop-filter: blur(6px);
}
.fg-slide__cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--fg-white); color: var(--fg-950);
  font-size: 13.5px; font-weight: 600;
  padding: 9px 18px; border-radius: 99px;
  transition: transform 0.15s;
}
.fg-slideshow:hover .fg-slide__cta { transform: translateX(3px); }
/* Nav okları */
.fg-slideshow__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 44px; height: 44px; margin: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.92); color: var(--fg-950);
  border-radius: 50%; cursor: pointer;
  box-shadow: var(--fg-sh-sm); font-size: 17px;
  transition: background 0.15s, transform 0.15s;
  background-image: none; /* opencart.css default ok görselini ezer */
}
.fg-slideshow__nav:hover { background: var(--fg-950); color: var(--fg-white); }
.fg-slideshow__nav--prev { left: 16px; }
.fg-slideshow__nav--next { right: 16px; }
/* Pagination dots */
.fg-slideshow__dots {
  position: absolute; left: 0; right: 0; bottom: 16px; z-index: 4;
  display: flex; justify-content: center; gap: 7px;
}
.fg-slideshow__dots .swiper-pagination-switch {
  display: inline-block; width: 8px; height: 8px; border-radius: 99px;
  background: rgba(255,255,255,0.55); cursor: pointer; transition: all 0.2s;
}
.fg-slideshow__dots .swiper-active-switch { background: var(--fg-white); width: 22px; }
.fg-slideshow__progress { display: none; }

/* ════════════════════════════════════════
   MARKA ŞERİDİ  —  fg-brands
   ════════════════════════════════════════ */
.fg-brand-strip {
  position: relative;
  background: var(--fg-white);
  border: 1px solid var(--fg-200);
  border-radius: var(--fg-r-lg);
  padding: 10px 44px;
}
.fg-brand-viewport { overflow: hidden; }
.fg-brand-item {
  width: auto !important;
  display: flex; align-items: center; justify-content: center;
  padding: 22px 38px;
}
.fg-brand-item img {
  max-height: 46px; width: auto; max-width: 150px;
  object-fit: contain;
  filter: grayscale(1); opacity: 0.6;
  transition: filter 0.2s, opacity 0.2s;
}
.fg-brand-item:hover img { filter: grayscale(0); opacity: 1; }
.fg-brand-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 34px; height: 34px; margin: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--fg-white); color: var(--fg-700);
  border: 1px solid var(--fg-200); border-radius: 50%;
  cursor: pointer; font-size: 14px; background-image: none;
  transition: all 0.15s;
}
.fg-brand-nav:hover { background: var(--fg-950); color: var(--fg-white); border-color: var(--fg-950); }
.fg-brand-nav--prev { left: 8px; }
.fg-brand-nav--next { right: 8px; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .fg-prod-grid { grid-template-columns: repeat(3, 1fr); }
  .fg-cat-cards { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .fg-home-section { padding: 30px 0; }
  .fg-sec-title { font-size: 20px; }
  .fg-prod-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .fg-cat-cards { grid-template-columns: repeat(3, 1fr); }
  .fg-trust-row { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .fg-trust-item + .fg-trust-item { border-left: none; padding-left: 0; }
  .fg-slide__img { aspect-ratio: 16 / 10; }
  .fg-slide__tag { font-size: 15px; padding: 8px 14px; }
  .fg-slide__caption { left: 16px; bottom: 16px; max-width: 86%; }
  .fg-brand-item { padding: 18px 24px; }
}
@media (max-width: 480px) {
  .fg-prod-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .fg-cat-cards { grid-template-columns: repeat(2, 1fr); }
  .fg-slideshow__nav { width: 36px; height: 36px; font-size: 14px; }
}

/* ════════════════════════════════════════
   CUSTOM ANASAYFA  —  fg-home (OC modül yapısından bağımsız)
   ════════════════════════════════════════ */

/* ── HERO (tam ekran, bg destekli) ── */
.fg-hero3 {
  position: relative; width: 100%;
  min-height: 88vh;
  display: flex; align-items: center;
  overflow: hidden;
  /* Varsayılan zemin — bg görseli yoksa bu görünür */
  background: radial-gradient(120% 130% at 78% 0%, #2b2b30 0%, #18181b 46%, #09090b 100%);
}
/* Opsiyonel arka plan görseli:
   catalog/view/theme/default/image/hero/hero-bg.jpg dosyasını koy → otomatik görünür.
   Yoksa 404 olur ve üstteki koyu degrade görünür (sorunsuz). */
.fg-hero3-bg {
  position: absolute; inset: 0;
  background-image: url('../image/hero/hero-bg.jpg');
  background-size: cover; background-position: center;
  opacity: 0.5;
}
.fg-hero3-veil {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(9,9,11,0.88) 0%, rgba(9,9,11,0.6) 42%, rgba(9,9,11,0.2) 100%);
}
.fg-hero3-inner {
  position: relative; z-index: 2;
  max-width: 720px; padding-top: 56px; padding-bottom: 56px;
}
.fg-hero3-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 13px; font-weight: 600;
  padding: 7px 16px; border-radius: 99px; margin-bottom: 22px;
  backdrop-filter: blur(6px);
}
.fg-hero3-eyebrow i { color: #fff; }
.fg-hero3-title {
  font-size: 58px; line-height: 1.05; font-weight: 800; letter-spacing: -0.02em;
  color: #fff; margin-bottom: 20px;
}
.fg-hero3-title em { font-style: normal; color: var(--fg-400); }
.fg-hero3-sub {
  font-size: 18px; line-height: 1.6; color: rgba(255,255,255,0.78);
  max-width: 560px; margin-bottom: 34px;
}
.fg-hero3-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.fg-hero3-btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 15px; font-weight: 600; padding: 15px 30px;
  border-radius: var(--fg-r); text-decoration: none; transition: all 0.16s;
}
.fg-hero3-btn--primary { background: #fff; color: var(--fg-950); border: 1px solid #fff; }
.fg-hero3-btn--primary:hover { background: var(--fg-200); transform: translateY(-2px); }
.fg-hero3-btn--ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.38); }
.fg-hero3-btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.fg-hero3-meta { display: flex; gap: 24px; flex-wrap: wrap; }
.fg-hero3-meta span {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: rgba(255,255,255,0.72); font-weight: 500;
}
.fg-hero3-meta i { color: #fff; }
.fg-hero3-scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3;
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; border: 1px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.06);
  text-decoration: none; animation: fgHeroBounce 2s infinite;
}
.fg-hero3-scroll:hover { background: rgba(255,255,255,0.16); }
@keyframes fgHeroBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ── Section kicker ── */
.fg-sec-kicker {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase;
  color: var(--fg-500); margin-bottom: 8px;
}
.fg-sec-kicker i { color: var(--fg-950); }

/* ── Ürün ızgarası 5'li varyant ── */
.fg-prod-grid--5 { grid-template-columns: repeat(5, 1fr); }

/* ── Kategori görsel kartları ── */
.fg-catimg-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.fg-catimg-card {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-decoration: none; text-align: center;
}
.fg-catimg-thumb {
  width: 100%; aspect-ratio: 1; overflow: hidden; border-radius: 50%;
  background: var(--fg-100); border: 1px solid var(--fg-200);
  display: block; transition: all 0.2s;
}
.fg-catimg-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.fg-catimg-card:hover .fg-catimg-thumb { border-color: var(--fg-950); box-shadow: var(--fg-sh-sm); transform: translateY(-3px); }
.fg-catimg-card:hover .fg-catimg-thumb img { transform: scale(1.07); }
.fg-catimg-name { font-size: 13.5px; font-weight: 600; color: var(--fg-800); line-height: 1.3; }

/* ── Promo band ── */
.fg-promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.fg-promo-card {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--fg-r-lg); aspect-ratio: 16 / 10;
  text-decoration: none; background: var(--fg-100);
}
.fg-promo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s; }
.fg-promo-card:hover img { transform: scale(1.05); }
.fg-promo-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: flex-end; align-items: flex-start; gap: 6px; padding: 24px;
  background: linear-gradient(to top, rgba(9,9,11,0.82) 0%, rgba(9,9,11,0.15) 55%, transparent 100%);
}
.fg-promo-kicker {
  font-size: 11px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.fg-promo-name { font-size: 21px; font-weight: 700; color: var(--fg-white); letter-spacing: -0.01em; }
.fg-promo-link {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 6px;
  font-size: 13px; font-weight: 600; color: var(--fg-950);
  background: var(--fg-white); padding: 8px 16px; border-radius: 99px;
  transition: transform 0.16s;
}
.fg-promo-card:hover .fg-promo-link { transform: translateX(3px); }

/* ── Responsive (custom anasayfa) ── */
@media (max-width: 1100px) {
  .fg-prod-grid--5 { grid-template-columns: repeat(4, 1fr); }
  .fg-catimg-grid { grid-template-columns: repeat(4, 1fr); }
  .fg-hero3-title { font-size: 46px; }
}
@media (max-width: 860px) {
  .fg-hero3 { min-height: 78vh; }
  .fg-hero3-title { font-size: 40px; }
  .fg-promo-grid { grid-template-columns: 1fr; }
  .fg-prod-grid--5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .fg-hero3 { min-height: 72vh; }
  .fg-hero3-inner { padding-top: 36px; padding-bottom: 60px; }
  .fg-hero3-title { font-size: 32px; }
  .fg-hero3-sub { font-size: 15px; }
  .fg-hero3-veil { background: linear-gradient(180deg, rgba(9,9,11,0.7) 0%, rgba(9,9,11,0.82) 100%); }
  .fg-prod-grid--5 { grid-template-columns: repeat(2, 1fr); }
  .fg-catimg-grid { grid-template-columns: repeat(3, 1fr); }
  .fg-hero3-btn { flex: 1; justify-content: center; }
  .fg-hero3-meta { gap: 14px; }
}
@media (max-width: 420px) {
  .fg-catimg-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════
   QuickCheckout extension (extension/quickcheckout/checkout.twig)
   AJAX yüklenen alt twig'ler hâlâ BS3 markup (form-control / col-sm-6 / panel)
   kullanıyor; bunları fg-section-card kapsamında giydiriyoruz.
   ═══════════════════════════════════════════ */

/* "VEYA" ayırıcı (giriş + adres arası) */
.fg-chk-or {
  text-align: center; font-size: 12px; font-weight: 700; letter-spacing: .08em;
  color: var(--fg-500); margin: 6px 0 14px;
  display: flex; align-items: center; gap: 10px;
}
.fg-chk-or::before, .fg-chk-or::after {
  content: ""; flex: 1; height: 1px; background: var(--fg-200);
}

/* Section-card içindeki AJAX form (guest / payment_address / shipping_address / shipping_method / payment_method) */
.fg-chk-page .fg-section-card .quickcheckout-content { margin: 0; }
.fg-chk-page .fg-section-card .row { margin-left: -8px; margin-right: -8px; }
.fg-chk-page .fg-section-card [class*="col-sm-"],
.fg-chk-page .fg-section-card [class*="col-md-"] { padding-left: 8px; padding-right: 8px; margin-bottom: 14px; }
.fg-chk-page .fg-section-card .col-sm-6 { float: left; width: 50%; }
.fg-chk-page .fg-section-card .col-sm-12 { float: left; width: 100%; }
.fg-chk-page .fg-section-card .row::after { content: ""; display: block; clear: both; }
@media (max-width: 600px) {
  .fg-chk-page .fg-section-card .col-sm-6 { width: 100%; }
}

/* Form elemanları (form-control / control-label) */
.fg-chk-page .fg-section-card .form-group { margin-bottom: 14px; }
.fg-chk-page .fg-section-card .control-label,
.fg-chk-page .fg-section-card label.control-label,
.fg-chk-page .fg-section-card > * label:not(.radio):not(.checkbox) {
  display: block; font-size: 12.5px; font-weight: 600;
  color: var(--fg-700); margin-bottom: 6px; padding: 0;
}
.fg-chk-page .fg-section-card .form-control,
.fg-chk-page .fg-section-card input[type=text],
.fg-chk-page .fg-section-card input[type=tel],
.fg-chk-page .fg-section-card input[type=email],
.fg-chk-page .fg-section-card input[type=password],
.fg-chk-page .fg-section-card select,
.fg-chk-page .fg-section-card textarea {
  width: 100%; padding: 9px 12px;
  border: 1.5px solid var(--fg-200); border-radius: var(--fg-r);
  font-size: 13.5px; font-family: var(--fg-font);
  color: var(--fg-900); background: var(--fg-white);
  outline: none; transition: border-color .15s, box-shadow .15s;
  box-shadow: none; height: auto;
}
.fg-chk-page .fg-section-card .form-control:focus,
.fg-chk-page .fg-section-card input:focus,
.fg-chk-page .fg-section-card select:focus,
.fg-chk-page .fg-section-card textarea:focus {
  border-color: var(--fg-900); box-shadow: 0 0 0 3px rgba(9,9,11,.08);
}
/* stylesheet.css zaten `div.required .control-label:before` ile yıldız basıyor — sadece rengi/spacing'i hizala */
.fg-chk-page .fg-section-card div.required > .control-label::before { color: #dc2626; font-weight: 700; }
.fg-chk-page .fg-section-card .has-error .form-control,
.fg-chk-page .fg-section-card .has-error input,
.fg-chk-page .fg-section-card .has-error select,
.fg-chk-page .fg-section-card .has-error textarea { border-color: #dc2626; background: #fef2f2; }
.fg-chk-page .fg-section-card .text-danger,
.fg-chk-page .fg-section-card .help-block { color: #dc2626; font-size: 12px; margin-top: 4px; }

/* Radio / checkbox listeleri */
.fg-chk-page .fg-section-card .radio,
.fg-chk-page .fg-section-card .checkbox { margin: 6px 0; }
.fg-chk-page .fg-section-card .radio label,
.fg-chk-page .fg-section-card .checkbox label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: var(--fg-700); cursor: pointer; font-weight: 400; margin-bottom: 0;
}
.fg-chk-page .fg-section-card .radio input,
.fg-chk-page .fg-section-card .checkbox input { width: auto; margin: 0; }

/* "Yeni adres ekle / kayıtlı adres" başlıkları (payment_address.twig içindeki <legend>) */
.fg-chk-page .fg-section-card legend {
  font-size: 13px; font-weight: 700; color: var(--fg-800);
  border: none; padding: 0; margin: 8px 0 12px;
  text-transform: uppercase; letter-spacing: .04em;
}

/* Shipping / payment method radio listesi (modüller .quickcheckout-content içine HTML inject ediyor) */
.fg-chk-page #shipping-method .quickcheckout-content,
.fg-chk-page #payment-method .quickcheckout-content {
  display: flex; flex-direction: column; gap: 10px;
}
.fg-chk-page #shipping-method .radio,
.fg-chk-page #payment-method .radio {
  border: 1.5px solid var(--fg-200); border-radius: var(--fg-r);
  padding: 14px 16px; margin: 0; transition: all .15s;
}
.fg-chk-page #shipping-method .radio:hover,
.fg-chk-page #payment-method .radio:hover {
  border-color: var(--fg-400); background: var(--fg-50);
}
.fg-chk-page #shipping-method .radio label,
.fg-chk-page #payment-method .radio label {
  width: 100%; font-size: 13.5px; color: var(--fg-900); font-weight: 500; cursor: pointer;
}

/* Butonlar (login / register / continue) */
.fg-chk-page .fg-section-card .btn,
.fg-chk-page .fg-section-card input[type=submit] {
  background: var(--fg-950); color: var(--fg-white); border: 0;
  padding: 10px 20px; border-radius: var(--fg-r);
  font-size: 13.5px; font-weight: 600; font-family: var(--fg-font); cursor: pointer;
  transition: opacity .15s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.fg-chk-page .fg-section-card .btn:hover { opacity: .85; color: var(--fg-white); }
.fg-chk-page .fg-section-card .btn-default,
.fg-chk-page .fg-section-card .btn-secondary {
  background: var(--fg-white); color: var(--fg-700);
  border: 1.5px solid var(--fg-200);
}
.fg-chk-page .fg-section-card .btn-default:hover,
.fg-chk-page .fg-section-card .btn-secondary:hover { background: var(--fg-50); color: var(--fg-950); }
.fg-chk-page .fg-section-card .btn-link {
  background: transparent; color: var(--fg-700); padding: 6px 10px;
}
.fg-chk-page .fg-section-card .btn-link:hover { background: var(--fg-50); color: var(--fg-950); }

/* "Bir hesap oluştur" toggle ve kayıt formu */
.fg-chk-page #create_account {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px dashed var(--fg-200);
}
.fg-chk-page .fg-section-card input[type=checkbox] + label,
.fg-chk-page .fg-section-card input#create + label,
.fg-chk-page .fg-section-card input#shipping + label {
  display: inline-block; margin-left: 6px; font-weight: 500;
  color: var(--fg-700); font-size: 13.5px; cursor: pointer;
}

/* ─ Şartlar + Siparişi Tamamla butonu ─ */
.fg-chk-terms { margin-top: 16px; }
.fg-chk-terms .quickcheckout-content { padding: 0; }
.fg-chk-terms .terms {
  background: var(--fg-white); border: 1px solid var(--fg-200);
  border-radius: var(--fg-r-lg); padding: 20px 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
}
.fg-chk-terms .terms > label {
  flex: 1; min-width: 240px; font-size: 13.5px; color: var(--fg-700);
  display: inline-flex; align-items: center; gap: 8px; margin: 0;
}
.fg-chk-terms .terms > label a.agree {
  color: var(--fg-950); font-weight: 700; text-decoration: underline;
  text-underline-offset: 3px;
}
.fg-chk-terms .terms input[type=checkbox] { width: 18px; height: 18px; accent-color: var(--fg-950); cursor: pointer; }
.fg-chk-terms #button-payment-method {
  background: var(--fg-950); color: var(--fg-white); border: 0;
  padding: 14px 30px; border-radius: var(--fg-r);
  font-size: 14.5px; font-weight: 700; letter-spacing: .01em;
  cursor: pointer; transition: opacity .15s;
  display: inline-flex; align-items: center; gap: 9px;
}
.fg-chk-terms #button-payment-method::before {
  font-family: "Font Awesome 6 Free"; font-weight: 900; content: "\f023";
}
.fg-chk-terms #button-payment-method:hover { opacity: .88; }
.fg-chk-terms #button-payment-method:disabled { opacity: .5; cursor: not-allowed; }
.fg-chk-terms #payment { margin-top: 14px; }

/* ─ Sidebar: Mini Sepet (#cart1) ─
   quickcheckout cart.twig <table class="quickcheckout-cart"> dönderiyor.
   Sidebar dar (360px) olduğu için table layout'unu kırıp her satırı dikey flex'e çeviriyoruz. */
.fg-chk-sidebar #cart1 { display: block; }
.fg-chk-sidebar .quickcheckout-cart,
.fg-chk-sidebar .quickcheckout-cart thead,
.fg-chk-sidebar .quickcheckout-cart tbody,
.fg-chk-sidebar .quickcheckout-cart tfoot,
.fg-chk-sidebar .quickcheckout-cart tr,
.fg-chk-sidebar .quickcheckout-cart td {
  display: block; width: auto; padding: 0; margin: 0;
  border: 0; background: transparent;
}
.fg-chk-sidebar .quickcheckout-cart { font-size: 12.5px; }
.fg-chk-sidebar .quickcheckout-cart thead { display: none; }

/* Ürün satırı (image + name + quantity + total bir arada) */
.fg-chk-sidebar .quickcheckout-cart tbody tr {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  grid-template-areas:
    "img name name"
    "img qty  price";
  column-gap: 10px; row-gap: 4px;
  padding: 10px 0; border-bottom: 1px solid var(--fg-100);
}
/* Total satırları (colspan'li tek hücreli rows) — yukarıdaki grid'i bozmayacak şekilde override */
.fg-chk-sidebar .quickcheckout-cart tbody tr:not(:has(td.image)),
.fg-chk-sidebar .quickcheckout-cart tfoot tr {
  display: flex; justify-content: space-between; align-items: baseline;
  grid-template-columns: none; grid-template-areas: none;
  padding: 6px 0; border-bottom: 0; font-size: 12.5px; color: var(--fg-700);
}
.fg-chk-sidebar .quickcheckout-cart tbody tr:not(:has(td.image)):first-of-type,
.fg-chk-sidebar .quickcheckout-cart tfoot tr:first-child {
  border-top: 1px solid var(--fg-200); margin-top: 6px; padding-top: 12px;
}
.fg-chk-sidebar .quickcheckout-cart tbody tr:last-child:not(:has(td.image)),
.fg-chk-sidebar .quickcheckout-cart tfoot tr:last-child {
  font-size: 15px; font-weight: 800; color: var(--fg-950);
  border-top: 1px solid var(--fg-200); padding-top: 12px; margin-top: 4px;
}
.fg-chk-sidebar .quickcheckout-cart tr td[colspan] {
  display: inline; text-align: left !important; padding: 0;
}
.fg-chk-sidebar .quickcheckout-cart tr td[colspan] b { font-weight: 500; }

/* Hücreler */
.fg-chk-sidebar .quickcheckout-cart td.image { grid-area: img; }
.fg-chk-sidebar .quickcheckout-cart td.image img {
  width: 44px; height: 44px; object-fit: cover;
  border-radius: var(--fg-r); border: 1px solid var(--fg-200); display: block;
}
.fg-chk-sidebar .quickcheckout-cart td.name { grid-area: name; min-width: 0; }
.fg-chk-sidebar .quickcheckout-cart td.name a {
  color: var(--fg-900); font-weight: 600; text-decoration: none; font-size: 12.5px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  line-height: 1.35;
}
.fg-chk-sidebar .quickcheckout-cart td.name a:hover { color: var(--fg-950); }
.fg-chk-sidebar .quickcheckout-cart td.name small {
  display: block; color: var(--fg-500); font-size: 10.5px; margin-top: 2px; font-weight: 400;
}
.fg-chk-sidebar .quickcheckout-cart td.quantity {
  grid-area: qty; color: var(--fg-600); font-size: 11.5px;
  display: flex; align-items: center; gap: 6px;
}
.fg-chk-sidebar .quickcheckout-cart td.price1 { display: none; }
.fg-chk-sidebar .quickcheckout-cart td.total {
  grid-area: price; font-weight: 700; color: var(--fg-950); font-size: 13px;
  white-space: nowrap; text-align: right;
}

/* edit_cart aktifse — miktar input + güncelle/kaldır butonları kompakt */
.fg-chk-sidebar .quickcheckout-cart .input-group {
  display: inline-flex; gap: 3px; width: auto; align-items: center;
}
.fg-chk-sidebar .quickcheckout-cart .input-group input.form-control {
  width: 38px; padding: 3px 5px; font-size: 11.5px; text-align: center;
  border: 1px solid var(--fg-200); border-radius: 6px; height: 24px;
}
.fg-chk-sidebar .quickcheckout-cart .input-group-btn { display: inline-flex; gap: 3px; }
.fg-chk-sidebar .quickcheckout-cart .input-group-btn .btn {
  padding: 3px 6px; font-size: 10.5px; line-height: 1; min-height: 24px;
  border: 1px solid var(--fg-200); border-radius: 6px;
  background: var(--fg-white); color: var(--fg-700); cursor: pointer;
  display: inline-flex; align-items: center;
}
.fg-chk-sidebar .quickcheckout-cart .input-group-btn .btn-danger {
  background: #fee2e2; color: #b91c1c; border-color: #fecaca;
}
.fg-chk-sidebar .quickcheckout-cart .input-group-btn .btn-primary {
  background: var(--fg-100); color: var(--fg-700); border-color: var(--fg-200);
}

/* ─ Sidebar: Voucher / Coupon / Reward ─
   voucher.twig: #coupon-heading + #coupon-content (slideToggle), aynısı voucher ve reward için.
   #voucher'ın direct child'ı .quickcheckout-content; heading'ler onun içinde — descendant selector. */
.fg-voucher-card { padding: 18px 20px; }
.fg-voucher-card .fg-order-title { margin-bottom: 4px; }
.fg-voucher-card #voucher .quickcheckout-content { display: flex; flex-direction: column; }
.fg-voucher-card #voucher [id$="-heading"] {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--fg-800);
  padding: 12px 2px; cursor: pointer;
  border-top: 1px dashed var(--fg-200);
  background: transparent; border-left: 0; border-right: 0; border-bottom: 0;
  transition: color .15s;
}
.fg-voucher-card #voucher [id$="-heading"]:hover { color: var(--fg-950); }
.fg-voucher-card #voucher [id$="-heading"] i {
  color: var(--fg-500); font-size: 13px; width: 16px; text-align: center;
}
.fg-voucher-card #voucher [id$="-heading"]::after {
  content: "\f067"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  font-size: 10px; color: var(--fg-500); margin-left: auto;
}
.fg-voucher-card #voucher [id$="-content"] {
  padding: 4px 2px 14px;
}
.fg-voucher-card #voucher [id$="-content"] .input-group {
  display: flex; gap: 6px; width: 100%; align-items: stretch;
}
.fg-voucher-card #voucher [id$="-content"] .input-group input.form-control {
  flex: 1; min-width: 0; width: auto;
  padding: 9px 11px; font-size: 12.5px;
  border: 1.5px solid var(--fg-200); border-radius: var(--fg-r);
  font-family: var(--fg-font); outline: none; height: auto;
  background: var(--fg-white); color: var(--fg-900);
  box-shadow: none;
}
.fg-voucher-card #voucher [id$="-content"] .input-group input.form-control:focus {
  border-color: var(--fg-900); box-shadow: 0 0 0 3px rgba(9,9,11,.08);
}
.fg-voucher-card #voucher [id$="-content"] .input-group-btn { display: inline-flex; }
.fg-voucher-card #voucher [id$="-content"] .input-group-btn .btn,
.fg-voucher-card #voucher [id$="-content"] .input-group-btn .btn-primary {
  background: var(--fg-950) !important; color: var(--fg-white) !important;
  border: 0 !important; padding: 9px 16px; border-radius: var(--fg-r);
  font-size: 12.5px; font-weight: 600; cursor: pointer; white-space: nowrap;
  box-shadow: none;
}
.fg-voucher-card #voucher [id$="-content"] .input-group-btn .btn:hover,
.fg-voucher-card #voucher [id$="-content"] .input-group-btn .btn-primary:hover { opacity: .88; }

/* ─ Login formu (#login-box / #checkout / #login) ─
   login.twig çok iç içe BS3 column kullanıyor: .col-sm-6 > [label.col-sm-3 + div.col-sm-9 > .input-group]
   Tüm bu nested column'ları sıfırlayıp clean 2-sütun grid'e çeviriyoruz. */
.fg-chk-page #login-box #checkout { padding: 24px 26px; }
.fg-chk-page #login-box #login {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 22px;
  align-items: end;
}
.fg-chk-page #login-box #login > .col-sm-6 {
  width: auto; float: none; padding: 0; margin: 0; display: block;
}
.fg-chk-page #login-box #login > .col-sm-6 > label {
  display: block; width: auto; float: none; padding: 0; margin: 0 0 6px;
  font-size: 12.5px; font-weight: 600; color: var(--fg-700); text-align: left;
}
.fg-chk-page #login-box #login > .col-sm-6 > label a {
  color: var(--fg-500); font-size: 12px; margin-left: 4px; text-decoration: none;
}
.fg-chk-page #login-box #login > .col-sm-6 > label a:hover { color: var(--fg-950); }
.fg-chk-page #login-box #login > .col-sm-6 > div.col-sm-9 {
  width: 100%; float: none; padding: 0; margin: 0;
}
.fg-chk-page #login-box #login .form-control {
  width: 100%; padding: 10px 12px; font-size: 13.5px;
  border: 1.5px solid var(--fg-200); border-radius: var(--fg-r);
  font-family: var(--fg-font); color: var(--fg-900); background: var(--fg-white);
  outline: none; height: auto; box-shadow: none;
}
.fg-chk-page #login-box #login .form-control:focus {
  border-color: var(--fg-900); box-shadow: 0 0 0 3px rgba(9,9,11,.08);
}
/* Parola input-group: input + submit button yan yana */
.fg-chk-page #login-box #login .input-group {
  display: flex; gap: 8px; width: 100%; align-items: stretch;
}
.fg-chk-page #login-box #login .input-group .form-control {
  flex: 1; min-width: 0;
}
.fg-chk-page #login-box #login .input-group-btn { display: inline-flex; }
.fg-chk-page #login-box #login .input-group-btn #button-login,
.fg-chk-page #login-box #login .input-group-btn .btn-primary {
  background: var(--fg-950) !important; color: var(--fg-white) !important;
  border: 0 !important; padding: 10px 20px; border-radius: var(--fg-r);
  font-size: 13.5px; font-weight: 600; cursor: pointer; white-space: nowrap;
  box-shadow: none;
}
.fg-chk-page #login-box #login .input-group-btn #button-login:hover { opacity: .88; }
@media (max-width: 640px) {
  .fg-chk-page #login-box #login { grid-template-columns: 1fr; }
}

/* Geri kalan (eski .text-right etc.) */
.fg-chk-page .text-right { text-align: right; }
.fg-chk-page .pull-right { float: right; }
.fg-chk-page .pull-left { float: left; }

@media (max-width: 600px) {
  .fg-chk-terms .terms { flex-direction: column; align-items: stretch; }
  .fg-chk-terms #button-payment-method { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════════════
   KASA — CONFIRM ADIMI (quickcheckout/confirm.twig)
   ══════════════════════════════════════════════════════ */

.fg-confirm-layout { margin-top: 4px; }

/* Sipariş özeti tablosu */
.fg-confirm-tbl-wrap { overflow-x: auto; }
.fg-confirm-tbl {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13.5px;
  color: var(--fg-700);
}
.fg-confirm-tbl thead th {
  background: var(--fg-100);
  color: var(--fg-500);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--fg-200);
  white-space: nowrap;
}
.fg-confirm-tbl thead th.fg-ct-qty,
.fg-confirm-tbl thead th.fg-ct-price,
.fg-confirm-tbl thead th.fg-ct-total { text-align: right; }

.fg-confirm-tbl tbody td {
  padding: 14px;
  border-bottom: 1px solid var(--fg-100);
  vertical-align: top;
  color: var(--fg-800);
}
.fg-confirm-tbl tbody td.fg-ct-qty,
.fg-confirm-tbl tbody td.fg-ct-price,
.fg-confirm-tbl tbody td.fg-ct-total { text-align: right; white-space: nowrap; }
.fg-confirm-tbl tbody td.fg-ct-total { font-weight: 700; color: var(--fg-950); }
.fg-confirm-tbl tbody td.fg-ct-model { color: var(--fg-500); font-family: ui-monospace, "SFMono-Regular", Menlo, monospace; font-size: 12.5px; }
.fg-confirm-tbl tbody td.fg-ct-name a {
  color: var(--fg-950); font-weight: 600; text-decoration: none;
}
.fg-confirm-tbl tbody td.fg-ct-name a:hover { text-decoration: underline; }
.fg-ct-opt { font-size: 12px; color: var(--fg-500); margin-top: 3px; }
.fg-ct-recurring { font-size: 12px; color: var(--fg-500); margin-top: 4px; }
.fg-ct-tag {
  display: inline-block;
  background: var(--fg-100); color: var(--fg-700);
  padding: 1px 7px; border-radius: 4px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .03em;
}

.fg-confirm-tbl tfoot td {
  padding: 9px 14px;
  border: none;
  background: var(--fg-50, #fafafa);
}
.fg-confirm-tbl tfoot td.fg-ct-tot-lbl {
  text-align: right;
  font-weight: 600;
  color: var(--fg-600);
}
.fg-confirm-tbl tfoot td.fg-ct-tot-val {
  text-align: right;
  white-space: nowrap;
  font-weight: 700;
  color: var(--fg-900);
}
.fg-confirm-tbl tfoot tr.fg-ct-final td {
  padding-top: 14px;
  padding-bottom: 14px;
  border-top: 2px solid var(--fg-200);
  background: var(--fg-white);
  font-size: 15px;
}
.fg-confirm-tbl tfoot tr.fg-ct-final td.fg-ct-tot-val { color: var(--fg-950); font-size: 17px; }

@media (max-width: 640px) {
  .fg-confirm-tbl thead th.fg-ct-model,
  .fg-confirm-tbl tbody td.fg-ct-model { display: none; }
  .fg-confirm-tbl thead th,
  .fg-confirm-tbl tbody td,
  .fg-confirm-tbl tfoot td { padding: 10px 8px; }
}

/* Ödeme kartı */
.fg-payment-card .fg-payment-body { margin: 0; }

/* Alt aksiyon (Geri) */
.fg-confirm-actions {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 6px;
}
.fg-back-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  background: var(--fg-white);
  border: 1.5px solid var(--fg-200);
  border-radius: var(--fg-r);
  color: var(--fg-700);
  font-size: 13.5px; font-weight: 600;
  text-decoration: none;
  transition: all .15s;
}
.fg-back-btn:hover {
  border-color: var(--fg-950);
  color: var(--fg-950);
}

/* ── BANKA HAVALESİ / EFT TALİMATLARI ── */
.fg-bank-instr { display: flex; flex-direction: column; gap: 18px; }

.fg-bank-head {
  display: flex; align-items: flex-start; gap: 14px;
}
.fg-bank-icon {
  width: 46px; height: 46px;
  background: var(--fg-100);
  border-radius: var(--fg-r);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; color: var(--fg-950);
  flex-shrink: 0;
}
.fg-bank-head-text { flex: 1; min-width: 0; }
.fg-bank-title {
  font-size: 16px; font-weight: 700; color: var(--fg-950);
  letter-spacing: -.01em; margin: 0 0 4px;
}
.fg-bank-desc {
  font-size: 13.5px; color: var(--fg-600);
  margin: 0; line-height: 1.55;
}

.fg-bank-info {
  background: var(--fg-50, #fafafa);
  border: 1px dashed var(--fg-300);
  border-radius: var(--fg-r-lg);
  padding: 16px 18px;
}
.fg-bank-info-lbl {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11.5px; font-weight: 700;
  color: var(--fg-500); letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.fg-bank-accounts {
  font-size: 13.5px; color: var(--fg-900);
  line-height: 1.7; white-space: pre-line;
}
.fg-bank-accounts p { margin: 0 0 6px; }
.fg-bank-accounts strong { color: var(--fg-950); }

.fg-bank-warning {
  display: flex; align-items: flex-start; gap: 9px;
  background: #fef3c7;
  border: 1px solid #fcd34d;
  border-radius: var(--fg-r);
  padding: 11px 14px;
  color: #92400e;
  font-size: 12.5px; line-height: 1.55;
}
.fg-bank-warning i { font-size: 14px; margin-top: 2px; flex-shrink: 0; }

.fg-bank-actions { margin-top: 18px; }
.fg-confirm-btn {
  width: auto; min-width: 260px; margin-top: 0;
  margin-left: auto; display: inline-flex;
}
@media (max-width: 640px) {
  .fg-confirm-btn { width: 100%; min-width: 0; }
  .fg-bank-actions { display: flex; }
}

/* confirm.twig BS3 kalıntıları */
.fg-confirm-layout .table-responsive { overflow-x: auto; }
.fg-confirm-layout .btn-danger { display: none; }

/* Success sayfası — kasa stepper'ı 3/3 aktif olarak göster */
.fg-success-stepper-wrap {
  background: var(--fg-100);
  padding: 28px 0 0;
}
.fg-success-stepper-wrap .fg-stepper {
  margin-bottom: 0;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.fg-success-stepper-wrap + .fg-auth-bg { padding-top: 28px; }

/* Done adımdaki check ikonu — sayı yerine */
.fg-step.fg-s-done .fg-step-num i { font-size: 12px; }


