:root {
  --bg: #f8fafc;
  --bg-soft: #ffffff;
  --bg-elevated: #ffffff;
  --bg-hover: rgba(0, 0, 0, 0.04);
  --bg-dark: #123a5a;
  --bg-dark-hover: #0c2c45;
  --surface-0: #f8fafc;
  --surface-1: #ffffff;
  --surface-2: #ffffff;
  --surface-border: rgba(15, 23, 42, 0.08);
  --text-btn: #ffffff;

  --text: #0f172a;
  --text-secondary: #52606d;
  --text-muted: #8792a0;
  --line: rgba(15, 23, 42, 0.1);
  --accent: #f97316;
  --accent-deep: #ea580c;
  --accent-soft: rgba(249, 115, 22, 0.1);
  --brand: #123a5a;
  --brand-soft: rgba(18, 58, 90, 0.1);
  --radius: 12px;
  --font-heading: "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font: var(--font-body);
  --max: 1160px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card: 0 8px 30px rgba(15, 23, 42, 0.04), 0 2px 8px rgba(15, 23, 42, 0.02);
  --shadow-hover: 0 25px 50px -12px rgba(15, 23, 42, 0.12), 0 10px 24px -6px rgba(15, 23, 42, 0.06);
  --shadow-luxury: 0 30px 60px -10px rgba(15, 23, 42, 0.1), 0 15px 30px -5px rgba(15, 23, 42, 0.05);
  
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
  --card-media-bg: linear-gradient(180deg, #fff, #f8fafc);
}

[data-theme="dark"] {
  --bg: #0b1120;
  --bg-soft: #1e293b;
  --bg-elevated: #334155;
  --bg-hover: rgba(255, 255, 255, 0.06);
  --bg-dark: #e2e8f0;
  --bg-dark-hover: #cbd5e1;
  --surface-0: #0b1120;
  --surface-1: #0f172a;
  --surface-2: #1e293b;
  --surface-border: rgba(255, 255, 255, 0.1);
  --text-btn: #ffffff;

  --text: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --line: rgba(255, 255, 255, 0.08);
  
  --brand: #ffffff;
  --brand-soft: rgba(255, 255, 255, 0.06);
  
  --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 10px 24px -6px rgba(0, 0, 0, 0.5);
  --shadow-luxury: 0 30px 60px -10px rgba(0, 0, 0, 0.8), 0 15px 30px -5px rgba(0, 0, 0, 0.6);
  
  --glass-bg: rgba(30, 41, 59, 0.7);
  --glass-border: rgba(255, 255, 255, 0.08);
  --card-media-bg: linear-gradient(180deg, #1e293b, #0f172a);
}

.theme-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: none;
  margin-left: auto;
  margin-right: 20px;
  display: flex;
  align-items: center;
}

.theme-toggle__track {
  width: 52px;
  height: 28px;
  border-radius: 999px;
  background: var(--bg-hover);
  position: relative;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(18, 58, 90, 0.05);
}

[data-theme="dark"] .theme-toggle__track {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.2), 0 0 12px rgba(255, 255, 255, 0.05);
}

.theme-toggle__thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg-elevated) ;
  box-shadow: 0 2px 8px rgba(18, 58, 90, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

[data-theme="dark"] .theme-toggle__thumb {
  transform: translateX(24px);
  background: #1e293b;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.theme-toggle:hover .theme-toggle__thumb {
  box-shadow: 0 4px 12px rgba(18, 58, 90, 0.2);
}

[data-theme="dark"] .theme-toggle:hover .theme-toggle__thumb {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.theme-icon-sun, .theme-icon-moon {
  position: absolute;
  width: 12px;
  height: 12px;
  transition: opacity 0.4s var(--ease), transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.theme-icon-sun {
  color: #f59e0b;
  opacity: 1;
  transform: rotate(0);
}

.theme-icon-moon {
  color: #e2e8f0;
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
}

[data-theme="dark"] .theme-icon-sun {
  opacity: 0;
  transform: rotate(90deg) scale(0.5);
}

[data-theme="dark"] .theme-icon-moon {
  opacity: 1;
  transform: rotate(0);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  height: 100%;
  background: var(--bg);
  transition: background-color 0.4s var(--ease);
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--font);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease);
  animation: luxuryPageReveal 1s var(--ease) forwards;
}

@keyframes luxuryPageReveal {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-glow {
  display: none;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(6px);
  transition: opacity 1s var(--ease), transform 1s var(--ease), filter 1s var(--ease);
}
.reveal.active {
  opacity: 1;
  transform: none;
  filter: blur(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-load {
  opacity: 0;
  animation: fadeInUp 1s var(--ease) forwards;
}
.animate-delay-1 { animation-delay: 0.15s; }
.animate-delay-2 { animation-delay: 0.3s; }
.animate-delay-3 { animation-delay: 0.45s; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

main, header, footer { position: relative; z-index: 1; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Header */
.site-header {
  position: relative;
  z-index: 200;
  background: var(--glass-bg);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(18, 58, 90, 0.08);
  backdrop-filter: blur(24px) saturate(180%);
  transition: backdrop-filter 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand { display: inline-flex; align-items: center; gap: 12px; }

.brand-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 10px;
  object-fit: contain;
  background: var(--bg-elevated) ;
  padding: 5px;
  box-shadow: 0 6px 18px rgba(18, 58, 90, 0.12);
}

.brand-mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--accent-deep), var(--accent));
  color: #fffaf4;
  font-size: 15px;
  font-weight: 700;
}

.brand-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--brand);
}

.brand-text small {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--text-secondary);
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.nav-links a:hover { color: var(--brand); background: var(--bg-hover); transform: translateY(-1px); }

.nav-links a.active {
  color: var(--accent);
  font-weight: 600;
  background: var(--bg-soft);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 0.3s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: translateX(-50%) scaleX(1);
}
.nav-links a[href="#care"] { font-weight: 600; }
.nav-store { font-weight: 600; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--brand);
  cursor: pointer;
  padding: 8px;
}

.nav-links a.nav-admin {
  display: none;
}

/* Hero */
.hero {
  width: 100%;
  margin: 0;
  background: var(--surface-0);
  padding: 72px max(28px, calc((100vw - var(--max)) / 2 + 28px)) 88px;
  display: flex;
  align-items: flex-end;
  position: relative;
  min-height: min(820px, 86vh);
  overflow: hidden;
  color: #fff;
  background: #17212b;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image, url("tarkan-hero-room.jpeg"));
  background-size: cover;
  background-position: center 55%;
  transform: scale(1.01);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 10, 14, 0.82) 0%, rgba(5, 10, 14, 0.54) 38%, rgba(5, 10, 14, 0.16) 72%),
    linear-gradient(180deg, rgba(5, 10, 14, 0.08) 0%, rgba(5, 10, 14, 0.42) 100%);
}

.orb {
  display: block;
  position: absolute;
  border-radius: 50%;
  filter: blur(0.6px);
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.86;
  animation: float 12s ease-in-out infinite;
}

.orb-a {
  width: 320px; height: 320px;
  background: radial-gradient(circle at 30% 30%, rgba(249, 115, 22, 0.28), rgba(18, 58, 90, 0.06));
  top: -80px; right: 10%;
  animation-delay: 0s;
}

.orb-b {
  width: 210px; height: 210px;
  background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.22), rgba(18, 58, 90, 0.08));
  bottom: 20%; left: -40px;
  opacity: 0.45;
  animation-delay: 2s;
}

.orb-c {
  width: 140px; height: 140px;
  background: radial-gradient(circle at 50% 50%, rgba(230, 213, 188, 0.48), rgba(18, 58, 90, 0.06));
  top: 40%; right: 30%;
  opacity: 0.35;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, 20px, 0) scale(1.02); }
}

.reviews-container {
  margin: 0 auto;
  max-width: 980px;
  padding: 48px 28px;
}

.reviews-inner {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 32px;
}

