/* Baharatya — bh- prefix | Saffron & Deep Red */
:root {
  --bh-saffron: #D4A017;
  --bh-red: #8B1A1A;
  --bh-sand: #F2E6D0;
  --bh-saffron-light: #E8C04A;
  --bh-red-dark: #6B1212;
  --bh-font: Georgia, "Times New Roman", serif;
  --bh-sans: "Segoe UI", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body.bh-body {
  font-family: var(--bh-sans);
  background: var(--bh-sand);
  color: #2c1810;
  line-height: 1.65;
}

/* Top bar */
.bh-topbar {
  background: var(--bh-red);
  color: #fff;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.82rem;
}

.bh-topbar i { color: var(--bh-saffron); margin-right: 0.35rem; }

/* Header with mega dropdown */
.bh-header {
  background: #fff;
  border-bottom: 3px solid var(--bh-saffron);
  position: sticky;
  top: 0;
  z-index: 300;
  box-shadow: 0 2px 12px rgba(139,26,26,0.08);
}

.bh-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bh-logo {
  font-family: var(--bh-font);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--bh-red);
  text-decoration: none;
}

.bh-logo span { color: var(--bh-saffron); }

.bh-nav { display: flex; align-items: center; gap: 0.25rem; }

.bh-nav-item { position: relative; }

.bh-nav-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: #2c1810;
  font-weight: 500;
  font-size: 0.92rem;
  border-radius: 4px;
  transition: background 0.2s;
}

.bh-nav-link:hover, .bh-nav-link.bh-active {
  background: var(--bh-sand);
  color: var(--bh-red);
}

.bh-nav-link i.fa-chevron-down { font-size: 0.65rem; }

/* Mega dropdown */
.bh-mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 680px;
  background: #fff;
  border: 2px solid var(--bh-saffron);
  border-radius: 8px;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.bh-nav-item:hover .bh-mega,
.bh-nav-item.bh-mega-open .bh-mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.bh-mega-col h4 {
  font-family: var(--bh-font);
  color: var(--bh-red);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--bh-saffron);
}

.bh-mega-col a {
  display: block;
  padding: 0.4rem 0;
  color: #4a3020;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.bh-mega-col a:hover { color: var(--bh-saffron); }
.bh-mega-col a i { width: 18px; color: var(--bh-red); margin-right: 0.35rem; }

.bh-burger {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--bh-red);
  cursor: pointer;
}

/* Hero banner */
.bh-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.bh-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.bh-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(139,26,26,0.55), rgba(44,24,16,0.75));
}

.bh-hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 720px;
  color: #fff;
}

