/* =========================================================
   SWAROVSKI CLONE — Global Styles
   Header design matches reference screenshot:
   - Transparent header over dark hero
   - White utility bar (Stores / shipping / Club-Login-Wishlist)
   - Big centered serif SWAROVSKI wordmark
   - Nav links spread left, Search + Bag icons on the right
   ========================================================= */

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  color: #1a1a1a;
  background: #f3efe9;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.swiper{z-index: 0;}
a {
  text-decoration: none;
  color: inherit;
}

img { display: block; max-width: 100%; }

button { font-family: inherit; }

/* =========================================================
   TOP UTILITY BAR
   Sits at the very top, transparent, white text over hero
   ========================================================= */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1060;
  background: transparent;
  padding: 10px 0;
  font-size: 12px;
  color: #ffffff;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.4s ease,
              background-color 0.4s ease;
}

.top-bar .container-fluid { padding-left: 32px; padding-right: 32px; }

.top-link {
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.25s ease;
}
.top-link i { font-size: 14px; }
.top-link:hover { opacity: 0.75; color: #ffffff; }

.top-center {
  font-size: 12px;
  color: #ffffff;
  letter-spacing: 0.2px;
}

.top-bar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

/* =========================================================
   MAIN HEADER
   Position fixed under the utility bar. Transparent at top.
   ========================================================= */
.site-header {
  position: fixed;
  top: 38px;                /* sits directly under the top utility bar */
  left: 0;
  right: 0;
  z-index: 1050;
  background: transparent;
  padding: 14px 0 18px;
  transition: top 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              background-color 0.5s ease,
              box-shadow 0.5s ease;
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  padding: 0 32px;
  row-gap: 18px;
}

/* ---------- BRAND LOGO (big, centered) ---------- */
.brand-logo {
  grid-column: 1;
  grid-row: 1;
  justify-self: center;
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 400;
  font-size: 135px;
  letter-spacing: 8px;
  line-height: 1;
  color: #ffffff;
  text-decoration: none;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.18);
  transition: font-size 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              letter-spacing 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              color 0.45s ease,
              text-shadow 0.45s ease;
}

/* ---------- PRIMARY NAV (links spread left) ---------- */
.primary-nav {
  grid-column: 1;
  grid-row: 2;
  display: flex;
   justify-content: center;
  align-items: center;
  gap: 44px;
  padding-right: 0px;         /* leave room for the right-side icons */
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.primary-nav a {
  position: relative;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.2px;
  color: #ffffff;
  padding: 4px 0;
  white-space: nowrap;
  transition: opacity 0.25s ease, color 0.35s ease;
}
.primary-nav a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease, left 0.3s ease;
}
.primary-nav a:hover { opacity: 0.85; }
.primary-nav a:hover::after { width: 100%; left: 0; }

/* ---------- RIGHT-SIDE ICONS (Search + Bag) ---------- */
.header-icons {
  position: absolute;
  right: 32px;
  bottom: 12px;                  /* aligns vertically with nav row */
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 20px;
  color: #ffffff;
  transition: bottom 0.45s ease, top 0.45s ease, color 0.4s ease;
}
.header-icons a {
  color: inherit;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.25s ease;
}
.header-icons a:hover { opacity: 0.8; }

.bag-wrap { position: relative; }
.bag-count {
  position: absolute;
  bottom: -4px;
  right: -8px;
  background: #ffffff;
  color: #1a1a1a;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  border-radius: 50%;
  padding: 3px 5px;
  min-width: 16px;
  text-align: center;
}

/* ---------- MOBILE TOGGLER ---------- */
.nav-toggler {
  position: absolute;
  left: 16px;
  top: -10px;
  background: none;
  border: 0;
  font-size: 26px;
  color: #fff;
  padding: 4px 8px;
  z-index: 2;
}

/* =========================================================
   SCROLLED STATE
   - utility bar slides up
   - header becomes solid white
   - logo shrinks & moves left
   - nav reflows inline next to logo
   - colors invert to dark
   ========================================================= */
.site-header.scrolled {
  top: 0;
  background: #ffffff;
  padding: 10px 0;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}
