/* ===== STARK DAVETİYE - DESIGN SYSTEM ===== */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #2B1D14;
  --primary-dark: #1B110B;
  --primary-light: #E9D8AD;
  --primary-50: #FBF6EA;
  --accent: #C9A968;
  --accent-dark: #8A6A2E;
  --gold: #C9A968;
  --gold-light: #F6E8C5;
  /* Kurumsal kahverengi yüzey paleti (header + iletişim widget ile aynı) */
  --brand-brown-900: #150D08;
  --brand-brown-800: #1B110B;
  --brand-brown-700: #241710;
  --brand-brown-600: #2B1D14;
  --brand-brown-500: #3A2619;
  --brand-brown-400: #4A3021;
  --brand-brown-50: #FBF6EF;
  --brand-brown-100: #F3E9DD;
  --brand-brown-200: #E6D6C2;
  /* Koyu kurumsal yüzey: hero + CTA bandı ortak zemini.
     Taban hiçbir köşede siyaha düşmez; sıcak espresso bandı altın/bakır ışıkla dengelenir. */
  --brand-surface: radial-gradient(1200px 300px at 50% -8%, rgba(212, 175, 55, 0.15) 0%, transparent 72%),
    radial-gradient(ellipse 64% 118% at 3% 6%, rgba(233, 196, 122, 0.19) 0%, rgba(201, 169, 104, 0.06) 46%, transparent 72%),
    radial-gradient(ellipse 72% 128% at 99% 96%, rgba(176, 128, 60, 0.22) 0%, rgba(122, 86, 42, 0.09) 48%, transparent 76%),
    radial-gradient(ellipse 58% 100% at 10% 100%, rgba(150, 108, 52, 0.14) 0%, transparent 70%),
    linear-gradient(118deg, #3C2819 0%, #352318 28%, #2E1F15 56%, #322116 80%, #392619 100%);
  /* Koyu yüzeylerin ortak süs katmanları (CTA bandı + kurumsal hero birebir aynı) */
  --brand-surface-glow: radial-gradient(760px 330px at 50% 46%, rgba(246, 232, 197, 0.075) 0%, transparent 72%),
    linear-gradient(104deg, transparent 26%, rgba(246, 232, 197, 0.05) 44%, rgba(246, 232, 197, 0.015) 54%, transparent 68%);
  --brand-hairline-top: linear-gradient(90deg, transparent 0%, rgba(201, 169, 104, 0.5) 20%, rgba(246, 232, 197, 0.8) 50%, rgba(201, 169, 104, 0.5) 80%, transparent 100%);
  --brand-hairline-bottom: linear-gradient(90deg, transparent 0%, rgba(201, 169, 104, 0.4) 20%, rgba(246, 232, 197, 0.62) 50%, rgba(201, 169, 104, 0.4) 80%, transparent 100%);
  --gray-900: #212121;
  --gray-800: #424242;
  --gray-700: #616161;
  --gray-600: #757575;
  --gray-500: #9E9E9E;
  --gray-400: #BDBDBD;
  --gray-300: #E0E0E0;
  --gray-200: #EEEEEE;
  --gray-100: #F5F5F5;
  --gray-50: #FAFAFA;
  --white: #FFFFFF;
  --success: #4CAF50;
  --warning: #FF9800;
  --danger: #F44336;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: "Montserrat", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --font-heading: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", "Segoe UI", sans-serif;
}

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

button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

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

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.homepage-fixed-backdrop {
  background-color: #F4F8FC;
  background-image:
    linear-gradient(180deg, rgba(251, 246, 234, 0.16), rgba(251, 246, 234, 0.24)),
    url('/images/backgrounds/homepage-floral-backdrop.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: 0;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* Custom Styled Select & Options */
select {
  cursor: pointer;
  border-radius: 8px;
}
select option {
  background-color: #2B1D14;
  color: #F5E8D0;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 500;
}
select option:checked,
select option:hover,
select option:focus {
  background-color: #3B261A !important;
  color: #C9A968 !important;
}

/* ===== CORPORATE PAGE MESSAGES ===== */
body.page-message-open {
  overflow: hidden;
}

.page-message-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

.page-message-modal[hidden] {
  display: none;
}

.page-message-modal.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.page-message-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.page-message-modal__dialog {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  width: min(100%, 460px);
  padding: 24px;
  border: 1px solid rgba(201, 169, 104, 0.42);
  border-radius: 10px;
  background: linear-gradient(180deg, #fff 0%, #FBF6EA 100%);
  box-shadow: 0 26px 70px rgba(17, 24, 39, 0.34);
  color: var(--gray-900);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.18s ease;
}

.page-message-modal.is-visible .page-message-modal__dialog {
  transform: translateY(0) scale(1);
}

.page-message-modal__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-dark);
  color: var(--accent);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.18);
}

.page-message-modal__content {
  min-width: 0;
}

.page-message-modal__eyebrow {
  margin: 0 0 4px;
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.page-message-modal h2 {
  margin: 0 0 8px;
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-size: 1.24rem;
  font-weight: 800;
  line-height: 1.25;
}

.page-message-modal p {
  margin: 0;
}

.page-message-modal #pageMessageText {
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.65;
}

.page-message-modal__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--gray-500);
  font-size: 1.35rem;
  line-height: 1;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.page-message-modal__close:hover,
.page-message-modal__close:focus-visible {
  background: rgba(17, 24, 39, 0.08);
  color: var(--primary-dark);
}

.page-message-modal__button {
  grid-column: 2 / 4;
  justify-self: end;
  min-width: 118px;
  min-height: 42px;
  padding: 10px 22px;
  border-radius: 6px;
  background: var(--primary-dark);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.22);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.page-message-modal__button:hover,
.page-message-modal__button:focus-visible {
  background: var(--gray-900);
  transform: translateY(-1px);
  box-shadow: 0 15px 32px rgba(17, 24, 39, 0.28);
}

@media (max-width: 520px) {
  .page-message-modal {
    padding: 16px;
  }

  .page-message-modal__dialog {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    padding: 20px;
  }

  .page-message-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
  }

  .page-message-modal__button {
    grid-column: 1 / -1;
    justify-self: stretch;
  }
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--gray-900);
  text-align: center;
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  color: var(--gray-600);
  font-size: 1.05rem;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--primary-dark);
  color: var(--white);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(201, 169, 104, 0.24);
}
.top-bar-inner,
.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
}
.top-bar-inner { justify-content: space-between; gap: 18px; }
.top-bar-left { gap: 20px; }
.top-bar-right { justify-content: flex-end; gap: 12px; }
.top-bar a { color: rgba(255,255,255,0.9); }
.top-bar a:hover { color: var(--accent); }
.top-bar-search {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 260px;
}
.top-bar-search input {
  width: 100%;
  height: 32px;
  padding: 6px 12px;
  border: 1px solid rgba(201, 169, 104, 0.28);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  outline: none;
}
.top-bar-search input::placeholder { color: rgba(255,255,255,0.62); }
.top-bar-search input:focus { border-color: var(--accent); background: rgba(255,255,255,0.12); }
.top-bar-search button,
.top-bar-action,
.top-bar-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid rgba(201, 169, 104, 0.3);
  border-radius: var(--radius-full);
  color: rgba(255,255,255,0.9);
  font-weight: 700;
  font-size: 0.76rem;
  background: rgba(255,255,255,0.06);
}
.top-bar-search button:hover,
.top-bar-action:hover,
.top-bar-cart:hover {
  color: var(--primary-dark);
  background: var(--accent);
  border-color: var(--accent);
}
.top-bar-cart { position: relative; gap: 8px; }
.top-bar-language { position: relative; flex-shrink: 0; }
.top-bar-language-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 5px 10px;
  border: 1px solid rgba(201, 169, 104, 0.3);
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  transition: var(--transition);
}
.top-bar-language-trigger:hover,
.top-bar-language:focus-within .top-bar-language-trigger {
  background: rgba(201, 169, 104, 0.16);
  border-color: var(--accent);
}
.top-bar-language-flag,
.top-bar-language-option-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.top-bar-language-flag img,
.top-bar-language-option-flag img {
  width: 18px;
  height: 13px;
  display: block;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.18);
}
.top-bar-language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  padding: 8px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.16);
  display: none;
  z-index: 1200;
}
.top-bar-language:hover .top-bar-language-menu,
.top-bar-language:focus-within .top-bar-language-menu { display: block; }
.top-bar-language-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--gray-800) !important;
  font-size: 0.84rem;
  font-weight: 600;
  opacity: 1 !important;
}
.top-bar-language-option:hover,
.top-bar-language-option.is-active {
  background: var(--primary-50);
  color: var(--primary-dark) !important;
}
.top-bar-language-option-name { white-space: nowrap; }

/* ===== HEADER ===== */
.header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.site-header-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 34px;
  min-height: 84px;
  padding: 6px 0;
}
.header-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
}
.header-logo img {
  width: 150px;
  max-width: 24vw;
  height: auto;
}
.header-logo span {
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.site-nav ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-nav--left ul { justify-content: flex-end; }
.site-nav--right ul { justify-content: flex-start; }
.site-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: var(--radius-full);
  color: var(--primary-dark);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-nav-link:hover,
.site-nav-link.is-active {
  color: var(--primary-dark);
  background: var(--primary-50);
  box-shadow: inset 0 0 0 1px rgba(201, 169, 104, 0.36);
}
.site-nav-dropdown { position: relative; }
.site-nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  padding: 10px;
  background: var(--white);
  border: 1px solid rgba(31, 41, 55, 0.08);
  border-top: 3px solid var(--accent);
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1100;
}
.site-nav-dropdown:hover .site-nav-dropdown-menu,
.site-nav-dropdown:focus-within .site-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.site-nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--gray-800);
  font-size: 0.88rem;
  font-weight: 700;
}
.site-nav-dropdown-menu a:hover,
.site-nav-dropdown-menu a.is-active {
  background: var(--primary-50);
  color: var(--primary-dark);
}
.cart-count {
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 0.65rem;
  font-weight: 800;
}
.mobile-menu-btn {
  display: none;
  color: var(--primary-dark);
  padding: 8px;
}
.main-nav { display: none; }
/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--white) 50%, var(--gold-light) 100%);
}
.hero-slider { position: relative; min-height: 520px; }
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; position: relative; }
.hero-content {
  max-width: 580px;
  padding: 60px 0;
}
.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 18px;
  animation: fadeInUp 0.6s ease 0.1s both;
}
.hero-title span { color: var(--primary); }
.hero-text {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 35px;
  animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-buttons {
  display: flex;
  gap: 15px;
  animation: fadeInUp 0.6s ease 0.3s both;
}
.hero-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 550px;
}
.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.hero-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-bottom: 30px;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active {
  background: var(--primary);
  width: 35px;
  border-radius: var(--radius-full);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(31, 41, 55, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(31, 41, 55, 0.45);
}
.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-sm { padding: 9px 22px; font-size: 0.85rem; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white);
  padding: 30px 0;
  border-bottom: 1px solid var(--gray-200);
}
.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 15px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.trust-item:hover { background: var(--primary-50); transform: translateY(-2px); }
.trust-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-50), var(--primary-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.trust-text h4 { font-size: 0.9rem; font-weight: 600; color: var(--gray-900); }
.trust-text p { font-size: 0.78rem; color: var(--gray-500); margin-top: 2px; }

/* ===== PRODUCT CARDS ===== */
.homepage-products-section {
  padding-top: 10px;
  background: transparent;
}
.homepage-filter-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}
.homepage-filter-dropdown {
  position: relative;
}
.homepage-display-controls {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}
.homepage-show-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--gray-300);
  background: var(--white);
  color: var(--gray-800);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  white-space: nowrap;
  flex: 0 0 auto;
}
.homepage-show-control label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-800);
  white-space: nowrap;
}
.homepage-show-control:hover,
.homepage-show-control:focus-within {
  border-color: rgba(31, 41, 55, 0.28);
  color: var(--primary-dark);
  background: var(--primary-50);
}
.homepage-filter-trigger,
.homepage-filter-clear {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--gray-300);
  background: var(--white);
  color: var(--gray-800);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}
.homepage-filter-trigger:hover,
.homepage-filter-trigger.active,
.homepage-filter-clear:hover {
  border-color: rgba(31, 41, 55, 0.28);
  color: var(--primary-dark);
  background: var(--primary-50);
}
.homepage-show-select {
  min-height: 24px;
  min-width: 78px;
  padding: 0 26px 0 0;
  border: none;
  background-color: transparent;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: calc(100% - 12px) calc(50% - 2px), calc(100% - 7px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  color: var(--gray-800);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
.homepage-show-select:hover,
.homepage-show-select:focus {
  color: var(--primary-dark);
  outline: none;
}
.homepage-view-toggle {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--brand-brown-200);
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  flex: 0 0 auto;
}
.homepage-view-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--accent-dark);
  border: none;
  border-right: 1px solid var(--brand-brown-200);
  transition: var(--transition);
}
.homepage-view-btn:last-child {
  border-right: none;
}
.homepage-view-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.homepage-view-btn:hover:not(.active),
.homepage-view-btn:focus-visible:not(.active) {
  background: var(--brand-brown-50);
  color: var(--brand-brown-700);
  outline: none;
}
.homepage-view-btn.active {
  background: linear-gradient(135deg, var(--brand-brown-600) 0%, var(--brand-brown-800) 100%);
  color: var(--gold-light);
}
.homepage-filter-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  display: none;
  z-index: 20;
}
.homepage-filter-menu.open {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.homepage-show-menu {
  min-width: 140px;
  right: 0;
  left: auto;
  padding: 6px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  gap: 4px;
}

.homepage-filter-custom-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-800);
  cursor: pointer;
  transition: all 0.2s ease;
}

.homepage-filter-custom-option:hover {
  background: #FAF6EF;
  color: #2B1D14;
}

.homepage-filter-custom-option.active {
  background: #2B1D14;
  color: #C9A968;
  font-weight: 700;
}

.homepage-filter-custom-option .homepage-option-check {
  font-size: 0.85rem;
  color: #C9A968;
}
.homepage-filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-700);
  cursor: pointer;
}
.homepage-filter-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
}
.homepage-filter-summary {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--primary-50);
  color: var(--primary-dark);
  font-size: 0.88rem;
  font-weight: 700;
}
.homepage-no-results {
  margin: 10px 0 18px;
  padding: 16px 18px;
  border: 1px dashed var(--gray-300);
  border-radius: 10px;
  background: var(--gray-50);
  color: var(--gray-600);
  text-align: center;
  font-weight: 600;
}
.homepage-infinite-status {
  width: fit-content;
  max-width: 100%;
  min-height: 42px;
  margin: 28px auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--gray-300);
  border-radius: 999px;
  background: var(--gray-50);
  color: var(--gray-600);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.homepage-infinite-status[hidden],
.homepage-infinite-sentinel[hidden] {
  display: none;
}
.homepage-infinite-sentinel {
  width: 100%;
  height: 1px;
}
.products-grid {
  display: grid;
  gap: 24px;
  align-items: stretch;
}
.products-grid.homepage-products-view-dense {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.products-grid.homepage-products-view-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.products-grid.homepage-products-view-list {
  grid-template-columns: 1fr;
  gap: 18px;
}
.products-grid.homepage-products-view-list .product-card {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  align-items: stretch;
}
.products-grid.homepage-products-view-list .product-card-image {
  aspect-ratio: auto;
  min-height: 240px;
  height: 100%;
}
.products-grid.homepage-products-view-list .product-card-image img {
  height: 100%;
}
.products-grid.homepage-products-view-list .product-card-body {
  padding: 24px;
}
.products-grid.homepage-products-view-list .product-card-category {
  min-height: 0;
  margin-bottom: 10px;
}
.products-grid.homepage-products-view-list .product-card-title {
  min-height: 0;
  font-size: 1.2rem;
  margin-bottom: 14px;
  -webkit-line-clamp: 3;
}
.products-grid.homepage-products-view-list .product-card-price {
  margin-top: auto;
}
.products-grid.homepage-products-view-list .product-quick-actions {
  left: auto;
  right: 16px;
  transform: translateY(20px);
}
.products-grid.homepage-products-view-list .product-card:hover .product-quick-actions {
  transform: translateY(0);
}
.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.homepage-products-section .product-card {
  border: 1px solid rgba(138, 106, 46, 0.12);
  box-shadow:
    0 10px 24px rgba(26, 20, 11, 0.14),
    0 2px 6px rgba(26, 20, 11, 0.08);
}
.homepage-products-section .product-card:hover {
  box-shadow:
    0 16px 32px rgba(26, 20, 11, 0.18),
    0 4px 10px rgba(26, 20, 11, 0.1),
    0 0 0 1px rgba(201, 169, 104, 0.14);
}
.product-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--gray-100);
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.08); }
.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.badge-new { background: var(--primary); color: var(--white); }
.badge-sale { background: var(--success); color: var(--white); }
.badge-bestseller {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--brand-brown-900);
  box-shadow: 0 4px 10px rgba(138, 106, 46, 0.28);
}
.product-quick-actions {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%) translateY(14px);
  display: flex;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(201, 169, 104, 0.35);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(43, 29, 20, 0.16);
  opacity: 0;
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-quick-actions {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.quick-action-btn {
  width: 34px;
  height: 34px;
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-brown-700);
  font-size: 0.88rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}
