/* ============================================================================
   TAŞ DEVRİ ŞÖMİNE — v3 MODERN DARK
   Siyah + Altın · Cormorant + Inter · Görselsiz tasarım
   ============================================================================ */

:root {
  /* Renkler */
  --bg: #0a0908;
  --bg-2: #14110f;
  --bg-3: #1c1815;
  --bg-card: rgba(28, 24, 21, 0.6);
  --bg-card-hover: rgba(36, 30, 25, 0.85);
  --line: rgba(212, 168, 97, 0.12);
  --line-strong: rgba(212, 168, 97, 0.3);
  --ink: #f4ede0;
  --ink-soft: #b8a98e;
  --ink-mute: #6e6557;
  --gold: #d4a861;
  --gold-bright: #e8c585;
  --gold-deep: #a8823f;
  --gold-glow: rgba(212, 168, 97, 0.4);

  /* Tipografi */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --container: 1280px;
  --radius: 16px;
  --radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 800px 600px at 20% 10%, rgba(212, 168, 97, 0.06), transparent),
    radial-gradient(ellipse 600px 400px at 80% 80%, rgba(212, 168, 97, 0.04), transparent);
  background-attachment: fixed;
}

a { color: inherit; text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-bright); }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2vw, 1.7rem); }
h4 { font-size: 1.15rem; }

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

/* ============================================================================
   ANNOUNCEMENT BAR
   ============================================================================ */

.announcement-bar {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  padding: 10px 0;
  color: var(--ink-soft);
}
.announcement-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.announcement-bar::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold-glow);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.announcement-bar a {
  color: var(--gold);
  font-weight: 500;
}
.announcement-bar a:hover { color: var(--gold-bright); }

/* ============================================================================
   HEADER
   ============================================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 9, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  position: relative;
  flex-shrink: 0;
}
.logo-mark::before {
  content: 'TD';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--bg);
  font-size: 16px;
  letter-spacing: 0.5px;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
}
.logo-tag {
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Main nav */
.main-nav {
  flex: 1;
}
.main-nav > ul {
  list-style: none;
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
.main-nav > ul > li > a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 100px;
  transition: all 0.2s;
  position: relative;
}
.main-nav > ul > li > a:hover {
  color: var(--ink);
  background: rgba(212, 168, 97, 0.08);
}

/* Mega menu */
.has-mega { position: relative; }
.has-mega > a::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 6px;
  transition: transform 0.2s;
}
.has-mega:hover > a::after { transform: rotate(225deg) translateY(2px); }

.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  min-width: 760px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 90;
}
.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mega-col h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.mega-col h4 a { color: var(--gold); }
.mega-col ul { list-style: none; }
.mega-col li { padding: 4px 0; }
.mega-col li a {
  font-size: 13px;
  color: var(--ink-soft);
  display: inline-block;
  padding: 2px 0;
}
.mega-col li a:hover { color: var(--gold-bright); }

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

/* Lang switcher */
.lang-switcher { position: relative; }
.lang-toggle {
  background: transparent;
  border: 1px solid var(--line-strong);
  padding: 7px 14px;
  border-radius: 100px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  font-family: inherit;
  transition: all 0.2s;
}
.lang-toggle:hover {
  border-color: var(--gold);
  background: rgba(212, 168, 97, 0.06);
}
.lang-flag { font-size: 14px; }
.lang-code { letter-spacing: 0.5px; font-weight: 600; }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  min-width: 160px;
  padding: 6px;
  display: none;
  z-index: 100;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.lang-dropdown.active { display: block; }
.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: 14px;
}
.lang-dropdown a:hover { background: rgba(212, 168, 97, 0.1); color: var(--gold-bright); }
.lang-dropdown a.active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--bg);
  font-weight: 600;
}

/* Portal CTA button (header) */
.btn-portal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--bg);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(212, 168, 97, 0.25);
}
.btn-portal:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(212, 168, 97, 0.4);
  color: var(--bg);
}
.btn-portal-icon { font-size: 14px; }

