
.cc_xd0h10f9_metre_header .header {
  position: sticky;
  top: 0;
  z-index: 10000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  font-family: 'Outfit', sans-serif;
}

.cc_xd0h10f9_metre_header .header-inner {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

@media (min-width: 1024px) {
.cc_xd0h10f9_metre_header .header-inner { height: 80px; }
}

.cc_xd0h10f9_metre_header .header-left, .cc_xd0h10f9_metre_header .header-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.cc_xd0h10f9_metre_header .header-center {
  flex: 0 0 auto;
}

.cc_xd0h10f9_metre_header .header-right {
  justify-content: flex-end;
  gap: 12px;
}

.cc_xd0h10f9_metre_header .logo img {
  height: 35px;
  max-width: 140px;
  width: auto;
  display: block;
  object-fit: contain;
}

@media (min-width: 1024px) {
.cc_xd0h10f9_metre_header .logo img { height: 50px; max-width: 220px; }
}

.cc_xd0h10f9_metre_header .main-nav {
  display: flex;
  gap: 24px;
}

.cc_xd0h10f9_metre_header .main-nav a {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  text-decoration: none;
}

.cc_xd0h10f9_metre_header .main-nav a:hover { color: var(--accent); }

.cc_xd0h10f9_metre_header .icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
  display: flex;
  align-items: center;
}

.cc_xd0h10f9_metre_header .cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--primary);
}

.cc_xd0h10f9_metre_header .cart-icon-wrapper {
  position: relative;
}

.cc_xd0h10f9_metre_header .cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--accent);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cc_xd0h10f9_metre_header .cart-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
.cc_xd0h10f9_metre_header .hide-mobile { display: none !important; }
}

.cc_xd0h10f9_metre_header .metre-marquee-container:hover .metre-marquee-track {
  animation-play-state: paused !important;
}
.cc_xd0h10f9_metre_header .metre-marquee-track {
  display: inline-block;
  animation: metre-marquee-anim 40s linear infinite;
}
@keyframes metre-marquee-anim {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.33%); }
}
.cc_xd0h10f9_metre_header .header-nav-link {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #111;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.cc_xd0h10f9_metre_header .header-nav-link:hover { color: #901e30; }
.cc_xd0h10f9_metre_header .metre-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #111;
  padding: 8px;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.cc_xd0h10f9_metre_header .nav-item-dropdown { position: relative; height: 100%; display: flex; align-items: center; }
.cc_xd0h10f9_metre_header .dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 280px;
  max-height: 500px;
  overflow-y: auto;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
  padding: 20px;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border: 1px solid #eee;
  z-index: 20000;
  transform: translateY(10px);
}
.cc_xd0h10f9_metre_header .nav-item-dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.cc_xd0h10f9_metre_header .dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  text-decoration: none;
  color: #444;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  transition: 0.2s;
  text-transform: uppercase;
}
.cc_xd0h10f9_metre_header .dropdown-item:hover {
  background: #fdf2f2;
  color: #901e30;
  padding-left: 15px;
}

/* Pure CSS Sidebar Hack */
.cc_xd0h10f9_metre_header #metre-menu-toggle { display: none; }
.cc_xd0h10f9_metre_header #metre-menu-toggle:checked ~ .metre-sidebar { left: 0; }

.cc_xd0h10f9_metre_header .metre-sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s;
}

.cc_xd0h10f9_metre_header #metre-menu-toggle:checked ~ .metre-sidebar-overlay { 
  opacity: 1; 
  visibility: visible; 
  pointer-events: auto;
}

.cc_xd0h10f9_metre_header .metre-sidebar {
  position: fixed;
  top: 0;
  left: -320px;
  width: 320px;
  height: 100%;
  background: #fff;
  z-index: 3001;
  transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 40px 25px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.cc_xd0h10f9_metre_header .sidebar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.cc_xd0h10f9_metre_header .sidebar-title { font-size: 18px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; }

.cc_xd0h10f9_metre_header .sidebar-links { display: flex; flex-direction: column; gap: 5px; }
.cc_xd0h10f9_metre_header .sidebar-link {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: #111;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
}