.quick-action-btn i {
  font-size: 0.88rem;
  line-height: 1;
}
.quick-action-btn:hover,
.quick-action-btn:focus-visible {
  background: linear-gradient(135deg, var(--brand-brown-600) 0%, var(--brand-brown-800) 100%);
  color: var(--gold-light);
  transform: translateY(-1px);
  outline: none;
}
.quick-action-btn:active {
  transform: translateY(0) scale(0.95);
}

/* Ürün kartı favori (kalp) butonu - sağ üst köşe */
.product-favorite-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  font-size: 1.05rem;
  transition: var(--transition);
}
.product-favorite-btn:hover {
  transform: scale(1.1);
  color: #e74c3c;
}
.product-favorite-btn:focus-visible {
  outline: 2px solid #e74c3c;
  outline-offset: 2px;
}
.product-favorite-btn.is-active {
  color: #e74c3c;
  animation: favoritePop 0.35s ease;
}
@keyframes favoritePop {
  0% { transform: scale(1); }
  40% { transform: scale(1.35); }
  100% { transform: scale(1); }
}
/* Liste görünümünde de sağ üst köşede kalsın */
.products-grid.homepage-products-view-list .product-favorite-btn {
  top: 10px;
  right: 10px;
}
.product-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card-category {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  min-height: 2.2em;
  line-height: 1.45;
}
.product-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--gray-900);
  margin-bottom: 10px;
  line-height: 1.3;
  transition: var(--transition);
  min-height: 2.7em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card:hover .product-card-title { color: var(--primary); }
.product-card-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  min-height: 28px;
  flex-wrap: wrap;
}
.price-current {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
}
.price-old {
  font-size: 0.9rem;
  color: var(--gray-400);
  text-decoration: line-through;
}

.homepage-new-products-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 260px at 50% 0%, rgba(201, 169, 104, 0.22), transparent 72%),
    linear-gradient(180deg, rgba(17, 24, 39, 0.9) 0%, rgba(8, 11, 18, 0.88) 100%);
  color: var(--white);
}
.homepage-new-products-section .section-title {
  color: var(--white);
  font-size: 3rem;
}
.homepage-new-products-section .section-subtitle {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 54px;
}
.homepage-new-products-carousel {
  position: relative;
}
.homepage-new-products-track {
  display: flex;
  gap: 24px;
  margin: 0 -2px;
  padding: 4px 2px 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.homepage-new-products-track::-webkit-scrollbar {
  display: none;
}
.new-product-card {
  flex: 0 0 calc((100% - 72px) / 4);
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 104, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  scroll-snap-align: start;
  transition: var(--transition);
}
.new-product-card:hover,
.new-product-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(246, 232, 197, 0.58);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.34);
  outline: none;
}
.new-product-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}
.new-product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.new-product-card:hover .new-product-card-image img,
.new-product-card:focus-visible .new-product-card-image img {
  transform: scale(1.05);
}
.new-product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--accent), var(--gold-light));
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
}
.new-product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 24px 24px;
}
.new-product-card-category {
  min-height: 18px;
  margin-bottom: 10px;
  color: rgba(201, 169, 104, 0.9);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}
.new-product-card-body h3 {
  min-height: 2.7em;
  margin: 0 0 16px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.new-product-card-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-height: 32px;
  margin-top: auto;
  color: var(--gold-light);
  font-size: 1.32rem;
  font-weight: 800;
}
.new-product-card-price del {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.92rem;
  font-weight: 600;
}
.new-product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 18px;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 800;
}
.homepage-new-products-controls {
  width: fit-content;
  min-height: 50px;
  margin: 34px auto 0;
  padding: 6px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(201, 169, 104, 0.22);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}
.homepage-new-products-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.2rem;
  font-weight: 800;
  transition: var(--transition);
}
.homepage-new-products-nav:hover,
.homepage-new-products-nav:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  outline: none;
}
.homepage-new-products-nav--next {
  background: var(--accent);
  color: var(--primary-dark);
}
.homepage-new-products-nav--next:hover,
.homepage-new-products-nav--next:focus-visible {
  background: var(--gold-light);
  color: var(--primary-dark);
}
.homepage-new-products-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
}

/* ===== HERO SLIDER ALTI KATEGORİ KARE KUTULARI ===== */
.homepage-category-showcase {
  position: relative;
  background: transparent;
}
.homepage-category-showcase > * {
  position: relative;
  z-index: 1;
}
.hero-category-boxes {
  position: relative;
  z-index: 20;
  width: min(1800px, calc(100vw - 96px));
  margin: -60px 0 24px 50%;
  transform: translateX(-50%);
}
.hero-category-boxes--no-overlap {
  margin-top: 34px;
}
.hero-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.hero-category-box {
  position: relative;
  display: block;
  aspect-ratio: 1.6 / 1;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 14px;
  overflow: hidden;
  background: #1A140B;
  box-shadow: 0 14px 28px rgba(18, 11, 5, 0.22), 0 3px 0 rgba(255, 255, 255, 0.42) inset;
  transition: var(--transition);
}
.hero-category-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(18, 11, 5, 0.28), 0 3px 0 rgba(255, 255, 255, 0.48) inset;
}
.hero-category-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.hero-category-box:hover img {
  transform: scale(1.06);
}
.hero-category-box-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.4rem;
}
.hero-category-box-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 24px;
  background:
    linear-gradient(180deg, rgba(12, 12, 11, 0) 24%, rgba(12, 12, 11, 0.42) 55%, rgba(12, 12, 11, 0.88) 100%),
    linear-gradient(90deg, rgba(12, 12, 11, 0.18), transparent 58%);
}
.hero-category-box-overlay h3 {
  margin: 0;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 1.85vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}
.hero-category-box-overlay span {
  position: relative;
  width: fit-content;
  margin-top: 9px;
  padding-bottom: 7px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.95rem;
  font-weight: 800;
}
.hero-category-box-overlay span::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #8A6A2E, #D4AF37 58%, #F6E8C5);
}
.homepage-quick-categories-wrap {
  padding: 10px 0 18px;
  background: transparent;
}
.homepage-quick-categories {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
  width: 100%;
}
.homepage-quick-category {
  flex: 1 1 0px;
  min-width: 135px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 62px;
  padding: 10px 12px;
  border: 1px solid rgba(201, 169, 104, 0.35);
  border-radius: 8px;
  background:
    radial-gradient(170px 70px at 50% 0%, rgba(201, 169, 104, 0.22), transparent 72%),
    linear-gradient(135deg, #2C1D14 0%, #3D271B 58%, #23160E 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(18, 11, 5, 0.35);
  font-family: var(--menu-font);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}
.homepage-quick-category:hover,
.homepage-quick-category:focus-visible {
  border-color: rgba(246, 232, 197, 0.58);
  color: #fff;
  transform: translateY(-2px);
  outline: none;
}
.homepage-quick-category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  min-width: 30px;
  height: 30px;
  color: #D4AF37;
  font-size: 1.2rem;
}
.homepage-quick-category > span:last-child {
  min-width: 0;
  white-space: nowrap;
}
.homepage-quick-category[href*="/kategori/soz-nisan-davetiyesi"] > span:last-child {
  font-size: 0.7rem;
}
@media (max-width: 768px) {
  .hero-category-boxes {
    width: calc(100vw - 28px);
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .hero-category-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hero-category-box {
    border-radius: 10px;
    aspect-ratio: 2.2 / 1;
  }
  .hero-category-box-overlay {
    padding: 14px 16px;
  }
  .hero-category-box-overlay h3 {
    font-size: 1.2rem;
  }
  .hero-category-box-overlay span {
    font-size: 0.86rem;
  }
  .hero-category-box-icon {
    font-size: 2rem;
  }
  .homepage-quick-categories-wrap {
    padding-top: 6px;
  }
  .homepage-quick-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .homepage-quick-category {
    min-height: 64px;
    justify-content: flex-start;
    gap: 7px;
    padding: 12px 10px;
    font-size: clamp(0.68rem, 1.7vw, 0.8rem);
  }
  .homepage-quick-category-icon {
    width: 27px;
    min-width: 27px;
    height: 27px;
    font-size: 1.08rem;
  }
}
@media (max-width: 480px) {
  .homepage-quick-categories {
    grid-template-columns: 1fr;
  }
}

/* ===== CATEGORY CARDS ===== */
.homepage-category-blocks {
  background: var(--gray-50);
  padding-top: 46px;
  padding-bottom: 54px;
}
.homepage-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.homepage-category-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(31, 41, 55, 0.10);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}
.homepage-category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(31, 41, 55, 0.22);
}
.homepage-category-card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  display: grid;
  place-items: center;
  overflow: hidden;
}
.homepage-category-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.homepage-category-card:hover .homepage-category-card-media img {
  transform: scale(1.04);
}
.homepage-category-card-media span {
  font-size: 4rem;
  line-height: 1;
}
.homepage-category-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.homepage-category-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.homepage-category-card-body p {
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.homepage-category-card-body span {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 800;
}
.homepage-category-card-body span::after {
  content: '›';
  font-size: 1.05rem;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.category-card {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  color: var(--white);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.category-card:hover::before { opacity: 1; }
.category-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.category-card > * { position: relative; z-index: 1; }
.category-emoji { font-size: 3rem; margin-bottom: 15px; }
.category-card h3 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 8px; }
.category-card p { font-size: 0.88rem; opacity: 0.85; }

/* ===== WHY US ===== */
.why-us {
  background:
    radial-gradient(720px 220px at 8% 0%, rgba(216, 189, 117, 0.1), transparent 72%),
    radial-gradient(720px 220px at 92% 100%, rgba(216, 189, 117, 0.08), transparent 72%),
    linear-gradient(180deg, var(--brand-brown-50) 0%, #FBF6EA 100%);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, var(--brand-brown-50) 100%);
  border: 1px solid rgba(216, 189, 117, 0.28);
  border-radius: 16px;
  padding: 46px 28px 38px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(43, 29, 20, 0.07);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 56px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, #8A6A2E, #E9D8AD);
  transform: translateX(-50%);
  transition: width 0.35s ease;
}
.why-card:hover {
  border-color: rgba(216, 189, 117, 0.55);
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(43, 29, 20, 0.16);
}
.why-card:hover::before {
  width: 100%;
  border-radius: 0;
}
.why-num {
  position: absolute;
  top: 12px;
  right: 20px;
  color: rgba(216, 189, 117, 0.35);
  font-family: "Great Vibes", cursive;
  font-size: 2rem;
  line-height: 1;
  pointer-events: none;
}
.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin: 0 auto 22px;
  border: 1px solid rgba(216, 189, 117, 0.45);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 30%, #FBF6EA 0%, #f2e7cf 100%);
  color: #8A7A60;
  font-size: 1.7rem;
  box-shadow: 0 0 0 6px rgba(216, 189, 117, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.65);
  transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.why-card:hover .why-icon {
  border-color: transparent;
  background: linear-gradient(135deg, #8A6A2E 0%, #D8BD75 55%, #E9D8AD 100%);
  color: #fff;
  box-shadow: 0 0 0 6px rgba(216, 189, 117, 0.16), 0 14px 28px rgba(138, 106, 46, 0.3);
}
.why-card h3 {
  margin-bottom: 12px;
  color: #3d3325;
  font-family: var(--font-heading);
  font-size: 1.14rem;
  letter-spacing: 0.02em;
}
.why-divider {
  position: relative;
  display: block;
  width: 64px;
  height: 1px;
  margin: 0 auto 16px;
  background: linear-gradient(90deg, transparent, rgba(216, 189, 117, 0.6), transparent);
}
.why-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border: 1.5px solid #D8BD75;
  background: #FAFCFE;
  transform: translate(-50%, -50%) rotate(45deg);
}
.why-card p {
  color: #6f675a;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== CTA BANNER ===== */
.cta-banner,
.cta-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 92px 20px;
  overflow: hidden;
  background:
    var(--brand-hairline-top) top left / 100% 1px no-repeat,
    var(--brand-hairline-bottom) bottom left / 100% 1px no-repeat,
    var(--brand-surface-glow),
    var(--brand-surface);
  background-color: var(--brand-brown-800);
  color: #ffffff;
  text-align: center;
  box-shadow: inset 0 0 140px rgba(21, 13, 8, 0.22);
}

/* Üstten aşağı inen yumuşak ışık geçişi — kare/ızgara doku yok, sadece derinlik */
.cta-banner::before,
.cta-section::before,
.corporate-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(246, 232, 197, 0.05) 0%, rgba(246, 232, 197, 0.012) 38%, transparent 72%),
    linear-gradient(180deg, transparent 62%, rgba(21, 13, 8, 0.16) 100%);
  pointer-events: none;
}

/* Sağ altta eş merkezli altın saç teli yaylar + yumuşak altın hâle */
.cta-banner::after,
.cta-section::after,
.corporate-page-hero::after {
  content: "";
  position: absolute;
  right: -220px;
  bottom: -400px;
  width: 860px;
  height: 860px;
  border-radius: 50%;
  background: repeating-radial-gradient(circle at center, rgba(201, 169, 104, 0.26) 0 1px, transparent 1px 132px);
  -webkit-mask-image: radial-gradient(circle at center, transparent 10%, rgba(0, 0, 0, 0.85) 42%, rgba(0, 0, 0, 0.42) 74%, transparent 96%);
  mask-image: radial-gradient(circle at center, transparent 10%, rgba(0, 0, 0, 0.85) 42%, rgba(0, 0, 0, 0.42) 74%, transparent 96%);
  pointer-events: none;
}

.cta-banner > *,
.cta-section > * {
  position: relative;
  z-index: 2;
}

.cta-banner h2,
.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.cta-banner p,
.cta-section p {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 34px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-banner .btn-gold,
.cta-section .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  border: 1px solid rgba(201, 169, 104, 0.6);
  background: linear-gradient(135deg, #E6C687 0%, #C9A968 50%, #B58D4C 100%);
  color: #1A100A;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
  transition: all 0.25s ease;
}

.cta-banner .btn-gold:hover,
.cta-section .btn-primary:hover {
  background: linear-gradient(135deg, #F4D03F 0%, #D4AF37 100%);
  color: #1A100A;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(212, 175, 55, 0.45);
}

.cta-banner .btn-outline-gold,
.cta-section .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: all 0.25s ease;
}

.cta-banner .btn-outline-gold:hover,
.cta-section .btn-secondary:hover {
  border-color: #D4AF37;
  background: rgba(201, 169, 104, 0.25);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ===== PRODUCT DETAIL ===== */
.product-detail { padding: 14px 0 72px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--gray-600);
  padding: 2px 0 8px;
}
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .separator { color: var(--gray-400); }
.subcategory-shell {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.subcategory-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 18px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 16px 18px;
}
.subcategory-view-toggle {
  display: inline-flex;
  gap: 10px;
}
.subcategory-view-btn {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  color: var(--gray-700);
  text-decoration: none;
  background: #fff;
  font-size: 1.4rem;
}
.subcategory-view-btn.active {
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(31, 41, 55, 0.08);
}
.subcategory-title-box h1 {
  margin: 0;
  font-size: 1.7rem;
  color: var(--gray-900);
}
.subcategory-title-box p {
  margin: 6px 0 0;
  color: var(--gray-500);
  font-size: 0.95rem;
}
.subcategory-sort-box,
.subcategory-show-box {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.subcategory-sort-box label,
.subcategory-show-box label {
  font-weight: 700;
  color: var(--gray-800);
}
.subcategory-sort-box select,
.subcategory-show-box select {
  min-width: 160px;
  padding: 11px 14px;
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  background: #fff;
}
.subcategory-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.subcategory-product-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.subcategory-product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.subcategory-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}
.subcategory-product-card.list-view {
  flex-direction: row;
  align-items: stretch;
}
.subcategory-product-image {
  background: #f8fafc;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.subcategory-product-card.list-view .subcategory-product-image {
  width: 280px;
  flex: 0 0 280px;
}
.subcategory-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.subcategory-product-body {
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 12px;
  width: 100%;
}
.subcategory-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.subcategory-product-meta span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(31, 41, 55, 0.08);
  border-radius: 999px;
  padding: 6px 10px;
}
.subcategory-product-body h3 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--gray-900);
  line-height: 1.35;
}
.subcategory-product-price {
  display: flex;
  align-items: center;
  gap: 10px;
}
.subcategory-detail-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #3147a8;
  color: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.product-summary-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 6px 10px;
  margin-bottom: 10px;
}
.product-summary-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 14px;
  align-items: start;
}
.product-summary-main {
  min-width: 0;
}
.product-summary-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  margin-bottom: 0;
}
.product-summary-title {
  margin-bottom: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.15;
}
.product-summary-aside {
  min-width: 0;
  display: flex;
  align-items: stretch;
  gap: 6px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.product-summary-info-box,
.product-summary-total-wrap,
.product-summary-qty {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 6px 8px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.product-summary-info-box {
  min-width: 170px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.product-summary-total-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 170px;
  gap: 2px;
}
.product-summary-total-label {
  font-size: 0.78rem;
  color: var(--gray-500);
  font-weight: 600;
}
.product-summary-total-line {
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-summary-unit-line {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  white-space: nowrap;
}
.product-summary-qty {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 160px;
  gap: 3px;
}
.product-summary-qty-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-700);
}
.product-summary-minimum {
  font-size: 0.72rem;
  color: var(--gray-500);
}
.product-gallery { position: sticky; top: 100px; min-width: 0; }
.product-main-image {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 6px;
  overflow: hidden;
  background: var(--gray-100);
  margin-bottom: 15px;
  aspect-ratio: 1;
  cursor: zoom-in;
}
.product-main-image img { width: 100%; height: 100%; object-fit: cover; }
.product-image-modal-open { overflow: hidden; }
.product-image-modal {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.product-image-modal[hidden] { display: none; }
.product-image-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.78);
}
.product-image-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100vw - 28px));
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  border-radius: 12px;
  background: #fff;
  padding: 14px;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.36);
}
.product-image-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.74);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.product-image-modal-stage {
  position: relative;
}
.product-image-modal-stage > img {
  display: block;
  width: 100%;
  max-height: min(72vh, 760px);
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  background: var(--gray-50);
}
.product-image-modal-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}
.product-image-modal-nav.is-prev { left: 12px; }
.product-image-modal-nav.is-next { right: 12px; }
.product-image-modal-nav[hidden] { display: none; }
.product-image-modal-thumbnails {
  display: flex;
  gap: 8px;
  padding: 10px 2px 0;
  overflow-x: auto;
}
.product-image-modal-thumbnails[hidden] { display: none; }
.product-image-modal-thumbnail {
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  background: var(--gray-100);
  cursor: pointer;
}
.product-image-modal-thumbnail.active {
  border-color: var(--primary);
}
.product-image-modal-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-image-modal-share {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-top: 12px;
}
.product-thumbnails { display: flex; gap: 10px; }
.product-thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.product-thumbnail.active, .product-thumbnail:hover { border-color: var(--primary); }
.product-thumbnail img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Birlikte Alınabilecek Ürünler (galeri altı kaydırmalı liste) ===== */
.product-cross-sell {
  max-width: 100%;
  margin-top: 20px;
  padding: 14px 14px 10px;
  border: 1px solid var(--brand-brown-200);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #FFFDF8 0%, var(--brand-brown-50) 100%);
}
.product-cross-sell-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.product-cross-sell-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}
.product-cross-sell-title::before {
  content: "";
  width: 4px;
  height: 17px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--accent-dark) 100%);
}
.product-cross-sell-nav {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.product-cross-sell-arrow {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand-brown-200);
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
}
.product-cross-sell-arrow:hover:not(:disabled) {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--gold);
}
.product-cross-sell-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}
.product-cross-sell-track {
  display: flex;
  gap: 10px;
  padding-bottom: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--brand-brown-100);
}
.product-cross-sell-track:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
.product-cross-sell-track::-webkit-scrollbar { height: 7px; }
.product-cross-sell-track::-webkit-scrollbar-track {
  background: var(--brand-brown-100);
  border-radius: var(--radius-full);
}
.product-cross-sell-track::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--gold) 0%, var(--accent-dark) 100%);
  border-radius: var(--radius-full);
}
.cross-sell-card {
  display: flex;
  flex-direction: column;
  width: 132px;
  flex: 0 0 132px;
  scroll-snap-align: start;
  border: 1px solid var(--brand-brown-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--white);
  text-decoration: none;
  transition: var(--transition);
}
.cross-sell-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 20px rgba(43, 29, 20, 0.13);
  transform: translateY(-2px);
}
.cross-sell-card-image {
  position: relative;
  display: block;
  aspect-ratio: 1;
  background: var(--gray-100);
  overflow: hidden;
}
.cross-sell-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.cross-sell-card:hover .cross-sell-card-image img { transform: scale(1.06); }
.cross-sell-card-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  padding: 2px 6px;
  border-radius: var(--radius-full);
  background: var(--danger);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.4;
}
.cross-sell-card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 9px 10px;
}
.cross-sell-card-name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.3em;
  color: var(--gray-900);
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.15;
}
.cross-sell-card-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px;
}
.cross-sell-card-old-price {
  color: var(--gray-500);
  font-size: 0.68rem;
  text-decoration: line-through;
}
.cross-sell-card-price {
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
}

