/* ╔══════════════════════════════════════════════════════════╗
   ║   PB STORE — PREMIUM UPGRADE LAYER                       ║
   ║   Mevcut yapıyı bozmadan premium dokunuş.                ║
   ║   Bordo + Altın + Krem paleti korunur.                   ║
   ╚══════════════════════════════════════════════════════════╝ */

:root {
  --bordo-900: #2D0710;
  --bordo-800: #3D0A14;
  --bordo-700: #5C1320;
  --bordo-600: #7B1E2B;
  --altin-300: #F0DA8C;
  --altin-400: #E5C158;
  --altin-500: #D4AF37;
  --altin-600: #B8941F;
  --altin-700: #8F7115;
  --krem-50:  #FDFBF6;
  --krem-100: #FAF7F2;
  --krem-200: #F5EFE3;
  --gri-text: #6B5F5A;
  --gri-border: #E8E0D2;
  --gri-soft:  #F4EFE5;

  --shadow-elegant: 0 8px 32px rgba(61, 10, 20, 0.08);
  --shadow-hover: 0 16px 48px rgba(61, 10, 20, 0.14);
  --shadow-card: 0 2px 12px rgba(61, 10, 20, 0.04);
  --shadow-deep: 0 24px 60px rgba(61, 10, 20, 0.18);

  --tr-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --tr-snappy: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ════════════════════════════════════════════════════════════
   GLOBAL PREMIUM REFINEMENTS
════════════════════════════════════════════════════════════ */

body {
  background: var(--krem-100);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Selection highlight */
::selection {
  background: var(--altin-500);
  color: var(--bordo-800);
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* ════════════════════════════════════════════════════════════
   NAVBAR — PREMIUM STICKY
════════════════════════════════════════════════════════════ */

.navbar {
  background: rgba(253, 251, 246, 0.92) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18) !important;
  transition: all var(--tr-smooth) !important;
}

.navbar.scrolled {
  background: rgba(253, 251, 246, 0.98) !important;
  box-shadow: var(--shadow-card);
  border-bottom-color: rgba(212, 175, 55, 0.3) !important;
}

/* Logo alanı zarafeti */
.logo-circle {
  transition: transform var(--tr-smooth);
  position: relative;
}
.logo-circle::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid var(--altin-500);
  opacity: 0;
  transition: all var(--tr-smooth);
}
.logo-circle:hover {
  transform: scale(1.04);
}
.logo-circle:hover::after {
  opacity: 0.5;
  inset: -6px;
}

.logo-text {
  letter-spacing: 3.5px !important;
}

/* Nav linkleri altın underline */
.nav-link {
  position: relative;
  transition: color var(--tr-snappy) !important;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: var(--altin-500);
  transition: width var(--tr-smooth);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

/* Nav ikonları premium */
.nav-icon-btn,
.icon-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--tr-snappy);
  position: relative;
}
.nav-icon-btn:hover,
.icon-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--bordo-700);
}

/* Badge altın highlight */
.nav-badge,
.icon-badge,
.cart-badge,
.fav-count-badge {
  background: linear-gradient(135deg, var(--bordo-700), var(--bordo-800)) !important;
  color: var(--altin-300) !important;
  font-weight: 700 !important;
  box-shadow: 0 2px 8px rgba(61, 10, 20, 0.25);
  border: 1.5px solid var(--krem-100);
}

/* ════════════════════════════════════════════════════════════
   HERO — PREMIUM ENHANCEMENT
════════════════════════════════════════════════════════════ */

.hero-banners-container,
.hero-banners {
  position: relative;
}

/* Altın dekoratif çizgi */
.hero-banners-container::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 40px;
  width: 60px;
  height: 1px;
  background: var(--altin-500);
  opacity: 0.6;
  z-index: 2;
}

.hero-banner {
  transition: transform var(--tr-smooth);
}

.hero-banner-title {
  letter-spacing: -0.5px !important;
}

.hero-banner-title em {
  position: relative;
  font-style: italic;
  color: var(--altin-400);
}

/* Hero CTA — premium butonlar */
.hero-cta,
.btn-hero-primary {
  position: relative;
  overflow: hidden;
  transition: all var(--tr-smooth) !important;
  letter-spacing: 1.5px !important;
}
.hero-cta::before,
.btn-hero-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
  transition: left 0.6s;
}
.hero-cta:hover::before,
.btn-hero-primary:hover::before {
  left: 100%;
}
.hero-cta:hover,
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(61, 10, 20, 0.3);
}

