/* =====================================================
   DAVETIYE ATÖLYESİ — Premium CSS (Light Theme)
   ===================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Light Theme Colors */
  --bg-primary: #fdfbf7;      /* Warm off-white */
  --bg-secondary: #ffffff;    /* Pure white */
  --bg-card: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.6);
  --bg-glass-hover: rgba(255, 255, 255, 0.9);

  --gold: #c59b27;            /* Elegant darker gold for light theme */
  --gold-light: #e8cd7b;
  --gold-dark: #967312;
  --rose: #d39893;
  --rose-light: #eed2d0;

  --text-primary: #1a1b26;    /* Very dark navy/grey */
  --text-secondary: #4a4d63;  /* Medium dark */
  --text-muted: #8589a0;      /* Lighter grey */

  --border: rgba(197, 155, 39, 0.15);
  --border-hover: rgba(197, 155, 39, 0.4);

  --nav-height: 80px;
  --container-width: 1280px;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;

  --shadow-card: 0 15px 35px rgba(20, 20, 30, 0.06);
  --shadow-gold: 0 10px 30px rgba(197, 155, 39, 0.15);
  --shadow-hover: 0 20px 40px rgba(20, 20, 30, 0.1);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

::selection { background: rgba(197, 155, 39, 0.2); color: var(--gold-dark); }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
img { max-width: 100%; display: block; }

/* --- Container --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--gold-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* =====================================================
   LIVE TOAST
   ===================================================== */
.live-toast {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  color: var(--text-primary);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  max-width: 360px;
  z-index: 9999;
  transform: translateX(-120%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-card);
}
.live-toast.show { transform: translateX(0); }

/* =====================================================
   NAVIGATION
   ===================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-icon-wrap svg { width: 44px; height: 44px; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-dark), var(--rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--gold-dark);
  background: rgba(197, 155, 39, 0.05);
}

.live-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.2);
  border-radius: 4px;
  letter-spacing: 0.05em;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}

.nav-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  transition: var(--transition);
}

.nav-btn svg { width: 22px; height: 22px; }

.nav-btn:hover {
  color: var(--gold-dark);
  background: rgba(197, 155, 39, 0.05);
}

.nav-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  min-width: 16px;
  height: 16px;
  background: var(--gold);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  opacity: 0;
  transform: scale(0);
  transition: var(--transition);
}

.nav-badge.has-items {
  opacity: 1;
  transform: scale(1);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
}

/* Search */
.nav-search {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem 1rem;
  display: none;
}
.nav-search.open { display: block; }
.search-wrap {
  display: flex;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.s-cat {
  background: rgba(197,155,39,0.03);
  color: var(--text-primary);
  border: none;
  border-right: 1px solid var(--border);
  padding: 0 1rem;
  outline: none;
  cursor: pointer;
  font-weight: 500;
}
.s-input {
  flex: 1;
  border: none;
  padding: 1rem;
  background: transparent;
  color: var(--text-primary);
  outline: none;
}
.s-input::placeholder { color: var(--text-muted); }
.s-btn {
  padding: 0 1.5rem;
  background: var(--gold);
  color: white;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.s-btn:hover { background: var(--gold-dark); }
.s-btn svg { width: 18px; height: 18px; }

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
  background: linear-gradient(135deg, #fdfbf7 0%, #f5f0e6 100%);
}

.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.15;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.2; }
  90% { opacity: 0.2; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.hero-blobs { position: absolute; inset: 0; pointer-events: none; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}
.b1 { width: 500px; height: 500px; background: var(--gold-light); top: -100px; right: -50px; animation: drift 15s infinite; }
.b2 { width: 400px; height: 400px; background: var(--rose-light); bottom: -100px; left: -50px; animation: drift 20s infinite reverse; }
.b3 { width: 300px; height: 300px; background: #e0e5ec; top: 50%; left: 40%; animation: drift 18s infinite; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -40px) scale(1.1); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Left Text */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(197, 155, 39, 0.1);
  border: 1px solid rgba(197, 155, 39, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
  animation: fade-up 0.6s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  animation: fade-up 0.6s 0.1s ease both;
  color: var(--text-primary);
}

.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-dark), var(--rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  animation: fade-up 0.6s 0.2s ease both;
}

/* Quick Links */
.hero-quick-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  animation: fade-up 0.6s 0.3s ease both;
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.quick-link:hover {
  transform: translateX(10px);
  border-color: var(--gold);
  box-shadow: var(--shadow-hover);
}

.ql-icon {
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(197, 155, 39, 0.1);
  border-radius: 50%;
}

.quick-link div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-primary);
}