.product-info-section { padding-top: 0; }
.product-code { font-size: 0.82rem; color: var(--gray-500); margin-bottom: 8px; }
.product-detail-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gray-900);
  margin-bottom: 15px;
  line-height: 1.3;
}
.product-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.stars { color: #FFC107; font-size: 1rem; }
.rating-count { font-size: 0.85rem; color: var(--gray-500); }
.product-price-section {
  background: var(--gray-50);
  padding: 20px;
  border-radius: var(--radius-md);
  margin-bottom: 25px;
}
.product-price-main {
  display: flex;
  align-items: baseline;
  gap: 15px;
}
.product-price-current { font-size: 2rem; font-weight: 700; color: var(--primary); }
.product-price-old { font-size: 1.2rem; color: var(--gray-400); text-decoration: line-through; }
.product-discount-badge {
  display: inline-block;
  background: var(--success);
  color: var(--white);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
}
.product-trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 25px;
}
.product-trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  font-size: 0.83rem;
  color: var(--gray-700);
}
.product-trust-badge .icon { font-size: 1.2rem; }
.quantity-selector {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}
.quantity-selector label { font-weight: 600; font-size: 0.9rem; }
.quantity-input {
  display: flex;
  align-items: center;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.quantity-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gray-700);
  background: var(--gray-50);
  transition: var(--transition);
}
.quantity-btn:hover { background: var(--primary); color: var(--white); }
.quantity-input input {
  width: 60px;
  height: 42px;
  text-align: center;
  border: none;
  font-weight: 600;
  font-size: 1rem;
}
.quantity-input input:focus { outline: none; }
.product-actions { display: flex; gap: 12px; margin-bottom: 16px; }
.product-actions .btn { flex: 1; }
.product-actions .btn.btn-lg {
  padding: 13px 28px;
  font-size: 1rem;
}
.product-actions .btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  border: 1px solid #25d366;
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.18);
}
.product-actions .btn-whatsapp:hover {
  background: #1fb759;
  border-color: #1fb759;
  color: #fff;
  transform: translateY(-1px);
}
.product-actions .btn-whatsapp .btn-icon {
  font-size: 1rem;
  line-height: 1;
}
.product-share-label {
  font-size: 0.8rem;
  color: #111827;
  font-weight: 600;
  line-height: 1.2;
}
.product-share-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
}
.product-share-btn {
  position: relative;
  width: 58px;
  min-width: 58px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  background: #fff;
  color: #334155;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, color 0.22s ease, background-color 0.22s ease;
}
.product-share-btn:hover,
.product-share-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
  outline: none;
}
.product-share-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
  display: block;
}
.product-share-btn::before,
.product-share-btn::after {
  position: absolute;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.product-share-btn::before {
  content: attr(data-label);
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(4px);
  padding: 6px 8px;
  border-radius: 7px;
  background: #111827;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.16);
}
.product-share-btn::after {
  content: '';
  bottom: calc(100% + 4px);
  transform: translateX(-50%) translateY(4px);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #111827;
}
.product-share-btn:hover::before,
.product-share-btn:hover::after,
.product-share-btn:focus-visible::before,
.product-share-btn:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.product-share-btn.is-instagram:hover,
.product-share-btn.is-instagram:focus-visible {
  color: #c13584;
  border-color: rgba(193, 53, 132, 0.28);
  background: rgba(193, 53, 132, 0.04);
}
.product-share-btn.is-instagram {
  color: #e1306c;
  border-color: rgba(225, 48, 108, 0.2);
}
.product-share-btn.is-facebook:hover,
.product-share-btn.is-facebook:focus-visible {
  color: #1877f2;
  border-color: rgba(24, 119, 242, 0.28);
  background: rgba(24, 119, 242, 0.04);
}
.product-share-btn.is-facebook {
  color: #1877f2;
  border-color: rgba(24, 119, 242, 0.2);
}
.product-share-btn.is-whatsapp:hover,
.product-share-btn.is-whatsapp:focus-visible {
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.3);
  background: rgba(37, 211, 102, 0.05);
}
.product-share-btn.is-whatsapp {
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.22);
}
.product-share-btn.is-linkedin:hover,
.product-share-btn.is-linkedin:focus-visible {
  color: #0a66c2;
  border-color: rgba(10, 102, 194, 0.28);
  background: rgba(10, 102, 194, 0.04);
}
.product-share-btn.is-linkedin {
  color: #0a66c2;
  border-color: rgba(10, 102, 194, 0.2);
}
.product-share-btn.is-x:hover,
.product-share-btn.is-x:focus-visible {
  color: #111827;
  border-color: rgba(17, 24, 39, 0.28);
  background: rgba(17, 24, 39, 0.04);
}
.product-share-btn.is-x {
  color: #111827;
  border-color: rgba(17, 24, 39, 0.18);
}
.product-share-btn.is-telegram:hover,
.product-share-btn.is-telegram:focus-visible {
  color: #229ed9;
  border-color: rgba(34, 158, 217, 0.28);
  background: rgba(34, 158, 217, 0.05);
}
.product-share-btn.is-telegram {
  color: #229ed9;
  border-color: rgba(34, 158, 217, 0.2);
}
.product-share-btn.is-pinterest:hover,
.product-share-btn.is-pinterest:focus-visible {
  color: #e60023;
  border-color: rgba(230, 0, 35, 0.28);
  background: rgba(230, 0, 35, 0.04);
}
.product-share-btn.is-pinterest {
  color: #e60023;
  border-color: rgba(230, 0, 35, 0.2);
}
.product-share-btn.is-mail:hover,
.product-share-btn.is-mail:focus-visible {
  color: #f59e0b;
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.05);
}
.product-share-btn.is-mail {
  color: #f59e0b;
  border-color: rgba(245, 158, 11, 0.2);
}
.product-share-btn.is-copy:hover,
.product-share-btn.is-copy:focus-visible {
  color: #7c3aed;
  border-color: rgba(124, 58, 237, 0.28);
  background: rgba(124, 58, 237, 0.05);
}
.product-share-btn.is-copy {
  color: #7c3aed;
  border-color: rgba(124, 58, 237, 0.2);
}
.product-share-feedback {
  min-height: 0;
  font-size: 0.78rem;
  color: var(--gray-500);
  line-height: 1.2;
}

.product-info-section {
  --detail-ink: #2B1D14;
  --detail-ink-soft: #3A2619;
  --detail-gold: #C9A968;
  --detail-gold-dark: #8A6A2E;
  --detail-cream: #FBF6EA;
  --detail-border: rgba(201, 169, 104, 0.34);
}

.product-info-section .product-printing-options {
  background: linear-gradient(180deg, #fff 0%, var(--detail-cream) 100%) !important;
  border: 1px solid var(--accent) !important;
  border-radius: 8px !important;
  padding: 12px !important;
  box-shadow: 0 12px 32px rgba(43, 29, 20, 0.08) !important;
}

.product-info-section .product-printing-options > h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 12px !important;
  padding: 2px 0 10px;
  border-bottom: 1px solid rgba(201, 169, 104, 0.28);
  color: var(--primary) !important;
  font-size: 0.92rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.11em !important;
  text-transform: uppercase;
  -webkit-text-stroke: 0 !important;
}

.product-info-section .product-printing-options > h3::before,
.product-info-section .product-printing-options > h3::after {
  content: "";
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}

.product-info-section .product-printing-options > h3::after {
  background: linear-gradient(90deg, var(--accent), transparent);
}

.product-info-section .groups-grid {
  gap: 9px !important;
}

.product-info-section .printing-group {
  overflow: hidden !important;
  border: 1px solid rgba(43, 29, 20, 0.18) !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 4px 14px rgba(43, 29, 20, 0.04) !important;
}

.product-info-section .printing-group.is-open {
  overflow: visible !important;
  border-color: var(--accent) !important;
  box-shadow: 0 10px 28px rgba(43, 29, 20, 0.09) !important;
  z-index: 20;
}

.product-info-section .printing-group:has(.printing-option-label:hover),
.product-info-section .printing-group:has(.printing-option-label:focus-within) {
  overflow: visible !important;
  z-index: 30;
}

