/* ============================================
   MistikShop - İslami, Havas & Manevi E-Ticaret
   Postlar, Aharlı Kağıtlar, Okaliptüs, Safran & Hokkalar
   ============================================ */

:root {
  --bg-primary: #05130e;          /* Derin Zümrüt Siyahı */
  --bg-secondary: #081d15;        /* Koyu Zümrüt Yeşili */
  --bg-card: #0d281f;             /* Kart Arka Planı */
  --bg-card-hover: #12372b;       /* Kart Hover */
  --gold: #d4af37;                /* Klasik Varak Altın */
  --gold-light: #f3e5ab;          /* Açık Altın */
  --gold-dark: #997a15;           /* Koyu Eskitme Altın */
  --emerald: #104e38;            /* Zümrüt Yeşili Vurgu */
  --emerald-light: #186b4e;      /* Açık Zümrüt */
  --red-discount: #e74c3c;        /* İndirim Kırmızı */
  --text-primary: #f5f3eb;        /* Krem / Fildişi */
  --text-secondary: #c4bea8;      /* Soluk Altın-Krem */
  --text-muted: #829288;          /* Küllü Yeşil-Gri */
  --border-gold: rgba(212, 175, 55, 0.35);
  --border-gold-strong: rgba(212, 175, 55, 0.7);
  --border-subtle: rgba(212, 175, 55, 0.12);
  --shadow-gold: 0 0 25px rgba(212, 175, 55, 0.2);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
  --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --radius: 8px;
  --radius-lg: 14px;
  --max-width: 1260px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(16, 78, 56, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(212, 175, 55, 0.06) 0%, transparent 45%);
  background-attachment: fixed;
}

.heading-font {
  font-family: 'Cinzel', 'Playfair Display', serif;
}

.bg-arabesque-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(var(--gold) 1px, transparent 1px), radial-gradient(var(--gold) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: 0 0, 16px 16px;
  pointer-events: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

/* ============================================
   GENEL FORM VE INPUT STİLLERİ (LÜKS MİSTİK TEMA)
   ============================================ */
input, select, textarea {
  font-family: inherit;
  color: var(--text-primary);
}

.form-control,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="search"],
select,
textarea {
  width: 100%;
  background: rgba(3, 13, 9, 0.85);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  color: var(--text-primary);
  padding: 10px 14px;
  font-size: 0.88rem;
  outline: none;
  transition: all var(--transition);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4);
}

.form-control:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  background: rgba(4, 18, 12, 0.98);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.35), inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

.form-control::placeholder,
input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.8;
}

/* Kupon ve Input Grupları */
.input-group {
  display: flex;
  align-items: stretch;
  gap: 8px;
  position: relative;
}

.input-group .form-control {
  border-radius: var(--radius);
}

.coupon-input-wrapper {
  display: flex;
  align-items: center;
  background: rgba(2, 9, 6, 0.95);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 3px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.coupon-input-wrapper:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}

.coupon-input-wrapper input {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 8px 12px;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
  color: var(--gold-light);
}

.coupon-input-wrapper input:focus {
  background: transparent;
  box-shadow: none;
  border: none;
}

.coupon-input-wrapper .btn-apply {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #04100c;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 8px 14px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: transform 0.2s, filter 0.2s;
}