.reviews-inner h2 {
  margin: 0 0 20px;
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1.15;
}

.review-card {
  padding: 24px;
  border-radius: 18px;
  background: var(--bg);
  border: 1px solid rgba(22, 34, 55, 0.08);
  box-shadow: 0 14px 30px rgba(18, 58, 90, 0.06);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.star-rating {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: #f59e0b;
}

.rating-count {
  color: #16a34a;
  font-weight: 700;
  white-space: nowrap;
}

.card-body {
  min-height: 100px;
  padding: 18px;
  border-radius: 16px;
  background: #f8fafc;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.8;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 0 0 18px;
}

.eyebrow {
  margin: 0 0 20px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fed7aa;
}

.hero h1 {
  margin: 0 0 20px;
  font-family: var(--font-heading);
  font-size: clamp(44px, 6.5vw, 72px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(125deg, var(--accent), var(--accent-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  margin: 0;
  max-width: 420px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-stats strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0;
  color: #fff;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.hero-stats span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-education {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.hero-education__item {
  padding: 22px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-education__item strong {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  color: #fff;
}

.hero-education__item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.7;
}

.brand-story {
  padding: 0 28px 48px;
}

.brand-story__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 26px;
}

.brand-story__intro h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--brand);
}

.brand-story__intro p {
  margin: 0;
  max-width: 640px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.brand-story__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.brand-story__grid article {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.brand-story__grid article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover), 0 0 0 2px var(--accent-soft);
  border-color: rgba(249, 115, 22, 0.3);
}

.brand-story__grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--brand);
}

.brand-story__grid p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

.founder-profile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
  padding: 48px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.founder-profile__image-col {
  display: flex;
  justify-content: center;
}

.founder-image-wrapper {
  position: relative;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.2);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s var(--ease);
}

.founder-image-wrapper:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.35);
}

.founder-img {
  display: block;
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--bg-elevated);
  background: var(--bg);
}

.founder-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--brand);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 3px solid var(--bg-elevated);
  box-shadow: 0 4px 12px rgba(18, 58, 90, 0.2);
}

[data-theme="dark"] .founder-badge {
  color: var(--bg);
}

.founder-profile__content-col h3 {
  margin: 0 0 16px;
  font-size: 26px;
  color: var(--brand);
  font-family: var(--font-heading);
}

.founder-profile__content-col p {
  margin: 0 0 16px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.founder-signature {
  margin-top: 24px;
  font-family: "Great Vibes", "Brush Script MT", "Apple Chancery", "Snell Roundhand", cursive;
  font-size: 42px;
  color: var(--accent);
  line-height: 1;
  opacity: 0.9;
}

.faq-section {
  padding: 0 28px 48px;
  background: var(--surface-1);
  scroll-margin-top: 80px;
}

.faq-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 0;
}

.faq-intro h2 {
  margin: 0 0 10px;
  font-size: 32px;
  line-height: 1.1;
  color: var(--brand);
}

.faq-intro p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.75;
}

.faq-grid {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--surface-2);
  border: 1px solid var(--surface-border);
  border-radius: calc(var(--radius) * 1.2);
  overflow: hidden;
  transition: transform 0.28s var(--ease), border-color 0.28s ease, background 0.28s ease;
}

.faq-item:hover {
  background: var(--bg-hover);
  transform: translateY(-1px);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 15px;
  font-weight: 700;
  color: var(--brand);
}

.faq-item summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(18, 58, 90, 0.16);
  color: var(--brand);
  background: var(--glass-bg);
  font-weight: 800;
  transform: rotate(0deg);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  background: var(--bg-hover);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.33s var(--ease), opacity 0.33s var(--ease);
}

.faq-item[open] p {
  max-height: 520px;
  opacity: 1;
}

.why-tarkan-drawer {
  padding: 0 28px 44px;
  background: var(--glass-bg);
}

.why-tarkan-drawer__shell {
  max-width: var(--max);
  margin: 0 auto;
}

.why-tarkan-drawer__details {
  background: var(--glass-bg);
  border: 1px solid rgba(18, 58, 90, 0.12);
  border-radius: calc(var(--radius) * 1.2);
  padding: 1px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(18, 58, 90, 0.07);
}

.why-tarkan-drawer__summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 28px 24px;
  font-size: 18px;
  border-bottom: 1px solid rgba(18, 58, 90, 0.08);
  color: var(--brand);
}

.why-tarkan-drawer__summary .eyebrow {
  margin: 0 0 6px;
  color: var(--accent-deep);
}

.why-tarkan-drawer__summary h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.why-tarkan-drawer__icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-hover);
  position: relative;
}

.why-tarkan-drawer__icon::before,
.why-tarkan-drawer__icon::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  background: var(--brand);
  border-radius: 999px;
}

.why-tarkan-drawer__icon::before {
  transform: rotate(0deg);
}

.why-tarkan-drawer__icon::after {
  transform: rotate(90deg);
}

.why-tarkan-drawer__details[open] .why-tarkan-drawer__icon {
  transform: rotate(180deg);
  background: rgba(18, 58, 90, 0.12);
}

.why-tarkan-drawer__content {
  display: grid;
  gap: 18px;
  padding: 28px 24px 30px;
}

.why-tarkan-drawer__content article {
  background: var(--bg-soft);
  border-radius: calc(var(--radius) * 1.1);
  padding: 20px;
  transition: background 0.25s ease;
}

.why-tarkan-drawer__content article:hover {
  background: var(--bg-hover);
}

.why-tarkan-drawer__content strong {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--brand);
}

.why-tarkan-drawer__content p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
}

.dialog-education {
  display: grid;
  gap: 18px;
  margin-bottom: 22px;
}

.dialog-edu-section {
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--line);
}

.dialog-edu-section h3 {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--brand);
}

.customer-review__tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-deep);
  background: rgba(249, 115, 22, 0.12);
}

.footer-transparency p {
  margin: 0 0 10px;
}

.trust-strip {
  padding: 0 28px;
  transform: translateY(-34px);
  margin-bottom: -8px;
  position: relative;
  z-index: 3;
}

.trust-strip__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--line);
  box-shadow: var(--shadow-card);
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: 104px;
  padding: 24px 22px;
  background: var(--bg-elevated);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-item:hover {
  background: var(--bg-soft);
  transform: translateY(-4px);
  z-index: 1;
  position: relative;
  box-shadow: 0 16px 40px rgba(18, 58, 90, 0.15), 0 0 0 1px var(--accent-soft);
}

.trust-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.3s ease;
}

.trust-item:hover .trust-icon {
  transform: scale(1.1);
  color: var(--accent-deep);
}

.trust-content {
  flex: 1;
}

.trust-content strong {
  display: block;
  margin-bottom: 6px;
  color: var(--brand);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
}

.trust-content span {
  display: block;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-height: 430px;
}

.hero-photo {
  min-height: 0;
  margin: 0;
  aspect-ratio: 11 / 6;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(18, 58, 90, 0.16);
  box-shadow: var(--shadow-card);
  background: var(--bg-elevated);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-room {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.86), rgba(244,246,248,0.96)),
    linear-gradient(145deg, #e9eef3, #ffffff 62%, #dce3ea);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
}

.room-wall {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 50%, rgba(18,58,90,0.05) 50% 51%, transparent 51%),
    linear-gradient(0deg, #d8dee5 0 24%, transparent 24%);
}

.room-window {
  position: absolute;
  width: 118px;
  height: 92px;
  top: 34px;
  right: 42px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--bg-soft), var(--bg-elevated));
  border: 8px solid #fff;
  box-shadow: inset 0 0 0 1px rgba(18,58,90,0.12), 0 14px 28px rgba(18,58,90,0.08);
}

.room-shelf {
  position: absolute;
  width: 132px;
  height: 10px;
  top: 150px;
  right: 32px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow:
    -24px 26px 0 -2px #fff,
    24px 26px 0 -2px #fff,
    0 64px 0 -2px #fff;
}

