/* ============================================
   AllReplicaWatches.to — Custom Header + Mega Menu
   Version: 1.0
   ============================================ */

/* --- VARIABLES (edit colors/fonts here) --- */
:root {
  --arw-gold: #b8975a;
  --arw-gold-light: #d4b87a;
  --arw-gold-dark: #96773e;
  --arw-black: #0a0a0a;
  --arw-text: #333333;
  --arw-text-muted: #888888;
  --arw-bg: #ffffff;
  --arw-bg-soft: #fafaf8;
  --arw-bg-warm: #f8f6f3;
  --arw-border: #e8e4df;
  --arw-border-light: #f0ece7;
  --arw-font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --arw-font-sans: 'Inter', -apple-system, sans-serif;
}

/* --- TOP BAR --- */
.arw-topbar {
  background: var(--arw-black);
  color: rgba(255,255,255,0.7);
  font-size: 11.5px;
  letter-spacing: 0.5px;
  padding: 7px 0;
  font-family: var(--arw-font-sans);
  -webkit-font-smoothing: antialiased;
}
.arw-topbar .arw-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.arw-topbar a {
  color: var(--arw-gold-light);
  text-decoration: none;
  transition: color 0.3s;
}
.arw-topbar a:hover { color: #fff; }
.arw-topbar-left {
  display: flex;
  gap: 24px;
  align-items: center;
}
.arw-topbar-right {
  display: flex;
  gap: 20px;
  align-items: center;
}
.arw-topbar-divider {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.15);
}

/* --- HEADER MAIN --- */
.arw-header {
  background: var(--arw-bg);
  border-bottom: 1px solid var(--arw-border);
  position: sticky;
  top: 0;
  z-index: 9999;
  font-family: var(--arw-font-sans);
  -webkit-font-smoothing: antialiased;
}
.arw-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.arw-header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

/* --- LOGO --- */
.arw-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.arw-logo-icon svg {
  width: 38px;
  height: 38px;
}
.arw-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.arw-logo-brand {
  font-family: var(--arw-font-serif);
  font-size: 21px;
  font-weight: 600;
  color: var(--arw-black);
  letter-spacing: 0.5px;
}
.arw-logo-brand span { color: var(--arw-gold); }
.arw-logo-tagline {
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--arw-text-muted);
  margin-top: 3px;
}

/* --- NAV --- */
.arw-nav {
  display: flex;
  align-items: center;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.arw-nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.arw-nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--arw-text);
  text-decoration: none;
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  transition: color 0.3s;
  position: relative;
  white-space: nowrap;
  margin-left: auto;
  font-family: var(--arw-font-sans);
}
.arw-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--arw-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.arw-nav-link:hover { color: var(--arw-gold-dark); }
.arw-nav-link:hover::after { transform: scaleX(1); }

.arw-nav-link.prominent {
  font-weight: 600;
  letter-spacing: 1px;
}
.arw-nav-link .arrow {
  margin-left: 4px;
  font-size: 7px;
  transition: transform 0.3s;
  display: inline-block;
}
.arw-nav-item:hover .arrow { transform: rotate(180deg); }

.arw-nav-sep {
  width: 1px;
  height: 20px;
  background: var(--arw-border);
  margin: 0 4px;
  flex-shrink: 0;
}

/* --- HEADER ACTIONS --- */
.arw-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.arw-action-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--arw-text);
  transition: color 0.3s;
  position: relative;
  border-radius: 50%;
}
.arw-action-btn:hover {
  color: var(--arw-gold-dark);
  background: var(--arw-bg-warm);
}
.arw-action-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}
.arw-cart-count {
  position: absolute;
  top: 3px;
  right: 3px;
  background: var(--arw-gold);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   MEGA MENUS — shared
   ============================================ */
.arw-mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--arw-bg);
  border-top: 2px solid var(--arw-gold);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
  z-index: 100;
}
.arw-nav-item:hover > .arw-mega {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   BRAND SINGLE MEGA (Rolex / Patek / AP)
   ============================================ */
.arw-mega-brand {
  min-width: 900px;
  padding: 28px 36px 32px;
}
.arw-mega-brand-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--arw-border-light);
}
.arw-mega-brand-title {
  font-family: var(--arw-font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--arw-black);
}
.arw-mega-brand-viewall {
  font-size: 12px;
  color: var(--arw-gold-dark);
  text-decoration: none;
  letter-spacing: 0.5px;
  font-weight: 500;
  transition: color 0.2s;
}
.arw-mega-brand-viewall:hover { color: var(--arw-gold); }