.coupon-input-wrapper .btn-apply:hover {
  filter: brightness(1.15);
  transform: scale(1.02);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   1. TOP ANNOUNCEMENT BAR
   ============================================ */
.top-bar {
  background: #020a07;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  font-size: 0.78rem;
  color: var(--text-secondary);
  padding: 8px 0;
  position: relative;
  z-index: 1001;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-bar-highlight {
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-right a:hover {
  color: var(--gold-light);
}

/* ============================================
   2. HEADER & SEARCH & ACTIONS
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 19, 14, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 28px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-symbol {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.logo-symbol svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.4));
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-tagline {
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-top: -3px;
}

/* Arama Çubuğu */
.header-search {
  flex: 1;
  max-width: 520px;
  position: relative;
}

.search-form {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  width: 100%;
  padding: 11px 45px 11px 18px;
  background: rgba(13, 40, 31, 0.6);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  color: var(--text-primary);
  font-size: 0.88rem;
  outline: none;
  transition: all var(--transition);
}

.search-input::placeholder {
  color: var(--text-muted);
}

.search-input:focus {
  border-color: var(--gold);
  background: rgba(13, 40, 31, 0.95);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
}

.search-btn {
  position: absolute;
  right: 6px;
  background: var(--gold);
  color: #05130e;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.search-btn:hover {
  background: var(--gold-light);
  transform: scale(1.05);
}

.search-tags {
  display: flex;
  gap: 8px;
  margin-top: 6px;
  font-size: 0.72rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.search-tags a {
  color: var(--text-secondary);
}

.search-tags a:hover {
  color: var(--gold);
}

/* Header Sağ Aksiyonlar */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.action-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(13, 40, 31, 0.5);
  border: 1px solid var(--border-subtle);
  padding: 8px 14px;
  border-radius: var(--radius);
  color: var(--text-primary);
  transition: all var(--transition);
  cursor: pointer;
}

.action-item:hover {
  border-color: var(--border-gold);
  background: rgba(212, 175, 55, 0.1);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.15);
}

.action-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--gold);
}

.action-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all var(--transition);
}

.action-item:hover .action-icon svg {
  color: var(--gold-light);
  transform: scale(1.08);
}

/* İkonlu Kategori Daireleri */
.cat-svg-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  transition: all 0.3s ease;
}

.cat-svg-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-item:hover .cat-svg-icon {
  color: #fff;
  transform: scale(1.1);
}

/* Güven Rozeti SVG */
.trust-badge-svg {
  width: 38px;
  height: 38px;
  color: var(--gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-badge-svg svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Sosyal Medya SVG */
.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.badge-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--gold);
  color: #04100c;
  font-size: 0.65rem;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Alt Navigasyon Menüsü */
.header-nav {
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  background: rgba(3, 13, 9, 0.7);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 11px 0;
  white-space: nowrap;
}

.nav-menu a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.nav-menu a.nav-highlight {
  color: var(--gold-light);
  font-weight: 600;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold-light);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all var(--transition);
  border-radius: 2px;
}

/* ============================================
   3. SEPET ÇEKMECESİ (CART DRAWER)
   ============================================ */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.cart-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  max-width: 90vw;
  background: #061811;
  border-left: 1px solid var(--border-gold);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer-overlay.open .cart-drawer {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-title {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--gold-light);
}

.cart-drawer-close {
  background: none;
  color: var(--text-secondary);
  font-size: 1.4rem;
  padding: 4px 8px;
}

.cart-shipping-bar {
  padding: 12px 20px;
  background: rgba(16, 78, 56, 0.3);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.8rem;
}

.shipping-progress {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin-top: 6px;
  overflow: hidden;
}

.shipping-progress-fill {
  height: 100%;
  width: 75%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
}

.cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
}