.quick-link div small {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fade-up 0.6s 0.4s ease both;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-gold {
  background: var(--gold);
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(197, 155, 39, 0.3);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(197, 155, 39, 0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(197, 155, 39, 0.05);
  color: var(--gold-dark);
}
.btn-full { width: 100%; }

.pdot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #28a745;
  border-radius: 50%;
  animation: pulse-dot-anim 2s infinite;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: fade-up 0.6s 0.5s ease both;
}
.hstat { text-align: center; }
.hstat-n {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-dark);
}
.hstat-l {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.hstat-sep { width: 1px; height: 40px; background: var(--border); }

/* Right Showcase */
.hero-showcase {
  position: relative;
  height: 600px;
  animation: fade-up 0.6s 0.2s ease both;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-ring {
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1px dashed rgba(197, 155, 39, 0.4);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}
.showcase-ring-2 {
  width: 350px;
  height: 350px;
  border: 1px solid rgba(197, 155, 39, 0.2);
  animation: spin 20s linear infinite reverse;
}

@keyframes spin { 100% { transform: rotate(360deg); } }

.showcase-item {
  position: absolute;
  transition: var(--transition);
}

.si-bottle {
  top: 10%;
  left: 20%;
  z-index: 3;
  animation: float-main 6s ease-in-out infinite;
}
.si-cd {
  bottom: 20%;
  right: 15%;
  z-index: 2;
  animation: float-main 8s ease-in-out infinite reverse;
}
.si-ilac {
  top: 35%;
  right: 5%;
  z-index: 2;
  animation: float-main 7s ease-in-out infinite 2s;
}

@keyframes float-main {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-15px) scale(1.02); }
}

.showcase-label {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  white-space: nowrap;
}