/* ════════════════════════════════════════════════════════════
   SECTION HEADERS — Zarafet
════════════════════════════════════════════════════════════ */

.section-title {
  padding: 56px 0 32px !important;
  position: relative;
}

.section-eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  font-size: 11px !important;
  letter-spacing: 4px !important;
  font-weight: 600 !important;
  color: var(--altin-600) !important;
  margin-bottom: 12px !important;
  text-transform: uppercase !important;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--altin-500);
}

.section-heading {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(28px, 4vw, 44px) !important;
  font-weight: 500 !important;
  color: var(--bordo-800) !important;
  margin: 8px 0 12px !important;
  letter-spacing: -0.5px !important;
}

.section-heading em {
  font-style: italic;
  color: var(--altin-600);
  position: relative;
}

.section-sub {
  font-size: 14px !important;
  color: var(--gri-text) !important;
  max-width: 560px !important;
  margin: 0 auto !important;
  line-height: 1.7 !important;
}

/* ════════════════════════════════════════════════════════════
   PRODUCT CARDS — Premium hover & details
════════════════════════════════════════════════════════════ */

.product-card,
.prod-card {
  background: white !important;
  border: 1px solid var(--gri-border) !important;
  border-radius: 4px !important;
  overflow: hidden !important;
  transition: all var(--tr-smooth) !important;
  box-shadow: var(--shadow-card) !important;
  position: relative !important;
}

.product-card:hover,
.prod-card:hover {
  transform: translateY(-6px);
  border-color: var(--altin-500) !important;
  box-shadow: var(--shadow-hover) !important;
}

/* Ürün resim alanı */
.product-img-wrap,
.prod-img {
  background: linear-gradient(135deg, var(--krem-50), var(--krem-200)) !important;
  position: relative !important;
  overflow: hidden !important;
  aspect-ratio: 1 !important;
}

.product-img-wrap::after,
.prod-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(212, 175, 55, 0.05));
  opacity: 0;
  transition: opacity var(--tr-smooth);
}
.product-card:hover .product-img-wrap::after,
.prod-card:hover .prod-img::after {
  opacity: 1;
}

/* Ürün ikonu içeri zoom */
.product-img-wrap i,
.prod-img i,
.prod-icon {
  transition: transform var(--tr-smooth) !important;
}
.product-card:hover .product-img-wrap i,
.product-card:hover .prod-icon,
.prod-card:hover .prod-img i {
  transform: scale(1.12);
}