.product-info-section .printing-group-toggle {
  min-height: 48px;
  padding: 10px 12px !important;
  background: linear-gradient(135deg, #fff 0%, #FCF7ED 100%) !important;
  color: var(--primary) !important;
}

.product-info-section .printing-group.is-open .printing-group-toggle,
.product-info-section .printing-group-toggle:hover {
  background: linear-gradient(135deg, #FFFBF3 0%, var(--primary-50) 100%) !important;
}

.product-info-section .printing-group-title {
  font-size: 0.84rem !important;
  letter-spacing: 0.02em;
  color: var(--primary) !important;
}

.product-info-section .printing-group-selected {
  color: #8A7355 !important;
  font-size: 0.76rem !important;
}

.product-info-section .printing-group-chevron {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
  color: #fff !important;
  border-color: var(--accent) !important;
  box-shadow: 0 4px 12px rgba(43, 29, 20, 0.22);
}

.product-info-section .printing-group-chevron::before {
  border-color: var(--accent);
}

.product-info-section .options-stack {
  gap: 6px !important;
  padding: 8px !important;
  background: #FFFCF6 !important;
  border-top: 1px solid rgba(201, 169, 104, 0.24) !important;
}

.product-info-section .printing-option-label {
  min-height: 35px;
  padding: 7px 9px !important;
  border: 1px solid rgba(43, 29, 20, 0.13) !important;
  border-radius: 6px !important;
  background: #fff !important;
  box-shadow: none !important;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease !important;
}

.product-info-section .printing-option-label:hover,
.product-info-section .printing-option-label:focus-within {
  border-color: var(--accent) !important;
  box-shadow: 0 6px 16px rgba(43, 29, 20, 0.08) !important;
  transform: translateY(-1px);
}

.product-info-section .printing-option-label:has(input[type="radio"]:checked) {
  border-color: var(--accent) !important;
  background: linear-gradient(135deg, #fff 0%, var(--primary-50) 100%) !important;
}

.product-info-section .printing-option-label input[type="radio"] {
  accent-color: var(--accent-dark) !important;
}

.product-info-section .option-price-label {
  color: var(--accent-dark) !important;
  font-weight: 800 !important;
}

.product-invitation-toggle {
  min-height: 48px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
  color: #ffffff !important;
  border: 1px solid var(--accent) !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 14px rgba(43, 29, 20, 0.22) !important;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease !important;
}

.product-invitation-toggle:hover {
  background: linear-gradient(135deg, var(--brand-brown-500) 0%, var(--primary) 100%) !important;
  border-color: var(--accent) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(43, 29, 20, 0.32) !important;
}

.product-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: currentColor;
  font-size: 0.9rem;
  line-height: 1;
}

.product-invitation-toggle .product-action-icon {
  background: rgba(201, 169, 104, 0.25) !important;
  color: #fff !important;
}

.product-invitation-toggle .toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-left: 2px;
  border-radius: 50%;
  background: rgba(201, 169, 104, 0.25) !important;
  color: #fff !important;
  font-size: 1.15rem !important;
  font-weight: 800;
  line-height: 1 !important;
}

.product-actions {
  gap: 12px;
  margin-bottom: 14px;
}

.product-actions .btn.btn-lg {
  min-height: 52px;
  border-radius: 8px !important;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.product-actions .product-cart-action {
  position: relative;
  overflow: hidden;
  border: 1px solid #1F2937 !important;
  background: linear-gradient(135deg, #1F2937 0%, #111827 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.2) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease !important;
}

.product-actions .product-cart-action::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.product-actions .product-cart-action:hover::after {
  transform: translateX(120%);
}

.product-actions .product-cart-action:hover {
  transform: translateY(-2px);
  border-color: #c5a059 !important;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.28) !important;
}

.product-actions .product-cart-action .product-action-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.product-actions .product-cart-action > span,
.product-actions .product-whatsapp-action > span {
  position: relative;
  z-index: 1;
}

.product-actions .product-whatsapp-action {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  border: 1px solid #128C7E !important;
  color: #ffffff !important;
  text-shadow: none !important;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.25) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease !important;
}

.product-actions .product-whatsapp-action:hover {
  background: linear-gradient(135deg, #22c55e 0%, #0e786b 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35) !important;
}

.product-actions .product-whatsapp-action .product-action-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 1.05rem;
}

.product-detail-quick-actions {
  position: static;
  opacity: 1;
  visibility: visible;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 16px;
}

.product-detail-quick-action-btn {
  min-width: 0;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid #e2e8f0 !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  color: #374151 !important;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03) !important;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.product-detail-quick-action-btn:hover,
.product-detail-quick-action-btn:focus-visible {
  transform: translateY(-2px);
  border-color: #c5a059 !important;
  background: #fdfbf7 !important;
  color: #1f2937 !important;
  box-shadow: 0 6px 16px rgba(197, 160, 89, 0.18) !important;
  outline: none;
}

.product-detail-quick-action-btn.is-active {
  border-color: #c5a059 !important;
  background: #fdfbf7 !important;
  color: #c5a059 !important;
}

.product-detail-quick-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  min-width: 18px;
  color: #c5a059;
  font-size: 0.98rem;
  line-height: 1;
}

.product-detail-quick-action-btn:hover .product-detail-quick-action-icon {
  color: #a8843c;
}

.product-info-section .product-share-feedback {
  text-align: center;
}

.product-info-section .product-share-feedback:not(:empty) {
  margin: -6px 0 14px;
}

.product-share-label {
  color: var(--detail-ink);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.product-share-list {
  gap: 8px;
}

.product-share-btn {
  width: 48px;
  min-width: 48px;
  height: 46px;
  border-color: rgba(17, 24, 39, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.05);
}

.product-share-btn svg {
  width: 26px;
  height: 26px;
}

.product-share-btn:hover,
.product-share-btn:focus-visible {
  border-color: rgba(201, 169, 104, 0.58);
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.09);
}

body:has(.product-detail) .contact-hub {
  bottom: 30px;
}

@media (max-width: 820px) {
  .product-detail-grid > * {
    min-width: 0;
  }

  .product-gallery,
  .product-info-section {
    width: 100%;
  }

  .product-thumbnails {
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .product-thumbnail {
    flex: 0 0 80px;
  }

  .product-cross-sell {
    padding: 12px 12px 8px;
  }

  .product-cross-sell-nav {
    display: none;
  }

  .cross-sell-card {
    width: 118px;
    flex: 0 0 118px;
  }

  body:has(.product-detail) .contact-hub {
    right: 12px;
    bottom: 16px;
  }

  body:has(.product-detail) .contact-hub-label {
    display: flex;
  }

  body:has(.product-detail) .contact-hub-toggle {
    width: 52px;
    height: 52px;
    min-height: 52px;
    border-radius: 50%;
  }
}
.product-description-text { font-size: 0.95rem; color: var(--gray-700); line-height: 1.8; }

/* ===== TABS ===== */
.product-tabs {
  margin-top: 50px;
  margin-bottom: 40px;
}

.tab-headers {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-brown-50);
  border: 1px solid rgba(201, 169, 104, 0.25);
  padding: 6px;
  border-radius: 14px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  box-shadow: 0 2px 12px rgba(43, 29, 20, 0.04);
}

.tab-headers::-webkit-scrollbar {
  display: none;
}

.tab-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gray-600);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

.tab-header-icon {
  font-size: 0.95rem;
  color: var(--accent);
  transition: transform 0.25s ease, color 0.25s ease;
}

.tab-header:hover {
  color: var(--brand-brown-700);
  background: rgba(201, 169, 104, 0.12);
}

.tab-header:hover .tab-header-icon {
  transform: translateY(-1px);
}

.tab-header.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-brown-600) 0%, var(--brand-brown-800) 100%);
  border-color: rgba(201, 169, 104, 0.35);
  box-shadow: 0 4px 16px rgba(43, 29, 20, 0.22);
}

.tab-header.active .tab-header-icon {
  color: var(--gold-light);
}

.tab-content {
  display: none;
  margin-top: 16px;
  background: var(--white);
  border: 1px solid rgba(201, 169, 104, 0.2);
  border-radius: 16px;
  padding: 32px 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.tab-content.active {
  display: block;
  animation: tabFadeInUp 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

/* Tab Content Details */
.tab-desc-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tab-desc-primary {
  color: var(--gray-700);
  line-height: 1.8;
  font-size: 0.96rem;
}

.tab-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--brand-brown-50);
  border: 1px dashed rgba(201, 169, 104, 0.4);
  border-radius: 12px;
  padding: 18px 22px;
}

.tab-info-card-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: linear-gradient(135deg, var(--brand-brown-600), var(--brand-brown-800));
  color: var(--gold-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.tab-info-card-text {
  color: var(--gray-800);
  font-size: 0.9rem;
  line-height: 1.6;
}

.tab-info-card-text strong {
  display: block;
  color: var(--brand-brown-800);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.tab-info-card-text p {
  color: var(--gray-700);
  margin: 0;
}

/* Specs Table */
.specs-table-wrapper {
  overflow-x: auto;
}

.specs-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 6px;
}

.specs-table th {
  text-align: left;
  font-weight: 600;
  color: var(--brand-brown-800);
  width: 200px;
  padding: 12px 18px;
  background: var(--brand-brown-50);
  border-radius: 8px 0 0 8px;
  border-left: 3px solid var(--accent);
  font-size: 0.9rem;
}

.specs-table td {
  padding: 12px 18px;
  color: var(--gray-700);
  background: var(--gray-50);
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
}

/* Reviews Empty */
.tab-reviews-empty {
  text-align: center;
  padding: 30px 20px;
}

.reviews-empty-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.reviews-empty-title {
  font-family: var(--font-heading);
  color: var(--brand-brown-800);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.reviews-empty-desc {
  color: var(--gray-600);
  font-size: 0.92rem;
}

/* Shipping Steps */
.shipping-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.shipping-step-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  padding: 14px 18px;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.shipping-step-item:hover {
  border-color: rgba(201, 169, 104, 0.4);
  background: var(--brand-brown-50);
}

.shipping-step-num {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: linear-gradient(135deg, var(--brand-brown-600), var(--brand-brown-800));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
}

.shipping-step-content {
  color: var(--gray-700);
  font-size: 0.92rem;
  line-height: 1.5;
}

.shipping-step-content strong {
  color: var(--brand-brown-800);
}

.shipping-total-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  background: linear-gradient(135deg, var(--brand-brown-50), #f5efe6);
  border: 1px solid rgba(201, 169, 104, 0.35);
  padding: 12px 20px;
  border-radius: 10px;
  color: var(--brand-brown-800);
  font-size: 0.92rem;
}

.shipping-total-badge i {
  color: var(--accent);
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .product-tabs {
    margin-top: 35px;
  }

  .tab-headers {
    padding: 4px;
    gap: 4px;
    border-radius: 12px;
  }

  .tab-header {
    padding: 10px 14px;
    font-size: 0.84rem;
    gap: 6px;
    border-radius: 8px;
  }

  .tab-header-icon {
    font-size: 0.88rem;
  }

  .tab-content {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .specs-table th {
    width: 130px;
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  .specs-table td {
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  .shipping-step-item {
    padding: 12px 14px;
    gap: 12px;
  }
}

/* ===== RELATED PRODUCTS ===== */
.related-products { padding: 60px 0; background: var(--gray-50); }

/* ===== CATEGORY PAGE ===== */
.category-page { padding: 10px 0 72px; }
.category-layout { display: grid; grid-template-columns: 260px 1fr; gap: 30px; }
.category-sidebar {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 25px;
  box-shadow: var(--shadow-sm);
  height: fit-content;
  position: sticky;
  top: 100px;
}
.filter-group { margin-bottom: 25px; }
.filter-group h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-light);
}
.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--gray-700);
  transition: var(--transition);
}
.filter-option:hover { color: var(--primary); }
.filter-option input[type="checkbox"] {
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
}
.category-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding: 15px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.category-count { font-size: 0.9rem; color: var(--gray-600); }
.category-sort select {
  padding: 8px 15px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--gray-700);
  cursor: pointer;
}

/* ===== CART ===== */
.cart-page {
  padding: 56px 0 96px;
  background:
    radial-gradient(760px 260px at 18% 0%, rgba(246, 232, 197, 0.32), transparent 70%),
    linear-gradient(180deg, #FBF6EA 0%, #fff 38%, #fbfbfb 100%);
}
.cart-page > .container {
  max-width: 1280px;
}
.cart-page > .container > .breadcrumb {
  margin-bottom: 18px;
  color: var(--gray-500);
  font-size: 0.88rem;
}
#emptyCart {
  width: min(100%, 680px);
  margin: 0 auto;
  border: 1px solid rgba(201, 169, 104, 0.24);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #FFFAF0 100%);
  box-shadow: 0 18px 46px rgba(17, 24, 39, 0.08);
}
#emptyCart .btn-primary {
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary-dark), var(--accent-dark));
  color: var(--white);
}
.cart-layout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 30px; align-items: start; }
.cart-table {
  background: var(--white);
  border: 1px solid rgba(201, 169, 104, 0.22);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(17, 24, 39, 0.08);
  overflow: hidden;
}
.cart-table table { width: 100%; border-collapse: collapse; }
.cart-table th {
  background: linear-gradient(135deg, #0D0D0C 0%, #2f2414 100%);
  padding: 17px 20px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cart-table td {
  padding: 22px 20px;
  border-bottom: 1px solid rgba(201, 169, 104, 0.12);
  vertical-align: middle;
}
.cart-product-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.cart-product-image {
  width: 76px;
  height: 76px;
  border: 1px solid rgba(201, 169, 104, 0.28);
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #FBF6EA;
}
.cart-product-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-product-name { font-weight: 800; color: var(--gray-900); font-size: 0.94rem; }
.cart-product-code-line {
  margin-top: 6px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
}
.cart-product-type-line {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(201, 169, 104, 0.14);
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 700;
}
.cart-remove {
  color: var(--gray-400);
  font-size: 1.2rem;
  transition: var(--transition);
}
.cart-remove:hover { color: var(--danger); }
.cart-invitation-section {
  margin-top: 24px;
  background: linear-gradient(180deg, #fff 0%, #FFFAF0 100%);
  border: 1px solid rgba(201, 169, 104, 0.32);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 18px 46px rgba(17, 24, 39, 0.08);
}
.cart-invitation-section-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.cart-invitation-section-head h3 {
  margin: 0 0 4px;
  color: var(--accent-dark);
  font-size: 1.18rem;
  font-weight: 800;
}
.cart-invitation-section-head p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.88rem;
  line-height: 1.45;
}
.cart-invitation-migration-notice {
  margin-bottom: 14px;
  padding: 10px 12px;
  border-radius: 6px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  font-size: 0.85rem;
  line-height: 1.45;
}
.cart-invitation-card-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-invitation-card {
  border-radius: 8px;
  border: 1px solid rgba(201, 169, 104, 0.2);
  background: #fff;
  padding: 16px;
}
.cart-invitation-card.is-complete {
  border-color: rgba(34, 197, 94, 0.34);
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.07);
}
.cart-invitation-card.is-incomplete {
  border-color: rgba(244, 63, 94, 0.28);
  box-shadow: 0 10px 24px rgba(244, 63, 94, 0.07);
}
.cart-invitation-card-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 10px;
}
.cart-invitation-product {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  min-width: 0;
}
.cart-invitation-product-image {
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(201, 169, 104, 0.26);
  flex-shrink: 0;
  background: #FBF6EA;
}
.cart-invitation-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-invitation-product-meta {
  min-width: 0;
}
.cart-invitation-product-meta h4 {
  margin: 6px 0 4px;
  color: #111827;
  font-size: 0.98rem;
  line-height: 1.32;
}
.cart-invitation-subline {
  color: #64748b;
  font-size: 0.78rem;
}
.cart-invitation-code-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.cart-invitation-code-badge,
.cart-invitation-type-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 5px;
  font-size: 0.68rem;
  font-weight: 700;
}
.cart-invitation-code-badge {
  background: rgba(201, 169, 104, 0.14);
  color: var(--accent-dark);
}
.cart-invitation-type-badge {
  background: rgba(246, 232, 197, 0.7);
  color: var(--primary-dark);
}
.cart-invitation-option-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.cart-invitation-option-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 6px;
  background: #FFFAF0;
  border: 1px solid rgba(201, 169, 104, 0.22);
  color: #475569;
  font-size: 0.71rem;
}
.cart-invitation-card-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
  flex-shrink: 0;
}
.cart-invitation-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.71rem;
  font-weight: 700;
}
.cart-invitation-status.is-complete {
  background: #dcfce7;
  color: #166534;
}
.cart-invitation-status.is-incomplete {
  background: #ffe4e6;
  color: #be123c;
}
.cart-invitation-edit-link {
  color: var(--accent-dark);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
}
.cart-invitation-edit-link:hover {
  color: var(--primary-dark);
}
.cart-invitation-error-box {
  margin-bottom: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: #9f1239;
  font-size: 0.84rem;
  line-height: 1.45;
}
.cart-invitation-error-box strong {
  display: block;
  margin-bottom: 6px;
}
.cart-invitation-error-box ul {
  margin: 0;
  padding-left: 18px;
}
.cart-invitation-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.cart-invitation-card-grid > div {
  border-radius: 8px !important;
}
.cart-invitation-empty-state {
  padding: 12px;
  border-radius: 6px;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  color: #475569;
  line-height: 1.45;
  font-size: 0.84rem;
}
.cart-invitation-confirm {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 16px;
  padding: 12px 14px;
  background: #FFFAF0;
  border: 1px solid rgba(201, 169, 104, 0.38);
  border-radius: 8px;
  cursor: pointer;
}
.cart-invitation-confirm.is-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.cart-invitation-confirm input {
  margin-top: 2px;
  accent-color: var(--accent-dark);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.cart-invitation-confirm span {
  color: #7c5a1f;
  font-size: 0.85rem;
  line-height: 1.45;
}
.cart-summary {
  background: linear-gradient(180deg, #fff 0%, #FFFAF0 100%);
  border: 1px solid rgba(201, 169, 104, 0.24);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(17, 24, 39, 0.08);
  padding: 30px;
  height: fit-content;
  position: sticky;
  top: 132px;
}
.cart-summary h3 {
  font-family: var(--font-heading);
  font-size: 1.36rem;
  margin-bottom: 25px;
  color: var(--gray-900);
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 0.9rem;
  color: var(--gray-600);
  border-bottom: 1px solid rgba(201, 169, 104, 0.14);
}
.cart-summary-total {
  display: flex;
  justify-content: space-between;
  padding: 18px 0 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-900);
}
.cart-summary .btn { width: 100%; margin-top: 20px; }
.cart-summary .btn-primary {
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary-dark), var(--accent-dark));
  color: var(--white);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.22);
}
.cart-summary .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.28);
}

