/* Top bar */
.top-bar {
  background: var(--topbar-bg);
  color: var(--topbar-text);
  min-height: var(--topbar-height);
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a { color: var(--topbar-text); font-weight: 600; }
.top-bar a:hover { color: var(--primary-dark); }
.top-bar__social { display: flex; gap: 12px; }
.top-bar__social a { font-size: 0.9rem; }

/* Header */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img { height: 48px; width: auto; }
.logo__text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-dark);
  line-height: 1.2;
}
.logo__text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  padding: 10px 14px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dark);
}
.main-nav a:hover,
.main-nav a.active { color: var(--primary); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--primary-dark);
  margin: 5px 0;
  transition: var(--transition);
}

/* Hero slider */
.hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(42,33,28,0.85) 0%, rgba(42,33,28,0.5) 60%, rgba(42,33,28,0.3) 100%);
}
.hero-slide__content {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  color: var(--white);
  max-width: 650px;
}
.hero-slide__content .subtitle {
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  margin-bottom: 15px;
}
.hero-slide__content h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2rem, 4.5vw, 3rem);
}
.hero-slide__content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.9);
}
.hero-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.hero-dot.active { background: var(--gold); }
.hero-arrows button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background var(--transition);
}
.hero-arrows button:hover { background: var(--primary); }
.hero-arrows .prev { left: 20px; }
.hero-arrows .next { right: 20px; }

/* Intro section */
.intro-section { padding: 80px 0; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.intro-grid__img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.intro-grid__img img { width: 100%; height: 400px; object-fit: cover; }

/* Footer */
.site-footer {
  background: var(--brown-deep);
  color: rgba(255,255,255,0.8);
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col p { font-size: 0.95rem; line-height: 1.7; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.footer-col a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 15px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--text-dark); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.9rem;
}
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,0.7); }
.footer-legal a:hover { color: var(--gold); }

/* Contact layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}
.contact-info-box {
  background: var(--cream);
  padding: 40px;
  border-radius: var(--radius);
}
.contact-info-box h3 { margin-bottom: 20px; }
.contact-info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}
.contact-info-item__icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Product detail */
.product-detail-hero {
  padding: 100px 0 60px;
  background: var(--cream);
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.product-detail-grid img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 350px;
  object-fit: cover;
}

/* Timeline */
.timeline { position: relative; padding-left: 30px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
}
.timeline-item {
  position: relative;
  margin-bottom: 30px;
  padding-left: 25px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 5px;
  width: 14px;
  height: 14px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid var(--gold);
}