/* Rozetler — premium */
.product-badge,
.prod-badge,
.badge {
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  padding: 5px 10px !important;
  border-radius: 2px !important;
  text-transform: uppercase !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.badge-bestseller,
.badge.bestseller {
  background: var(--bordo-800) !important;
  color: var(--altin-400) !important;
  border: 1px solid var(--altin-500);
}

.badge-new,
.badge.new {
  background: var(--altin-500) !important;
  color: var(--bordo-900) !important;
}

.badge-sale,
.badge.sale {
  background: var(--bordo-700) !important;
  color: white !important;
}

/* Favori & quick view buttonları */
.fav-btn,
.quick-view-btn,
.prod-fav,
.prod-quick {
  width: 36px !important;
  height: 36px !important;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(12px);
  border: 1px solid var(--gri-border) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all var(--tr-snappy) !important;
  font-size: 13px !important;
  opacity: 0;
  transform: translateX(8px);
}

.product-card:hover .fav-btn,
.product-card:hover .quick-view-btn,
.product-card:hover .prod-fav,
.product-card:hover .prod-quick,
.prod-card:hover .fav-btn,
.prod-card:hover .quick-view-btn {
  opacity: 1;
  transform: translateX(0);
}

.fav-btn:hover,
.prod-fav:hover {
  background: var(--bordo-700) !important;
  color: var(--altin-400) !important;
  border-color: var(--bordo-700) !important;
  transform: scale(1.08) !important;
}

.fav-btn.active,
.prod-fav.active {
  background: var(--bordo-700) !important;
  color: var(--altin-400) !important;
  border-color: var(--bordo-700) !important;
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.quick-view-btn:hover,
.prod-quick:hover {
  background: var(--altin-500) !important;
  color: var(--bordo-900) !important;
  border-color: var(--altin-500) !important;
}

/* Ürün bilgi alanı */
.prod-info,
.product-info {
  padding: 16px 14px !important;
}

.prod-cat,
.product-brand {
  font-size: 10px !important;
  color: var(--altin-600) !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  margin-bottom: 6px !important;
}

.prod-name,
.product-name {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--bordo-800) !important;
  line-height: 1.4 !important;
  margin-bottom: 10px !important;
  min-height: 38px !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Rating */
.prod-rating,
.product-rating {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  margin-bottom: 10px !important;
  font-size: 11px !important;
}

.prod-rating .stars,
.product-rating .stars {
  color: var(--altin-500) !important;
  letter-spacing: 1px;
}

.prod-rating .count,
.product-rating .count {
  color: var(--gri-text) !important;
  font-size: 10px;
}

/* Fiyat */
.prod-price,
.product-price {
  display: flex !important;
  align-items: baseline !important;
  gap: 8px !important;
  margin-bottom: 12px !important;
}

.price-current {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  color: var(--bordo-800) !important;
  letter-spacing: -0.5px !important;
}

.price-old {
  font-size: 12px !important;
  color: var(--gri-text) !important;
  text-decoration: line-through !important;
}

.price-save {
  background: var(--altin-500) !important;
  color: var(--bordo-900) !important;
  font-size: 9px !important;
  padding: 2px 6px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  border-radius: 2px !important;
}

/* Sepete ekle butonu */
.add-cart-btn,
.cart-btn,
.btn-add-cart {
  width: 100% !important;
  background: var(--bordo-800) !important;
  color: white !important;
  border: 1px solid var(--bordo-800) !important;
  padding: 11px !important;
  font-size: 11px !important;
  letter-spacing: 2px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: all var(--tr-snappy) !important;
  border-radius: 2px !important;
  position: relative;
  overflow: hidden;
}

.add-cart-btn::before,
.cart-btn::before,
.btn-add-cart::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--altin-500);
  transition: width var(--tr-smooth);
  z-index: 0;
}

.add-cart-btn:hover,
.cart-btn:hover,
.btn-add-cart:hover {
  color: var(--bordo-900) !important;
  border-color: var(--altin-500) !important;
}

.add-cart-btn:hover::before,
.cart-btn:hover::before,
.btn-add-cart:hover::before {
  width: 100%;
}

.add-cart-btn span,
.cart-btn span,
.btn-add-cart span {
  position: relative;
  z-index: 1;
}

/* ════════════════════════════════════════════════════════════
   KATEGORİ KARTLARI — Premium
════════════════════════════════════════════════════════════ */

.cat-card,
.category-card {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 4px !important;
  transition: all var(--tr-smooth) !important;
}

.cat-card::after,
.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: all var(--tr-smooth);
  pointer-events: none;
}

.cat-card:hover,
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep);
}

.cat-card:hover::after,
.category-card:hover::after {
  border-color: var(--altin-500);
  inset: 8px;
}

/* ════════════════════════════════════════════════════════════
   MARKA HİKAYESİ — Yeni section
════════════════════════════════════════════════════════════ */

.brand-story {
  background: linear-gradient(180deg, var(--krem-100), var(--krem-200));
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
}

.brand-story::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent 70%);
  transform: translateY(-50%);
}

.brand-story-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.brand-story-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--bordo-800), var(--bordo-700));
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}

.brand-story-visual::before {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px solid var(--altin-500);
  opacity: 0.4;
}

.brand-story-visual-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 120px;
  color: var(--altin-500);
  opacity: 0.5;
}

.brand-story-decoration {
  position: absolute;
  bottom: 32px;
  left: 32px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--altin-400);
  letter-spacing: 4px;
}

.brand-story-content {
  padding: 0 12px;
}

.brand-story-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--altin-600);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.brand-story-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--altin-500);
}

.brand-story-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  color: var(--bordo-800);
  line-height: 1.15;
  margin: 0 0 24px;
  letter-spacing: -0.5px;
}

.brand-story-title em {
  font-style: italic;
  color: var(--altin-600);
}