.room-product {
  position: absolute;
  display: block;
  border-radius: var(--radius);
  background: var(--bg-elevated) ;
  border: 1px solid rgba(18,58,90,0.12);
  box-shadow: 0 18px 34px rgba(18,58,90,0.13);
  overflow: hidden;
}

.room-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.room-product--mat {
  width: 52%;
  height: 34%;
  left: 7%;
  bottom: 6%;
  transform: perspective(500px) rotateX(58deg) rotateZ(-3deg);
  transform-origin: bottom center;
  box-shadow: 0 30px 36px rgba(18,58,90,0.1);
}

.room-product--desk {
  width: 36%;
  height: 30%;
  right: 10%;
  bottom: 21%;
}

.room-product--cooler {
  width: 21%;
  height: 17%;
  right: 25%;
  bottom: 38%;
  z-index: 3;
}

.room-product--table {
  width: 20%;
  height: 26%;
  left: 9%;
  bottom: 27%;
}

.room-product--organizer {
  width: 18%;
  height: 19%;
  right: 5%;
  bottom: 48%;
}

.room-product--stand {
  width: 18%;
  height: 18%;
  left: 34%;
  top: 20%;
}

.room-person {
  position: absolute;
  z-index: 5;
  pointer-events: none;
}

.room-person::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #c98f63;
  box-shadow: inset -6px -8px 0 rgba(0,0,0,0.08);
}

.room-person span {
  position: absolute;
  display: block;
  border-radius: 18px 18px 8px 8px;
  background: var(--brand);
}

.room-person--adult {
  width: 64px;
  height: 130px;
  right: 8%;
  bottom: 16%;
}

.room-person--adult::before {
  width: 28px;
  height: 28px;
  top: 0;
  left: 18px;
}

.room-person--adult span {
  width: 42px;
  height: 76px;
  top: 31px;
  left: 11px;
}

.room-person--adult span::after {
  content: "";
  position: absolute;
  width: 58px;
  height: 14px;
  left: -6px;
  bottom: -24px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 20px 18px 0 -1px var(--accent);
}

.room-person--baby {
  width: 48px;
  height: 68px;
  left: 28%;
  bottom: 15%;
}

.room-person--baby::before {
  width: 24px;
  height: 24px;
  top: 0;
  left: 12px;
}

.room-person--baby span {
  width: 34px;
  height: 36px;
  top: 28px;
  left: 7px;
  background: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(125deg, var(--accent), var(--accent-deep));
  color: #fff;
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.24), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  transition: all 0.5s ease;
}

.btn-primary:hover::after {
  left: 150%;
}

.btn-primary:hover {
  background: linear-gradient(125deg, var(--accent), #d95b11);
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.btn-amazon {
  padding: 0 18px;
  min-height: 46px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.24), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.btn-amazon:hover {
  background: var(--accent-deep);
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.btn-glass, .btn-secondary {
  background: var(--surface-2);
  border: 1px solid var(--surface-border);
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-glass:hover, .btn-secondary:hover { background: var(--bg-soft); box-shadow: 0 8px 20px rgba(18, 58, 90, 0.08); }

.care-banner__cta {
  gap: 10px;
}

.care-banner__cta svg {
  transition: transform 0.25s var(--ease);
}

.care-banner__cta:hover svg {
  transform: translateY(3px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-ghost:hover { background: var(--bg-elevated); }

.btn-sm { min-height: 38px; padding: 0 16px; font-size: 13px; }

/* Customer care banner — above footer */
.care-banner {
  padding: 0 28px 0;
  scroll-margin-top: 80px;
}

.care-banner__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 40px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
}

.care-banner__copy {
  max-width: 420px;
}

.care-banner h2 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.15;
  color: var(--brand);
}

.care-banner__lead {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.care-banner__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.care-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 18px;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.2s;
}

.care-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover), 0 0 0 1px var(--accent-soft);
  border-color: rgba(249, 115, 22, 0.35);
}

.care-card__icon {
  display: flex;
  color: var(--accent);
  margin-bottom: 4px;
}

.care-card strong {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.care-card span {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.care-card--instagram {
  background: linear-gradient(135deg, rgba(253, 218, 117, 0.08), rgba(249, 115, 22, 0.08), rgba(217, 46, 127, 0.08));
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.care-card--instagram:hover {
  background: linear-gradient(135deg, rgba(253, 218, 117, 0.12), rgba(249, 115, 22, 0.12), rgba(217, 46, 127, 0.12));
  border-color: rgba(249, 115, 22, 0.5);
}

.care-card__icon--instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: -4px 0 4px -4px;
  padding: 8px;
  border-radius: 10px;
  background: var(--glass-bg);
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.15);
}

/* Catalog */
.catalog {
  padding: 0 28px 72px;
  background-image: radial-gradient(var(--line) 1px, transparent 1px);
  background-size: 24px 24px;
}

.catalog-shell {
  max-width: var(--max);
  margin: 0 auto;
  background: var(--bg-elevated);
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  padding: 40px 36px 48px;
}

.catalog-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.catalog-intro h2 {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--brand);
}

.catalog-intro p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
}

.store-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  box-shadow: 0 0 0 0 rgba(18, 58, 90, 0.4);
  animation: pulse-brand 2.5s infinite;
}

@keyframes pulse-brand {
  0% { box-shadow: 0 0 0 0 rgba(18, 58, 90, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(18, 58, 90, 0); }
  100% { box-shadow: 0 0 0 0 rgba(18, 58, 90, 0); }
}

.store-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(18, 58, 90, 0.2);
  animation: none;
}

.toolbar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 8px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 120;
  padding: 16px 0 18px;
  background: var(--glass-bg);
  border-bottom: 1px solid rgba(18, 58, 90, 0.08);
  backdrop-filter: blur(12px);
}

.search-field { position: relative; max-width: 100%; }

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.search-field input {
  width: 100%;
  min-height: 48px;
  padding: 0 18px 0 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

/* Category filters — bold labels */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter {
  min-height: 40px;
  padding: 0 18px;
  
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.filter:hover {
  border-color: rgba(0, 0, 0, 0.15);
  color: var(--text);
}

@media (hover: hover) and (pointer: fine) {
  .filter:hover {
    background: var(--brand);
    color: var(--bg);
    border-color: var(--brand);
  }
}

.filter.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  font-weight: 700;
}

.filter[data-section="Home Organizers"].active,
.filter[data-section="Baby Safety"].active,
.filter[data-section="Stands & Mounts"].active,
.filter[data-section="Laptop Desks"].active,
.filter[data-section="Laptop Accessories"].active,
.filter[data-section="Office Supplies"].active { background: var(--brand); border-color: var(--brand); }

.catalog-meta {
  margin: 16px 0 28px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.featured-picks {
  margin: 26px 0 34px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, #f8fafc);
}

.featured-picks__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.featured-picks__head .eyebrow {
  margin-bottom: 6px;
  color: var(--accent);
}

.featured-picks__head h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--brand);
}

.featured-picks__head span {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
}

.featured-picks__grid,
.product-list,
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* Section blocks — bold category titles */
.store-section {
  margin-bottom: 56px;
}

.store-section:last-child { margin-bottom: 0; }

.store-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--brand-soft);
}

.store-section__head h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--brand);
}

.store-section__head span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  width: 100%;
  min-width: 0;
}

.product-card__media img {
  display: block;
  width: 100%;
  height: auto;
}

/* Cards */
.product-card {
  display: flex;
  background: var(--surface-2);
  border: 1px solid var(--surface-border);
  flex-direction: column;
  min-height: 100%;
  background: var(--bg-elevated);
  border-radius: calc(var(--radius) * 1.5);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.4s var(--ease);
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: calc(var(--radius) * 1.5);
  padding: 1px;
  background: linear-gradient(135deg, var(--glass-border), rgba(255,255,255,0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(249, 115, 22, 0.35);
  z-index: 10;
}

.product-card:hover .product-card__media img {
  transform: scale(1.06);
}

.product-card__media {
  display: block;
  position: relative;
  aspect-ratio: 1;
  padding: 22px;
  background: var(--card-media-bg);
  border-bottom: 1px solid rgba(18, 58, 90, 0.08);
  overflow: hidden;
}

.product-card__luxury-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--brand), var(--bg-dark-hover));
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(18, 58, 90, 0.2);
  backdrop-filter: blur(4px);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s var(--ease);
}