@media (max-width: 992px) {
  .cart-invitation-card-header {
    flex-direction: column;
  }
  .cart-invitation-card-actions {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .cart-invitation-section {
    padding: 16px;
  }
  .cart-invitation-card {
    padding: 14px;
  }
  .cart-invitation-card-grid {
    grid-template-columns: 1fr;
  }
  .cart-invitation-product {
    flex-direction: column;
  }
  .cart-invitation-product-image {
    width: 100%;
    height: 140px;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: #0d0d0d;
  color: rgba(255,255,255,0.72);
  padding: 64px 0 22px;
}
.footer .container {
  max-width: 1320px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) repeat(3, minmax(150px, 0.8fr)) minmax(250px, 1.1fr);
  gap: 42px;
  align-items: start;
  padding-bottom: 46px;
}
.footer-brand-panel {
  max-width: 360px;
  text-align: center;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-logo img {
  width: 150px;
  max-height: 112px;
  object-fit: contain;
}
.footer-brand-panel p,
.footer-newsletter p {
  margin: 0;
  color: rgba(255,255,255,0.58);
  font-size: 0.95rem;
  line-height: 1.75;
}
.footer-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links li { margin-bottom: 11px; }
.footer-links a {
  display: inline-flex;
  color: rgba(255,255,255,0.58);
  font-size: 0.95rem;
  line-height: 1.45;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}
.footer-social a,
.footer-contact-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(201, 169, 104, 0.36);
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: var(--gold-light);
  transition: var(--transition);
}
.footer-social svg,
.footer-contact-icon svg,
.footer-newsletter-form button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-social a:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--primary-dark);
  transform: translateY(-3px);
}
.footer-newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.footer-newsletter-form input {
  min-width: 0;
  height: 52px;
  flex: 1;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  outline: none;
  background: rgba(255,255,255,0.11);
  color: var(--white);
}
.footer-newsletter-form input::placeholder {
  color: rgba(255,255,255,0.42);
}
.footer-newsletter-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 104,0.15);
}
.footer-newsletter-form button {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--accent-dark));
  color: var(--primary-dark);
  transition: var(--transition);
}
.footer-newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201, 169, 104,0.24);
}
.footer-contact-strip {
  display: grid;
  grid-template-columns: minmax(280px, 1.55fr) repeat(3, minmax(170px, 1fr));
  gap: 28px;
  padding: 34px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
}
.footer-contact-item span:last-child {
  min-width: 0;
  color: rgba(255,255,255,0.62);
  font-size: 0.92rem;
  line-height: 1.55;
}
.footer-contact-item strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
  font-size: 0.9rem;
}
.footer-contact-item a {
  color: rgba(255,255,255,0.68);
}
.footer-contact-item a:hover {
  color: var(--gold-light);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 18px;
  color: rgba(255,255,255,0.56);
  font-size: 0.9rem;
}
.footer-bottom p {
  margin: 0;
}
.footer-bottom a {
  color: rgba(255,255,255,0.66);
}
.footer-bottom a:hover {
  color: var(--gold-light);
}
.footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-payments {
  width: fit-content;
  max-width: 100%;
  min-height: 52px;
  margin: 0 auto;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(0,0,0,0.22);
}
.footer-payments span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 3px 9px;
  border-radius: 6px;
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.footer-payments span:first-child {
  color: #2563eb;
  text-transform: none;
}
.footer-payments span:nth-child(2) {
  color: #dc2626;
}
.footer-payments span:nth-child(3) {
  color: #1d4ed8;
}
.footer-payments span:nth-child(4) {
  color: #38bdf8;
}
.footer-payments span:nth-child(5) {
  color: #334155;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse-green 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  right: 38px;
  bottom: 104px;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 104, 0.45);
  background: radial-gradient(circle at 50% 40%, #3B261A 0%, #20140D 70%, #150D08 100%);
  color: #C9A968;
  font-size: 1.05rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5), inset 0 0 12px rgba(201, 169, 104, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  transform: scale(1.08);
  border-color: #C9A968;
  background: radial-gradient(circle at 50% 35%, #4A3021 0%, #281910 70%, #1A100A 100%);
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(201, 169, 104, 0.35);
  outline: none;
}

.back-to-top i {
  animation: backToTopBounce 2s ease-in-out infinite;
}

@keyframes backToTopBounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* ===== CONTACT HUB (şube / iletişim) ===== */
.contact-hub-overlay {
  display: none !important;
}

.contact-hub {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-body);
  --contact-hub-deep: #1D130C;
  --contact-hub-mid: #2B1D14;
  --contact-hub-accent: #C9A968;
  --contact-hub-gold: #C9A968;
  --contact-hub-soft: rgba(201, 169, 104, 0.12);
}

.contact-hub-panel {
  position: absolute;
  right: 0;
  bottom: 75px;
  width: 370px;
  max-height: 520px;
  border: 1px solid rgba(201, 169, 104, 0.35);
  border-radius: 16px;
  background: linear-gradient(135deg, #2B1D14 0%, #1D130C 100%);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(20px) scale(0.95);
  transform-origin: bottom right;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-hub.is-open .contact-hub-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.contact-hub-panel-inner {
  display: flex;
  flex-direction: column;
  min-height: 0;
  max-height: inherit;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
}

.contact-hub-header {
  position: relative;
  padding: 20px 58px 20px 22px;
  background: linear-gradient(135deg, #2B1D14 0%, #1B110B 100%);
  color: #ffffff;
  border-radius: 16px 16px 0 0;
  border-bottom: 1px solid rgba(201, 169, 104, 0.3);
}
.contact-hub-close--corner {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 104, 0.35);
  background: rgba(201, 169, 104, 0.2);
  color: #F5E8D0;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.contact-hub-close--corner:hover {
  background: rgba(201, 169, 104, 0.4);
  border-color: rgba(201, 169, 104, 0.7);
  transform: rotate(90deg);
}
.contact-hub-title {
  margin: 0;
  color: #F5E8D0;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.25;
}
.contact-hub-sub {
  display: block;
  margin: 3px 0 0;
  color: rgba(201, 169, 104, 0.85);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.contact-hub-body {
  flex: 1;
  min-height: 0;
  max-height: 440px;
  padding: 0;
  overflow-y: auto;
  background: var(--white);
  border-radius: 0 0 16px 16px;
  scrollbar-width: thin;
  scrollbar-color: #ccc #f5f5f5;
}

.contact-hub-body::-webkit-scrollbar {
  width: 6px;
}

.contact-hub-body::-webkit-scrollbar-track {
  background: #f5f5f5;
}

.contact-hub-body::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 6px;
}

/* Contact Hub Channel List (Reference Match 1-to-1) */
.contact-channel-list {
  display: flex;
  flex-direction: column;
}

.contact-channel-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid #F2F2F2;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
}

.contact-channel-item:last-child {
  border-bottom: none;
}

.contact-channel-item:not(.contact-channel-item--static):hover {
  background: #FDFBF7;
}

/* Icon Badges */
.contact-channel-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-top: 2px;
}

.contact-channel-icon--whatsapp {
  background: #E8F8EE;
  color: #25D366;
}

.contact-channel-icon--phone {
  background: #FADBD8;
  color: #E74C3C;
}

.contact-channel-icon--email {
  background: #EBF5FB;
  color: #3498DB;
}

.contact-channel-icon--address {
  background: #FEF9E7;
  color: #F39C12;
}

/* Content Area */
.contact-channel-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-channel-title {
  display: block;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  color: #222222;
  line-height: 1.35;
}

.contact-channel-item:hover .contact-channel-title {
  color: #2B1D14;
}

.contact-channel-hours {
  display: block;
  font-size: 0.81rem;
  font-weight: 500;
  color: #C0392B;
  line-height: 1.5;
}

.contact-channel-subtext {
  display: block;
  font-size: 0.82rem;
  color: #777777;
}

.contact-channel-address {
  display: block;
  font-size: 0.82rem;
  color: #555555;
  line-height: 1.45;
}

.contact-channel-map-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #C9A968;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-channel-map-link:hover {
  color: #2B1D14;
}

.contact-hub-fab {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.contact-hub-label {
  position: absolute;
  right: 70px;
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid rgba(201, 169, 104, 0.4);
  background: linear-gradient(135deg, #2D1D13 0%, #1B110B 100%);
  color: #F5E8D0;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.2;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(40px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
  animation: contactHubTooltipSlideIn 6s ease 1s forwards;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.contact-hub-label::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -7px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 7px solid #2D1D13;
  transform: translateY(-50%);
}

.contact-hub-fab:hover .contact-hub-label,
.contact-hub-fab:focus-within .contact-hub-label {
  opacity: 1;
  transform: translateX(0);
  animation: none;
}

.contact-hub.is-open .contact-hub-label {
  opacity: 0;
  transform: translateX(40px);
  animation: none;
}

@keyframes contactHubTooltipSlideIn {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }

  8.33%,
  91.66% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(40px);
  }
}

.contact-hub-toggle {
  position: relative;
  z-index: 10;
  width: 62px;
  height: 62px;
  min-height: 62px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 104, 0.45);
  background: radial-gradient(circle at 50% 40%, #3B261A 0%, #20140D 70%, #150D08 100%);
  color: #C9A968;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5), inset 0 0 14px rgba(201, 169, 104, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.22s ease, border-color 0.22s ease;
}
.contact-hub-toggle:hover,
.contact-hub-toggle:focus-visible {
  transform: scale(1.08);
  border-color: #C9A968;
  background: radial-gradient(circle at 50% 35%, #4A3021 0%, #281910 70%, #1A100A 100%);
  color: #ffffff;
  box-shadow: 0 12px 32px rgba(201, 169, 104, 0.35), inset 0 0 16px rgba(201, 169, 104, 0.3);
  outline: none;
}
.contact-hub.is-open .contact-hub-toggle {
  background: radial-gradient(circle at 50% 40%, #2D1D13 0%, #170F0A 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  border-color: rgba(201, 169, 104, 0.6);
}
.contact-hub-toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-hub-toggle-icon--close {
  display: none;
  font-size: 1.25rem;
  line-height: 1;
}
.contact-hub.is-open .contact-hub-toggle-icon--open {
  display: none;
}
.contact-hub.is-open .contact-hub-toggle-icon--close {
  display: flex;
}

body.contact-hub-no-scroll {
  overflow: hidden;
}

@media (max-width: 520px) {
  .back-to-top {
    right: 16px;
    bottom: 78px;
    width: 44px;
    height: 44px;
    font-size: 0.9rem;
  }

  .contact-hub {
    right: 12px;
    bottom: 16px;
  }
  .contact-hub-label {
    right: 60px;
    min-height: 36px;
    padding: 8px 14px;
    font-size: 0.78rem;
  }
  .contact-hub-toggle {
    width: 52px;
    height: 52px;
    min-height: 52px;
    font-size: 1.3rem;
  }
  .contact-hub-panel {
    right: -6px;
    bottom: 65px;
    width: calc(100vw - 24px);
    max-height: 65vh;
  }
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
  @media (max-width: 520px) {
    .contact-hub {
      bottom: calc(16px + env(safe-area-inset-bottom));
    }

    .back-to-top {
      bottom: calc(80px + env(safe-area-inset-bottom));
    }
  }
}

/* ===== CORPORATE STATIC PAGES ===== */
.corporate-page-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 230px;
  padding: 82px 20px 32px;
  overflow: hidden;
  background:
    var(--brand-hairline-bottom) bottom left / 100% 1px no-repeat,
    var(--brand-surface-glow),
    var(--brand-surface);
  background-color: var(--brand-brown-800);
  color: var(--white);
}
.corporate-page-hero.corporate-page-hero--compact {
  min-height: 180px;
  padding-top: 62px;
  padding-bottom: 16px;
}
.corporate-page-hero--compact .corporate-page-title {
  font-size: clamp(1.85rem, 3.3vw, 2.9rem);
}
.corporate-page-hero--compact .corporate-page-subtitle {
  font-size: 0.92rem;
}
/* ::before (ağ dokusu) ve ::after (altın yaylar) CTA bandıyla ortak tanımlı — bkz. CTA BANNER */
.corporate-page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 940px;
  text-align: center;
}
.corporate-page-hero .breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 7px 16px;
  border: 1px solid rgba(201, 169, 104, 0.32);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}
.corporate-page-hero .breadcrumb a {
  color: var(--gold-light);
}
.corporate-page-title {
  margin: 0 0 10px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  font-weight: 800;
  line-height: 1.08;
}
.corporate-page-title span {
  color: var(--gold-light);
}
.corporate-page-subtitle {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.5;
}
/* Kurumsal hero altında kalan içerik bloğu (tüm iç sayfalarda ortak) */
.corporate-page-body {
  padding: 48px 0 90px;
  background: linear-gradient(180deg, var(--brand-brown-50) 0%, var(--white) 260px);
}

/* ===== ÜYELİK SAYFALARI (giriş / kayıt / şifre) ===== */
/* Zemin: anasayfadaki çiçekli arka planın soluk (veilli) hâli */
.auth-page {
  position: relative;
  padding: 52px 20px 88px;
  background-color: var(--brand-brown-50);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.80) 0%, rgba(255, 255, 255, 0.66) 45%, rgba(255, 255, 255, 0.86) 100%),
    url('/images/backgrounds/homepage-floral-backdrop.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
/* Koyu hero'dan zemine yumuşak geçiş */
.auth-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(251, 246, 239, 0.9) 0%, rgba(251, 246, 239, 0) 170px);
}
.auth-card {
  position: relative;
  z-index: 1;
  max-width: 470px;
  margin: 0 auto;
  padding: 38px 36px 34px;
  border: 1px solid rgba(230, 214, 194, 0.9);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px) saturate(1.04);
  -webkit-backdrop-filter: blur(10px) saturate(1.04);
  box-shadow: 0 24px 60px rgba(43, 29, 20, 0.14), 0 1px 0 rgba(255, 255, 255, 0.85) inset;
}
.auth-card--wide { max-width: 540px; }
.auth-card-head {
  margin-bottom: 26px;
  text-align: center;
}
.auth-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-brown-600) 0%, var(--brand-brown-800) 100%);
  color: var(--gold-light);
  font-size: 1.25rem;
}
.auth-card-head h1 {
  margin: 0 0 8px;
  color: var(--brand-brown-800);
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
}
.auth-card-head p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.93rem;
  line-height: 1.55;
}
.auth-card .form-group label {
  color: var(--brand-brown-700);
  font-weight: 600;
}
.auth-card .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 169, 104, 0.18);
}
.auth-card-link {
  color: var(--accent-dark);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}
.auth-card-link:hover { color: var(--brand-brown-700); }
.btn-block {
  display: flex;
  width: 100%;
}
.auth-submit {
  margin-top: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.auth-card-foot {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--brand-brown-100);
  color: var(--gray-600);
  font-size: 0.92rem;
  text-align: center;
}
.auth-card-foot a {
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: none;
}
.auth-card-foot a:hover { color: var(--brand-brown-700); }
/* Mobilde fixed zemin sorunlu; normal akışa alınıyor */
@media (max-width: 768px) {
  .auth-page { background-attachment: scroll; }
}
@media (max-width: 520px) {
  .auth-card { padding: 30px 22px 26px; }
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 18px;
  border: 1px solid rgba(201, 169, 104, 0.28);
  border-radius: var(--radius-full);
  background: rgba(201, 169, 104, 0.1);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.about-story-section,
.about-proof-section,
.about-values-section,
.contact-section,
.quick-links-section {
  padding: 94px 20px;
}
.about-story-section,
.quick-links-section {
  background: var(--gray-50);
}
.about-proof-section,
.contact-section {
  background: var(--primary-dark);
}
.about-values-section {
  background: var(--white);
}
.about-values-section--dark {
  background: var(--primary-dark);
}
.about-values-section--dark .section-title {
  color: var(--white);
}
.about-values-section--dark .section-subtitle {
  color: rgba(255, 255, 255, 0.68);
}
.about-values-section--dark .section-badge {
  border-color: rgba(201, 169, 104, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-light);
}
.about-story-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: 58px;
  max-width: 1240px;
  margin: 0 auto;
  align-items: center;
}
.about-story-grid-reverse .about-story-image {
  order: 2;
}
.about-story-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(17, 24, 39, 0.2);
}
.about-story-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(17, 24, 39, 0.28));
}
.about-story-image img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
}
.about-story-content h2,
.contact-info h2,
.contact-form-wrapper h2 {
  margin: 0 0 18px;
  color: var(--gray-900);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.16;
}
.about-story-content p,
.contact-info > p,
.contact-form-wrapper > p {
  margin: 0 0 18px;
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.82;
}
.about-proof-section .about-story-content h2,
.about-proof-section .about-story-content p,
.contact-section .contact-info h2,
.contact-section .contact-info > p {
  color: var(--white);
}
.about-proof-section .about-story-content p,
.contact-section .contact-info > p {
  color: rgba(255, 255, 255, 0.72);
}
.about-story-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(201, 169, 104, 0.28);
}
.about-story-stat {
  padding: 18px 14px;
  border: 1px solid rgba(201, 169, 104, 0.2);
  border-radius: 8px;
  background: var(--white);
  text-align: center;
}
.about-story-stat strong {
  display: block;
  color: var(--accent-dark);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
}
.about-story-stat span {
  display: block;
  margin-top: 8px;
  color: var(--gray-600);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}