.arw-mega-brand-body {
  display: flex;
  gap: 36px;
}
.arw-mega-brand-collections { flex: 1; }
.arw-mega-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.arw-collection-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 6px;
  text-decoration: none;
  color: var(--arw-text);
  font-size: 13px;
  font-family: var(--arw-font-sans);
  transition: all 0.2s;
}
.arw-collection-link:hover {
  background: var(--arw-bg-warm);
  color: var(--arw-gold-dark);
  padding-left: 18px;
}
.arw-collection-link .cnt {
  font-size: 11px;
  color: #bbb;
  margin-left: 8px;
}
.arw-collection-link:hover .cnt { color: var(--arw-gold); }

/* Featured image block */
.arw-mega-featured {
  width: 240px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: var(--arw-bg-warm);
}
.arw-mega-featured-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.arw-mega-featured-img.rolex-img { background: url('wp-content/uploads/2026/03/c51a1865dc35dc5cd6a4f18f0cd2aaea_720w.mp4') center/cover no-repeat; }
.arw-mega-featured-img.patek-img { background: url('/wp-content/uploads/2026/03/patek-5711-replica-1.jpg') center/cover no-repeat; }
.arw-mega-featured-img.ap-img { background: url('/wp-content/uploads/2026/03/royal-oak-replica-1.jpg') center/cover no-repeat; }

.arw-mega-featured-watch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  opacity: 0.2;
}
.arw-mega-featured-watch svg {
  width: 120px;
  height: 120px;
  stroke: var(--arw-gold-light);
  fill: none;
  stroke-width: 0.6;
}
.arw-mega-featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff !important;
}
.arw-mega-featured-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--arw-gold-light) !important;
  margin-bottom: 6px;
}
.arw-mega-featured-name {
  font-family: var(--arw-font-serif);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
  color: #fff !important;
}
.arw-mega-featured-cta {
  font-size: 12px;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 600;
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,0.5) !important;
  border-radius: 4px;
  transition: all 0.2s;
  letter-spacing: 0.5px;
  display: inline-block;
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,0.1);
}
.arw-mega-featured-cta:hover {
  background: var(--arw-gold);
  border-color: var(--arw-gold);
}

/* ============================================
   BRANDS SIDEBAR MEGA (9 remaining brands)
   ============================================ */
.arw-mega-brands {
  min-width: 1100px;
  display: flex;
}
.arw-brands-list {
  width: 260px;
  border-right: 1px solid var(--arw-border-light);
  padding: 8px 0;
  flex-shrink: 0;
}
.arw-brand-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  text-decoration: none;
  color: var(--arw-text);
  transition: all 0.2s;
  cursor: pointer;
  position: relative;
  font-family: var(--arw-font-sans);
}
.arw-brand-item:hover,
.arw-brand-item.active {
  background: var(--arw-bg-warm);
  color: var(--arw-gold-dark);
}
.arw-brand-item.active::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: var(--arw-gold);
  border-radius: 2px 0 0 2px;
}
.arw-brand-icon {
  width: 30px;
  height: 30px;
  background: var(--arw-bg-soft);
  border: 1px solid var(--arw-border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--arw-font-serif);
  font-size: 12px;
  font-weight: 600;
  color: var(--arw-gold-dark);
  flex-shrink: 0;
  transition: all 0.2s;
}
.arw-brand-item:hover .arw-brand-icon,
.arw-brand-item.active .arw-brand-icon {
  background: var(--arw-gold);
  border-color: var(--arw-gold);
  color: #fff;
}
.arw-brand-name { font-size: 13px; font-weight: 500; flex: 1; }
.arw-brand-count { font-size: 11px; color: var(--arw-text-muted); }
.arw-brand-arrow { font-size: 10px; color: #ccc; transition: transform 0.2s; }
.arw-brand-item:hover .arw-brand-arrow,
.arw-brand-item.active .arw-brand-arrow {
  color: var(--arw-gold);
  transform: translateX(2px);
}

/* Right panel */
.arw-mega-right { flex: 1; display: flex; flex-direction: column; }

.arw-panel {
  flex: 1;
  padding: 24px 28px;
  display: none;
}
.arw-panel.active {
  display: flex;
  flex-direction: column;
}
.arw-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--arw-border-light);
}
.arw-panel-title {
  font-family: var(--arw-font-serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--arw-black);
}
.arw-panel-viewall {
  font-size: 12px;
  color: var(--arw-gold-dark);
  text-decoration: none;
  letter-spacing: 0.5px;
  font-weight: 500;
  transition: color 0.2s;
}
.arw-panel-viewall:hover { color: var(--arw-gold); }