.product-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px 16px 18px;
}

.product-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.cat-badge {
  display: inline-block;
  padding: 0;
  border-radius: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  text-decoration: none;
}

.cat-badge--button {
  appearance: none;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.cat-badge--button:hover,
.cat-badge--button:focus-visible {
  box-shadow: 0 0 0 2px rgba(18, 58, 90, 0.18);
}

.cat-badge--home-organizers,
.cat-badge--baby-safety,
.cat-badge--stands-mounts,
.cat-badge--laptop-desks,
.cat-badge--laptop-accessories,
.cat-badge--office-supplies { background: transparent; color: var(--brand); }

.product-card__stars {
  font-size: 13px;
  color: #f59e0b;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.product-card__trust {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(22, 128, 60, 0.05);
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(22, 128, 60, 0.1);
}

.product-card__rating-text {
  font-size: 11px;
  font-weight: 600;
  color: #16803c;
}

.product-card__title {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
  display: -webkit-box;
  min-height: 38px;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__commerce {
  display: flex;
  align-items: baseline;
  margin: 0 0 10px;
}

.product-card__price {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
}

.product-card__desc {
  margin: 0 0 10px;
  flex: 1;
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-secondary);
  display: -webkit-box;
  min-height: 34px;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.product-card__reviews {
  grid-column: 1 / -1;
}

.empty-state {
  padding: 56px 24px;
  text-align: center;
  color: var(--text-secondary);
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px dashed var(--line);
}

/* Dialog */
.product-dialog {
  width: min(900px, calc(100vw - 32px));
  max-height: min(88vh, 700px);
  margin: auto;
  padding: 0;
  border: none;
  border-radius: 12px;
  background: var(--bg-elevated);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
}

.product-dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--bg);
  font-size: 22px;
  cursor: pointer;
  color: var(--text-secondary);
}

.dialog-body {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  max-height: min(88vh, 700px);
  overflow: auto;
}

.dialog-media {
  position: relative;
  padding: 40px;
  background: var(--card-media-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dialog-media img,
.dialog-media video,
.dialog-media iframe {
  max-height: 360px;
  width: 100%;
  object-fit: contain;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
  z-index: 10;
}

.carousel-arrow:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.prev-arrow {
  left: 10px;
}

.next-arrow {
  right: 10px;
}

.dialog-content {
  padding: 40px 42px 40px 18px;
  position: relative;
}

.dialog-content--wide {
  grid-column: 1 / -1;
  padding: 36px 40px;
}

.dialog-content .cat-badge { margin-bottom: 12px; }

.dialog-content h2 {
  margin: 0 0 12px;
  padding-right: 32px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: var(--brand);
}

.dialog-price {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.dialog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.dialog-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 700;
}

.dialog-desc {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.review-summary-card {
  margin: 0 0 18px;
  padding: 20px 22px;
  border-radius: 18px;
  background: rgba(250, 235, 210, 0.28);
  border: 1px solid rgba(210, 175, 120, 0.28);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.7);
}

.review-summary-card h3 {
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--brand);
}

.review-summary-card h3::before {
  content: "“";
  font-size: 24px;
  color: rgba(198, 126, 33, 0.9);
  line-height: 1;
}

.review-summary-card p {
  margin: 0;
  color: #4b3a20;
  font-size: 14px;
  line-height: 1.8;
  font-style: italic;
}

.about-item {
  margin: 0 0 18px;
}

.about-item h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: bold;
  color: var(--text);
}

.amazon-style-list {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.amazon-style-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}

.amazon-style-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ff8f00;
  font-size: 18px;
  top: -2px;
}

.amazon-style-list li strong {
  color: var(--text);
}

.detail-list {
  display: grid;
  gap: 9px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.detail-list li {
  position: relative;
  padding-left: 18px;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.review-box {
  margin-bottom: 22px;
  padding: 14px 16px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  font-size: 13px;
}

.review-box strong { display: block; margin-bottom: 4px; font-weight: 700; }
.review-box p { margin: 0; color: var(--text-secondary); }

.customer-review-list {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.customer-review {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}

.customer-review__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

.customer-review strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--brand);
}

.customer-review p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.empty-state--compact {
  padding: 24px 18px;
  margin-bottom: 22px;
}

.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Premium Global Footer */
.global-footer {
  background: var(--bg-elevated);
  border-top: 1px solid rgba(0,0,0,0.05);
  padding: 64px 20px 24px;
  color: var(--text-secondary);
  font-family: var(--font-base);
}

[data-theme="dark"] .global-footer {
  border-top-color: rgba(255,255,255,0.05);
}

.global-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.global-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.brand-widget p {
  margin-bottom: 12px;
}

.brand-widget p:first-of-type {
  font-weight: 600;
  color: var(--text-primary);
}

.footer-widget h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-brand-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand-info img {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.footer-brand-info strong {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--text-primary);
}

.footer-widget p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--text-secondary);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--text-secondary);
  transition: all 0.3s var(--ease);
}

.footer-social-link:hover {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a, .contact-info span {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  transition: transform 0.3s var(--ease), color 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--brand);
  transform: translateX(4px);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin: 0 0 24px;
}

[data-theme="dark"] .footer-divider {
  border-top-color: rgba(255,255,255,0.08);
}

.global-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .global-footer__bottom {
    flex-direction: row;
    text-align: left;
  }
}

.footer-copyright {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-copyright p {
  margin: 4px 0;
}

@media (max-width: 900px) {
  .hero {
    min-height: 78vh;
    padding-top: 56px;
    background-position: center;
  }
  .care-banner__inner {
    grid-template-columns: 1fr;
    padding: 36px 28px;
  }
  .care-banner__cards {
    grid-template-columns: 1fr;
  }
  .trust-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .catalog-shell { padding: 28px 20px 36px; }
  .featured-picks__head {
    align-items: flex-start;
    flex-direction: column;
  }
  .featured-picks__head span {
    white-space: normal;
  }
  .dialog-body { grid-template-columns: 1fr; }
  .dialog-content { padding: 24px; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* Admin login overlay */
#loginOverlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: rgba(18, 58, 90, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 28px;
}

#loginOverlayInner {
  width: min(520px, 100%);
  max-width: 520px;
  padding: 36px 32px;
  border-radius: 26px;
  background: var(--glass-bg);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.72);
  text-align: center;
}

#loginOverlayInner h2 {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--brand);
}

#loginOverlayInner p {
  margin: 0 0 28px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

#loginOverlay input[type="password"] {
  width: 100%;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(18, 58, 90, 0.14);
  background: var(--bg-elevated);
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

#loginOverlay input[type="password"]:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
  transform: translateY(-1px);
}

#loginOverlay button {
  margin-top: 20px;
  width: 100%;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 16px;
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 16px 32px rgba(249, 115, 22, 0.26);
  cursor: pointer;
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), background 0.24s ease;
}

#loginOverlay button:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--accent-deep), #d95b11);
  box-shadow: 0 22px 42px rgba(249, 115, 22, 0.32);
}

#loginOverlay button:active {
  transform: scale(0.99);
}

.fade-out {
  opacity: 0;
  transition: opacity 0.4s ease;
}

#magicImportUrl {
  width: 100%;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 18px;
  border: 1px solid rgba(18, 58, 90, 0.16);
  background: var(--bg-elevated);
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

#magicImportUrl:focus {
  border-color: var(--brand);
  background: var(--bg-elevated) ;
  box-shadow: 0 0 0 4px rgba(18, 58, 90, 0.12);
}