.about-values-grid,
.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
}
.about-value-card,
.quick-link-card {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 30px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.about-value-card:hover,
.quick-link-card:hover {
  border-color: rgba(201, 169, 104, 0.45);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.about-value-icon,
.about-feature-icon,
.contact-icon,
.quick-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary-dark), var(--accent-dark));
  color: var(--gold-light);
  font-size: 1.25rem;
}
.about-value-card h3,
.quick-link-card h3 {
  margin: 22px 0 10px;
  color: var(--gray-900);
  font-size: 1.12rem;
}
.about-value-card p,
.quick-link-card p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
}
.about-values-section--dark .about-value-card {
  border-color: rgba(201, 169, 104, 0.18);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
}
.about-values-section--dark .about-value-card:hover {
  border-color: rgba(201, 169, 104, 0.52);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
}
.about-values-section--dark .about-value-card h3 {
  color: var(--white);
}
.about-values-section--dark .about-value-card p {
  color: rgba(255, 255, 255, 0.68);
}
.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.about-feature-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(201, 169, 104, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}
.about-feature-card h4 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 1rem;
}
.about-feature-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.55;
}
.contact-grid {
  grid-template-columns: 1fr 1.12fr;
  align-items: start;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-item {
  display: flex;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(201, 169, 104, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  transition: var(--transition);
}
.contact-item:hover {
  border-color: rgba(201, 169, 104, 0.5);
  background: rgba(255, 255, 255, 0.09);
  transform: translateX(6px);
}
.contact-item-link {
  text-decoration: none;
}
.contact-icon-whatsapp {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
}
.contact-details h3 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 1rem;
}
.contact-details p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.55;
}
.contact-details a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: var(--transition);
}
.contact-details a:hover,
.contact-item-link:hover .contact-details p {
  color: var(--gold-light);
}
.contact-legal-info {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(201, 169, 104, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}
.contact-legal-info h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1rem;
}
.contact-legal-info h3 i {
  color: var(--gold-light);
}
.contact-legal-grid {
  display: grid;
  gap: 10px;
}
.contact-legal-row {
  display: grid;
  gap: 5px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
}
.contact-legal-row span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}
.contact-legal-row strong,
.contact-legal-row a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  line-height: 1.5;
  word-break: break-word;
}
.contact-legal-row a {
  text-decoration: none;
}
.social-links {
  margin-top: 28px;
}
.social-links h3 {
  margin: 0 0 15px;
  color: var(--white);
  font-size: 1rem;
}
.social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201, 169, 104, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
  text-decoration: none;
  transition: var(--transition);
}
.social-icon:hover {
  border-color: rgba(201, 169, 104, 0.52);
  background: rgba(201, 169, 104, 0.16);
  color: var(--gold-light);
  transform: translateY(-4px);
}
.contact-form-wrapper {
  padding: 42px;
  border: 1px solid rgba(201, 169, 104, 0.26);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--gray-800);
  font-size: 0.88rem;
  font-weight: 700;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  background: var(--gray-50);
  color: var(--gray-900);
  font-size: 0.95rem;
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  outline: none;
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201, 169, 104, 0.16);
}
.form-group textarea {
  min-height: 142px;
  resize: vertical;
}
.captcha-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.captcha-row img {
  height: 42px;
  min-width: 96px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  cursor: pointer;
}
.captcha-row input {
  max-width: 180px;
}
.form-group small {
  display: block;
  margin-top: 7px;
  color: var(--gray-500);
  font-size: 0.8rem;
}
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary-dark), var(--accent-dark));
  color: var(--white);
  font-weight: 800;
  transition: var(--transition);
}
.form-submit:hover {
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.22);
  transform: translateY(-2px);
}
.contact-alert {
  display: grid;
  gap: 4px;
  margin-bottom: 20px;
  padding: 15px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
}
.contact-alert-success {
  background: #def7ec;
  color: #03543f;
}
.contact-alert-error {
  background: #fde8e8;
  color: #9b1c1c;
}
.quick-links-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.quick-link-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--accent-dark);
  font-weight: 800;
}
.contact-map-section {
  height: 420px;
  overflow: hidden;
  background: var(--gray-100);
}
.contact-map-section iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.checkout-page {
  padding: 14px 0 72px;
  background: var(--gray-50);
  min-height: 70vh;
}

/* ===== FONT LIBRARY ===== */
.font-library-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
.font-library-header h2 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.font-library-header p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.98rem;
}
.font-library-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.font-library-card {
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #edf2f7;
  transition: var(--transition);
  padding: 4px 0 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 178px;
}
.font-library-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.font-library-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 4px;
}
.font-library-image-trigger {
  width: 100%;
  max-width: none;
  height: 118px;
  border: 1px solid var(--brand-brown-200);
  border-radius: 18px;
  padding: 0;
  background: linear-gradient(135deg, var(--brand-brown-50), var(--white));
  cursor: zoom-in;
  overflow: hidden;
  transition: var(--transition);
}
.font-library-image-trigger:hover {
  border-color: rgba(201, 169, 104, 0.55);
  box-shadow: 0 8px 18px rgba(43, 29, 20, 0.14);
}
.font-library-image {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  display: block;
  object-fit: cover;
}
.font-library-image-fallback {
  width: 100%;
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  background: linear-gradient(135deg, var(--brand-brown-50), var(--white));
  border: 1px solid var(--brand-brown-200);
  border-radius: 18px;
}
.font-library-copy {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 0 8px;
}
.font-library-copy h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--gray-900);
  margin-bottom: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.font-library-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  margin-top: 8px;
  padding: 0 8px;
}
.font-library-download {
  min-width: 92px;
  text-align: center;
  padding: 8px 12px;
  font-size: 0.8rem;
  justify-content: center;
  white-space: nowrap;
}
.font-preview-open {
  overflow: hidden;
}
.font-preview-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
}
.font-preview-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.72);
}
.font-preview-dialog {
  position: relative;
  z-index: 100000;
  width: min(92vw, 760px);
  margin: 6vh auto 0;
  background: #fff;
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 26px 80px rgba(15, 23, 42, 0.28);
}
.font-preview-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.08);
  color: var(--gray-900);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.font-preview-title {
  margin: 0 46px 14px 0;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gray-900);
}
.font-preview-dialog img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 16px;
  background: #f8fafc;
}
.font-empty-state {
  background: linear-gradient(135deg, #fff1f2, #ffffff);
  border: 1px solid #ffe4e6;
  border-radius: 24px;
  padding: 48px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.font-empty-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--primary);
  font-size: 2.6rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.font-empty-state h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.font-empty-state p {
  margin: 0 auto;
  max-width: 520px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .products-grid.homepage-products-view-dense { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .products-grid.homepage-products-view-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .new-product-card { flex-basis: calc((100% - 48px) / 3); }
  .subcategory-product-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-title { font-size: 2.5rem; }
  .hero-image { width: 40%; }
  .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand-panel { text-align: left; }
  .footer-social { justify-content: flex-start; }
  .footer-contact-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-layout { grid-template-columns: 1fr; }
  .category-sidebar { display: none; }
  .font-library-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .site-header-grid { gap: 22px; }
  .site-nav-link { padding: 9px 10px; font-size: 0.78rem; }
  .header-logo img { width: 146px; }
}
@media (max-width: 768px) {
  .top-bar-inner { align-items: flex-start; flex-direction: column; }
  .top-bar-right { width: 100%; justify-content: space-between; flex-wrap: wrap; }
  .top-bar-search { min-width: min(100%, 280px); }
  .site-header-grid { grid-template-columns: 44px 1fr 44px; min-height: 72px; gap: 10px; }
  .site-nav { display: none; }
  .header-logo { grid-column: 2; }
  .header-logo img { max-width: 148px; width: 40vw; }
  .header-logo span { font-size: 0.62rem; letter-spacing: 0.12em; }
  .mobile-menu-btn { display: inline-flex; align-items: center; justify-content: center; grid-column: 1; grid-row: 1; }
  .main-nav { display: none; background: var(--primary-dark); padding: 10px 0 14px; }
  .main-nav.open { display: block; }
  .nav-list { display: flex; flex-direction: column; gap: 6px; padding: 0; }
  .nav-link {
    display: flex;
    padding: 12px 16px;
    border-radius: 10px;
    color: var(--white);
    background: rgba(255,255,255,0.07);
    font-weight: 700;
  }
  .nav-link:hover,
  .nav-link.active { background: var(--accent); color: var(--primary-dark); }
  .hero-slide { flex-direction: column; text-align: center; }
  .hero-content { padding: 40px 20px; }
  .hero-title { font-size: 2rem; }
  .hero-image { position: relative; width: 100%; transform: none; display: none; }
  .hero-buttons { justify-content: center; }
  .trust-items { grid-template-columns: repeat(2, 1fr); }
  .homepage-filter-bar {
    gap: 10px;
  }
  .homepage-filter-dropdown,
  .homepage-filter-trigger,
  .homepage-filter-clear {
    width: 100%;
  }
  .homepage-display-controls {
    width: 100%;
    margin-left: 0;
    justify-content: flex-end;
  }
  .homepage-show-control {
    width: auto;
    max-width: 100%;
    justify-content: space-between;
  }
  .homepage-show-select {
    width: auto;
  }
  .homepage-view-toggle {
    flex-shrink: 0;
  }
  .homepage-filter-menu {
    position: static;
    min-width: 0;
    margin-top: 8px;
  }
  .products-grid.homepage-products-view-dense { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; }
  .products-grid.homepage-products-view-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
  .products-grid.homepage-products-view-list .product-card {
    grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  }
  .homepage-new-products-section .section-title { font-size: 2.35rem; }
  .homepage-new-products-section .section-subtitle { margin-bottom: 34px; }
  .homepage-new-products-track { gap: 18px; }
  .new-product-card { flex-basis: calc((100% - 18px) / 2); }
  .homepage-category-grid { grid-template-columns: 1fr; }
  .homepage-category-card { min-height: 0; }
  .subcategory-topbar { grid-template-columns: 1fr 1fr; }
  .subcategory-title-box { grid-column: 1 / -1; }
  .subcategory-product-grid { grid-template-columns: repeat(2, 1fr); }
  .subcategory-product-card.list-view { flex-direction: column; }
  .subcategory-product-card.list-view .subcategory-product-image {
    width: 100%;
    flex-basis: auto;
  }
  .categories-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .corporate-page-hero {
    min-height: 210px;
    padding: 76px 18px 28px;
  }
  .corporate-page-hero.corporate-page-hero--compact {
    min-height: 170px;
    padding-top: 58px;
    padding-bottom: 16px;
  }
  .cta-banner::after,
  .cta-section::after,
  .corporate-page-hero::after {
    right: -230px;
    bottom: -300px;
    width: 560px;
    height: 560px;
    background: repeating-radial-gradient(circle at center, rgba(201, 169, 104, 0.2) 0 1px, transparent 1px 100px);
  }
  .about-story-section,
  .about-proof-section,
  .about-values-section,
  .contact-section,
  .quick-links-section,
  .cta-section {
    padding: 64px 18px;
  }
  .about-story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .about-story-grid-reverse .about-story-image {
    order: 0;
  }
  .about-story-stats,
  .about-values-grid,
  .quick-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-feature-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-wrapper {
    padding: 28px 20px;
  }
  .cta-buttons {
    gap: 12px;
  }
  .font-library-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .font-library-header {
    align-items: flex-start;
  }
  .font-library-card {
    min-height: 170px;
  }
  .font-library-image-trigger,
  .font-library-image,
  .font-library-image-fallback {
    width: 100%;
    height: 108px;
  }
  .font-preview-dialog {
    width: min(94vw, 620px);
    margin-top: 4vh;
  }
  .product-detail-grid { grid-template-columns: 1fr; gap: 30px; }
  .product-gallery { position: static; }
  .product-summary-layout {
    grid-template-columns: 1fr;
  }
  .product-summary-aside,
  .product-summary-total-wrap,
  .product-summary-qty {
    min-width: 0;
    align-items: flex-start;
  }
  .product-summary-aside {
    width: 100%;
  }
  .product-summary-info-box,
  .product-summary-total-wrap,
  .product-summary-qty {
    width: 100%;
  }
  .product-summary-unit-line {
    justify-content: flex-start;
    white-space: normal;
  }
  .cart-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; }
  .footer-brand-panel { max-width: none; text-align: center; }
  .footer-social { justify-content: center; }
  .footer-contact-strip { grid-template-columns: 1fr; gap: 20px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-legal-links { justify-content: flex-start; }
  .section { padding: 50px 0; }
  .section-title { font-size: 1.8rem; }
  .cta-banner h2 { font-size: 1.8rem; }
}
@media (max-width: 480px) {
  .footer {
    padding-top: 46px;
  }
  .footer-newsletter-form {
    align-items: stretch;
    flex-direction: column;
  }
  .footer-newsletter-form button {
    width: 100%;
  }
  .footer-payments {
    width: 100%;
  }
  .homepage-filter-bar {
    margin-bottom: 14px;
  }
  .homepage-display-controls {
    justify-content: space-between;
    gap: 8px;
  }
  .homepage-show-control {
    padding: 10px 12px;
  }
  .homepage-view-btn {
    width: 40px;
    height: 40px;
  }
  .homepage-infinite-status {
    width: 100%;
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.85rem;
  }
  .products-grid.homepage-products-view-dense,
  .products-grid.homepage-products-view-grid { grid-template-columns: 1fr; }
  .products-grid.homepage-products-view-list .product-card {
    grid-template-columns: 1fr;
  }
  .products-grid.homepage-products-view-list .product-card-image {
    min-height: 220px;
  }
  .homepage-new-products-section { padding: 58px 0; }
  .homepage-new-products-section .section-title { font-size: 2rem; }
  .new-product-card { flex-basis: 86%; }
  .new-product-card-body { padding: 20px; }
  .new-product-card-price { font-size: 1.18rem; }
  .subcategory-topbar { grid-template-columns: 1fr; }
  .subcategory-sort-box,
  .subcategory-show-box {
    width: 100%;
  }
  .subcategory-sort-box select,
  .subcategory-show-box select {
    width: 100%;
    min-width: 0;
  }
  .subcategory-product-grid { grid-template-columns: 1fr; }
  .trust-items { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .corporate-page-hero {
    min-height: 190px;
    padding-top: 68px;
    padding-bottom: 20px;
  }
  .corporate-page-hero.corporate-page-hero--compact {
    min-height: 165px;
    padding-top: 56px;
    padding-bottom: 14px;
  }
  .corporate-page-hero .breadcrumb {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
  }
  .about-story-stats,
  .about-values-grid,
  .quick-links-grid {
    grid-template-columns: 1fr;
  }
  .about-story-image img {
    aspect-ratio: 1 / 0.9;
  }
  .about-value-card,
  .quick-link-card,
  .about-feature-card,
  .contact-item {
    padding: 20px;
  }
  .cta-buttons {
    align-items: stretch;
    flex-direction: column;
  }
  .cta-buttons .btn {
    width: 100%;
  }
  .captcha-row {
    align-items: stretch;
    flex-direction: column;
  }
  .captcha-row input {
    max-width: none;
  }
  .font-library-grid { grid-template-columns: 1fr; }
  .font-library-header h2 {
    font-size: 1.55rem;
  }
  .font-library-card {
    padding: 4px 0 8px;
    min-height: 164px;
  }
  .font-library-image-trigger,
  .font-library-image,
  .font-library-image-fallback {
    width: 100%;
    height: 96px;
    border-radius: 14px;
  }
  .font-library-download {
    min-width: 90px;
    width: auto;
  }
  .font-preview-dialog {
    padding: 14px;
  }
  .font-empty-state {
    padding: 36px 22px;
  }
  .hero-title { font-size: 1.7rem; }
  .hero-buttons { flex-direction: column; }
  .product-actions { flex-direction: column; }
  .product-detail-quick-actions {
    grid-template-columns: 1fr;
  }
  .product-detail-quick-action-btn {
    justify-content: center;
    width: 100%;
  }
  .product-share-list {
    gap: 10px;
  }
  .product-share-btn {
    width: 54px;
    min-width: 54px;
    height: 50px;
  }
  .product-share-btn svg {
    width: 28px;
    height: 28px;
  }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-400); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ===== STARK MENU STYLE HEADER / FOOTER OVERRIDES ===== */
:root {
  --fixed-header-offset: 156px;
  --menu-font: var(--font-body);
}

html {
  scroll-padding-top: var(--fixed-header-offset);
}

body > main {
  padding-top: var(--fixed-header-offset);
}

body > header#header {
  --menu-black: #1B110B;
  --menu-dark: #241710;
  --menu-grey: #3A2619;
  --menu-text: #F5EFEB;
  --menu-muted: #C8BFB5;
  --menu-burgundy: #C9A968;
  --menu-burgundy-light: #F6E8C5;
  --menu-gold: #D4AF37;
  --menu-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 0;
  background:
    radial-gradient(780px 200px at 50% 0%, rgba(201, 169, 104, 0.24), transparent 75%),
    linear-gradient(180deg, #2B1D14 0%, #1D130C 100%);
  border-bottom: 2px solid rgba(201, 169, 104, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: var(--menu-transition);
}

body > header#header.scrolled {
  padding: 0;
  background:
    radial-gradient(720px 180px at 50% 0%, rgba(201, 169, 104, 0.2), transparent 75%),
    linear-gradient(180deg, #241810 0%, #1A100A 100%);
  border-bottom-color: rgba(201, 169, 104, 0.6);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.6);
}

body > header#header .stark-header-top {
  min-height: 50px;
  background: linear-gradient(180deg, #FAFCFE 0%, #FBF6EA 100%);
  border-bottom: 1px solid rgba(138, 106, 46, 0.14);
  color: #2c241a;
  font-family: var(--menu-font);
}

body > header#header .stark-header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: 1900px;
  min-height: 50px;
  margin: 0 auto;
  padding: 0 60px;
}

body > header#header .stark-header-contact,
body > header#header .stark-header-top-nav {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

body > header#header .stark-header-contact a,
body > header#header .stark-header-top-nav a,
body > header#header .stark-header-top-nav > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(44, 36, 26, 0.9);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

body > header#header .stark-header-contact i {
  color: rgba(44, 36, 26, 0.72);
  font-size: 1rem;
}

/* WhatsApp markası glifi telefon glifinden dar çizildiği için optik olarak eşitleniyor */
body > header#header .stark-header-contact .fa-whatsapp {
  font-size: 1.15rem;
}