/* Mobile toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line-strong);
  width: 40px; height: 40px;
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.mobile-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: 0.2s;
}

/* ============================================================================
   BUTTONS
   ============================================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  letter-spacing: 0.3px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--bg);
  box-shadow: 0 4px 24px rgba(212, 168, 97, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 168, 97, 0.5);
  color: var(--bg);
}
.btn-outline {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(212, 168, 97, 0.06);
  color: var(--gold-bright);
}
.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-sm { padding: 8px 16px; font-size: 12px; }
.btn-whatsapp {
  background: #25d366;
  color: #fff;
}
.btn-whatsapp:hover { background: #20bd5a; color: #fff; }

/* ============================================================================
   HERO (Modern, görselsiz)
   ============================================================================ */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
  background: var(--bg);
}
.hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1200px; height: 1200px;
  background: radial-gradient(circle, rgba(212, 168, 97, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  /* Decorative grid lines */
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 168, 97, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 168, 97, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 80%);
}

.hero-slides {
  position: relative;
  width: 100%;
}
.hero-slide {
  display: none;
  position: relative;
}
.hero-slide.active { display: block; }
.hero-overlay { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  background: rgba(212, 168, 97, 0.04);
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold-glow);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.hero-dots button {
  width: 24px;
  height: 3px;
  background: rgba(244, 237, 224, 0.2);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s;
}
.hero-dots button.active {
  width: 48px;
  background: var(--gold);
}

/* Decorative orbital rings (replaces missing image) */
.hero-visual {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}
.hero-visual::before,
.hero-visual::after,
.hero-visual > div {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  transform: translate(-50%, -50%);
}
.hero-visual::before { width: 280px; height: 280px; }
.hero-visual::after { width: 460px; height: 460px; border-color: var(--line); }
.hero-visual > div { width: 600px; height: 600px; border-color: rgba(212, 168, 97, 0.05); }

/* ============================================================================
   SECTIONS
   ============================================================================ */

.section {
  padding: 100px 0;
  position: relative;
}
.section-head {
  margin-bottom: 60px;
  max-width: 720px;
}
.section-head.center {
  margin: 0 auto 60px;
  text-align: center;
}
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
}
.section-head h2 {
  margin-bottom: 16px;
}
.section-head h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}
.section-cta { text-align: center; margin-top: 48px; }

/* ============================================================================
   STATS
   ============================================================================ */

.stats {
  padding: 60px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}
.stat {
  text-align: center;
  position: relative;
}
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--line);
}
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ink-mute);
}

/* ============================================================================
   CATEGORIES (mosaic, görselsiz)
   ============================================================================ */

.cats-mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.cat-card {
  position: relative;
  display: block;
  padding: 40px 32px;
  height: 280px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-3) 100%);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all 0.4s ease;
  text-decoration: none;
  color: var(--ink);
}

.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(212, 168, 97, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.4s;
}
.cat-card::after {
  /* Geometric decorative pattern (no image needed) */
  content: '';
  position: absolute;
  right: -60px; bottom: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  transition: all 0.5s;
}
.cat-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 0 1px var(--gold-glow);
}
.cat-card:hover::before { opacity: 1; }
.cat-card:hover::after {
  border-color: var(--gold);
  transform: scale(1.2);
  border-width: 2px;
}

.cat-overlay { display: none; }

.cat-info {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cat-info h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink);
  margin: 0;
  max-width: 70%;
  letter-spacing: -0.01em;
}
.cat-info::before {
  /* Number badge */
  content: counter(cat-counter, decimal-leading-zero);
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 1px;
  font-weight: 500;
}
.cats-mosaic { counter-reset: cat-counter; }
.cats-mosaic .cat-card { counter-increment: cat-counter; }

.cat-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  font-size: 18px;
  color: var(--gold);
  transition: all 0.3s;
  align-self: flex-start;
}
.cat-card:hover .cat-arrow {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
  transform: rotate(-45deg);
}