.arw-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

/* Featured banner at bottom */
.arw-banner {
  padding: 0 28px 24px;
  display: none;
  margin-top: auto;
}
.arw-banner.active { display: block; }

.arw-banner-inner {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  height: 180px;
  display: flex;
  align-items: center;
}
.arw-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.arw-banner-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
}
.arw-banner-bg.rm-bg { background: url('/wp-content/uploads/2026/03/richard-mille-replica-watches-1.jpg') center/cover no-repeat; }
.arw-banner-bg.omega-bg { background: url('/wp-content/uploads/2026/03/omega-replica-seamaster-1.jpg') center/cover no-repeat; }
.arw-banner-bg.iwc-bg { background: url('/wp-content/uploads/2026/03/iwc-replica-watches-1.jpg') center/cover no-repeat; }
.arw-banner-bg.breitling-bg { background: url('/wp-content/uploads/2026/03/breitling-replica-collection-1.jpg') center/cover no-repeat; }
.arw-banner-bg.cartier-bg { background: url('/wp-content/uploads/2026/03/cartier-replica-watches-1.jpg') center/cover no-repeat; }
.arw-banner-bg.hublot-bg { background: url('/wp-content/uploads/2026/03/hublot-replica-watches-1.jpg') center/cover no-repeat; }
.arw-banner-bg.panerai-bg { background: url('/wp-content/uploads/2026/03/panerai-replica-watches-1.jpg') center/cover no-repeat; }
.arw-banner-bg.vc-bg { background: url('/wp-content/uploads/2026/03/vacheron-replica-watches-1.jpg') center/cover no-repeat; }
.arw-banner-bg.jlc-bg { background: url('/wp-content/uploads/2026/03/jaeger-lecoultre-replica-watches-1.jpg') center/cover no-repeat; }

.arw-banner-content {
  position: relative;
  z-index: 1;
  padding: 0 28px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.arw-banner-watch { opacity: 0.25; flex-shrink: 0; }
.arw-banner-watch svg { width: 60px; height: 60px; stroke: var(--arw-gold-light); fill: none; stroke-width: 0.8; }
.arw-banner-text { flex: 1; }
.arw-banner-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--arw-gold-light) !important; margin-bottom: 6px; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }
.arw-banner-name { font-family: var(--arw-font-serif); font-size: 20px; font-weight: 600; color: #fff !important; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
.arw-banner-cta {
  font-size: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 4px;
  transition: all 0.2s;
  letter-spacing: 0.5px;
  white-space: nowrap;
  margin-left: auto;
  flex-shrink: 0;
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,0.1);
}
.arw-banner-cta:hover { background: var(--arw-gold); border-color: var(--arw-gold); color: #fff !important; }

/* ============================================
   INFO MEGA MENU
   ============================================ */
.arw-mega-info {
  min-width: 480px;
  padding: 28px;
}
.arw-mega-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.arw-info-col {
  padding: 0 24px;
  border-right: 1px solid var(--arw-border-light);
}
.arw-info-col:last-child { border-right: none; }
.arw-info-col-title {
  font-family: var(--arw-font-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--arw-black);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--arw-gold);
  display: inline-block;
}
.arw-info-col ul { list-style: none; margin: 0; padding: 0; }
.arw-info-col li { margin-bottom: 7px; }
.arw-info-col a {
  font-size: 13px;
  color: var(--arw-text-muted);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  display: block;
  font-family: var(--arw-font-sans);
}
.arw-info-col a:hover { color: var(--arw-gold-dark); padding-left: 4px; }

/* ============================================
   MOBILE HAMBURGER MENU
   ============================================ */