body > header#header .stark-header-top-nav > span {
  color: rgba(44, 36, 26, 0.48);
}

body > header#header .stark-header-contact a:hover,
body > header#header .stark-header-top-nav a:hover {
  color: var(--accent-dark);
}

body > header#header .stark-header-top .lang-switcher {
  position: relative;
}

body > header#header .stark-header-top .lang-switcher-btn {
  gap: 7px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(44, 36, 26, 0.92);
  font-size: 0.9rem;
  font-weight: 700;
}

body > header#header .stark-header-top .lang-switcher-btn:hover,
body > header#header .stark-header-top .lang-switcher.open .lang-switcher-btn {
  border-color: transparent;
  background: transparent;
  color: var(--accent-dark);
}

body > header#header .stark-header-top .lang-dropdown {
  top: calc(100% + 14px);
  right: 0;
  left: auto;
  border-color: rgba(201, 169, 104, 0.28);
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 18px 40px rgba(18, 11, 5, 0.18);
  transform: translateY(-8px);
}

body > header#header .stark-header-top .lang-switcher.open .lang-dropdown {
  transform: translateY(0);
}

body > header#header .stark-header-top .lang-option {
  color: rgba(44, 36, 26, 0.82);
}

body > header#header .stark-header-top .lang-option:hover,
body > header#header .stark-header-top .lang-option.active {
  background: rgba(201, 169, 104, 0.14);
  color: #0D0D0C;
}

body > header#header .nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1900px;
  margin: 0 auto;
  padding: 12px 60px 14px;
  position: relative;
}

body > header#header.scrolled .nav-container {
  padding-top: 10px;
  padding-bottom: 10px;
}

body > header#header .logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin: 0 clamp(42px, 4vw, 72px);
  position: relative;
  z-index: 1001;
}

body > header#header .logo-img {
  width: auto;
  height: 72px;
  filter: brightness(1.5) drop-shadow(0 0 12px rgba(212, 175, 55, 0.42));
  transition: var(--menu-transition);
}

body > header#header.scrolled .logo-img {
  height: 56px;
}

body > header#header .nav-links {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2vw, 38px);
  flex: 1;
}

body > header#header .nav-left {
  justify-content: flex-end;
  padding-right: 4px;
}

body > header#header .nav-right-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  flex: 1;
}

body > header#header .nav-right {
  justify-content: flex-start;
  flex-shrink: 0;
  padding-left: 4px;
}

body > header#header .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 0;
  padding: 8px 14px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--menu-font);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  line-height: 1.3;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
  transition: var(--menu-transition);
}

body > header#header .nav-link::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 0;
  left: 10px;
  height: 3px;
  background: linear-gradient(90deg, #8A6A2E 0%, #C9A968 48%, #F6E8C5 100%);
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

body > header#header .nav-link:hover,
body > header#header .nav-link.active {
  color: #fff;
  background: transparent;
}

body > header#header .nav-link:hover::after,
body > header#header .nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

body > header#header .nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  position: relative;
  z-index: 1001;
}

body > header#header .search-toggle-btn,
body > header#header .cart-icon-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: var(--menu-text);
  font-size: 17px;
  cursor: pointer;
  transition: var(--menu-transition);
}

body > header#header .search-toggle-btn:hover,
body > header#header .cart-icon-link:hover {
  color: var(--menu-gold);
  background: rgba(212, 175, 55, 0.12);
  transform: scale(1.08);
}

body > header#header .cart-badge {
  position: absolute;
  top: 0;
  right: -2px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  width: auto;
  height: 18px;
  padding: 0 5px;
  border: 2px solid var(--menu-black);
  border-radius: 999px;
  background: var(--menu-burgundy);
  color: #fff;
  font-family: var(--menu-font);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

body > header#header .cart-badge[hidden] {
  display: none !important;
}

body > header#header .auth-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: var(--menu-font);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: var(--menu-transition);
}

body > header#header .auth-btn:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.2);
}

body > header#header .lang-switcher,
body > header#header .nav-item-dropdown {
  position: relative;
  z-index: 1002;
  flex-shrink: 0;
}

body > header#header .nav-item-dropdown {
  position: static;
}

body > header#header .lang-switcher-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--menu-font);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

body > header#header .lang-switcher-btn:hover {
  border-color: var(--menu-burgundy);
  background: rgba(138, 106, 46, 0.15);
}

body > header#header .lang-switcher-btn .fa-globe,
body > header#header .lang-option .fa-check {
  color: var(--menu-gold);
}

body > header#header .lang-arrow,
body > header#header .dropdown-arrow {
  font-size: 0.6rem;
  transition: transform 0.3s ease;
}

body > header#header .lang-switcher.open .lang-arrow,
body > header#header .nav-item-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

body > header#header .lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 2000;
  width: 220px;
  max-width: calc(100vw - 32px);
  padding: 6px;
  border: 1px solid rgba(138, 106, 46, 0.3);
  border-radius: var(--radius-md);
  background: rgba(20, 20, 20, 0.95);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: all 0.25s ease;
}

body > header#header .lang-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

body > header#header .lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--menu-font);
  font-size: 0.85rem;
  font-weight: 500;
}

body > header#header .lang-option:hover,
body > header#header .lang-option.active {
  background: rgba(138, 106, 46, 0.25);
  color: #fff;
}

body > header#header .lang-flag {
  display: inline-flex;
  width: 22px;
  flex: 0 0 22px;
}

body > header#header .lang-flag img {
  width: 20px;
  height: 15px;
  border-radius: 2px;
  object-fit: cover;
}

body > header#header .lang-name {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
}

body > header#header .mega-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  z-index: 9999;
  width: 720px;
  max-width: calc(100vw - 32px);
  margin-top: 0;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 104, 0.28);
  border-radius: 16px;
  background:
    radial-gradient(780px 260px at 48% -80px, rgba(201, 169, 104, 0.16), transparent 72%),
    linear-gradient(180deg, rgba(13, 13, 12, 0.99) 0%, rgba(11, 12, 12, 0.985) 100%);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  pointer-events: auto;
  transform: translateX(-50%);
  transition:
    opacity 0.18s ease 0.28s,
    visibility 0s linear 0.5s;
}

body > header#header .mega-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  width: 96px;
  height: 3px;
  background: linear-gradient(90deg, #8A6A2E 0%, #C9A968 62%, #F6E8C5 100%);
}

body > header#header .mega-menu::after {
  content: "";
  position: absolute;
  inset: 54px 0 auto;
  height: 140px;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 48%, transparent 100%),
    radial-gradient(560px 120px at 50% 100%, rgba(201, 169, 104, 0.06), transparent 72%);
  opacity: 0.85;
}

body > header#header .nav-item-dropdown:hover .mega-menu,
body > header#header .nav-item-dropdown:focus-within .mega-menu,
body > header#header .nav-item-dropdown.active .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s, 0s;
}

body > header#header .mega-menu-categories {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 20px;
}

body > header#header .mega-category-title {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--menu-font);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.2px;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

body > header#header .mega-category-title:hover,
body > header#header .mega-category-title.active {
  border-color: rgba(138, 106, 46, 0.22);
  background: rgba(138, 106, 46, 0.34);
  color: #fff;
}

body > header#header .mega-category-title:hover {
  transform: translateX(2px);
}

body > header#header .mega-category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 169, 104, 0.34);
  border-radius: 10px;
  color: var(--menu-gold);
  background: rgba(18, 18, 17, 0.72);
  font-size: 0.9rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  flex-shrink: 0;
}

body > header#header .mega-arrow {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
}

body > header#header .mega-menu-footer {
  position: relative;
  z-index: 1;
  display: none;
  justify-content: center;
  padding: 0 36px 38px;
  border-top: 0;
}

body > header#header .mega-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--menu-gold);
  font-family: var(--menu-font);
  font-size: 0.86rem;
  font-weight: 700;
}

body > header#header .mobile-menu-btn {
  display: none;
  position: relative;
  z-index: 1002;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 10px;
}

body > header#header .mobile-menu-btn span {
  position: absolute;
  display: block;
  width: 24px;
  height: 2px;
  background: var(--menu-text);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body > header#header .mobile-menu-btn span:nth-child(1) { top: 13px; }
body > header#header .mobile-menu-btn span:nth-child(2) { top: 21px; }
body > header#header .mobile-menu-btn span:nth-child(3) { top: 29px; }
body > header#header .mobile-menu-btn.active span:nth-child(1) { top: 21px; transform: rotate(45deg); }
body > header#header .mobile-menu-btn.active span:nth-child(2) { opacity: 0; transform: translateX(-20px); }
body > header#header .mobile-menu-btn.active span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

body > header#header .mobile-right-links {
  display: none;
}

.search-overlay {
  --menu-gold: #D4AF37;
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15vh;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-overlay.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.search-overlay-inner {
  position: relative;
  width: 90%;
  max-width: 640px;
  transform: translateY(-30px) scale(0.97);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-overlay.active .search-overlay-inner {
  transform: translateY(0) scale(1);
}

.search-close {
  position: absolute;
  top: -60px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background: #2a2a2a;
  color: #b8b8b8;
  font-size: 22px;
  line-height: 1;
  transition: var(--transition);
}

.search-close:hover {
  background: #722f37;
  color: #fff;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid #2a2a2a;
  border-radius: 20px;
  background: rgba(30, 30, 30, 0.95);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

.search-box:focus-within {
  border-color: rgba(138, 106, 46, 0.5);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6), 0 0 0 3px rgba(138, 106, 46, 0.15);
}

.search-box-icon {
  position: absolute;
  left: 22px;
  color: #888;
  font-size: 17px;
}

.search-box input {
  width: 100%;
  padding: 18px 24px 18px 54px;
  border: 0;
  outline: none;
  background: transparent;
  color: #f5f5f5;
  font-family: var(--menu-font);
  font-size: 16px;
}

.search-box input::placeholder {
  color: #888;
}

.search-results {
  display: none;
  width: 100%;
  max-height: min(62vh, 540px);
  margin-top: 14px;
  overflow-y: auto;
  border: 1px solid rgba(138, 106, 46, 0.28);
  border-radius: 16px;
  background: rgba(20, 20, 20, 0.97);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.48);
}

.search-results.active {
  display: block;
}

.search-results-section {
  padding: 10px;
}

.search-results-section + .search-results-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.search-results-title {
  padding: 5px 8px 9px;
  color: var(--menu-gold);
  font-family: var(--menu-font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-result-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding: 8px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.search-result-item:hover {
  background: rgba(138, 106, 46, 0.22);
  color: #fff;
}

.search-result-image,
.search-result-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--menu-gold);
  flex-shrink: 0;
}

.search-result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-result-text {
  min-width: 0;
}

.search-result-text strong,
.search-result-text small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-result-text strong {
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.35;
}

.search-result-text small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  line-height: 1.3;
}

.search-result-price {
  color: var(--menu-gold);
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
}

.search-results-empty {
  padding: 18px;
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
}

.search-all-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin: 0 10px 10px;
  border-radius: 12px;
  background: rgba(138, 106, 46, 0.28);
  color: #fff;
  font-weight: 700;
}

.search-all-link:hover {
  background: rgba(138, 106, 46, 0.48);
}

/* ===== STARK DAVETİYE LUXURY FOOTER STYLES ===== */
.stark-menu-footer {
  --footer-bg: #1A110B;
  --footer-card-bg: #241810;
  --footer-gold: #C9A968;
  --footer-gold-bright: #D4AF37;
  --footer-cream: #E9D8AD;
  --footer-text: #C4BBB0;
  --footer-border: rgba(201, 169, 104, 0.28);
  --footer-border-glow: rgba(201, 169, 104, 0.4);
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
  border-top: 1px solid rgba(201, 169, 104, 0.35);
  background:
    radial-gradient(850px 300px at 15% 0%, rgba(201, 169, 104, 0.24), transparent 72%),
    radial-gradient(850px 300px at 85% 0%, rgba(201, 169, 104, 0.22), transparent 72%),
    radial-gradient(1000px 320px at 50% 100%, rgba(180, 140, 70, 0.18), transparent 78%),
    linear-gradient(180deg, #281B13 0%, #1A110B 55%, #23160E 100%);
  color: var(--footer-text);
  font-family: "Montserrat", var(--font-body);
}

  /* Background side rose graphics */
.stark-menu-footer::before,
.stark-menu-footer::after {
  content: "";
  position: absolute;
    top: 18px;
    width: 300px;
    height: 650px;
  pointer-events: none;
    opacity: 0.2;
  background-repeat: no-repeat;
  background-size: contain;
    background-position: center;
    filter: saturate(0.72) sepia(0.24);
    z-index: 0;
}

.stark-menu-footer::before {
    left: -52px;
    background-image: url("/images/rose-footer.svg");
}

.stark-menu-footer::after {
    right: -52px;
  transform: scaleX(-1);
    background-image: url("/images/rose-footer.svg");
}

.stark-menu-footer .footer-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.stark-menu-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.15fr 1fr 1.4fr;
  gap: 36px;
  margin-bottom: 48px;
  align-items: start;
}

/* Footer Brand */
.stark-menu-footer .footer-brand {
  text-align: center;
}

.stark-menu-footer .footer-brand .logo {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.stark-menu-footer .footer-logo-img {
  height: 140px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.4) drop-shadow(0 0 10px rgba(201, 169, 104, 0.35));
}

.stark-menu-footer .footer-brand p {
  margin: 0 auto 22px;
  max-width: 320px;
  color: var(--footer-text);
  font-size: 0.9rem;
  line-height: 1.75;
  text-align: center;
}