/* ============================================================================
   PRODUCTS GRID (görselsiz fallback'li)
   ============================================================================ */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.product-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.35s ease;
  text-decoration: none;
  color: var(--ink);
}
.product-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.product-image {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg-3) 0%, var(--bg-2) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-image::before {
  /* No-image placeholder pattern */
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(212, 168, 97, 0.06), transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(212, 168, 97, 0.04), transparent 40%);
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
  position: relative;
  z-index: 1;
}
.product-card:hover .product-image img { transform: scale(1.05); }

.product-info {
  padding: 22px 24px;
  border-top: 1px solid var(--line);
}
.product-info h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.product-card:hover .product-info h3 { color: var(--gold-bright); }
.product-sku {
  font-size: 11px;
  color: var(--ink-mute);
  font-family: var(--font-sans);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ============================================================================
   ABOUT SPLIT
   ============================================================================ */

.about-split {
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.about-image::before {
  /* Decorative corners */
  content: '';
  position: absolute;
  top: 20px; left: 20px;
  width: 60px; height: 60px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}
.about-image::after {
  content: '';
  position: absolute;
  bottom: 20px; right: 20px;
  width: 60px; height: 60px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.about-text h2 { margin-bottom: 24px; }
.about-text p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* ============================================================================
   PORTAL CTA (premium block)
   ============================================================================ */

.portal-cta {
  position: relative;
  padding: 120px 0;
  margin: 60px 0 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.portal-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 80% 50%, rgba(212, 168, 97, 0.1), transparent);
  pointer-events: none;
}
.portal-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.portal-cta-content h2 {
  margin: 16px 0 24px;
}
.portal-cta-content p {
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.portal-mockup {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-3);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 32px;
  overflow: hidden;
}
.portal-mockup::before {
  /* Browser bar dots */
  content: '';
  position: absolute;
  top: 14px; left: 16px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-deep);
  box-shadow: 14px 0 0 var(--gold-deep), 28px 0 0 var(--gold-deep);
}
.mock-room {
  width: 100%;
  height: 70%;
  background: linear-gradient(180deg, rgba(212, 168, 97, 0.15) 0%, rgba(168, 130, 63, 0.05) 100%);
  border-radius: 8px;
  position: relative;
  margin-top: 28px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
}
.mock-fireplace {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 60%;
  background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg) 100%);
  border-radius: 4px 4px 0 0;
  border: 1px solid var(--line-strong);
  border-bottom: none;
}
.mock-fireplace::after {
  content: '';
  position: absolute;
  top: 30%; left: 50%;
  transform: translateX(-50%);
  width: 50%; height: 50%;
  background: radial-gradient(ellipse, var(--gold-bright) 0%, var(--gold-deep) 60%, transparent 80%);
  border-radius: 50%;
  filter: blur(8px);
  animation: flame 3s ease-in-out infinite alternate;
}
@keyframes flame {
  from { opacity: 0.8; transform: translateX(-50%) scale(1); }
  to   { opacity: 1; transform: translateX(-50%) scale(1.1); }
}
.mock-products {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.mock-products div {
  width: 50px;
  height: 50px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  position: relative;
}
.mock-products div::after {
  content: '';
  position: absolute;
  inset: 8px;
  background: linear-gradient(135deg, rgba(212, 168, 97, 0.2), transparent);
  border-radius: 4px;
}

/* ============================================================================
   PAGE HERO (sub pages)
   ============================================================================ */

.page-hero {
  padding: 100px 0 60px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 168, 97, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 168, 97, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 90%);
}
.page-hero.compact { padding: 50px 0 30px; }
.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 12px;
  position: relative;
}
.page-hero p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 720px;
  position: relative;
}

.breadcrumb {
  font-size: 13px;
  color: var(--ink-mute);
  margin-bottom: 20px;
  position: relative;
}
.breadcrumb a { color: var(--ink-mute); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 8px; opacity: 0.5; }
.breadcrumb strong { color: var(--gold); font-weight: 500; }

/* ============================================================================
   CATEGORY LAYOUT
   ============================================================================ */