.bh-hero-badge {
  display: inline-block;
  background: var(--bh-saffron);
  color: var(--bh-red-dark);
  padding: 0.35rem 1.25rem;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.bh-hero h1 {
  font-family: var(--bh-font);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.bh-hero p { font-size: 1.1rem; opacity: 0.92; margin-bottom: 2rem; }

.bh-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
}

.bh-btn-gold { background: var(--bh-saffron); color: var(--bh-red-dark); }
.bh-btn-gold:hover { background: var(--bh-saffron-light); }
.bh-btn-outline { background: transparent; color: #fff; border-color: #fff; margin-left: 0.75rem; }
.bh-btn-outline:hover { background: rgba(255,255,255,0.15); }
.bh-btn-red { background: var(--bh-red); color: #fff; border-color: var(--bh-red); }
.bh-btn-red:hover { background: var(--bh-red-dark); }

/* Sections */
.bh-section { padding: 5rem 1.5rem; }
.bh-section-red { background: var(--bh-red); color: #fff; }
.bh-section-sand { background: var(--bh-sand); }
.bh-section-white { background: #fff; }

.bh-wrap { max-width: 1140px; margin: 0 auto; }

.bh-head {
  text-align: center;
  margin-bottom: 3rem;
}

.bh-head h2 {
  font-family: var(--bh-font);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--bh-red);
  margin-bottom: 0.75rem;
}

.bh-section-red .bh-head h2 { color: var(--bh-saffron); }
.bh-head p { max-width: 580px; margin: 0 auto; color: #5a4030; }
.bh-section-red .bh-head p { color: rgba(255,255,255,0.8); }

.bh-eyebrow {
  color: var(--bh-saffron);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}

/* Product cards */
.bh-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.bh-product {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(212,160,23,0.3);
  transition: box-shadow 0.25s;
}

.bh-product:hover { box-shadow: 0 8px 28px rgba(139,26,26,0.12); }

.bh-product img { width: 100%; height: 200px; object-fit: cover; }
.bh-product-info { padding: 1.15rem; }
.bh-product-info h3 { font-family: var(--bh-font); color: var(--bh-red); font-size: 1.05rem; margin-bottom: 0.4rem; }
.bh-product-info p { font-size: 0.85rem; color: #6a5040; }
.bh-product-price { color: var(--bh-saffron); font-weight: 700; margin-top: 0.6rem; display: block; }

/* Aroma wheel */
.bh-aroma-section { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }

.bh-aroma-wheel {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto;
  border-radius: 50%;
  background: conic-gradient(
    #8B1A1A 0deg 45deg,
    #D4A017 45deg 90deg,
    #6B4226 90deg 135deg,
    #C45C26 135deg 180deg,
    #8B6914 180deg 225deg,
    #A0522D 225deg 270deg,
    #B8860B 270deg 315deg,
    #5C3317 315deg 360deg
  );
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.bh-aroma-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--bh-font);
  font-weight: 700;
  color: var(--bh-red);
  font-size: 0.85rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.bh-aroma-slice {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: 2px solid var(--bh-red);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--bh-red);
  transition: transform 0.2s, background 0.2s;
}

.bh-aroma-slice:hover, .bh-aroma-slice.bh-aroma-active {
  transform: scale(1.2);
  background: var(--bh-saffron);
  border-color: var(--bh-saffron);
  color: #fff;
}

.bh-aroma-slice[data-aroma="baharat"] { top: 4%; left: 44%; }
.bh-aroma-slice[data-aroma="safran"] { top: 18%; right: 6%; }
.bh-aroma-slice[data-aroma="kimyon"] { top: 44%; right: 0; }
.bh-aroma-slice[data-aroma="sumak"] { bottom: 18%; right: 6%; }
.bh-aroma-slice[data-aroma="karanfil"] { bottom: 4%; left: 44%; }
.bh-aroma-slice[data-aroma="zencefil"] { bottom: 18%; left: 6%; }
.bh-aroma-slice[data-aroma="tarçın"] { top: 44%; left: 0; }
.bh-aroma-slice[data-aroma="biber"] { top: 18%; left: 6%; }

.bh-aroma-detail {
  background: #fff;
  border-left: 4px solid var(--bh-saffron);
  padding: 2rem;
  border-radius: 0 8px 8px 0;
}

.bh-aroma-detail h3 { font-family: var(--bh-font); color: var(--bh-red); margin-bottom: 0.75rem; }
.bh-aroma-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.bh-aroma-tag { background: var(--bh-sand); padding: 0.3rem 0.75rem; border-radius: 20px; font-size: 0.78rem; }

/* Origin map */
.bh-map-wrap {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  min-height: 380px;
  border: 2px solid var(--bh-saffron);
}

.bh-map-svg { width: 100%; height: 300px; }

.bh-map-pin {
  cursor: pointer;
  transition: transform 0.2s;
}

.bh-map-pin:hover { transform: scale(1.3); }

.bh-map-pin circle { fill: var(--bh-red); stroke: #fff; stroke-width: 2; }
.bh-map-pin.bh-pin-active circle { fill: var(--bh-saffron); r: 10; }

.bh-map-info {
  margin-top: 1.25rem;
  padding: 1rem;
  background: var(--bh-sand);
  border-radius: 6px;
  display: none;
}

.bh-map-info.bh-map-show { display: block; animation: bhFade 0.3s; }

@keyframes bhFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Features row */
.bh-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.bh-feature {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
}

.bh-feature i { font-size: 2rem; color: var(--bh-saffron); margin-bottom: 1rem; }
.bh-feature h3 { font-family: var(--bh-font); margin-bottom: 0.5rem; }

/* Story */
.bh-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.bh-story img { width: 100%; border-radius: 8px; height: 380px; object-fit: cover; border: 4px solid var(--bh-saffron); }

/* Page hero */
.bh-page-hero {
  background: var(--bh-red);
  color: #fff;
  padding: 3.5rem 1.5rem;
  text-align: center;
}

.bh-page-hero h1 { font-family: var(--bh-font); font-size: 2.4rem; margin-bottom: 0.5rem; }
.bh-breadcrumb { font-size: 0.85rem; opacity: 0.8; }
.bh-breadcrumb a { color: var(--bh-saffron); text-decoration: none; }

/* Forms */
.bh-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.bh-field { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
.bh-field.bh-full { grid-column: 1 / -1; }
.bh-field label { font-weight: 600; font-size: 0.88rem; }
.bh-field input, .bh-field textarea, .bh-field select {
  padding: 0.75rem; border: 2px solid var(--bh-sand); border-radius: 4px;
  font-family: inherit; font-size: 0.95rem;
}
.bh-field input:focus, .bh-field textarea:focus { outline: none; border-color: var(--bh-saffron); }
.bh-form-msg { padding: 1rem; border-radius: 4px; display: none; margin-top: 1rem; }
.bh-form-msg.bh-show { display: block; background: #e8f5e9; color: #2e7d32; }

/* Service table */
.bh-service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.bh-service-card {
  display: flex;
  gap: 1.25rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(212,160,23,0.25);
}
.bh-service-card img { width: 140px; height: 140px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }

/* Privacy */
.bh-privacy h2 { font-family: var(--bh-font); color: var(--bh-red); margin: 2rem 0 0.75rem; font-size: 1.25rem; }
.bh-privacy p, .bh-privacy li { margin-bottom: 0.75rem; color: #4a3020; }
.bh-privacy ul { padding-left: 1.5rem; }

/* Footer */
.bh-footer {
  background: #1a0f08;
  color: rgba(242,230,208,0.7);
  padding: 3rem 1.5rem 1.5rem;
}

.bh-footer-grid {
  max-width: 1140px;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
}

.bh-footer h4 { color: var(--bh-saffron); font-family: var(--bh-font); margin-bottom: 0.75rem; }
.bh-footer a { color: var(--bh-sand); text-decoration: none; font-size: 0.88rem; display: block; padding: 0.2rem 0; }
.bh-footer a:hover { color: var(--bh-saffron); }
.bh-footer-bottom { text-align: center; padding-top: 1.5rem; border-top: 1px solid rgba(242,230,208,0.1); font-size: 0.82rem; max-width: 1140px; margin: 0 auto; }

/* Cookie */
.bh-cookie {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bh-red-dark);
  color: #fff;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  z-index: 500;
  transform: translateY(100%);
  transition: transform 0.4s;
}

.bh-cookie.bh-visible { transform: translateY(0); }
.bh-cookie a { color: var(--bh-saffron); }
.bh-cookie-btns { display: flex; gap: 0.75rem; }
.bh-cookie-btn { padding: 0.6rem 1.25rem; border: none; border-radius: 4px; cursor: pointer; font-weight: 600; font-size: 0.85rem; }
.bh-cookie-ok { background: var(--bh-saffron); color: var(--bh-red-dark); }
.bh-cookie-no { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); }

@media (max-width: 900px) {
  .bh-burger { display: block; }
  .bh-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 4rem 1.5rem 2rem;
    transition: right 0.3s;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    overflow-y: auto;
  }
  .bh-nav.bh-open { right: 0; }
  .bh-mega {
    position: static;
    transform: none;
    width: 100%;
    opacity: 1;
    visibility: visible;
    display: none;
    grid-template-columns: 1fr;
    border: none;
    padding: 0.5rem 0 0.5rem 1rem;
    box-shadow: none;
  }
  .bh-nav-item.bh-mega-open .bh-mega { display: grid; }
  .bh-products, .bh-features, .bh-story, .bh-aroma-section, .bh-footer-grid, .bh-service-grid { grid-template-columns: 1fr; }
  .bh-aroma-wheel { width: 260px; height: 260px; }
  .bh-btn-outline { margin-left: 0; margin-top: 0.75rem; }
  .bh-form-row { grid-template-columns: 1fr; }
}