.brand-story-text {
  font-size: 15px;
  color: var(--gri-text);
  line-height: 1.8;
  margin-bottom: 20px;
}

.brand-story-text:last-of-type {
  margin-bottom: 32px;
}

.brand-story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--gri-border);
  border-bottom: 1px solid var(--gri-border);
  margin-bottom: 28px;
}

.brand-stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--bordo-800);
  line-height: 1;
  margin-bottom: 4px;
}

.brand-stat-number em {
  font-style: italic;
  color: var(--altin-600);
  font-size: 28px;
}

.brand-stat-label {
  font-size: 11px;
  color: var(--gri-text);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.brand-story-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: var(--bordo-800);
  color: white;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid var(--bordo-800);
  transition: all var(--tr-smooth);
}

.brand-story-cta:hover {
  background: transparent;
  color: var(--bordo-800);
}

.brand-story-cta i {
  transition: transform var(--tr-snappy);
}

.brand-story-cta:hover i {
  transform: translateX(4px);
}

/* ════════════════════════════════════════════════════════════
   NEWSLETTER (Bülten) — Yeni section
════════════════════════════════════════════════════════════ */

.newsletter-section {
  background: linear-gradient(135deg, var(--bordo-900), var(--bordo-800));
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before,
.newsletter-section::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 50%;
}

.newsletter-section::before {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -200px;
}

.newsletter-section::after {
  width: 280px;
  height: 280px;
  bottom: -140px;
  left: -140px;
}

.newsletter-container {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.newsletter-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--altin-400);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.newsletter-eyebrow::before,
.newsletter-eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--altin-500);
}

.newsletter-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  color: var(--krem-50);
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.newsletter-title em {
  font-style: italic;
  color: var(--altin-400);
}

.newsletter-sub {
  font-size: 14px;
  color: rgba(253, 251, 246, 0.7);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 36px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto 20px;
  background: rgba(253, 251, 246, 0.06);
  padding: 6px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 4px;
  backdrop-filter: blur(12px);
  transition: all var(--tr-smooth);
}

.newsletter-form:focus-within {
  background: rgba(253, 251, 246, 0.1);
  border-color: var(--altin-500);
}

.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 16px;
  color: white;
  font-size: 14px;
  font-family: inherit;
}

.newsletter-input::placeholder {
  color: rgba(253, 251, 246, 0.4);
}

.newsletter-btn {
  background: var(--altin-500);
  color: var(--bordo-900);
  border: none;
  padding: 12px 28px;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--tr-snappy);
  border-radius: 2px;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: var(--altin-400);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.newsletter-perks {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 11px;
  color: rgba(253, 251, 246, 0.6);
  letter-spacing: 1.5px;
  margin-top: 24px;
}

.newsletter-perk {
  display: flex;
  align-items: center;
  gap: 8px;
}

.newsletter-perk i {
  color: var(--altin-500);
}

/* ════════════════════════════════════════════════════════════
   FOOTER — Premium iyileştirme
════════════════════════════════════════════════════════════ */

.footer {
  background: var(--bordo-900) !important;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--altin-500), transparent);
}

.footer-section h4,
.footer-heading {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  color: var(--altin-400) !important;
  letter-spacing: 1px !important;
  margin-bottom: 20px !important;
  position: relative !important;
  padding-bottom: 12px !important;
}

.footer-section h4::after,
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 1px;
  background: var(--altin-500);
}

.footer a {
  transition: all var(--tr-snappy) !important;
  position: relative;
}

.footer a:hover {
  color: var(--altin-400) !important;
  padding-left: 4px;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — Premium
════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .brand-story-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .brand-story-visual {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .section-title {
    padding: 40px 16px 24px !important;
  }
  .brand-story {
    padding: 64px 16px;
  }
  .brand-story-stats {
    gap: 12px;
  }
  .brand-stat-number {
    font-size: 28px;
  }
  .newsletter-section {
    padding: 56px 16px;
  }
  .newsletter-form {
    flex-direction: column;
    padding: 8px;
  }
  .newsletter-btn {
    width: 100%;
  }
  .newsletter-perks {
    gap: 16px;
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .product-card,
  .prod-card {
    border-radius: 2px !important;
  }
  .brand-story-title,
  .newsletter-title {
    font-size: 28px !important;
  }
  .brand-story-visual-icon {
    font-size: 80px;
  }
}