/* Pseudo CSS Art for Products */
.showcase-product {
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Bottle Art */
.bottle-product {
  width: 120px;
  height: 280px;
  perspective: 1000px;
}
.bottle-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}
.bottle-body {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 200px;
  background: rgba(255,255,255,0.4);
  border-radius: 20px;
  border: 2px solid rgba(255,255,255,0.8);
  backdrop-filter: blur(5px);
  box-shadow: inset -10px 0 20px rgba(0,0,0,0.05), inset 10px 0 20px rgba(255,255,255,0.8);
}
.bottle-neck {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 70px;
  background: rgba(255,255,255,0.4);
  border: 2px solid rgba(255,255,255,0.8);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  backdrop-filter: blur(5px);
}
.bottle-cork {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 25px;
  background: #d4a373;
  border-radius: 5px 5px 0 0;
  background-image: radial-gradient(#bc8a5f 15%, transparent 16%);
  background-size: 6px 6px;
}
.bottle-ribbon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 15px;
  background: var(--gold);
  border-radius: 3px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.bottle-scroll {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 150px;
  background: #fff8e7;
  border-radius: 5px;
  box-shadow: inset 5px 0 10px rgba(0,0,0,0.05);
  padding: 10px;
  text-align: center;
  border: 1px solid rgba(197,155,39,0.3);
}
.scroll-text .scroll-mn { font-family: var(--font-elegant); font-size: 1.5rem; color: var(--gold-dark); border-bottom: 1px solid var(--border); margin-bottom: 5px; }
.scroll-text .scroll-ev { font-size: 0.5rem; color: var(--text-secondary); text-transform: uppercase; }
.scroll-text .scroll-dt { font-size: 0.6rem; font-weight: bold; margin-top: 5px; }
.bottle-shine {
  position: absolute;
  top: 10px; left: 10px;
  width: 15px; height: 160px;
  background: linear-gradient(to right, rgba(255,255,255,0.8), transparent);
  border-radius: 10px;
}

/* CD Art */
.cd-product {
  width: 160px;
  height: 160px;
  border-radius: 10px;
  background: #e0e0e0;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset -5px -5px 15px rgba(0,0,0,0.1), 0 10px 20px rgba(0,0,0,0.1);
  transform: rotate(15deg);
}
.cd-disc {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #f8f9fa, #e9ecef, #f8f9fa, #dee2e6, #f8f9fa);
  border: 1px solid #ccc;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cd-center {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: transparent;
  border: 8px solid #e0e0e0;
  box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
}
.cd-shine {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 45deg, transparent, rgba(255,255,255,0.8), transparent, rgba(255,255,255,0.8), transparent);
}
.cd-text {
  position: absolute;
  text-align: center;
  top: 25px;
}
.cd-name { font-family: var(--font-elegant); font-size: 1.2rem; color: #1a1a1a; font-weight: bold; }
.cd-ev { font-size: 0.5rem; text-transform: uppercase; color: #666; }

/* Medicine Box Art */
.ilac-product {
  width: 140px;
  height: 180px;
  transform: rotate(-10deg);
}
.med-box {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
}
.med-box-face {
  position: absolute;
  background: white;
  border: 1px solid #eee;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.med-front {
  width: 140px; height: 180px;
  padding: 15px;
  text-align: center;
  border-radius: 5px;
}
.med-brand { font-size: 0.6rem; color: #999; letter-spacing: 2px; }
.med-product-name { font-family: var(--font-display); font-size: 1.4rem; color: var(--text-primary); font-weight: 700; line-height: 1.2; margin: 5px 0; }
.med-dose { background: #ffebee; color: #d32f2f; font-size: 0.6rem; padding: 2px 5px; border-radius: 3px; display: inline-block; margin-bottom: 10px; font-weight: bold; }
.med-line { width: 100%; height: 2px; background: var(--gold-light); margin-bottom: 10px; }
.med-info { font-size: 0.7rem; font-weight: 600; }
.med-date { font-size: 0.8rem; font-weight: bold; color: var(--gold-dark); margin-top: 5px; }
.med-cross-sm { font-size: 1.5rem; color: var(--gold); margin-top: 15px; }

/* Floating Badges */
.float-badge {
  position: absolute;
  padding: 0.4rem 0.8rem;
  background: white;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
.fb-new { top: 5%; right: 10%; color: var(--rose); animation: float-badge 4s infinite; }
.fb-hot { bottom: 15%; left: 10%; color: #e74c3c; animation: float-badge 5s infinite reverse; }
.fb-custom { top: 50%; right: -5%; color: var(--gold-dark); animation: float-badge 6s infinite 1s; }

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

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* =====================================================
   TICKER
   ===================================================== */
.ticker-bar {
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 3rem;
  animation: ticker-scroll 40s linear infinite;
  white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
.ti { font-size: 0.85rem; color: var(--text-secondary); font-weight: 500; }
.ts { color: var(--gold); }

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =====================================================
   CANVA BANNER
   ===================================================== */
.canva-banner-section { padding: 3rem 0 0 0; background: var(--bg-primary); }
.canva-banner-inner {
  background: linear-gradient(135deg, #00C4CC, #7D2AE8);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  color: white;
  box-shadow: 0 15px 30px rgba(125, 42, 232, 0.2);
}
.cb-icon { flex-shrink: 0; }
.cb-text { flex: 1; }
.cb-text h3 { font-family: var(--font-display); font-size: 2rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1.2; }
.cb-text p { font-size: 1.05rem; opacity: 0.95; line-height: 1.5; }
.cb-btn {
  background: white;
  color: #7D2AE8;
  padding: 1rem 2rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.cb-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  color: #00C4CC;
}

@media (max-width: 768px) {
  .canva-banner-inner { flex-direction: column; text-align: center; padding: 2rem; }
}

/* =====================================================
   COMMONS
   ===================================================== */
.section-head { text-align: center; margin-bottom: 3rem; }
.stag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 1rem;
  background: rgba(197, 155, 39, 0.1);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.stitle {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}
.stitle em {
  font-style: italic;
  color: var(--gold-dark);
}
.sdesc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

[data-animate] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s, transform 0.7s; }
[data-animate].in-view { opacity: 1; transform: translateY(0); }

/* =====================================================
   PRODUCT CATEGORIES (Overview)
   ===================================================== */
.products-section { padding: 6rem 0; background: var(--bg-primary); }
.product-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.pt-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-card);
}
.pt-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}
.pt-card-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #f5f5f5;
}
.pt-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.pt-card:hover .pt-card-img img { transform: scale(1.05); }

.pt-card-body { padding: 2rem; }
.pt-icon-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.pt-icon { font-size: 2rem; }
.pt-badges { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.pt-badge { font-size: 0.65rem; background: var(--bg-primary); padding: 0.2rem 0.5rem; border-radius: 4px; color: var(--text-secondary); border: 1px solid #eee; }
.pt-title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.75rem; }
.pt-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.5; }
.pt-features { margin-bottom: 1.5rem; }
.pt-feat { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 0.3rem; }
.pt-canva { color: #7D2AE8; font-weight: 600; margin-top: 0.5rem; background: rgba(125, 42, 232, 0.05); padding: 0.3rem 0.5rem; border-radius: 4px; display: inline-block; }
.pt-price-row { display: flex; flex-direction: column; margin-bottom: 1.5rem; padding-top: 1rem; border-top: 1px solid #eee; }
.pt-from { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; }
.pt-price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--gold-dark); }
.pt-unit { font-family: var(--font-body); font-size: 0.9rem; font-weight: 400; color: var(--text-muted); }

.mt-1 { margin-top: 1rem; }

/* =====================================================
   CATALOG SECTIONS
   ===================================================== */
.catalog-section { padding: 4rem 0; }
.cat-section-header {
  position: relative;
  padding: 4rem 0;
  margin-bottom: 3rem;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sise-header { background: #fdfbf7; }
.cd-header { background: #f8f9fa; }
.ilac-header { background: #fffcfcf2; }

.csh-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 2;
}
.csh-icon { font-size: 4rem; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1)); }
.csh-text { flex: 1; }
.csh-text .stitle { margin-bottom: 0.5rem; }
.csh-text .sdesc { margin: 0; }

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Catalog Card (No 3D flip, clean presentation) */
.cat-card-item {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.cat-card-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}
.cci-img {
  height: 220px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.cci-img img { width: 100%; height: 100%; object-fit: cover; }
.cci-badge {
  position: absolute;
  top: 10px; right: 10px;
  background: white;
  color: var(--text-primary);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.cci-canva-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: linear-gradient(135deg, #00C4CC, #7D2AE8);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  box-shadow: 0 2px 5px rgba(125,42,232,0.3);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.cci-body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
.cci-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin-bottom: 0.3rem; }
.cci-tags { display: flex; gap: 0.3rem; margin-bottom: 1rem; flex-wrap: wrap; }
.cci-tags span { font-size: 0.65rem; color: var(--gold-dark); background: rgba(197,155,39,0.1); padding: 0.15rem 0.4rem; border-radius: 4px; }
.cci-price-row { display: flex; justify-content: space-between; align-items: center; margin-top: auto; margin-bottom: 1rem; }
.cci-price { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--gold-dark); }
.cci-rating { font-size: 0.8rem; color: var(--text-muted); }
.cci-rating span { color: var(--gold); }

.cci-actions { display: flex; gap: 0.5rem; }
.cci-btn {
  flex: 1;
  padding: 0.6rem;
  text-align: center;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}
.cci-add { background: var(--gold); color: white; }
.cci-add:hover { background: var(--gold-dark); }
.cci-wish { background: transparent; border: 1px solid var(--border); color: var(--text-secondary); flex: 0 0 40px; display: flex; align-items: center; justify-content: center; }
.cci-wish:hover { border-color: var(--rose); color: var(--rose); }

/* =====================================================
   AUCTION SECTION
   ===================================================== */
.auction-section { padding: 6rem 0; background: #fdfbf7; border-top: 1px solid var(--border); }
.auction-stag { background: rgba(220, 53, 69, 0.1); color: #dc3545; border-color: rgba(220, 53, 69, 0.2); }
.live-dot { display: inline-block; width: 8px; height: 8px; background: #dc3545; border-radius: 50%; margin-right: 5px; animation: pulse-dot-anim 1.5s infinite; }

.auction-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.auc-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.auc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: rgba(220,53,69,0.3); }
.auc-img { height: 250px; background: #f0f0f0; position: relative; }
.auc-img img { width: 100%; height: 100%; object-fit: cover; }
.auc-timer-box {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  padding: 0.5rem;
  text-align: center;
  border-top: 1px solid var(--border);
  font-family: monospace;
  font-size: 1rem;
  font-weight: 700;
  color: #dc3545;
}

.auc-body { padding: 1.5rem; }
.auc-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin-bottom: 0.5rem; }
.auc-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }
.auc-bid-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 1rem; }
.auc-bid-lbl { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; margin-bottom: 0.2rem; }
.auc-bid-val { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--gold-dark); }
.auc-count { font-size: 0.8rem; color: var(--text-secondary); display: flex; align-items: center; gap: 0.3rem; }

.bid-bar-wrap { height: 6px; background: #eee; border-radius: 3px; overflow: hidden; margin-bottom: 1.5rem; }
.bid-bar { height: 100%; background: linear-gradient(90deg, var(--gold), #dc3545); transition: width 0.5s; }

/* =====================================================
   HOW IT WORKS
   ===================================================== */
.hiw-section { padding: 6rem 0; background: white; }
.hiw-grid { display: flex; justify-content: space-between; position: relative; margin-top: 3rem; }
.hiw-step { text-align: center; flex: 1; padding: 0 1rem; position: relative; z-index: 2; }
.hiw-icon { font-size: 2.5rem; width: 80px; height: 80px; background: white; border: 2px solid var(--gold-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.hiw-num { font-family: var(--font-display); font-size: 3rem; color: rgba(197,155,39,0.1); position: absolute; top: -20px; left: 50%; transform: translateX(-50%); z-index: -1; font-weight: 700; }
.hiw-step h4 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--text-primary); }
.hiw-step p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5; }
.hiw-connector { flex: 0 0 50px; position: relative; }
.hiw-connector::after { content: ''; position: absolute; top: 40px; left: 0; right: 0; height: 2px; border-top: 2px dashed var(--border); }

/* =====================================================
   ORDER / CUSTOM DESIGN
   ===================================================== */
.order-section { padding: 6rem 0; background: #fdfbf7; position: relative; border-top: 1px solid var(--border); }
.order-bg { position: absolute; inset: 0; background: url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="%23c59b27" fill-opacity="0.1"/></svg>') repeat; opacity: 0.5; }
.order-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; position: relative; z-index: 2; }

.order-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 3rem; }
.of-item { display: flex; gap: 1rem; }
.of-icon { font-size: 2rem; }
.of-item strong { display: block; font-size: 1rem; margin-bottom: 0.2rem; color: var(--text-primary); }
.of-item p { font-size: 0.85rem; color: var(--text-muted); }

.order-trust { display: flex; flex-wrap: wrap; gap: 1rem; }
.trust-item { background: white; border: 1px solid var(--border); padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.85rem; font-weight: 500; color: var(--text-secondary); box-shadow: 0 2px 5px rgba(0,0,0,0.02); }

.order-form-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2.5rem; box-shadow: var(--shadow-card); }
.ofc-header { text-align: center; margin-bottom: 2rem; }
.ofc-header h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--text-primary); margin-bottom: 0.5rem; }
.ofc-header p { color: var(--text-muted); font-size: 0.9rem; }

.fg { margin-bottom: 1.25rem; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg label { display: block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 0.5rem; }

.event-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
.ev-btn { padding: 0.6rem; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 0.85rem; color: var(--text-secondary); transition: var(--transition); }
.ev-btn:hover { border-color: var(--gold); }
.ev-btn.active { background: rgba(197,155,39,0.1); border-color: var(--gold); color: var(--gold-dark); font-weight: 600; }

.konsept-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.75rem; }
.ks-btn { padding: 1rem; border: 1px solid var(--border); border-radius: var(--radius-md); text-align: left; transition: var(--transition); display: flex; flex-direction: column; gap: 0.5rem; }
.ks-btn span { font-size: 1.5rem; }
.ks-btn strong { display: block; font-size: 0.95rem; color: var(--text-primary); }
.ks-btn small { color: var(--text-muted); font-size: 0.8rem; }
.ks-btn:hover { border-color: var(--gold); box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.ks-btn.active { border-color: var(--gold); background: rgba(197,155,39,0.05); box-shadow: inset 0 0 0 1px var(--gold); }

.fi, .fta { width: 100%; border: 1px solid #ddd; border-radius: var(--radius-sm); padding: 0.8rem 1rem; font-size: 0.9rem; color: var(--text-primary); transition: var(--transition); background: #fafafa; }
.fi:focus, .fta:focus { outline: none; border-color: var(--gold); background: white; box-shadow: 0 0 0 3px rgba(197,155,39,0.1); }
.fta { resize: vertical; min-height: 80px; }

.price-estimate { background: rgba(197,155,39,0.05); border: 1px dashed var(--gold-light); border-radius: var(--radius-md); padding: 1rem; text-align: center; margin-bottom: 1.5rem; }
.pe-label { font-size: 0.8rem; color: var(--text-secondary); text-transform: uppercase; margin-bottom: 0.3rem; }
.pe-value { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--gold-dark); line-height: 1; margin-bottom: 0.3rem; }
.pe-note { font-size: 0.75rem; color: var(--text-muted); }

.ofc-whatsapp { text-align: center; margin-top: 1rem; }
.wa-btn { display: inline-flex; align-items: center; gap: 0.5rem; color: #25D366; font-size: 0.9rem; font-weight: 600; text-decoration: underline; }
.wa-btn:hover { color: #128C7E; }

/* =====================================================
   STATS
   ===================================================== */
.stats-section { padding: 4rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: white; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.scard { text-align: center; }
.sc-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.sc-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--gold-dark); line-height: 1; margin-bottom: 0.5rem; }
.sc-label { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials-section { padding: 6rem 0; background: #fdfbf7; }
.tslider { position: relative; overflow: hidden; max-width: 800px; margin: 0 auto; }
.ttrack { display: flex; transition: transform 0.5s ease; }
.tcard { flex: 0 0 100%; padding: 2rem; text-align: center; }
.tstars { color: var(--gold); font-size: 1.2rem; margin-bottom: 1rem; }
.ttext { font-family: var(--font-elegant); font-size: 1.3rem; font-style: italic; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.5rem; }
.tauth { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.tava { width: 50px; height: 50px; background: rgba(197,155,39,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.tname { font-weight: 600; color: var(--text-primary); font-size: 0.95rem; }
.tev { font-size: 0.8rem; color: var(--text-muted); }
.tdots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1rem; }
.tdot { width: 10px; height: 10px; border-radius: 50%; background: #ddd; transition: var(--transition); }
.tdot.active { background: var(--gold); width: 20px; border-radius: 5px; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer { background: white; border-top: 1px solid var(--border); padding-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-desc { font-size: 0.9rem; color: var(--text-muted); margin: 1rem 0 1.5rem; line-height: 1.6; }
.social-row { display: flex; gap: 0.75rem; }
.slink { width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-secondary); transition: var(--transition); background: #fafafa; }
.slink:hover { border-color: var(--gold); color: var(--gold-dark); background: white; transform: translateY(-3px); }
.wa-slink { color: #25D366; }

.footer-col h4, .footer-newsletter h4 { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-primary); margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a { font-size: 0.85rem; color: var(--text-secondary); transition: var(--transition); }
.footer-col a:hover { color: var(--gold-dark); padding-left: 5px; }

.footer-newsletter p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }
.nl-form { display: flex; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 1.5rem; }
.nl-input { flex: 1; padding: 0.75rem 1rem; border: none; background: #fafafa; outline: none; font-size: 0.85rem; }
.nl-btn { padding: 0 1rem; background: var(--gold); color: white; font-weight: bold; }
.nl-btn:hover { background: var(--gold-dark); }

.footer-iletisim { display: flex; flex-direction: column; gap: 0.5rem; }
.fi-item { font-size: 0.85rem; color: var(--text-secondary); display: flex; align-items: center; gap: 0.5rem; }

.footer-bottom { border-top: 1px solid #eee; padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--text-muted); }
.fb-links { display: flex; gap: 1.5rem; }
.fb-links a:hover { color: var(--gold-dark); }

/* =====================================================
   MODALS & SIDEBAR
   ===================================================== */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(5px); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: var(--transition); padding: 2rem; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-card { background: white; border-radius: var(--radius-xl); padding: 2rem; width: 100%; max-width: 450px; position: relative; transform: translateY(20px); transition: var(--transition); box-shadow: 0 25px 50px rgba(0,0,0,0.15); max-height: 90vh; overflow-y: auto; }
.modal-overlay.open .modal-card { transform: translateY(0); }
.modal-close { position: absolute; top: 1rem; right: 1rem; width: 30px; height: 30px; border-radius: 50%; background: #f5f5f5; border: none; font-size: 1rem; color: var(--text-muted); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.modal-close:hover { background: #eee; color: var(--text-primary); }

.modal-header { margin-bottom: 1.5rem; }
.modal-header h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--text-primary); }
.modal-header p { font-size: 0.85rem; color: var(--text-muted); }

.bid-preview-box { height: 180px; background: #f5f5f5; border-radius: var(--radius-md); margin-bottom: 1.5rem; overflow: hidden; }
.bid-preview-box img { width: 100%; height: 100%; object-fit: cover; }
.bid-stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; background: #fafafa; padding: 1rem; border-radius: var(--radius-md); margin-bottom: 1.5rem; border: 1px solid #eee; }
.bsr-item { text-align: center; }
.bsr-item span { display: block; font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; margin-bottom: 0.3rem; }
.bsr-item strong { font-family: var(--font-display); font-size: 1.1rem; color: var(--text-primary); }
#mbCurrentBid { color: var(--gold-dark); }
.bid-form-area label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--text-secondary); }
.bid-inp-wrap { display: flex; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 1rem; }
.bid-inp-wrap:focus-within { border-color: var(--gold); }
.bid-cur { padding: 0.75rem 1rem; background: rgba(197,155,39,0.1); color: var(--gold-dark); font-weight: bold; border-right: 1px solid var(--border); }
.bid-inp { flex: 1; border: none; padding: 0.75rem 1rem; outline: none; font-size: 1rem; font-weight: 600; color: var(--text-primary); }
.bid-sugg { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.bs-btn { padding: 0.3rem 0.6rem; border: 1px solid var(--border); border-radius: 50px; font-size: 0.8rem; color: var(--text-secondary); transition: var(--transition); }
.bs-btn:hover { border-color: var(--gold); color: var(--gold-dark); }
.bid-note { font-size: 0.75rem; color: var(--text-muted); text-align: center; margin-top: 1rem; }

.product-modal-card { max-width: 800px; padding: 0; overflow: hidden; }
.pm-content { display: grid; grid-template-columns: 1fr 1fr; }
.pm-img { height: 100%; background: #f0f0f0; min-height: 400px; position: relative; }
.pm-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.pm-info { padding: 2.5rem; display: flex; flex-direction: column; }
.pm-tag { font-size: 0.75rem; color: var(--gold-dark); font-weight: 600; text-transform: uppercase; margin-bottom: 0.5rem; letter-spacing: 1px; }
.pm-title { font-family: var(--font-display); font-size: 1.8rem; color: var(--text-primary); margin-bottom: 1rem; line-height: 1.2; }
.pm-price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--gold-dark); margin-bottom: 1.5rem; }
.pm-desc { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 2rem; flex: 1; }
.pm-actions { display: flex; gap: 1rem; }

/* Cart */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); backdrop-filter: blur(3px); z-index: 1500; opacity: 0; pointer-events: none; transition: var(--transition); }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar { position: fixed; top: 0; right: 0; bottom: 0; width: 400px; background: white; z-index: 1600; transform: translateX(100%); transition: var(--transition-slow); display: flex; flex-direction: column; box-shadow: -10px 0 30px rgba(0,0,0,0.1); }
.cart-sidebar.open { transform: translateX(0); }
.cart-head { padding: 1.5rem; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; }
.cart-head h3 { font-family: var(--font-display); font-size: 1.25rem; color: var(--text-primary); }
.cart-close-btn { font-size: 1.25rem; color: var(--text-muted); transition: var(--transition); }
.cart-close-btn:hover { color: var(--text-primary); }
.cart-body { flex: 1; overflow-y: auto; padding: 1.5rem; }
.cart-empty-state { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; text-align: center; color: var(--text-muted); }
.cart-empty-state div { font-size: 3rem; opacity: 0.5; }
.c-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid #f0f0f0; }
.c-item-img { width: 80px; height: 80px; background: #f5f5f5; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.c-item-img img { width: 100%; height: 100%; object-fit: cover; }
.c-item-info { flex: 1; display: flex; flex-direction: column; }
.c-item-title { font-weight: 600; font-size: 0.95rem; color: var(--text-primary); margin-bottom: 0.3rem; }
.c-item-cat { font-size: 0.75rem; color: var(--text-muted); margin-bottom: auto; }
.c-item-bot { display: flex; justify-content: space-between; align-items: center; margin-top: 0.5rem; }
.c-item-price { font-weight: 700; color: var(--gold-dark); }
.c-item-del { color: #dc3545; font-size: 0.8rem; font-weight: 500; }
.c-item-del:hover { text-decoration: underline; }
.cart-foot { padding: 1.5rem; border-top: 1px solid #eee; background: #fafafa; }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; font-size: 1.1rem; color: var(--text-primary); }
.cart-total-row strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-dark); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero-quick-links { align-items: center; }
  .quick-link { width: 100%; max-width: 400px; text-align: left; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .product-types-grid { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .auction-grid { grid-template-columns: repeat(2, 1fr); }
  .order-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .catalog-grid { grid-template-columns: 1fr; }
  .auction-grid { grid-template-columns: 1fr; }
  .hiw-grid { flex-direction: column; gap: 3rem; }
  .hiw-connector { display: none; }
  .pm-content { grid-template-columns: 1fr; }
  .pm-img { min-height: 250px; }
  .cart-sidebar { width: 100%; }
  .fg-row { grid-template-columns: 1fr; }
  .konsept-grid { grid-template-columns: 1fr; }
}