.category-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
}
.cat-sidebar h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--gold);
}
.sidebar-cats {
  list-style: none;
}
.sidebar-cats li { margin-bottom: 4px; }
.sidebar-cats a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--ink-soft);
  border-radius: 8px;
  transition: all 0.2s;
}
.sidebar-cats a:hover {
  background: rgba(212, 168, 97, 0.06);
  color: var(--ink);
}
.sidebar-cats a.active {
  background: rgba(212, 168, 97, 0.12);
  color: var(--gold-bright);
  font-weight: 500;
}

/* ============================================================================
   PRODUCT DETAIL
   ============================================================================ */

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.product-main-image {
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.product-main-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 168, 97, 0.05), transparent);
}
.product-main-image img { width: 100%; height: 100%; object-fit: cover; }

.product-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.thumb {
  width: 70px; height: 70px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  transition: all 0.2s;
}
.thumb:hover, .thumb.active { border-color: var(--gold); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info-block {
  padding: 8px 0;
}
.product-category {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.product-info-block h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 400;
  margin-bottom: 12px;
}
.product-sku-line {
  margin-bottom: 24px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--ink-mute);
}
.product-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold-bright);
  margin-bottom: 24px;
}
.product-description {
  color: var(--ink-soft);
  line-height: 1.85;
  font-size: 1rem;
  margin-bottom: 32px;
}

.product-specs {
  margin: 32px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.product-specs h3 {
  font-size: 1rem;
  padding: 16px 20px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  color: var(--gold);
}
.product-specs table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.product-specs th, .product-specs td {
  padding: 12px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.product-specs th {
  width: 40%;
  color: var(--ink-mute);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.product-specs td { color: var(--ink); }
.product-specs tr:last-child th, .product-specs tr:last-child td { border-bottom: none; }

.product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.related-products {
  margin-top: 100px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
}
.related-products h2 {
  margin-bottom: 32px;
}

/* ============================================================================
   FORMS
   ============================================================================ */

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--ink-soft);
  letter-spacing: 0.3px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  transition: all 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(212, 168, 97, 0.04);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--ink-mute); }

/* ============================================================================
   CONTACT
   ============================================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
}
.contact-info h2 { margin-bottom: 32px; }
.contact-list {
  list-style: none;
}
.contact-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: none; }
.ci-icon {
  font-size: 20px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-list strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--ink);
}
.contact-list p { margin: 0; color: var(--ink-soft); font-size: 14px; }

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-form-wrap h2 { margin-bottom: 24px; }

.contact-map {
  margin-top: 80px;
  height: 450px;
  filter: grayscale(0.6) contrast(0.9) brightness(0.7);
}
.contact-map iframe { display: block; width: 100%; height: 100%; }

/* ============================================================================
   ALERTS
   ============================================================================ */

.alert {
  padding: 14px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  border: 1px solid;
}
.alert-success {
  background: rgba(76, 175, 80, 0.1);
  border-color: rgba(76, 175, 80, 0.3);
  color: #88d18b;
}
.alert-error {
  background: rgba(229, 57, 53, 0.1);
  border-color: rgba(229, 57, 53, 0.3);
  color: #ff8a80;
}

/* ============================================================================
   BLOG / GALLERY
   ============================================================================ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}
.blog-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}
.blog-image {
  display: block;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  overflow: hidden;
}
.blog-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 28px; }
.blog-date {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.blog-body h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  line-height: 1.3;
  margin-bottom: 12px;
}
.blog-body h3 a:hover { color: var(--gold-bright); }
.blog-body p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 20px;
}
.btn-link {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.5px;
}
.btn-link:hover { color: var(--gold-bright); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.gallery-card {
  display: block;
  aspect-ratio: 1;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.gallery-image { width: 100%; height: 100%; }
.gallery-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.gallery-card:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 60%);
}
.gallery-overlay h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 4px;
}
.gallery-overlay p { color: var(--ink-soft); font-size: 13px; }

.masonry {
  column-count: 3;
  column-gap: 16px;
}
.masonry-item {
  display: block;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  break-inside: avoid;
}
.masonry-item img { width: 100%; height: auto; }

/* ============================================================================
   PAGINATION
   ============================================================================ */