.stark-menu-footer .footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.stark-menu-footer .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201, 169, 104, 0.3);
  border-radius: 50%;
  background: rgba(20, 18, 14, 0.8);
  color: var(--footer-gold);
  font-size: 1.15rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.stark-menu-footer .social-link:hover {
  border-color: var(--footer-gold-bright);
  background: linear-gradient(135deg, #722F37 0%, #C9A968 100%);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(201, 169, 104, 0.35);
}

/* Footer Section Headers */
.stark-menu-footer .footer-title {
  position: relative;
  margin-bottom: 22px;
  color: #C9A968;
  font-family: "Montserrat", var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.3;
  text-transform: uppercase;
}

.stark-menu-footer .footer-title::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 10px;
  background: linear-gradient(90deg, #C9A968, transparent);
}

/* Footer Links */
.stark-menu-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.stark-menu-footer .footer-links li {
  margin-bottom: 12px;
}

.stark-menu-footer .footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--footer-text);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
}

.stark-menu-footer .footer-links a::before {
  display: none !important;
}

.stark-menu-footer .footer-links a i {
    color: rgba(201, 169, 104, 0.62);
    font-size: 0.78rem;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
    opacity: 0.78;
  transition: transform 0.25s ease;
}

.stark-menu-footer .footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.stark-menu-footer .footer-links a:hover i {
  color: var(--footer-cream);
  transform: scale(1.15);
}

/* Newsletter Column */
.stark-menu-footer .footer-newsletter-text {
  margin-bottom: 22px;
  color: var(--footer-text);
  font-size: 0.88rem;
  line-height: 1.7;
}

.stark-menu-footer .newsletter-form .form-group {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(22, 20, 16, 0.9);
  border: 1px solid rgba(201, 169, 104, 0.35);
  border-radius: 50px;
  padding: 4px 4px 4px 18px;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.5);
  transition: border-color 0.3s ease;
}

.stark-menu-footer .newsletter-form .form-group:focus-within {
  border-color: #C9A968;
  box-shadow: 0 0 12px rgba(201, 169, 104, 0.25), inset 0 2px 6px rgba(0,0,0,0.5);
}

.stark-menu-footer .newsletter-form input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: 0;
  color: #ffffff;
  font-size: 0.88rem;
  padding: 8px 10px;
}

.stark-menu-footer .newsletter-form input::placeholder {
  color: #777777;
}

.stark-menu-footer .newsletter-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(135deg, #C9A968 0%, #E9D8AD 100%);
  color: #111110;
  font-size: 1rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(201, 169, 104, 0.3);
}

.stark-menu-footer .newsletter-form button:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(201, 169, 104, 0.45);
}

/* Ornament Divider */
.stark-menu-footer .footer-ornament-divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 36px 0 28px;
}

.stark-menu-footer .footer-ornament-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201, 169, 104, 0.2) 20%, rgba(201, 169, 104, 0.5) 50%, rgba(201, 169, 104, 0.2) 80%, transparent 100%);
}

.stark-menu-footer .footer-ornament-divider span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #0D0B08;
  color: #C9A968;
  font-size: 0.85rem;
}

/* Contact Card Section */
.stark-menu-footer .footer-contact-row {
  margin: 0 0 42px;
  padding: 28px 36px;
  border: 1px solid rgba(201, 169, 104, 0.25);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(22, 19, 15, 0.95) 0%, rgba(14, 12, 10, 0.95) 100%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(201, 169, 104, 0.12);
}

.stark-menu-footer .footer-contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.95fr 1.15fr 0.9fr;
  gap: 0;
  align-items: center;
}

.stark-menu-footer .footer-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  border-right: 1px solid rgba(201, 169, 104, 0.2);
}

.stark-menu-footer .footer-contact-item:first-child {
  padding-left: 0;
}

.stark-menu-footer .footer-contact-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.stark-menu-footer .footer-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 1px solid #C9A968;
  outline: 3px solid rgba(201, 169, 104, 0.12);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(201, 169, 104, 0.12), rgba(16, 14, 11, 0.9));
  color: #C9A968;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.stark-menu-footer .footer-contact-text h4 {
  margin: 0 0 4px;
  color: #C9A968;
  font-family: "Montserrat", var(--font-body);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.stark-menu-footer .footer-contact-text p {
  margin: 0;
  color: var(--footer-text);
  font-size: 0.86rem;
  line-height: 1.5;
}

.stark-menu-footer .footer-contact-text a {
  color: var(--footer-text);
  text-decoration: none;
  transition: color 0.25s ease;
}

.stark-menu-footer .footer-contact-text a:hover {
  color: #ffffff;
}

/* Signature Monogram Crest Divider */
.stark-menu-footer .footer-signature-divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 16px;
  height: 72px;
}

.stark-menu-footer .footer-signature-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201, 169, 104, 0.25) 20%, rgba(201, 169, 104, 0.45) 50%, rgba(201, 169, 104, 0.25) 80%, transparent 100%);
}

.stark-menu-footer .footer-signature-divider .footer-monogram-badge {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(201, 169, 104, 0.45);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, #2A1D14 0%, #120B07 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6), inset 0 0 12px rgba(201, 169, 104, 0.18);
  padding: 6px;
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.stark-menu-footer .footer-signature-divider .footer-monogram-badge:hover {
  transform: scale(1.08);
  border-color: rgba(201, 169, 104, 0.8);
  box-shadow: 0 8px 25px rgba(201, 169, 104, 0.35), inset 0 0 15px rgba(201, 169, 104, 0.3);
}

.stark-menu-footer .footer-monogram-img {
  width: 48px;
  height: 34px;
  object-fit: contain;
  filter: brightness(1.25) drop-shadow(0 0 5px rgba(201, 169, 104, 0.45));
}

/* Footer Bottom Bar */
.stark-menu-footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(201, 169, 104, 0.18);
  font-size: 0.88rem;
  color: #888888;
}

.stark-menu-footer .footer-copyright strong {
  color: #C9A968;
  font-weight: 700;
}

.stark-menu-footer .footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stark-menu-footer .footer-bottom-links a {
  color: #888888;
  text-decoration: none;
  transition: color 0.25s ease;
}

.stark-menu-footer .footer-bottom-links a:hover {
  color: #ffffff;
}

.stark-menu-footer .footer-bottom-sep {
  color: rgba(201, 169, 104, 0.35);
  font-size: 0.8rem;
}

/* Back to Top Floating Button */
.back-to-top {
  position: fixed;
  right: 38px;
  bottom: 104px;
  z-index: 998;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 104, 0.45);
  background: radial-gradient(circle at 50% 40%, #3B261A 0%, #20140D 70%, #150D08 100%);
  color: #C9A968;
  font-size: 1.05rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5), inset 0 0 12px rgba(201, 169, 104, 0.18);
}

.back-to-top.visible,
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  border-color: #C9A968;
  background: radial-gradient(circle at 50% 35%, #4A3021 0%, #281910 70%, #1A100A 100%);
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 8px 22px rgba(201, 169, 104, 0.35);
}

/* Mobile Responsive Footer */
@media (max-width: 1024px) {
  .stark-menu-footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
  .stark-menu-footer .footer-brand {
    grid-column: 1 / -1;
  }
  .stark-menu-footer .footer-contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .stark-menu-footer .footer-contact-item {
    border-right: 0;
    padding: 0;
  }
}

@media (max-width: 640px) {
  .stark-menu-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .stark-menu-footer .footer-contact-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .stark-menu-footer .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .stark-menu-footer .footer-contact-row {
    padding: 20px;
  }
}

.stark-menu-footer .footer-contact-text h4 {
  margin-bottom: 5px;
  color: #c2ab81;
  font-size: 0.84rem;
  letter-spacing: 0.14em;
}

.stark-menu-footer .footer-contact-text p {
  color: var(--footer-text);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.5;
}

.stark-menu-footer .footer-contact-text a {
  color: var(--footer-text);
  overflow-wrap: anywhere;
  word-break: normal;
}

.stark-menu-footer .footer-contact-item:nth-child(3) .footer-contact-text a,
.stark-menu-footer .footer-contact-item:nth-child(4) .footer-contact-text a {
  white-space: nowrap;
  overflow-wrap: normal;
}

.stark-menu-footer .footer-contact-item:first-child .footer-contact-text p {
  max-width: 235px;
}

.stark-menu-footer .footer-signature-divider {
  position: relative;
  display: grid;
  place-items: center;
  height: 76px;
  margin: 0 0 8px;
}

.stark-menu-footer .footer-signature-divider::before {
  content: "";
  position: absolute;
  right: -124px;
  left: -124px;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(216, 189, 117, 0.18), rgba(233, 216, 173, 0.3), rgba(216, 189, 117, 0.18));
}

.stark-menu-footer .footer-signature-divider span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(233, 216, 173, 0.4);
  border-radius: 50%;
  background: linear-gradient(180deg, #2e2517 0%, #171310 100%);
  color: #D8BD75;
  font-family: "Great Vibes", cursive;
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-shadow: 0 0 18px rgba(216, 189, 117, 0.3);
  box-shadow: 0 0 0 8px rgba(233, 216, 173, 0.04), 0 18px 36px rgba(0, 0, 0, 0.22);
}

.stark-menu-footer .footer-bottom {
  position: relative;
  isolation: isolate;
  margin-right: calc(-1 * clamp(42px, 6vw, 124px));
  margin-left: calc(-1 * clamp(42px, 6vw, 124px));
  padding: 24px clamp(42px, 6vw, 124px) 28px;
  border-top: 1px solid rgba(233, 216, 173, 0.22);
}

.stark-menu-footer .footer-bottom::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(500px 120px at 50% 0%, rgba(233, 216, 173, 0.1), transparent 76%),
    linear-gradient(180deg, #342c21 0%, #2C241A 100%);
}

.stark-menu-footer .footer-copyright,
.stark-menu-footer .footer-bottom-links a {
  color: var(--footer-muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.stark-menu-footer .footer-copyright a {
  color: #b4a178;
  font-weight: 900;
}

.stark-menu-footer .footer-bottom-links {
  gap: 34px;
}

.stark-menu-footer .footer-bottom-links a + a {
  position: relative;
}

.stark-menu-footer .footer-bottom-links a + a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -18px;
  width: 1px;
  height: 16px;
  background: rgba(233, 216, 173, 0.28);
  transform: translateY(-50%);
}

@media (max-width: 1500px) and (min-width: 1321px) {
  .stark-menu-footer .footer-container {
    padding-right: 4vw;
    padding-left: 4vw;
  }
}

@media (max-width: 1320px) {
  .stark-menu-footer .footer-container {
    padding: 0 30px;
  }

  .stark-menu-footer .footer-bottom {
    margin-right: -30px;
    margin-left: -30px;
    padding-right: 30px;
    padding-left: 30px;
  }

  .stark-menu-footer .footer-grid {
    grid-template-columns: minmax(260px, 1.3fr) repeat(3, minmax(140px, 0.85fr)) minmax(240px, 1fr);
    gap: 28px;
  }

  .stark-menu-footer .footer-logo-img {
    height: 160px;
  }

  .stark-menu-footer .footer-brand p,
  .stark-menu-footer .footer-newsletter-text,
  .stark-menu-footer .footer-links a {
    font-size: 0.88rem;
  }

  .stark-menu-footer .footer-contact-item {
    gap: 12px;
    padding: 14px 16px;
  }

  .stark-menu-footer .footer-contact-icon {
    width: 44px;
    height: 44px;
    font-size: 0.95rem;
  }
}

@media (max-width: 1280px) {
  :root {
    --fixed-header-offset: 138px;
  }

  body > header#header {
    padding: 0;
  }

  body > header#header.scrolled {
    padding: 0;
  }

  body > header#header .stark-header-top-inner {
    padding: 0 30px;
  }

  body > header#header .nav-container {
    padding: 10px 30px 12px;
  }

  body > header#header.scrolled .nav-container {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  body > header#header .nav-links {
    gap: 14px;
  }

  body > header#header .nav-link {
    padding: 8px 10px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.2px;
  }

  body > header#header .logo {
    margin: 0 26px;
  }

  body > header#header .logo-img {
    height: 64px;
  }
}

@media (max-width: 992px) {
  :root {
    --fixed-header-offset: 79px;
  }

  body > header#header,
  body > header#header.scrolled {
    padding: 0;
  }

  body > header#header .stark-header-top {
    display: none;
  }

  body > header#header .nav-container {
    width: 100%;
    padding: 12px 16px;
    justify-content: space-between;
  }

  body > header#header.scrolled .nav-container {
    padding: 10px 16px;
  }

  body > header#header .logo {
    order: 1;
    margin: 0;
  }

  body > header#header .logo-img {
    height: 55px;
  }

  body > header#header.scrolled .logo-img {
    height: 45px;
  }

  body > header#header .nav-actions {
    order: 2;
    margin-left: auto;
  }

  body > header#header .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100vh;
    padding: 100px 30px 30px;
    overflow-y: auto;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  body > header#header .nav-right {
    display: none;
  }

  body > header#header .nav-left.mobile-open {
    display: flex;
  }

  body > header#header .mobile-right-links {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  body > header#header .nav-link,
  body > header#header .lang-switcher {
    width: 100%;
  }

  body > header#header .nav-link {
    justify-content: flex-start;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  body > header#header .nav-link::after {
    right: 0;
    left: 0;
  }

  body > header#header .lang-switcher {
    margin-bottom: 18px;
  }

  body > header#header .lang-dropdown {
    position: static;
    width: 100%;
    max-width: none;
    margin-top: 10px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  body > header#header .lang-switcher.open .lang-dropdown {
    display: block;
    transform: none;
  }

  body > header#header .mega-menu {
    position: static;
    width: 100%;
    max-width: 100%;
    max-height: 0;
    padding-top: 0;
    overflow: hidden;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: max-height 0.3s ease;
  }

  body > header#header .nav-item-dropdown.active .mega-menu {
    max-height: 430px;
    overflow-y: auto;
  }

  body > header#header .mega-menu-categories {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  body > header#header .mobile-menu-btn {
    display: flex;
    order: 3;
  }

  body > header#header .auth-btn span {
    display: none;
  }

  body > header#header .auth-btn {
    width: 40px;
    padding: 0;
    justify-content: center;
  }

  .stark-menu-footer {
    padding: 70px 0 90px;
  }

  .stark-menu-footer .footer-container {
    padding: 0 30px;
  }

  .stark-menu-footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 30px;
  }

  .stark-menu-footer .footer-bottom {
    margin-right: -30px;
    margin-left: -30px;
    padding-right: 30px;
    padding-left: 30px;
  }

  .stark-menu-footer .footer-brand {
    grid-column: 1 / -1;
  }

  .stark-menu-footer .footer-newsletter-text,
  .stark-menu-footer .newsletter-form {
    max-width: 420px;
    width: 100%;
  }

  .stark-menu-footer .footer-ornament-divider,
  .stark-menu-footer .footer-signature-divider {
    margin-right: 0;
    margin-left: 0;
  }

  .stark-menu-footer .footer-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .stark-menu-footer .footer-contact-item,
  .stark-menu-footer .footer-contact-item:first-child,
  .stark-menu-footer .footer-contact-item:last-child {
    padding: 22px;
    border: 1px solid rgba(201, 169, 104, 0.16);
    border-radius: 12px;
  }

  .stark-menu-footer .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .stark-menu-footer .footer-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  body > header#header .search-toggle-btn,
  body > header#header .cart-icon-link,
  body > header#header .auth-btn {
    width: 36px;
    height: 36px;
  }

  .stark-menu-footer .footer-contact-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .stark-menu-footer .footer-container {
    padding: 0 20px;
  }

  .stark-menu-footer .footer-bottom {
    margin-right: -20px;
    margin-left: -20px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .stark-menu-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    text-align: center;
  }

  .stark-menu-footer .footer-title::after {
    margin-right: auto;
    margin-left: auto;
  }

  .stark-menu-footer .footer-links a {
    justify-content: center;
  }

  .stark-menu-footer .footer-newsletter-text {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .stark-menu-footer .footer-contact-item {
    width: 100%;
    min-width: 0;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .stark-menu-footer .footer-contact-icon {
    width: 46px;
    height: 46px;
    font-size: 1rem;
  }

  .stark-menu-footer .newsletter-form .form-group {
    flex-direction: row;
  }

  .stark-menu-footer .footer-signature-divider::before {
    right: -20px;
    left: -20px;
  }

  .stark-menu-footer .footer-signature-divider span {
    width: 66px;
    height: 66px;
    font-size: 2.5rem;
  }

  .search-overlay {
    padding: 96px 16px 24px;
  }

  .search-overlay-inner {
    width: 100%;
  }

  .search-box input {
    padding-right: 18px;
    font-size: 15px;
  }

  .search-result-item {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .search-result-price {
    grid-column: 2;
    justify-self: start;
    margin-top: -6px;
  }
}