.cart-item-img {
  width: 58px;
  height: 58px;
  background: #0a2018;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.cart-item-price {
  font-size: 0.92rem;
  color: var(--gold);
  font-weight: 700;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.qty-btn {
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.cart-drawer-footer {
  padding: 20px;
  border-top: 1px solid var(--border-subtle);
  background: #04100c;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cart-subtotal-val {
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
}

/* ============================================
   4. HERO BANNER
   ============================================ */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 0;
  background: linear-gradient(145deg, #030d09 0%, #08241b 45%, #051610 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  background: var(--gold-light);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 7s infinite ease-in-out;
}

@keyframes float-particle {
  0% { opacity: 0; transform: translateY(100vh) scale(0.2); }
  30% { opacity: 0.7; }
  80% { opacity: 0.5; }
  100% { opacity: 0; transform: translateY(-80px) scale(1); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 620px;
}

.besmele-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: 30px;
  margin-bottom: 18px;
}

.besmele-badge span {
  font-size: 0.85rem;
  color: var(--gold-light);
  letter-spacing: 2px;
  font-family: 'Amiri', serif;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: 3.1rem;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.hero-title .gold-accent {
  background: linear-gradient(135deg, #f5e7b2 0%, #d4af37 60%, #a27b13 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-description {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 30px;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: #04100c;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.45);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(13, 40, 31, 0.6);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* Hero Görsel Teşhiri */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.censer-frame {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 78, 56, 0.4) 0%, rgba(5, 19, 14, 0.8) 70%);
  border: 2px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 50px rgba(16, 78, 56, 0.5), inset 0 0 40px rgba(212, 175, 55, 0.15);
}

.censer-frame::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px dashed rgba(212, 175, 55, 0.4);
  animation: rotate-slow 50s linear infinite;
}

@keyframes rotate-slow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.censer-illustration {
  width: 85%;
  height: 85%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.censer-svg {
  width: 240px;
  height: 240px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.6));
}

.floating-tag {
  position: absolute;
  background: rgba(13, 40, 31, 0.9);
  border: 1px solid var(--border-gold);
  padding: 8px 14px;
  border-radius: 30px;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--gold-light);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  animation: float-tag 4s ease-in-out infinite;
}

.tag-1 { top: 8%; left: -20px; }
.tag-2 { bottom: 8%; right: -20px; animation-delay: 2s; }

@keyframes float-tag {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================
   5. FLASH SALE (GÜNÜN FIRSATI)
   ============================================ */
.flash-deal-section {
  padding: 22px 0;
  background: linear-gradient(90deg, #150906 0%, #2a110a 50%, #150906 100%);
  border-top: 1px solid rgba(231, 76, 60, 0.3);
  border-bottom: 1px solid rgba(231, 76, 60, 0.3);
}

.flash-deal-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.flash-deal-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.flash-badge {
  background: var(--red-discount);
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.flash-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
}

.flash-subtitle {
  font-size: 0.78rem;
  color: #f1948a;
}

.countdown-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.countdown-item {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(231, 76, 60, 0.4);
  padding: 5px 9px;
  border-radius: 6px;
  text-align: center;
  min-width: 44px;
}

.countdown-val {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Cinzel', serif;
  display: block;
}

.countdown-lbl {
  font-size: 0.62rem;
  color: #d98880;
  text-transform: uppercase;
}

/* ============================================
   6. GELİŞMİŞ ÜRÜN VİTRİNİ & KARTLAR
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.section-subtitle {
  font-size: 0.82rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.tezhip-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.tezhip-line {
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.tezhip-star {
  color: var(--gold);
  font-size: 1.1rem;
}

/* Tab Filtreleri */
.product-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 9px 18px;
  border-radius: 25px;
  background: rgba(13, 40, 31, 0.6);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.84rem;
  font-weight: 500;
  transition: all var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--emerald);
  border-color: var(--gold);
  color: var(--gold-light);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

/* Ürün Izgarası (8 Ürün) */
.featured-products {
  padding: 70px 0;
  background: var(--bg-primary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.15);
  background: var(--bg-card-hover);
}

.product-image-container {
  position: relative;
  height: 220px;
  background: #071a13;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-card:hover .product-img {
  transform: scale(1.08);
}

.product-art {
  font-size: 3.4rem;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.5));
}

.product-card:hover .product-art {
  transform: scale(1.12);
}

.product-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
}

.p-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
  text-transform: uppercase;
}