#magicImportUrl::placeholder {
  color: rgba(18, 58, 90, 0.5);
}

@media (max-width: 600px) {
  .nav { padding: 12px 18px; }
  .care-banner { padding: 0 16px; }
  .catalog { padding: 0 16px 48px; }
  .hero {
    min-height: 80vh;
    background: var(--surface-0);
  padding: 42px 18px 48px;
  }
  .hero h1 {
    font-size: clamp(38px, 12vw, 50px);
  }
  .hero-lead {
    font-size: 15px;
  }
  .hero::before { background-position: 58% center; }
  .hero::after {
    background:
      linear-gradient(90deg, rgba(5, 10, 14, 0.76) 0%, rgba(5, 10, 14, 0.48) 55%, rgba(5, 10, 14, 0.18) 100%),
      linear-gradient(180deg, rgba(5, 10, 14, 0.08) 0%, rgba(5, 10, 14, 0.58) 100%);
  }
  .hero-stats { gap: 20px; }
  .trust-strip {
    padding: 0 16px;
    transform: translateY(-24px);
  }
  .trust-strip__inner {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .trust-strip__inner div {
    flex: 0 0 85%;
    scroll-snap-align: start;
    min-height: auto;
    padding: 16px;
  }
  .toolbar {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 50;
    margin: 0 -20px 8px;
    padding: 12px 20px;
    background: var(--glass-bg);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
  }
  .featured-picks {
    padding: 18px;
  }
  .featured-picks__grid,
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .product-card__actions { grid-template-columns: 1fr; }
  .footer-blocks { grid-template-columns: 1fr; }
  .filters { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; }
  .hero-education,
  .brand-story__grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .hero-education__item {
    padding: 18px 16px;
  }
  .dialog-content--wide {
    padding: 24px;
  }
  .store-section__head h3 { font-size: 20px; }
}

/* --- About Us Page --- */

.text-center { text-align: center; }

.about-hero {
  padding: 80px 28px 60px;
  background: radial-gradient(circle at 50% 0%, var(--accent-soft), transparent 50%), var(--bg);
  text-align: center;
}

.about-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  margin: 0 0 20px;
  color: var(--brand);
  font-family: var(--font-heading);
}