.arw-hamburger {
  display: none;
  width: 38px;
  height: 38px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.arw-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--arw-text);
  transition: all 0.3s;
}
.arw-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.arw-hamburger.open span:nth-child(2) { opacity: 0; }
.arw-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile overlay */
.arw-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999999;
}
.arw-mobile-overlay.open { display: block; }

/* Mobile menu panel */
.arw-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--arw-bg);
  z-index: 1000000;
  overflow-y: auto;
  transition: right 0.3s ease;
  box-shadow: -10px 0 30px rgba(0,0,0,0.15);
}
.arw-mobile-menu.open { right: 0; }

.arw-mobile-menu-header {
  padding: 20px;
  border-bottom: 1px solid var(--arw-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.arw-mobile-close {
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 20px;
  color: var(--arw-text);
}

.arw-mobile-nav { padding: 16px 0; }
.arw-mobile-nav-item {
  border-bottom: 1px solid var(--arw-border-light);
}
.arw-mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--arw-text);
  text-decoration: none;
  font-family: var(--arw-font-sans);
}
.arw-mobile-nav-link .arrow { font-size: 12px; color: #ccc; transition: transform 0.3s; }
.arw-mobile-nav-link.open .arrow { transform: rotate(90deg); color: var(--arw-gold); }

.arw-mobile-sub {
  display: none;
  padding: 0 0 12px 0;
  background: var(--arw-bg-soft);
}
.arw-mobile-sub.open { display: block; }
.arw-mobile-sub a {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px 10px 36px;
  font-size: 13px;
  color: var(--arw-text-muted);
  text-decoration: none;
  font-family: var(--arw-font-sans);
}
.arw-mobile-sub a:hover { color: var(--arw-gold-dark); }
.arw-mobile-sub .cnt { font-size: 11px; color: #ccc; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .arw-nav-link { padding: 0 10px; font-size: 11px; }
  .arw-mega-brand { min-width: 750px; }
  .arw-mega-brands { min-width: 900px; }
}

@media (max-width: 1024px) {
  .arw-nav { display: none; }
  .arw-hamburger { display: flex; }
  .arw-mobile-menu { display: block; }
  .arw-topbar-left span:nth-child(n+4) { display: none; }
}

@media (max-width: 600px) {
  .arw-topbar .arw-container { padding: 0 16px; }
  .arw-topbar-left { gap: 12px; }
  .arw-topbar-left span:nth-child(n+2) { display: none; }
  .arw-header-inner { padding: 0 16px; height: 64px; }
  .arw-logo-brand { font-size: 18px; }
  .arw-logo-icon svg { width: 32px; height: 32px; }
}


/* === THEME OVERRIDE FIXES === */
.arw-mega a, .arw-mega-brand a, .arw-mega-brands a, .arw-mega-info a { text-decoration: none; }
.arw-mega-featured-overlay * { color: #fff !important; }
.arw-mega-featured-overlay .arw-mega-featured-label { color: var(--arw-gold-light) !important; }
.arw-mega-featured-cta:hover { background: var(--arw-gold) !important; border-color: var(--arw-gold) !important; }
.arw-banner-content * { color: #fff !important; }
.arw-banner-content .arw-banner-label { color: var(--arw-gold-light) !important; }
.arw-banner-cta { color: #fff !important; border: 1px solid rgba(255,255,255,0.35) !important; text-decoration: none !important; display: inline-block; }
.arw-collection-link { text-decoration: none !important; }
.arw-nav-link { text-decoration: none !important; }
.arw-brand-item { text-decoration: none !important; }


/* === SEARCH DROPDOWN === */
.arw-search-toggle { background: none; border: none; cursor: pointer; padding: 0; color: inherit; }
.arw-search-dropdown {
  display: none !important;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 360px;
  padding: 16px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-top: 2px solid var(--arw-gold);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  z-index: 1000000;
  border-radius: 0 0 8px 8px;
}
.arw-search-dropdown.active { display: block !important; }
@keyframes arwSearchSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.arw-search-dropdown form { display: flex; gap: 0; }
.arw-search-input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-right: none;
  font-size: 14px;
  font-family: var(--arw-font-sans);
  outline: none;
  border-radius: 3px 0 0 3px;
  background: #fafafa;
}
.arw-search-input:focus { border-color: var(--arw-gold); background: #fff; }
.arw-search-submit {
  padding: 10px 14px;
  background: var(--arw-gold);
  border: 1px solid var(--arw-gold);
  color: #fff;
  cursor: pointer;
  border-radius: 0 3px 3px 0;
  display: flex;
  align-items: center;
}
.arw-search-submit svg { stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.arw-search-submit:hover { background: var(--arw-gold-dark, #a0862c); }
.arw-actions { position: relative; display: flex; align-items: center; }

@media (max-width: 600px) {
  .arw-search-dropdown { width: calc(100vw - 32px); right: -60px; }
}


/* === LIVE SEARCH RESULTS === */
.arw-search-results { display: none; margin-top: 12px; max-height: 320px; overflow-y: auto; }
.arw-search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 8px;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none !important;
  color: #333 !important;
  transition: background 0.15s;
}
.arw-search-item:hover { background: #f9f6ef; }
.arw-search-item:last-child { border-bottom: none; }
.arw-search-thumb { width: 48px; height: 48px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.arw-search-item-info { flex: 1; min-width: 0; }
.arw-search-item-name {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-left: auto;
  color: #222 !important;
}
.arw-search-item-price { font-size: 12px; color: var(--arw-gold) !important; margin-top: 2px; font-weight: 600; }
.arw-search-noresult { padding: 16px 8px; text-align: center; color: #999; font-size: 13px; }


/* === MEGA MENU VIDEO === */
.arw-mega-featured-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.arw-mega-featured-img { position: relative; overflow: hidden; }
.arw-mega-featured-overlay { z-index: 1; }

/* ============================================
   MOBILE MENU — Premium Redesign v2
   ============================================ */

/* --- Mobile Menu Panel --- */
.arw-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  height: 100dvh;
  background: #fff;
  z-index: 1000000;
  transform: translateX(-105%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 30px rgba(0,0,0,0.15);
}
.arw-mobile-menu.open {
  transform: translateX(0);
}

.arw-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.arw-mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* --- Header --- */
.arw-mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid #f0ece7;
}
.arw-mobile-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #333;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

/* --- Navigation container --- */
.arw-mobile-nav {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 8px 0 30px;
}

/* --- Top-level items --- */
.arw-mobile-nav-item {
  border-bottom: 1px solid #f5f3f0;
}
.arw-mobile-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 22px;
  font-family: var(--arw-font-serif, 'Cormorant Garamond', Georgia, serif);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #1a1a1a;
  text-decoration: none;
  transition: background 0.2s;
}
.arw-mobile-nav-link:hover,
.arw-mobile-nav-link:active {
  background: #faf8f5;
}
.arw-mobile-nav-link .arrow {
  font-size: 14px;
  color: var(--arw-gold, #b8975a);
  transition: transform 0.3s;
}
.arw-mobile-nav-link.open .arrow {
  transform: rotate(90deg);
}

/* --- Sub-menu (collection level) --- */
.arw-mobile-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #faf9f7;
}
.arw-mobile-sub.open {
  max-height: 2000px;
}
.arw-mobile-sub > a,
.arw-mobile-brand-direct {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 22px 11px 36px;
  font-family: var(--arw-font-sans, 'Inter', sans-serif);
  font-size: 14px;
  font-weight: 400;
  color: #444;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: background 0.15s, color 0.15s;
}
.arw-mobile-sub > a:hover,
.arw-mobile-brand-direct:hover {
  background: #f3f0ea;
  color: #1a1a1a;
}
.arw-mobile-sub > a .cnt,
.arw-mobile-brand-direct .cnt {
  font-size: 12px;
  color: #aaa;
  font-weight: 400;
}

/* "View All" link style */
.arw-mobile-viewall {
  font-weight: 600 !important;
  color: var(--arw-gold, #b8975a) !important;
  text-transform: uppercase;
  font-size: 12px !important;
  letter-spacing: 1px;
  padding: 13px 22px 13px 36px !important;
}
.arw-mobile-viewall::after {
  content: ' →';
}

/* --- Brand groups in "All Brands" --- */
.arw-mobile-sub-brands {
  background: #faf9f7;
}
.arw-mobile-brand-group {
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.arw-mobile-brand-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 22px 12px 36px;
  font-family: var(--arw-font-serif, 'Cormorant Garamond', Georgia, serif);
  font-size: 15px;
  font-weight: 600;
  color: #2a2a2a;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.arw-mobile-brand-toggle:hover,
.arw-mobile-brand-toggle:active {
  background: #f3f0ea;
}
.arw-mobile-brand-toggle .cnt {
  font-size: 12px;
  color: #aaa;
  font-weight: 400;
  font-family: var(--arw-font-sans, 'Inter', sans-serif);
  margin-left: auto;
  margin-right: 10px;
}
.arw-mobile-brand-toggle .arrow {
  font-size: 13px;
  color: var(--arw-gold, #b8975a);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.arw-mobile-brand-toggle.open .arrow {
  transform: rotate(90deg);
}

/* --- Brand sub-collections --- */
.arw-mobile-brand-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: #f5f3ef;
}
.arw-mobile-brand-sub.open {
  max-height: 1200px;
}
.arw-mobile-brand-sub > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 22px 10px 52px;
  font-family: var(--arw-font-sans, 'Inter', sans-serif);
  font-size: 13px;
  font-weight: 400;
  color: #555;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.03);
  transition: background 0.15s, color 0.15s;
}
.arw-mobile-brand-sub > a:hover {
  background: #edeae4;
  color: #1a1a1a;
}
.arw-mobile-brand-sub > a .cnt {
  font-size: 11px;
  color: #bbb;
}
.arw-mobile-brand-sub > a.arw-mobile-viewall {
  padding-left: 52px !important;
  font-size: 11px !important;
}

/* --- Mobile Search Bar --- */
.arw-mobile-search {
  padding: 12px 18px;
  border-bottom: 1px solid #f0ece7;
  background: #faf9f7;
}
.arw-mobile-search form {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #e8e4df;
  border-radius: 8px;
  overflow: hidden;
}
.arw-mobile-search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 14px;
  font-family: var(--arw-font-sans, Inter, sans-serif);
  font-size: 14px;
  color: #333;
  background: transparent;
}
.arw-mobile-search-input::placeholder {
  color: #aaa;
}
.arw-mobile-search-btn {
  background: none;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  color: var(--arw-gold, #b8975a);
  display: flex;
  align-items: center;
}

/* --- Mobile menu arrows (minimal chevrons) --- */
.arw-mobile-nav-link .arrow,
.arw-mobile-brand-toggle .arrow {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 20px !important;
  height: 20px !important;
  font-size: 0 !important;
  border: none !important;
  overflow: hidden !important;
}
.arw-mobile-nav-link .arrow::before,
.arw-mobile-brand-toggle .arrow::before {
  content: "" !important;
  display: block;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid #aaa;
  border-bottom: 1.5px solid #aaa;
  transform: rotate(-45deg);
  transition: transform 0.3s, border-color 0.3s;
}
.arw-mobile-nav-link.open .arrow::before,
.arw-mobile-brand-toggle.open .arrow::before {
  transform: rotate(45deg);
  border-color: var(--arw-gold, #b8975a);
}

/* --- Mobile: hamburger LEFT, logo CENTER, actions RIGHT (flexbox, no absolute) --- */
@media (max-width: 1024px) {
  .arw-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  .arw-hamburger {
    order: -1;
    flex: 0 0 auto;
    z-index: 2;
  }
  .arw-logo {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    max-width: 55%;
    z-index: 1;
  }
  .arw-logo-tagline {
    display: block !important; font-size: 7px !important; letter-spacing: 2px !important;
  }
  .arw-actions {
    flex: 0 0 auto;
    z-index: 2;
  }
}

/* Smaller screens — shrink logo further */
@media (max-width: 480px) {
  .arw-logo {
    max-width: 50%;
  }
  .arw-logo-brand {
    font-size: 16px !important;
  }
  .arw-logo-icon svg {
    width: 28px !important;
    height: 28px !important;
  }
}

/* Very small screens (iPhone SE, Galaxy S) */
@media (max-width: 374px) {
  .arw-logo-brand {
    font-size: 14px !important;
  }
  .arw-logo-icon svg {
    width: 24px !important;
    height: 24px !important;
  }
  .arw-logo {
    gap: 6px !important;
  }
}
@media (max-width: 1024px) { .arw-search-toggle, .arw-search-dropdown { display: none !important; } }
