/* =========================
   BASE / GLOBAL HEADER
========================= */

.site-header {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: #fff;
}

/* =========================
   HEADER TOP BAR
========================= */

.header-top {
  background: #f5f5ee;
  font-size: 13px;
  padding: 8px 0;
  color: #666;
}

/* REAL CONTAINER CENTERING */
.header-top .container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LEFT / RIGHT STRUCTURE */
.header-top .left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.header-top .right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* LINKS */
.header-top a {
  color: #666;
  text-decoration: none;
  font-size: 13px;
}

.header-top a:hover,
.header-top a:hover i {
  color: #813439;
}

/* ICONS */
.header-top i {
  font-size: 14px;
  color: #666;
  transition: color .2s ease;
}

/* SOCIAL ICONS ONLY */
.header-top .right a[target="_blank"] {
  font-size: 0;
}

.header-top .right a[target="_blank"] i {
  font-size: 16px;
}

/* REMOVE UNUSED AREAS */
.top-left {
  display: none;
}

.top-right {
  display: none;
}

.lang-switcher,
.language,
.top-language {
  display: none !important;
}

/* TOP NAV CENTER BLOCK */
.topnav-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex: 0 0 auto;
}

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

.header-main {
  background: #fff;
}

.header-main .container.header-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 15px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.header-main .logo img {
  max-height: 80px;
  width: auto;
  display: block;
}

/* =========================
   NAVIGATION
========================= */

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-nav > ul {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

/* NAV LINKS */
.main-nav a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: 14px;
}

.main-nav a:hover {
  color: #813439;
}

/* =========================
   ACTION AREA
========================= */

.header-actions {
  display: flex;
  align-items: center;
}

/* SHOP BUTTON */
.btn-shop {
  background: #813439;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 13px;
  white-space: nowrap;
  transition: background .2s ease;
}

.btn-shop:hover {
  background: #6e2f33;
}

/* =========================
   HERO
========================= */

.header-hero {
  height: 320px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.header-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: relative;
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

/* =========================
   SOCIAL ICONS (TOP NAV)
========================= */

.social-icons a {
  font-size: 0;
}

.social-icons img {
  width: 16px;
  height: 16px;
  display: block;
}

/* =========================
   HEADER TOP ALIGN FIX (kept)
========================= */

.header-top .container,
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .header-main .container.header-inner {
    flex-wrap: wrap;
    gap: 10px;
  }

  .logo {
    flex: 0 0 auto;
  }

  .header-actions {
    margin-left: auto;
  }

  .main-nav {
    flex: 0 0 100%;
    order: 3;
    justify-content: flex-start;
  }

  .main-nav ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
  }

  .main-nav a {
    font-size: 13px;
  }
}