.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 60px;
}
.pagination a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  color: var(--ink-soft);
  transition: all 0.2s;
}
.pagination a:hover { border-color: var(--gold); color: var(--gold); }
.pagination a.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
  font-weight: 600;
}

/* ============================================================================
   PRODUCTS SEARCH
   ============================================================================ */

.products-search {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  max-width: 600px;
}
.products-search input {
  flex: 1;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink);
  font-family: inherit;
}
.products-search input:focus {
  outline: none;
  border-color: var(--gold);
}
.products-search button {
  padding: 0 28px;
  background: var(--gold);
  color: var(--bg);
  border: none;
  border-radius: 100px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--ink-mute);
}

/* ============================================================================
   STATIC PAGE
   ============================================================================ */

.content-wrap {
  max-width: 800px;
  margin: 0 auto;
  color: var(--ink-soft);
  line-height: 1.85;
  font-size: 1.05rem;
}
.content-wrap h2 {
  margin: 40px 0 16px;
  color: var(--ink);
}
.content-wrap h3 {
  margin: 28px 0 12px;
  color: var(--gold);
}
.content-wrap p { margin-bottom: 18px; }
.content-wrap a { color: var(--gold); border-bottom: 1px solid var(--line-strong); }
.content-wrap a:hover { color: var(--gold-bright); }
.content-wrap ul, .content-wrap ol {
  margin: 16px 0 16px 24px;
}
.content-wrap li { margin-bottom: 8px; }

/* ============================================================================
   ERROR PAGE
   ============================================================================ */

.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.error-content {
  text-align: center;
  margin: 0 auto;
}
.error-content h1 {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 300;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 16px;
}
.error-content h2 { margin-bottom: 12px; }
.error-content p { color: var(--ink-soft); margin-bottom: 32px; }

/* ============================================================================
   FOOTER
   ============================================================================ */

.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 80px 0 40px;
  margin-top: 100px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--ink);
}
.footer-about-text {
  color: var(--ink-mute);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--ink-soft);
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}
.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin-bottom: 18px;
  color: var(--gold);
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 10px;
}
.footer-col a {
  color: var(--ink-mute);
  font-size: 13px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-bright); }

.footer-contact { list-style: none; }
.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  color: var(--ink-mute);
  font-size: 13px;
}
.footer-contact li span { color: var(--gold); flex-shrink: 0; }

.footer-newsletter {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.footer-newsletter input {
  flex: 1;
  min-width: 0;
  padding: 11px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-family: inherit;
  font-size: 13px;
}
.footer-newsletter input:focus { outline: none; border-color: var(--gold); }
.footer-newsletter button {
  padding: 11px 18px;
  background: var(--gold);
  color: var(--bg);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
}
.footer-newsletter-text {
  font-size: 13px;
  color: var(--ink-mute);
  margin-bottom: 4px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.3px;
}
.footer-legal {
  display: flex;
  gap: 24px;
}

/* ============================================================================
   WHATSAPP FLOAT
   ============================================================================ */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px; height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 80;
  transition: transform 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}

/* ============================================================================
   AR (RTL) FONT
   ============================================================================ */

.lang-ar body, .lang-ar h1, .lang-ar h2, .lang-ar h3,
.lang-ar .hero-title, .lang-ar .logo-name, .lang-ar .section-head h2 {
  font-family: 'Cairo', 'Amiri', sans-serif;
}
.lang-ar h1, .lang-ar h2, .lang-ar h3,
.lang-ar .hero-title, .lang-ar .section-head h2 {
  font-family: 'Amiri', 'Cairo', serif;
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */

@media (max-width: 1024px) {
  .main-nav { display: none; }
  .mobile-toggle { display: flex; }
  .header-actions .btn-portal span:not(.btn-portal-icon) { display: none; }
  .btn-portal { padding: 9px 12px; }
  .category-layout { grid-template-columns: 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .portal-cta-inner { grid-template-columns: 1fr; gap: 60px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { display: none; }
  .masonry { column-count: 2; }
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stat:not(:last-child)::after { display: none; }
  .masonry { column-count: 1; }
  .hero { min-height: 70vh; }
  .lang-toggle .lang-code { display: none; }
}