.about-hero-lead {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.tarkan-story-section {
  padding: 60px 28px;
}

.tarkan-story__inner {
  max-width: var(--max);
  margin: 0 auto;
  background: var(--bg-elevated);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.tarkan-story__text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.tarkan-story__text p:last-child {
  margin-bottom: 0;
}

.story-eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 24px;
  margin-bottom: 8px !important;
}

/* Default Desktop - Everything visible */
.btn-read-more {
  display: none;
}
.read-more-content {
  display: block;
}

.section-title {
  font-size: 32px;
  color: var(--brand);
  margin-bottom: 30px;
  font-family: var(--font-heading);
}

.mission-section {
  padding: 60px 28px;
}

.mission__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mission-card {
  background: var(--bg-elevated);
  padding: 32px;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.mission-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.mission-card h3 {
  font-size: 20px;
  color: var(--brand);
  margin-bottom: 12px;
}

.mission-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.why-choose-section {
  padding: 60px 28px;
  background: var(--bg-soft);
}

.why-choose__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.why-choose-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-choose-list li {
  display: flex;
  gap: 16px;
  background: var(--bg-elevated);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.check-icon {
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.why-choose-list strong {
  display: block;
  font-size: 16px;
  color: var(--brand);
  margin-bottom: 6px;
}

.why-choose-list span {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.timeline-section {
  padding: 80px 28px;
}

.timeline__inner {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-container {
  position: relative;
  padding-left: 40px;
  margin-top: 40px;
}

.timeline-track {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  width: 2px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -32px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--accent-soft);
}

.timeline-content {
  background: var(--bg-elevated);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.timeline-date {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: block;
}

.timeline-content h3 {
  font-size: 20px;
  color: var(--brand);
  margin-bottom: 8px;
}

.timeline-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.stats-section {
  padding: 60px 28px;
  background: var(--brand);
  color: #fff;
  text-align: center;
}

.stats__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.stat-card {
  padding: 24px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--accent);
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.9;
}

.connect-section {
  padding: 80px 28px;
}

.connect__inner {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-elevated);
  padding: 48px;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.connect__inner h2 {
  font-size: 28px;
  color: var(--brand);
  margin-bottom: 16px;
  font-family: var(--font-heading);
}

.connect__inner p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 16px;
}

.connect-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

@media (max-width: 1024px) {
  .featured-picks__grid,
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .mission-grid,
  .why-choose-list,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .connect-actions {
    flex-direction: column;
  }
  
  /* Mobile Read More Transitions */
  .read-more-wrapper {
    display: flex;
    flex-direction: column;
  }
  
  .read-more-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s var(--ease);
  }
  
  .read-more-content > * {
    overflow: hidden;
  }
  
  .read-more-wrapper.is-expanded .read-more-content {
    grid-template-rows: 1fr;
  }

  .btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    background: transparent;
    border: none;
    color: var(--accent);
    font-size: 15px;
    font-weight: 600;
    padding: 8px 0;
    cursor: pointer;
    align-self: center; /* Center on founder profile */
  }

  .btn-read-more svg {
    transition: transform 0.3s var(--ease);
  }

  .read-more-wrapper.is-expanded .btn-read-more svg {
    transform: rotate(180deg);
  }

  /* About Us Mobile Optimizations */
  .founder-profile {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 20px;
    gap: 32px;
  }

  .founder-profile__content-col h3 {
    font-size: 24px;
  }

  .tarkan-story__inner {
    padding: 32px 20px;
  }
  
  .tarkan-story__text .btn-read-more {
    align-self: flex-start;
  }

  .nav {
    padding: 10px 12px;
  }

  .toolbar {
    top: 0;
  }

  .hero {
    background: var(--surface-0);
  padding: 20px 12px 24px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero-lead {
    font-size: 14px;
  }

  .featured-picks__grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .product-card {
    padding: 14px 12px 14px;
  }

  .product-card__title {
    font-size: 13px;
  }

  .product-card__price {
    font-size: 15px;
  }

  .catalog {
    padding: 0 12px 48px;
  }

  .product-dialog {
    width: 100vw;
    height: 100dvh;
    max-width: 100vw;
    max-height: 100dvh;
    margin: 0;
    border-radius: 0;
  }

  .product-dialog .dialog-body {
    grid-template-columns: 1fr;
  }

  .dialog-close {
    top: 16px;
    right: 16px;
  }

  .footer-blocks,
  .footer-care-block,
  .brand-story__grid {
    grid-template-columns: 1fr;
  }
}

/* Luxury editorial brand section */
.why-tarkan {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 48px;
  border: 1px solid rgba(18, 58, 90, 0.08);
  border-radius: 24px;
  background: var(--glass-bg);
}

.why-tarkan h2,
.why-tarkan h3 {
  margin: 0 0 18px;
  color: #10263f;
  font-family: var(--font-heading);
  font-weight: 600;
}

.why-tarkan p {
  margin: 0;
  color: rgba(18, 58, 90, 0.75);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 500;
}

.why-tarkan .why-tarkan__card {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(18, 58, 90, 0.08);
  background: var(--bg-elevated) ;
  box-shadow: 0 18px 40px rgba(18, 58, 90, 0.05);
}

/* FAQ accordion section */
.faq-section {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 20px;
}

.faq-item {
  border: 1px solid rgba(18, 58, 90, 0.08);
  border-radius: 18px;
  background: var(--bg-elevated) ;
  margin-bottom: 16px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(18, 58, 90, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #10263f;
  background: transparent;
  border: none;
  text-align: left;
}

.faq-question:hover {
  background: var(--bg-hover);
}

.faq-question::after {
  content: "\203A";
  transform: rotate(90deg);
  font-size: 20px;
  color: rgba(18, 58, 90, 0.5);
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(270deg);
}

.faq-answer {
  padding: 0 24px 24px;
  color: rgba(18, 58, 90, 0.65);
  font-size: 15px;
  line-height: 1.9;
}

@media (max-width: 900px) {
  .why-tarkan {
    grid-template-columns: 1fr;
  }
}

/* Final responsive storefront polish */
@media (min-width: 1025px) {
  :root {
    --max: 1240px;
  }

  .featured-picks__grid,
  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .catalog-shell {
    padding: 34px 32px 44px;
  }

  .product-card__media {
    padding: 18px;
  }
}

.filter-label--short {
  display: none;
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 148px;
  }

  body {
    background: var(--bg);
    font-size: 14px;
  }

  .site-header {
    background: var(--bg-elevated);
    border-bottom: 1px solid rgba(18, 58, 90, 0.08);
    backdrop-filter: none;
  }

  .nav {
    height: auto;
    min-height: 56px;
    flex-wrap: wrap;
    padding: 7px 12px;
    gap: 8px 10px;
  }

  .brand {
    gap: 8px;
    min-width: 0;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    padding: 4px;
    box-shadow: none;
  }

  .brand-text strong {
    font-size: 14px;
  }

  .brand-text small {
    display: none;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    order: 2;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    padding: 10px 0;
    gap: 10px;
  }

  .nav-links.active {
    display: flex;
    background: var(--bg-elevated);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 16px;
    margin-top: 8px;
    border: 1px solid var(--line);
  }

  .nav-links a.nav-admin {
    display: inline-flex;
    font-weight: 600;
    color: var(--accent-deep) !important;
  }

  .nav-links a,
  .nav-links .nav-icon-link {
    display: inline-flex;
    min-width: 0;
    width: 100%;
    height: 44px;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    border-radius: 10px;
    background: transparent;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.05;
    text-align: left;
    box-shadow: none;
    white-space: normal;
    overflow: hidden;
  }

  .nav-links a:hover,
  .nav-links .nav-icon-link:hover {
    background: var(--bg-hover);
  }

  .nav-links a span,
  .nav-links .nav-icon-link span {
    display: inline-block;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .nav-links a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }

  .nav-links .nav-icon-link {
    gap: 8px;
    flex-wrap: nowrap;
  }

  .nav-links .nav-icon-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }

  .nav-links .nav-icon-link span {
    display: inline-block;
    max-width: calc(100% - 24px);
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
  }

  .nav-links .nav-store {
    min-height: 44px;
    padding: 0 16px;
    border-radius: 10px;
    font-size: 14px;
  }

  .nav-links .nav-store:hover {
    color: var(--brand);
    background: var(--bg-hover);
  }

  .theme-toggle {
    margin: 0 auto;
    order: 1;
  }

  .why-tarkan-drawer {
    display: none;
  }

  .hero {
    display: flex;
    min-height: 320px;
    background: var(--surface-0);
  padding: 26px 14px 24px;
    border-bottom: 1px solid rgba(18, 58, 90, 0.08);
  }

  .hero::before {
    background-position: center 52%;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(5, 10, 14, 0.78) 0%, rgba(5, 10, 14, 0.44) 54%, rgba(5, 10, 14, 0.1) 100%),
      linear-gradient(180deg, rgba(5, 10, 14, 0.04) 0%, rgba(5, 10, 14, 0.45) 100%);
  }

  .hero-inner {
    max-width: 100%;
    padding-bottom: 0;
  }

  .hero .eyebrow {
    margin-bottom: 8px;
    font-size: 10px;
  }

  .hero h1 {
    max-width: 340px;
    font-size: clamp(30px, 8.5vw, 40px);
    line-height: 1.02;
  }

  .hero-lead {
    max-width: 340px;
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.45;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 14px;
  }

  .hero-actions .btn {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero-stats {
    gap: 14px;
    margin-top: 16px;
    padding-top: 14px;
  }

  .hero-stats strong {
    font-size: 16px;
  }

  .hero-stats span {
    font-size: 9px;
  }

  .hero-visual {
    min-height: 120px;
  }

  .device-card {
    padding: 14px;
    border-radius: 14px;
  }

  .floating-card {
    display: none;
  }

  .orb {
    display: none;
  }

  .trust-strip {
    display: block;
    padding: 8px 8px 0;
    margin: 0;
    transform: none;
    background: var(--bg-elevated) ;
  }

  .trust-strip__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .trust-strip__inner div {
    min-height: 0;
    padding: 10px;
    border: 1px solid rgba(18, 58, 90, 0.1);
    border-radius: 8px;
    background: var(--bg-elevated) ;
  }

  .trust-strip__inner strong {
    margin-bottom: 3px;
    font-size: 11px;
  }

  .trust-strip__inner span {
    font-size: 10px;
    line-height: 1.35;
  }

  .catalog {
    padding: 0 8px 40px;
  }

  .catalog-shell {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    padding: 8px 0 0;
  }

  .catalog-intro {
    align-items: center;
    gap: 10px;
    margin: 0 0 8px;
    padding: 0 4px;
  }

  .catalog-intro h2 {
    font-size: 18px;
    line-height: 1.1;
  }

  .catalog-intro p {
    display: none;
  }

  .store-chip {
    min-height: 32px;
    padding: 0 10px;
    font-size: 11px;
    border-radius: 999px;
  }

  .toolbar {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 80;
    gap: 8px;
    margin: 0 -8px 10px;
    padding: 8px;
    background: var(--bg-elevated) ;
    border-bottom: 1px solid rgba(18, 58, 90, 0.08);
    backdrop-filter: none;
  }

  .search-field input {
    min-height: 44px;
    border-radius: 999px;
    border-color: rgba(18, 58, 90, 0.16);
    background: var(--bg-elevated) ;
    font-size: 15px;
    box-shadow: 0 1px 2px rgba(18, 58, 90, 0.08);
  }

  .filters {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    overflow: visible;
    padding: 0;
  }

  .filter {
    min-width: 0;
    min-height: 38px;
    padding: 0 4px;
    border-radius: 10px;
    background: var(--glass-bg);
    color: var(--brand);
    font-size: 11px;
    line-height: 1;
    text-align: center;
    box-shadow: 0 1px 2px rgba(18, 58, 90, 0.06);
  }

  .filter-label--full {
    display: none;
  }

  .filter-label--short {
    display: inline;
  }

  .catalog-meta {
    margin: 4px 4px 8px;
    font-size: 11px;
  }

  .featured-picks {
    margin: 8px 0 12px;
    padding: 10px;
    border-radius: 10px;
    background: var(--bg-elevated) ;
  }

  .featured-picks__head {
    margin-bottom: 10px;
  }

  .featured-picks__head .eyebrow {
    display: none;
  }

  .featured-picks__head h3 {
    font-size: 16px;
  }

  .featured-picks__grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .store-section {
    margin-bottom: 18px;
  }

  .store-section__head {
    margin: 2px 0 8px;
    padding: 0 4px 6px;
    border-bottom: 1px solid rgba(18, 58, 90, 0.1);
  }

  .store-section__head h3 {
    font-size: 16px;
    line-height: 1.1;
  }

  .store-section__head span {
    font-size: 11px;
  }

  .product-card {
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(18, 58, 90, 0.08);
  }

  .product-card:hover {
    transform: none;
    box-shadow: 0 1px 3px rgba(18, 58, 90, 0.08);
  }

  .product-card__media {
    padding: 10px;
    aspect-ratio: 1.05;
  }

  .product-card__body {
    padding: 9px 9px 10px;
  }

  .product-card__meta {
    gap: 5px;
    margin-bottom: 6px;
  }

  .cat-badge {
    padding: 0;
    font-size: 9px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .product-card__stars {
    font-size: 10px;
  }

  .product-card__rating {
    flex-basis: 100%;
    text-align: left;
    font-size: 10px;
  }

  .product-card__title {
    min-height: 34px;
    margin-bottom: 6px;
    font-size: 12px;
    line-height: 1.35;
  }

  .product-card__commerce {
    margin-bottom: 7px;
  }

  .product-card__price {
    font-size: 13px;
  }

  .product-card__desc {
    display: none;
  }

  .product-card__actions {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .btn-sm {
    min-height: 32px;
    padding: 0 8px;
    font-size: 11px;
  }

  .faq-section {
    margin: 24px auto;
    padding: 0 10px;
    background: var(--surface-1);
  scroll-margin-top: 148px;
  }

  .faq-shell {
    padding: 18px 0;
  }

  .care-banner {
    padding: 0 8px 24px;
  }

  .care-banner__inner {
    padding: 22px 16px;
    border-radius: 12px;
  }

  .care-card--instagram {
    border-width: 2px;
    padding: 24px 20px;
  }

  .care-card__icon--instagram {
    width: 52px;
    height: 52px;
    margin-bottom: 8px;
  }

  .care-card__icon--instagram svg {
    width: 28px;
    height: 28px;
  }

  .care-banner__cards {
    gap: 16px;
  }

  .global-footer__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  
  .global-footer {
    padding: 48px 20px 24px;
  }

  .product-dialog {
    width: 100vw;
    height: 100dvh;
    max-width: 100vw;
    max-height: 100dvh;
    border-radius: 0;
  }

  .dialog-body {
    grid-template-columns: 1fr;
    max-height: 100dvh;
  }

  .dialog-media {
    padding: 28px 18px 14px;
  }

  .dialog-media img,
  .dialog-media video {
    max-height: 260px;
  }

  .dialog-content {
    padding: 18px 16px 28px;
  }
}

@media (max-width: 380px) {
  .filters {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
  }

  .filter {
    min-height: 34px;
    font-size: 10px;
  }

  .featured-picks__grid,
  .product-grid {
    gap: 6px;
  }

  .product-card__body {
    padding: 8px;
  }

  .product-card__title {
    font-size: 11px;
  }
}

[data-theme="dark"] .filter.active {
  background: var(--text);
  color: var(--surface-0);
  border-color: var(--text);
}

[data-theme="dark"] .btn-primary {
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
  color: var(--text-btn) !important;
}
[data-theme="dark"] .btn-primary:hover {
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
}

[data-theme="dark"] .store-section__head h3 {
  color: var(--text);
}
[data-theme="dark"] .store-section__head span {
  color: var(--text-muted);
}
[data-theme="dark"] .product-card__title {
  color: var(--text);
}
[data-theme="dark"] .product-card__price {
  color: var(--text);
}
[data-theme="dark"] .product-card__desc {
  color: var(--text-secondary);
}
[data-theme="dark"] .product-card__rating-text {
  color: var(--text-muted);
}

[data-theme="dark"] .filter {
  background: var(--surface-2);
  border: 1px solid var(--surface-border);
}
[data-theme="dark"] .filter:hover {
  background: var(--surface-1);
}

[data-theme="dark"] .faq-item {
  border-color: var(--surface-border);
}
[data-theme="dark"] .faq-item:hover {
  background: var(--surface-1);
}

/* Dark Mode Overrides for CTA and Badges */
@keyframes pulse-dark {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.15); }
  70% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

[data-theme="dark"] .store-chip {
  background: linear-gradient(135deg, var(--surface-2), var(--bg-elevated));
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  animation: pulse-dark 2.5s infinite;
}

[data-theme="dark"] .store-chip:hover {
  background: var(--bg-hover);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1), 0 4px 12px rgba(0, 0, 0, 0.6);
  animation: none;
}

[data-theme="dark"] .product-card__luxury-badge {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}

/* =========================================
   AUTHENTICATION UI (Header & Pages)
   ========================================= */

/* Desktop Auth in Header */
.auth-desktop {
  display: flex;
  align-items: center;
  margin-right: 12px;
}

.profile-dropdown {
  position: relative;
}

.profile-btn {
  background: transparent;
  border: none;
  color: var(--text);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.2s;
  font-family: inherit;
  font-size: 0.95rem;
}
.profile-btn:hover, .profile-btn:focus-visible {
  background: var(--surface-1);
}

.profile-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 12px;
  min-width: 180px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
}
.profile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.profile-menu a {
  padding: 10px 16px;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}
.profile-menu a:hover {
  background: var(--surface-1);
  color: var(--text);
}
.profile-menu a.text-danger {
  color: #ef4444;
}
.profile-menu a.text-danger:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

/* Mobile Auth in Nav */
.mobile-auth {
  padding: 16px;
  border-bottom: 1px solid var(--surface-border);
  margin-bottom: 8px;
}

.mobile-profile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-user-info {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--surface-border);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.mobile-user-info strong {
  color: var(--text);
  font-size: 1rem;
}

.mobile-profile-nav a {
  padding: 8px 0;
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
}
.mobile-profile-nav a.text-danger {
  color: #ef4444;
}

@media (max-width: 900px) {
  .auth-desktop {
    display: none !important;
  }
}
@media (min-width: 901px) {
  .mobile-auth {
    display: none !important;
  }
}

/* Google Auth Button */
.btn-google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #ffffff;
  color: #3c4043;
  border: 1px solid #dadce0;
  border-radius: 6px;
  padding: 8px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

.btn-google:hover, .btn-google:focus-visible {
  background-color: #f8f9fa;
  box-shadow: 0 1px 3px 0 rgba(60, 64, 67, 0.3), 0 4px 8px 3px rgba(60, 64, 67, 0.15);
}

.btn-google svg {
  flex-shrink: 0;
}

[data-theme="dark"] .btn-google {
  background-color: var(--surface-1);
  color: var(--text);
  border-color: var(--surface-border);
  box-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

[data-theme="dark"] .btn-google:hover, [data-theme="dark"] .btn-google:focus-visible {
  background-color: var(--surface-2);
  border-color: var(--text-muted);
}

/* User Avatars */
.profile-pic {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--surface-border);
}

.profile-initial {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

#mobileUserAvatar .profile-pic,
#mobileUserAvatar .profile-initial {
  width: 32px;
  height: 32px;
  font-size: 1rem;
}
.mobile-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
/* Login Modal Styles */
.login-modal-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.5); z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.login-modal-overlay.active {
  opacity: 1; pointer-events: auto;
}
.login-modal-box {
  background: var(--surface); padding: 2rem; border-radius: 12px;
  width: 90%; max-width: 400px; text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2); position: relative;
  transform: translateY(20px); transition: transform 0.3s ease;
}
.login-modal-overlay.active .login-modal-box {
  transform: translateY(0);
}
.login-modal-close {
  position: absolute; top: 1rem; right: 1rem; background: none; border: none;
  font-size: 1.5rem; cursor: pointer; color: var(--text-muted);
}
.login-input-group {
  margin-bottom: 1rem; text-align: left;
}
.login-input-group label {
  display: block; margin-bottom: 0.5rem; font-size: 0.875rem; color: var(--text);
}
.login-input-group input {
  width: 100%; padding: 0.75rem; border: 1px solid var(--border);
  border-radius: 8px; font: inherit; background: var(--bg); color: var(--text);
}
.login-actions {
  display: flex; gap: 0.5rem; margin-bottom: 1.5rem;
}
.login-separator {
  margin: 1.5rem 0; position: relative; text-align: center;
}
.login-separator::before {
  content: ""; position: absolute; left: 0; top: 50%; width: 100%;
  height: 1px; background: var(--border); z-index: 1;
}
.login-separator span {
  position: relative; z-index: 2; background: var(--surface);
  padding: 0 0.5rem; color: var(--text-muted); font-size: 0.875rem;
}

