/****************************************
    GLOBAL WRAPPER — STANDARD CONTAINER
*****************************************/

.container {
  margin: 0 auto; /* Center perfectly */
  padding: 0 64px; /* Equal left & right spacing */
  box-sizing: border-box;
}

/****************************************
    BRAND LOGO
*****************************************/
.logo {
  width: 145px;
  height: auto;
  padding-top: 10px;
  transition: filter 0.25s ease;
}

/****************************************
    COLOR PALETTE (Luxury Gold Theme)
*****************************************/
:root {
  --gold-light: #d8c08f;
  --gold-mid: #c9b180;
  --gold-dark: #a28c63;
  --text-dark: #3e3a30;
  --white: #ffffff;
}

/****************************************
    HEADER — FIXED + GLASS EFFECT
*****************************************/
.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  height: 155px;

  background: transparent;
  border-bottom: none;

  transition: background 0.35s ease, border 0.35s ease, box-shadow 0.35s ease,
    backdrop-filter 0.35s ease;
}

/* Default (over hero section) → white text */
.site-header * {
  color: var(--white) !important;
  fill: var(--white) !important;
}

/****************************************
    SCROLLED / ACTIVE HEADER (Glass + Gold)
*****************************************/
.site-header.active,
.site-header.scrolled {
  background: #000000 !important;
  backdrop-filter: blur(14px) saturate(125%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
}
.site-header.scrolled .logo {
  /**filter: drop-shadow(0 0 6px rgba(202, 213, 49, 0.4));**/
  transition: filter 0.25s ease;
}

.site-header.active *,
.site-header.scrolled * {
  color: #fff !important;
  fill: #fff !important;
}

/****************************************
    NAV UNDERLINES (Become Gold on Active)
*****************************************/
.site-header .menu-item > a::after {
  background: var(--white);
}

.site-header.active .menu-item > a::after,
.site-header.scrolled .menu-item > a::after {
  background: var(--gold-mid);
}

/****************************************
    SEARCH UNDERLINE — GOLD WHEN ACTIVE
*****************************************/
.pandora-search-line {
  background: #fff;
}

.site-header.active .pandora-search-line,
.site-header.scrolled .pandora-search-line {
  background: var(--gold-mid);
}

/****************************************
    ROW 1 — LOGO / SEARCH / ICONS
*****************************************/
.header-row-1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* SEARCH */
.pandora-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 420px;
  padding-bottom: 18px;
}

.pandora-search-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.pandora-search-text {
  font-size: 14px;
  font-weight: 500;
  transition: color 0.25s ease;
}

.pandora-search-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 260px;
  height: 1px;
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.pandora-search:hover .pandora-search-line {
  width: 330px;
}

/****************************************
    ICONS (Wishlist / Cart / Profile)
*****************************************/
.header-icons span {
  font-size: 20px;
  margin-left: 18px;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.25s ease;
}

.header-icons span:hover {
  transform: scale(1.15);
  color: var(--gold-mid) !important;
}

/****************************************
    ROW 2 — NAV MENU
*****************************************/
.header-row-2 {
  justify-content: center;
  padding: 20px 65px;
}

.main-menu {
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  justify-content: space-between;
  list-style: none;
}

.menu-item > a {
  font-size: 0.875rem;
  text-decoration: none;
  padding-bottom: 6px;
  position: relative;
  font-weight: 500;
  transition: color 0.25s ease;
}

/* Animated underline */
.menu-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0%;
  background: #fff;
  transition: width 0.4s ease, background 0.3s ease;
}

.menu-item:hover > a::after {
  width: 100%;
}

/* Hover color (Gold) */
.header-row-2 .menu-item:hover > a {
  color: var(--gold-mid) !important;
}

/****************************************
    MEGA MENU — LUXURY GOLD GRID
*****************************************/
.mega-menu {
  position: fixed;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  background: rgba(0, 0, 0, 0.923);
  backdrop-filter: blur(12px);

  padding: 50px 0 60px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);

  transform: translateY(30px);
  transition: opacity 0.45s ease, transform 0.45s ease,
    visibility 0s linear 0.35s;
}

/* SHOW MEGA MENU */
.menu-item:hover > .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(7px);
  transition-delay: 0s;
}

/****************************************
    MEGA MENU INNER GRID
*****************************************/
.mega-inner {
  max-width: 1400px;
  margin: auto;
  padding: 0 40px;

  display: grid;
  grid-template-columns: 320px 200px 200px;
  gap: 80px;
}

/****************************************
    COLUMNS & ITEMS
*****************************************/
.mega-column h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.mega-column ul {
  list-style: none;
}

.mega-column ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 14px 0;
  font-size: 14px;
  opacity: 0.9;
  cursor: pointer;
  transition: 0.35s ease;
}

.mega-column ul li:hover {
  transform: translateX(10px);
  color: var(--gold-dark) !important;
  opacity: 1;
}

/* CATEGORY ICONS */
.mega-column ul li img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;

  filter: grayscale(0.3) brightness(0.9);
  transition: 0.3s ease;
}

.mega-column ul li:hover img {
  transform: scale(1.15);
  filter: grayscale(0) brightness(1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/****************************************
    RESPONSIVE ADJUSTMENTS
*****************************************/
@media (max-width: 1024px) {
  .main-menu {
    gap: 30px;
  }
  .mega-inner {
    gap: 40px;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .logo {
    width: 130px;
  }
  .pandora-search {
    max-width: 280px;
  }
  .mega-inner {
    grid-template-columns: 1fr;
  }
}
.header-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Circle icon button */
.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.25s ease;
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
}

.icon-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.9);
}

/* When header scrolls / active */
.site-header.active .icon-btn,
.site-header.scrolled .icon-btn {
  border-color: rgb(255, 255, 255);
}

.site-header.active .icon-btn svg,
.site-header.scrolled .icon-btn svg {
  stroke: #fff !important;
}
/* Hide hidden form input */
.sr-input {
  position: absolute;
  left: -9999px;
}
/* =========================================
   PREMIUM ICON BUTTON STYLE (PANDORA STYLE)
   ========================================= */

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 2px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(6px);

  cursor: pointer;
  transition: 0.3s ease;
}

.site-header.scrolled .icon-btn {
  border-color: rgb(255, 255, 255);
  background: rgb(0, 0, 0);
}

/* Hover = Gold Glow + Scale */
.icon-btn:hover {
  transform: scale(1.12);
  border-color: var(--gold-mid);
  box-shadow: 0 0 14px rgba(200, 170, 90, 0.45);
}

/* SVG Icon */
.icon-svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  color: rgb(0, 0, 0);
  transition: color 0.3s ease;
}

.site-header.scrolled .icon-svg {
  color: #fff;
}

/* Fix anchor button alignment */
.icon-btn svg {
  pointer-events: none;
}
/* Smooth shrink effect */
.site-header {
  transition: background 0.35s ease, backdrop-filter 0.35s ease,
    height 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
  height: 155px;
}

.site-header.scrolled {
  height: 155px; /* slightly smaller Pandora-like */
  background: rgba(0, 0, 0, 0.923) !important;
  backdrop-filter: blur(18px) saturate(150%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.site-header.scrolled .icon-btn {
  transform: scale(0.92);
}

.site-header.scrolled .main-menu a {
  letter-spacing: 0.25px;
}