.p-badge-discount { background: var(--red-discount); color: #fff; }
.p-badge-fast { background: #27ae60; color: #fff; }
.p-badge-gold { background: var(--gold); color: #04100c; }
.p-badge-emerald { background: var(--emerald); color: #fff; border: 1px solid var(--border-gold); }

.product-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(5, 19, 14, 0.7);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all var(--transition);
  z-index: 2;
}

.product-wishlist:hover {
  color: #e74c3c;
  border-color: #e74c3c;
  background: rgba(5, 19, 14, 0.95);
}

.product-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 5px;
  font-size: 0.73rem;
}

.stars { color: #f39c12; letter-spacing: 1px; }
.review-count { color: var(--text-muted); }

.product-category {
  font-size: 0.68rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  font-weight: 600;
}

.product-name {
  font-size: 0.96rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-primary);
  line-height: 1.35;
}

.product-desc-snippet {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.4;
  font-weight: 300;
}

.product-stock-tag {
  font-size: 0.7rem;
  color: #2ecc71;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}

.product-stock-tag.low { color: #e67e22; }

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--border-subtle);
  margin-top: auto;
}

.product-price-box {
  display: flex;
  flex-direction: column;
}

.product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
}

.old-price {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.add-to-cart {
  padding: 8px 14px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  transition: all var(--transition);
}

.add-to-cart:hover {
  background: var(--gold);
  color: #04100c;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.35);
}

/* ============================================
   7. SIK BİRLİKTE ALINANLAR (BUNDLE & SAVE)
   ============================================ */
.bundle-section {
  padding: 50px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.bundle-card {
  background: #030f0b;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.bundle-items-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

.bundle-item-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(7, 28, 20, 0.7);
  padding: 10px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  transition: border-color 0.2s;
}

.bundle-item-box:hover {
  border-color: var(--gold);
}

.bundle-plus {
  display: none; /* Mobilde ve gridde kaba durmasını engelliyoruz */
}

.bundle-item-name { 
  font-size: 0.82rem; 
  font-weight: 600; 
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 2px;
}

.bundle-item-price { 
  font-size: 0.76rem; 
  color: var(--gold); 
  font-weight: 700; 
}

.bundle-checkout-box {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(3, 15, 11, 0.95));
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.bundle-total-label { 
  font-size: 0.82rem; 
  color: var(--text-secondary); 
  display: block;
}

.bundle-prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.bundle-new-price {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
}

.bundle-old-price {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.bundle-save-badge {
  font-size: 0.75rem;
  color: #2ecc71;
  font-weight: 600;
  background: rgba(46, 204, 113, 0.12);
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

@media (max-width: 768px) {
  .bundle-card {
    padding: 16px;
  }
  .bundle-items-row {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 14px;
  }
  .bundle-item-box {
    padding: 8px 10px;
  }
  .bundle-checkout-box {
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    gap: 12px;
  }
  .bundle-checkout-box > div:first-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

/* ============================================
   8. KATEGORİLER (6 DETAYLI KATEGORİ)
   ============================================ */
.categories {
  padding: 80px 0;
  background: var(--bg-primary);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  padding: 18px 10px;
  border-radius: var(--radius);
  background: rgba(13, 40, 31, 0.4);
  border: 1px solid var(--border-subtle);
}

.category-item:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  background: rgba(13, 40, 31, 0.9);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.category-icon-wrapper {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.category-item:hover .category-icon-wrapper {
  background: var(--emerald);
  border-color: var(--gold-light);
  transform: scale(1.06);
}

.category-title {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.category-count {
  font-size: 0.7rem;
  color: var(--gold);
}

/* ============================================
   9. GÜVENLİK & YORUMLAR & FOOTER
   ============================================ */
.trust-badges-band {
  padding: 32px 0;
  background: #020906;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-badge-icon { font-size: 1.8rem; color: var(--gold); }
.trust-badge-text h5 { font-size: 0.84rem; font-weight: 600; color: var(--text-primary); margin-bottom: 2px; }
.trust-badge-text p { font-size: 0.7rem; color: var(--text-muted); }

.spiritual-banner {
  padding: 60px 0;
  background: linear-gradient(135deg, #04120d 0%, #0d3023 50%, #04120d 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  text-align: center;
}

.calligraphy-text {
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 12px;
  font-family: 'Amiri', serif;
}

.spiritual-quote {
  font-size: 1.02rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 750px;
  margin: 0 auto 16px;
}

.spiritual-quote-author {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonials {
  padding: 70px 0;
  background: var(--bg-primary);
}

.testimonials-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: calc(33.333% - 18px);
  margin: 0 9px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-stars { color: #f39c12; margin-bottom: 10px; font-size: 0.88rem; }
.testimonial-text { font-size: 0.86rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; font-weight: 300; }
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 12px; border-top: 1px solid var(--border-subtle); }
.testimonial-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-dark), var(--emerald)); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 700; color: #fff; }
.testimonial-name { font-weight: 600; font-size: 0.86rem; }
.testimonial-title { font-size: 0.7rem; color: var(--gold); }

.newsletter {
  padding: 65px 0;
  background: linear-gradient(135deg, #030d09 0%, #0a261c 50%, #030d09 100%);
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}

.newsletter-content { max-width: 550px; margin: 0 auto; }
.newsletter-content h2 { font-family: 'Cinzel', serif; font-size: 1.75rem; margin-bottom: 8px; }
.newsletter-content p { color: var(--text-secondary); font-size: 0.86rem; margin-bottom: 22px; }

.newsletter-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 12px 18px; background: rgba(5, 19, 14, 0.8); border: 1px solid var(--border-gold); border-radius: var(--radius); color: var(--text-primary); font-size: 0.88rem; outline: none; }

.footer { background: #020705; border-top: 1px solid var(--border-gold); padding: 65px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer-brand p { color: var(--text-muted); font-size: 0.84rem; line-height: 1.7; margin: 14px 0; }
.social-links { display: flex; gap: 10px; }
.social-link { width: 34px; height: 34px; border-radius: 50%; background: var(--bg-card); border: 1px solid var(--border-subtle); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: all var(--transition); }
.social-link:hover { background: var(--gold); color: #04100c; }
.footer-column h3 { font-size: 0.92rem; font-weight: 600; margin-bottom: 16px; color: var(--text-primary); position: relative; padding-bottom: 8px; }
.footer-column h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--gold); }
.footer-column ul li { margin-bottom: 10px; }
.footer-column ul a { color: var(--text-muted); font-size: 0.84rem; }
.footer-column ul a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-bottom { border-top: 1px solid var(--border-subtle); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 0.78rem; color: var(--text-muted); }
.payment-methods { display: flex; gap: 8px; }
.payment-icon { padding: 4px 8px; background: rgba(212, 175, 55, 0.06); border-radius: 4px; font-size: 0.68rem; color: var(--gold-light); font-weight: 600; border: 1px solid var(--border-subtle); }

/* ============================================
   11. ÜRÜN DETAY SAYFASI (PDP) STİLLERİ
   ============================================ */

/* Breadcrumb */
.breadcrumb-nav {
  padding: 18px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb-list a {
  color: var(--text-secondary);
  transition: color var(--transition);
}

.breadcrumb-list a:hover {
  color: var(--gold-light);
}

.breadcrumb-separator {
  color: rgba(212, 175, 55, 0.4);
}

.breadcrumb-current {
  color: var(--gold-light);
  font-weight: 500;
}

/* PDP Ana Alanı */
.pdp-section {
  padding: 40px 0 80px;
}

.pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

/* Galeri */
.pdp-gallery {
  position: sticky;
  top: 90px;
}

.pdp-main-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdp-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  cursor: crosshair;
}

.pdp-main-img-wrap:hover .pdp-main-img {
  transform: scale(1.05);
}

.pdp-badge-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}

.pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.pdp-thumb-btn {
  aspect-ratio: 1 / 1;
  background: var(--bg-card);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0;
  transition: all var(--transition);
  cursor: pointer;
}

.pdp-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-thumb-btn:hover,
.pdp-thumb-btn.active {
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
  transform: translateY(-2px);
}

/* Ürün Bilgisi (Buy Box) */
.pdp-info {
  display: flex;
  flex-direction: column;
}

.pdp-category-tag {
  font-size: 0.76rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}

.pdp-title {
  font-family: 'Cinzel', serif;
  font-size: 2.1rem;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.pdp-meta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 20px;
  font-size: 0.82rem;
  flex-wrap: wrap;
}

.pdp-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pdp-sku {
  color: var(--text-muted);
}

.pdp-stock-badge {
  background: rgba(46, 204, 113, 0.15);
  border: 1px solid rgba(46, 204, 113, 0.4);
  color: #2ecc71;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

.pdp-stock-badge.low {
  background: rgba(230, 126, 34, 0.15);
  border-color: rgba(230, 126, 34, 0.4);
  color: #e67e22;
}

/* Fiyat Kartı */
.pdp-price-card {
  background: rgba(13, 40, 31, 0.6);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 24px;
}

.pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 6px;
}

.pdp-current-price {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
}

.pdp-old-price {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.pdp-save-pill {
  background: var(--red-discount);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  margin-left: auto;
}

.pdp-havale-note {
  font-size: 0.78rem;
  color: #2ecc71;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Seçenekler (Varyantlar) */
.pdp-option-group {
  margin-bottom: 22px;
}

.pdp-option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.86rem;
}

.pdp-option-title {
  font-weight: 600;
  color: var(--text-primary);
}

.pdp-option-selected {
  color: var(--gold);
  font-weight: 500;
}

.pdp-pills-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pdp-pill-btn {
  padding: 10px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  color: var(--text-secondary);
  font-size: 0.84rem;
  transition: all var(--transition);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pdp-pill-btn:hover {
  border-color: var(--gold);
  color: var(--text-primary);
}

.pdp-pill-btn.active {
  background: var(--emerald);
  border-color: var(--gold-light);
  color: #fff;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
  font-weight: 600;
}

/* Satın Alma Butonları & Adet */
.pdp-buy-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.pdp-qty-box {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  overflow: hidden;
}

.pdp-qty-btn {
  width: 42px;
  height: 48px;
  background: none;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.pdp-qty-btn:hover {
  background: rgba(212, 175, 55, 0.15);
}

.pdp-qty-val {
  width: 40px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.pdp-btn-add {
  flex: 1;
  min-width: 180px;
  padding: 14px 24px;
  font-size: 0.96rem;
}

.pdp-btn-now {
  background: #134e38;
  border: 1px solid var(--border-gold);
  color: #fff;
  padding: 14px 24px;
  font-size: 0.96rem;
}

.pdp-btn-now:hover {
  background: var(--emerald-light);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.pdp-wish-toggle {
  width: 48px;
  height: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.pdp-wish-toggle svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.pdp-wish-toggle:hover {
  border-color: #e74c3c;
  color: #e74c3c;
}

.pdp-wish-toggle.active {
  background: rgba(231, 76, 60, 0.15);
  border-color: #e74c3c;
  color: #e74c3c;
}

.pdp-wish-toggle.active svg {
  fill: #e74c3c;
}

/* Teslimat & Güven Avantajları */
.pdp-perks-list {
  background: rgba(3, 13, 9, 0.5);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pdp-perk-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.pdp-perk-svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.pdp-perk-svg svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ============================================
   DETAYLI ÜRÜN SEKMELERİ (TABS)
   ============================================ */
.pdp-tabs-section {
  padding: 60px 0;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
}

.pdp-tab-header {
  display: flex;
  gap: 10px;
  border-bottom: 2px solid var(--border-subtle);
  margin-bottom: 36px;
  overflow-x: auto;
  white-space: nowrap;
}

.pdp-tab-nav-btn {
  padding: 14px 24px;
  background: none;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  transition: all var(--transition);
  cursor: pointer;
  letter-spacing: 0.5px;
}

.pdp-tab-nav-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--transition);
}

.pdp-tab-nav-btn:hover {
  color: var(--gold-light);
}

.pdp-tab-nav-btn.active {
  color: var(--gold-light);
}

.pdp-tab-nav-btn.active::after {
  opacity: 1;
}

.pdp-tab-pane {
  display: none;
  line-height: 1.85;
  color: var(--text-secondary);
  font-size: 0.92rem;
  animation: fadeIn 0.4s ease;
}

.pdp-tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.pdp-tab-pane h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.35rem;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.pdp-tab-pane p {
  margin-bottom: 18px;
}

.pdp-feature-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.pdp-feature-bullets li {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.pdp-feature-bullets li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.85rem;
}

/* Teknik Özellikler Tablosu */
.pdp-specs-table {
  width: 100%;
  max-width: 800px;
  border-collapse: collapse;
  margin-top: 14px;
}

.pdp-specs-table tr {
  border-bottom: 1px solid var(--border-subtle);
}

.pdp-specs-table td {
  padding: 12px 18px;
  font-size: 0.88rem;
}

.pdp-specs-table td:first-child {
  font-weight: 600;
  color: var(--gold-light);
  width: 35%;
  background: rgba(13, 40, 31, 0.4);
}

/* Yorumlar Tabı */
.pdp-reviews-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}

.pdp-review-score-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.pdp-big-score {
  font-family: 'Cinzel', serif;
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.pdp-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pdp-user-review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 20px;
}

.pdp-review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.pdp-reviewer-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.pdp-verified-badge {
  font-size: 0.72rem;
  color: #2ecc71;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============================================
   MOBILE NAVIGATION DRAWER
   ============================================ */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 2800;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 320px;
  max-width: 86vw;
  background: #030d09;
  border-right: 1px solid var(--border-gold);
  z-index: 2900;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.8);
}

.mobile-nav-overlay.open .mobile-nav-drawer {
  transform: translateX(0);
}

.mobile-drawer-header {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(13, 40, 31, 0.5);
}

.mobile-drawer-close {
  background: none;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  cursor: pointer;
}

.mobile-drawer-close:hover {
  color: var(--gold-light);
  border-color: var(--gold);
}

.mobile-drawer-body {
  padding: 14px 10px;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-nav-heading {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  padding: 14px 14px 6px;
  font-weight: 700;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--text-primary);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
  text-decoration: none;
}

.mobile-nav-item:hover, .mobile-nav-item:active {
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-light);
}

.mobile-nav-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  flex-shrink: 0;
  stroke-width: 2;
}

.mobile-drawer-footer {
  padding: 16px;
  border-top: 1px solid var(--border-subtle);
  background: #020805;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ============================================
   MOBILE BOTTOM APP BAR
   ============================================ */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 62px;
  background: rgba(3, 13, 9, 0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-gold);
  z-index: 2500;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.6);
  justify-content: space-around;
  align-items: center;
  padding: 0 4px;
}

.mobile-bottom-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  flex: 1;
  height: 100%;
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  background: none;
}

.mobile-bottom-bar-item svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: all 0.2s;
}

.mobile-bottom-bar-item:hover,
.mobile-bottom-bar-item.active {
  color: var(--gold-light);
}

.mobile-bottom-bar-item.active svg {
  stroke: var(--gold);
  transform: translateY(-1px);
}

.mobile-bottom-badge {
  position: absolute;
  top: 5px;
  right: calc(50% - 16px);
  background: var(--gold);
  color: #05130e;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* ============================================
   PDP MOBILE STICKY BUY BAR
   ============================================ */
.mobile-pdp-sticky-bar {
  display: none;
  position: fixed;
  bottom: 62px;
  left: 0;
  right: 0;
  background: rgba(5, 19, 14, 0.98);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-gold);
  padding: 10px 16px;
  z-index: 2400;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transform: translateY(120%);
  transition: transform 0.3s ease;
}

.mobile-pdp-sticky-bar.show {
  transform: translateY(0);
}

.mobile-pdp-sticky-info {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
}

.mobile-pdp-sticky-img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  object-fit: cover;
  border: 1px solid var(--border-gold);
  flex-shrink: 0;
}

.mobile-pdp-sticky-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.mobile-pdp-sticky-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-pdp-sticky-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-light);
}

.mobile-pdp-sticky-btn {
  flex-shrink: 0;
  padding: 10px 18px;
  font-size: 0.85rem;
}

/* ============================================
   RESPONSIVE MEDIA QUERIES
   ============================================ */
@media (max-width: 1024px) {
  .pdp-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .pdp-gallery {
    position: static;
    max-width: 540px;
    margin: 0 auto;
  }
  .pdp-reviews-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-content {
    margin: 0 auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-visual {
    max-width: 360px;
    margin: 0 auto;
  }
  .cart-layout-grid,
  .checkout-layout-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 64px; /* Space for Mobile Bottom Bar */
  }
  
  .mobile-bottom-bar {
    display: flex;
  }
  
  .mobile-pdp-sticky-bar {
    display: flex;
  }
  
  .top-bar {
    display: none;
  }
  
  .header-main {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 0;
  }
  
  .logo-text {
    font-size: 1.15rem;
  }
  
  .logo-tagline {
    font-size: 0.65rem;
  }
  
  .header-search {
    order: 3;
    width: 100%;
    max-width: 100%;
    margin-top: 2px;
  }
  
  .search-tags {
    display: none;
  }
  
  .header-actions .action-item .action-text {
    display: none;
  }
  
  .header-nav {
    display: none !important; /* Managed via Mobile Drawer */
  }
  
  .hamburger {
    display: flex;
  }
  
  /* 2-Kolon Mobil Ürün Listesi */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .product-card {
    padding: 10px;
  }
  
  .product-image-container {
    height: 150px;
  }
  
  .product-name {
    font-size: 0.86rem;
    height: 38px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .product-desc-snippet {
    display: none;
  }
  
  .product-price {
    font-size: 1rem;
  }
  
  .old-price {
    font-size: 0.75rem;
  }
  
  .btn-add-cart {
    padding: 8px 10px;
    font-size: 0.78rem;
  }
  
  /* Kategori Grid */
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .category-card {
    padding: 18px 12px;
  }
  
  .category-name {
    font-size: 0.92rem;
  }
  
  /* Flash Deal */
  .flash-deal-inner {
    flex-direction: column;
    padding: 24px 18px;
    text-align: center;
  }
  
  .flash-timer-boxes {
    justify-content: center;
  }
  
  .flash-product-preview {
    width: 100%;
    max-width: 240px;
  }
  
  /* Trust Badges & FAQ */
  .trust-badges-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  /* PDP */
  .pdp-title {
    font-size: 1.45rem;
  }
  
  .pdp-pills-list {
    flex-wrap: wrap;
  }
  
  .pdp-pill-btn {
    padding: 8px 12px;
    font-size: 0.78rem;
  }
  
  .pdp-buy-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .pdp-qty-box {
    width: 100%;
    justify-content: space-between;
  }
  
  .pdp-tab-header {
    gap: 4px;
  }
  
  .pdp-tab-nav-btn {
    padding: 10px 14px;
    font-size: 0.82rem;
  }
  
  /* Sepet & Ödeme Formu */
  .form-grid-2col {
    grid-template-columns: 1fr !important;
  }
  
  .cart-table-responsive thead {
    display: none;
  }
  
  .cart-table-responsive,
  .cart-table-responsive tbody,
  .cart-table-responsive tr,
  .cart-table-responsive td {
    display: block;
    width: 100%;
  }
  
  .cart-table-responsive tr {
    padding: 16px 12px;
    border-bottom: 1px solid var(--border-gold);
    position: relative;
  }
  
  .cart-table-responsive td {
    padding: 6px 0 !important;
    text-align: left !important;
  }
  
  .cart-item-mobile-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 0.85rem;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .product-card {
    padding: 8px;
  }
  
  .product-image-container {
    height: 135px;
  }
  
  .p-badge {
    font-size: 0.65rem;
    padding: 3px 6px;
  }
  
  .product-price {
    font-size: 0.95rem;
  }
  
  .btn-add-cart {
    font-size: 0.74rem;
    padding: 7px 8px;
  }
}

.cart-toast {
  position: fixed;
  bottom: 74px;
  right: 20px;
  background: #0b2e21;
  border: 1px solid var(--gold);
  padding: 12px 18px;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cart-toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { font-size: 1.2rem; color: var(--gold); }
.toast-text h6 { font-size: 0.84rem; font-weight: 600; color: #fff; }
.toast-text p { font-size: 0.72rem; color: var(--text-secondary); }