/* Wishlist Button */
.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #a0aec0;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.25s var(--ease);
}
.wishlist-btn:hover {
  transform: scale(1.1);
  color: #f56565;
  background: #ffffff;
}
.wishlist-btn.saved {
  color: #e53e3e;
  animation: heartPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

[data-theme="dark"] .wishlist-btn {
  background: rgba(15, 23, 42, 0.7);
  border-color: rgba(255, 255, 255, 0.1);
}
[data-theme="dark"] .wishlist-btn:hover {
  background: rgba(30, 41, 59, 0.9);
}

@keyframes heartPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

/* Callout Tooltip */
.wishlist-callout {
  position: absolute;
  z-index: 9999;
  background: var(--brand);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  pointer-events: none;
}
.wishlist-callout .callout-arrow {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; 
  height: 0; 
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--brand);
}
.animate-pop {
  animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
@keyframes popIn {
  0% { opacity: 0; transform: translateY(10px) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.wishlist-callout.fade-out {
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

/* Highlight pulse for login button */
.highlight-pulse {
  animation: loginPulse 1.5s infinite;
}
@keyframes loginPulse {
  0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(249, 115, 22, 0); }
  100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

/* Toast */
.wishlist-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--bg-elevated);
  color: var(--text);
  padding: 14px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--surface-border);
  z-index: 10000;
  font-weight: 600;
  font-size: 15px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.wishlist-toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Wishlist page specific */
.wishlist-empty-state {
  text-align: center;
  padding: 80px 20px;
  background: var(--surface-1);
  border-radius: var(--radius);
  margin: 40px auto;
  max-width: 600px;
  border: 1px dashed var(--line);
}
.wishlist-empty-state h2 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--brand);
}
.wishlist-empty-state p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}
/* Custom Login Modal */
.modal-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5); display: flex; justify-content: center; align-items: center;
  z-index: 10000; opacity: 0; visibility: hidden; transition: 0.3s;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content {
  background: var(--surface); padding: 32px; border-radius: 12px;
  width: 90%; max-width: 400px; box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  position: relative;
}
.modal-close {
  position: absolute; top: 16px; right: 16px; background: none; border: none;
  cursor: pointer; font-size: 24px; color: var(--text-muted);
}
.modal-title { font-size: 24px; font-weight: 600; margin-bottom: 24px; color: var(--text); }
.modal-input {
  width: 100%; padding: 12px; margin-bottom: 16px;
  border: 1px solid var(--border); border-radius: 6px;
  background: var(--bg); color: var(--text); font: inherit;
  box-sizing: border-box;
}
.modal-error { color: #ff4d4f; font-size: 14px; margin-bottom: 16px; display: none; }

/* 
 * Premium Wishlist & Firebase Auth Styles
 */

/* Login Button Pulse Animation */
@keyframes loginPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); transform: scale(1); }
  50% { box-shadow: 0 0 0 10px rgba(37, 99, 235, 0); transform: scale(1.05); }
  100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); transform: scale(1); }
}
.login-pulse {
  animation: loginPulse 2s infinite;
  border: 2px solid var(--accent-color, #2563eb) !important;
}

/* Premium Toast Notification */
#wishlist-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--bg-surface, #1a1a1a);
  color: #fff;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  z-index: 99999;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
[data-theme="dark"] #wishlist-toast {
  background: rgba(30,30,30,0.9);
}
#wishlist-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Profile Dropdown Fade Animation */
.profile-dropdown {
  position: relative;
}
.profile-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--bg-surface, #fff);
  border: 1px solid var(--border-color, #eee);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  min-width: 280px;
  padding: 8px 0;
  margin-top: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
}
.profile-dropdown:hover .profile-menu,
.profile-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
[data-theme="dark"] .profile-menu {
  background: var(--bg-surface);
  border-color: var(--border-color);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.profile-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s;
}
.profile-menu a:hover {
  background: var(--bg-body);
}