.site-header.scrolled .header-inner {
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto;
  row-gap: 0;
  align-items: center;
  min-height: 52px;
}
.site-header.scrolled .brand-logo {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  font-size: 22px;
  letter-spacing: 3px;
  color: #1a1a1a;
  text-shadow: none;
}
/* On mobile/tablet, center the logo in the scrolled header */
@media (max-width: 991px) {
  .site-header.scrolled .header-inner {
    grid-template-columns: auto 1fr auto;
  }
  .site-header.scrolled .brand-logo {
    grid-column: 2;
    justify-self: center;
    padding-left: 60px;
  }
}
.site-header.scrolled .primary-nav {
  grid-column: 2;
  grid-row: 1;
  justify-content: center;
  gap: 30px;
  padding-right: 0;
}
.site-header.scrolled .primary-nav a {
  color: #1a1a1a;
  font-size: 14px;
}
.site-header.scrolled .header-icons {
  position: static;
  grid-column: 3;
  grid-row: 1;
  color: #1a1a1a;
  font-size: 18px;
}
.site-header.scrolled .bag-count {
  background: #1a1a1a;
  color: #ffffff;
}
.site-header.scrolled .nav-toggler { color: #1a1a1a; top: 0px; }

/* Top-bar text turns dark if it ever needs to be shown on light bg */
.top-bar.on-light,
.top-bar.on-light .top-link,
.top-bar.on-light .top-center { color: #1a1a1a; }

/* Variant: header sits on a light background (no hero) */
.site-header.header-solid {
  background: #ffffff;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}
.site-header.header-solid .brand-logo,
.site-header.header-solid .primary-nav a,
.site-header.header-solid .header-icons,
.site-header.header-solid .nav-toggler { color: #1a1a1a; text-shadow: none; }

/* =========================================================
   HERO — dark green bokeh backdrop visible behind header
   ========================================================= */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;        /* deep green fallback */
}
.hero-img,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-enclosure,
.hero-video::-webkit-media-controls-panel { display: none !important; -webkit-appearance: none; }
.hero::after {                  /* subtle gradient for header legibility */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
              rgba(0, 0, 0, 0.30) 0%,
              rgba(0, 0, 0, 0.05) 40%,
              rgba(0, 0, 0, 0.00) 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 0;
  padding-top: 0px;           /* clear the fixed header */
  color: #ffffff;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.08;
  margin-bottom: 32px;
  color: #ffffff;
}
.hero-buttons .btn {
  padding: 14px 36px;
  border-radius: 0;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
h1.hero-title.reveal.visible {
    text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 8px 13px rgba(0, 0, 0, 0.1), 0px 18px 23px rgba(0, 0, 0, 0.1);
}
/* =========================================================
   SECTIONS
   ========================================================= */
.intro-section,
.category-section,
.fantasy-section { padding: 90px 0; }
.intro-section    { background: #f3efe9; }
.category-section { background: #ffffff; }
.bestsellers-section { background: #f0eee4; }
.fantasy-section  { background: #f3efe9; }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  margin-bottom: 24px;
}
.section-text {
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.65;
  color: #444;
}

/* ---------- CATEGORY CARDS ---------- */
.cat-card { display: block; }
.cat-card-img {
  display: block;
  overflow: hidden;
}
.cat-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.cat-card-img:hover img { transform: scale(1.05); }
.cat-card p {
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.2px;
    margin-bottom: 8px;
}

/* ---------- PRODUCT CARDS ---------- */
.product-card {
  display: block;
  background: #fff;
  text-align: center;
  padding: 16px 12px 20px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.product-card:hover {
  color: inherit;
}
.product-card-img {
  display: block;
  overflow: hidden;
  margin-bottom: 18px;
  background: #f7f5f1;
}
.product-card-img img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.08); }
.badge-new {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.4px;
  color: #6b6b6b;
  margin-bottom: 0px;
}
.product-body h6 {
  font-size: 14px;
  font-weight: 600;
  margin: 4px 0;
  color: #1a1a1a;
  line-height: 1.35;
}
.product-body small {
  display: block;
  color: #777;
  font-size: 13px;
  margin-top: 4px;
}
.product-body .price {
  font-weight: 600;
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 14px;
  color: #1a1a1a;
}

/* ---------- BESTSELLERS SWIPER ---------- */
.bestsellers-wrap { position: relative; }
.bestsellers-swiper { overflow: hidden; }
.bestsellers-swiper .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.bestsellers-swiper .swiper-slide .product-card {
  flex: 1;
  padding-bottom: 8px;
}

/* ---------- BESTSELLERS NAV ARROWS ---------- */
.bs-nav {
  position: absolute;
  top: 42%;
  z-index: 5;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.12);
  color: #1a1a1a;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.25s ease, transform 0.25s ease,
              background 0.2s ease, color 0.2s ease;
}
.bs-nav i { line-height: 1; }
.bs-prev { left: 6px; }
.bs-next { right: 6px; }
.bs-nav:hover,
.bs-nav:focus-visible {
  background: #1a1a1a;
  color: #fff;
  outline: none;
}
.bs-nav.bs-nav-disabled {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.85);
}
@media (min-width: 768px) {
  .bs-nav { width: 44px; height: 44px; font-size: 18px; }
  .bs-prev { left: 10px; }
  .bs-next { right: 10px; }
}

/* ---------- QUICK ADD BUTTON ---------- */
.quick-add-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 12px 16px;
  padding: 10px 16px;
  background: transparent;
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.quick-add-btn:hover,
.quick-add-btn:focus-visible {
  background: #1a1a1a;
  color: #fff;
  outline: none;
}
.quick-add-btn .qa-plus {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

/* ---------- PARALLAX ---------- */
.parallax-banner {
  height: 60vh;
  background-image: url('https://images.unsplash.com/photo-1617038260897-41a1f14a8ca0?auto=format&fit=crop&w=1920&q=80');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.parallax-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 16px;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: #1a1a1a;
  color: #ddd;
  font-size: 14px;
}
.site-footer h6 {
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-size: 13px;
}
.site-footer a       { color: #aaa; }
.site-footer a:hover { color: #fff; }
.site-footer hr      { border-color: #333; }

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- MOBILE MENU ---------- */
.mobile-menu li { padding: 12px 0; border-bottom: 1px solid #eee; }
.mobile-menu a  { font-size: 16px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1399px) {
  .brand-logo { font-size: 60px; letter-spacing: 7px; }
  .primary-nav { gap: 36px; padding-right: 110px; }
}
@media (max-width: 1199px) {
  .brand-logo { font-size: 52px; letter-spacing: 6px; }
  .primary-nav { gap: 28px; padding-right: 100px; }
  .primary-nav a { font-size: 13px; }
}
@media (max-width: 991px) {
  .top-bar { display: none; }
  .top-bar .container-fluid { padding-left: 16px; padding-right: 16px; }
  .site-header { top: 0; padding: 10px 0 10px; }
  .header_box, .header_box:hover { height: 90px; }
  .header-inner { padding: 0 16px; row-gap: 0; }
  .brand-logo { font-size: 38px; letter-spacing: 4px; }
  .primary-nav { display: none; }
    .header-icons {
        right: 25px;
        top: 1px;
        bottom: auto;
        gap: 16px;
        font-size: 18px;
    }
  .site-header.scrolled .brand-logo { font-size: 30px; letter-spacing: 2px; }
  .hero-content { padding-top: 0px; }
  .parallax-banner { background-attachment: scroll; }
}
@media (max-width: 576px) {
  .brand-logo { font-size: 30px; letter-spacing: 2px; }
  .site-header.scrolled .brand-logo { font-size: 30px; letter-spacing: 2px; }
  .intro-section, .category-section, .fantasy-section { padding: 56px 0; }
  .hero-title { font-size: 32px; }
}

.header_box {
     height: 240px;
    background: linear-gradient(
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 31.77%,
        rgba(0, 0, 0, 0.3) 81.77%,
        rgba(0, 0, 0, 0) 91.15%
    );
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: auto; /* changed from none so hover works */
    z-index: 1040;

}

.header_box:hover {
    height: 240px;
    background: #f3efe9; /* solid white on hover */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1040;
}
.header_box:hover *{
    color: #000 !important;
}
.site-header.scrolled:hover {
  height: auto;
}

/* Disable header_box hover effect once the header is in scrolled state */
.header_box:has(.site-header.scrolled):hover {
    height: auto;
    background: transparent;
}
.header_box:has(.site-header.scrolled):hover * {
    color: inherit !important;
}


.hero-slider-section{
  position: relative;
  overflow: hidden;
}

/* .hero-slider-section .hero{
  height: auto;
  min-height: 0;
} */

.hero-slide-content{
  position: relative;
}

/* Hide controls when there's only one slide */
.hero-swiper.single-slide .swiper-pagination,
.hero-swiper.single-slide .swiper-button-next,
.hero-swiper.single-slide .swiper-button-prev{
  display: none !important;
}

.hero-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-content{
  position: absolute;
  top: 60%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 0;
  max-width: 600px;
}

.hero-title{
  font-size: 70px;
  line-height: 1.1;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 25px;
}

.hero-buttons .btn{
  padding: 12px 30px;
  border-radius: 0;
}

/* Swiper Arrows — hidden globally */

.swiper-button-next,
.swiper-button-prev{
  display: none !important;
}

/* Swiper Dots */

.swiper-pagination{
  bottom: 25px !important;
}

.swiper-pagination-bullet{
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: 1;
}

.swiper-pagination-bullet-active{
  background: #000;
}

 .header_box:has(.site-header.scrolled){
    height: auto;
   }
/* Mobile */

@media(max-width:991px){
  .section-text {
    max-width: 290px;
}
  .section-title {
    font-size: clamp(28px, 3vw, 40px);
}

  .hero-content{
    left: 0;
    right: 0;
    padding: 0 20px;
    text-align: center;
    top: 75%;
    bottom: auto;
    transform: translateY(-50%);
    max-width: 100%;
  }

  .hero-title{
    font-size: 45px;
    margin-bottom: 20px;
  }

  .hero-buttons{
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
  }

  .hero-buttons .btn{
    padding: 12px 20px;
    font-size: 13px;
    margin: 0 !important;
    width: 220px;
    max-width: 80%;
  }

  .swiper-button-next,
  .swiper-button-prev{
    display: none;
  }

  .hero-img,
  .hero-video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero-slider-section .swiper-pagination{
    bottom: 20px !important;
  }
}

@media(max-width:576px){
      .hero-title {
        font-size: 45px;
        margin-bottom: 50px;
    }

  .hero-content{
    bottom: auto;
    padding: 0 16px;
  }

      .hero-buttons .btn {
        padding: 9px 14px;
        font-size: 12px;
        letter-spacing: 1px;
        background: #fff;
        color: #000;
    }

  .hero-slider-section .swiper-pagination{
    bottom: 14px !important;
  }
}

/* =========================================================
   FULL-PAGE SEARCH OVERLAY
   ========================================================= */
.search-overlay {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.35s ease, visibility 0s linear 0.35s;
  overflow-y: auto;
}
.search-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.35s ease, visibility 0s linear 0s;
}

.search-overlay-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 28px 40px 60px;
}

/* Top row: input + close */
.search-top {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d8d8d8;
  margin-bottom: 56px;
}
.search-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}
.search-input-icon {
  font-size: 20px;
  color: #888;
}
.search-input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 18px;
  color: #1a1a1a;
  padding: 8px 0;
  font-family: inherit;
}
.search-close {
  background: none;
  border: 0;
  color: #1a1a1a;
  font-size: 22px;
  padding: 6px 10px;
  cursor: pointer;
  line-height: 1;
  transition: opacity 0.2s ease;
}
.search-close:hover { opacity: 0.7; }

/* Body sections */
.search-section-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 18px;
  letter-spacing: 0.2px;
}

.recommendation-list li { margin-bottom: 12px; }
.recommendation-list a {
  font-size: 14px;
  color: #1a1a1a;
  transition: opacity 0.2s ease;
}
.recommendation-list a:hover { opacity: 0.6; }

/* Bestseller cards */
.bestseller-card {
  display: block;
  color: #1a1a1a;
  transition: opacity 0.2s ease;
}
.bestseller-card:hover { opacity: 0.85; }
.bestseller-img-wrap {
  border: 1px solid #e6e6e6;
  background: #fff;
  overflow: hidden;
  margin-bottom: 12px;
}
.bestseller-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.bestseller-card:hover img { transform: scale(1.03); }
.bestseller-card h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 4px;
  color: #1a1a1a;
}
.bestseller-card p {
  font-size: 13px;
  color: #888;
  margin: 0;
}

/* Lock body scroll when overlay open */
body.search-open { overflow: hidden; }

/* Responsive */
@media (max-width: 991px) {
  .search-overlay-inner { padding: 20px 24px 48px; }
  .search-top { margin-bottom: 36px; }
  .search-input { font-size: 16px; }
}
@media (max-width: 767px) {
    .header_box:hover *{color:#fff;}
  .search-overlay-inner { padding: 16px 16px 40px; }
  .search-top { margin-bottom: 28px; }
  .search-section-title { margin-top: 8px; }
      .hero {
        height: 100vh;
        height: 100svh;
        min-height: 560px;
        max-height: 900px;
    }
    .hero-swiper,
    .hero-swiper .swiper-slide{
        height: auto;
    }
  .header_box:has(.site-header.scrolled):hover {
    height: auto;
    background: transparent;
}
.site-header.scrolled {
  padding: 0px 0;
}

.header_box:has(.site-header.scrolled):hover * {
    color: #000000 !important;
}
 .header_box {
        height: 0;
    }
     .header_box:hover {
        height: 0;
    }
    .site-header {
    transition: none;
}
}