/* Wishlist Remove Animation */
.wishlist-dropdown-item {
  transition: opacity 0.3s, transform 0.3s;
}
.wishlist-dropdown-item.removing {
  opacity: 0;
  transform: translateX(20px);
}
.product-card.removing {
  animation: fadeOutCard 0.4s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes fadeOutCard {
  to {
    opacity: 0;
    transform: scale(0.95);
  }
}

.login-pointer-arrow {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color, #ff4757);
  animation: point-up 0.8s infinite alternate ease-in-out;
  pointer-events: none;
}

@keyframes point-up {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

/* Variety Swatches */
.product-card__varieties { display: flex; gap: 8px; margin-top: 10px; margin-bottom: 10px; }
.variety-swatch { width: 32px; height: 32px; border-radius: 50%; border: 2px solid transparent; padding: 2px; cursor: pointer; transition: all 0.2s; background: transparent; overflow: hidden; }
.variety-swatch img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.variety-swatch:hover { border-color: #ccc; }
.variety-swatch.active { border-color: var(--primary); transform: scale(1.1); }
 
 . d i a l o g - s w a t c h   {   w i d t h :   4 8 p x ;   h e i g h t :   4 8 p x ;   }  
  
 . d i a l o g - t h u m b n a i l s : : - w e b k i t - s c r o l l b a r   {   h e i g h t :   4 p x ;   }   . d i a l o g - t h u m b n a i l s : : - w e b k i t - s c r o l l b a r - t h u m b   {   b a c k g r o u n d - c o l o r :   v a r ( - - b o r d e r - c o l o r ) ;   b o r d e r - r a d i u s :   4 p x ;   }   . t h u m b n a i l - b t n : h o v e r   {   b o r d e r - c o l o r :   # c c c   ! i m p o r t a n t ;   }  
 
/* Hover Dialog styles */
dialog.dialog--hover {
  position: fixed;
  top: 20px;
  right: 20px;
  bottom: 20px;
  height: calc(100vh - 40px);
  width: 450px;
  max-width: calc(100vw - 40px);
  margin: 0;
  transform: translateX(0);
  box-shadow: -4px 0 24px rgba(0,0,0,0.15);
  border-radius: 16px;
  animation: slideInRight 0.3s ease forwards;
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@media (max-width: 768px) {
  dialog.dialog--hover {
    display: none; /* Disable hover dialog on mobile */
  }
}


/* Premium Hover Preview Panel */
.premium-preview-panel {
  position: fixed;
  top: 20px;
  right: 20px;
  bottom: 20px;
  width: 420px;
  max-width: calc(100vw - 40px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15), 0 4px 12px rgba(0,0,0,0.08);
  border-radius: 16px;
  z-index: 9999;
  transform: translateX(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

[data-theme="dark"] .premium-preview-panel {
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 4px 12px rgba(0,0,0,0.3);
  background: rgba(30, 41, 59, 0.85); /* Glassmorphism background for dark mode */
}

/* Open State */
.premium-preview-panel.is-open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

/* Closing State (for smooth fade out before display block is removed if needed, though transform handles it) */
.premium-preview-panel.is-closing {
  transform: translateX(10%);
  opacity: 0;
}

/* Close Button */
.preview-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  padding: 0;
}
.preview-close:hover {
  background: var(--text);
  color: var(--bg);
  transform: rotate(90deg);
}

/* Body Content */
.preview-body {
  padding: 0;
  overflow-y: auto;
  flex: 1;
  opacity: 1;
  transition: opacity 0.25s ease;
}

.preview-body.is-updating {
  opacity: 0.3;
}

/* Preview Internal Styles (similar to dialog) */
.preview-media {
  width: 100%;
  height: 280px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.preview-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: fadeInScale 0.4s ease forwards;
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.preview-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.preview-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.preview-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  margin: 0;
}

.preview-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.preview-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.preview-actions {
  margin-top: 8px;
  display: flex;
  gap: 12px;
}

/* Mobile Overrides (Tap instead of hover) */
@media (max-width: 768px) {
  .premium-preview-panel {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: 85vh;
    border-radius: 24px 24px 0 0;
    transform: translateY(100%);
    border-bottom: none;
  }
  
  .premium-preview-panel.is-open {
    transform: translateY(0);
  }
  
  .premium-preview-panel.is-closing {
    transform: translateY(10%);
  }
}

