/* ============================================================
   VANGBAC MEGA MENU — Luxury Jewelry eCommerce
   Style: Premium Gold ✦ Black ✦ White
   Version: 2.0.0
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Colors */
  --vb-gold:        #c9a84c;
  --vb-gold-light:  #e2c06d;
  --vb-gold-dark:   #a07828;
  --vb-gold-dim:    rgba(201,168,76,0.10);
  --vb-gold-dim2:   rgba(201,168,76,0.18);
  --vb-black:       #0d0d0d;
  --vb-black-soft:  #1c1c1c;
  --vb-white:       #ffffff;
  --vb-off-white:   #faf9f7;
  --vb-gray-50:     #f8f8f6;
  --vb-gray-100:    #f0efed;
  --vb-gray-200:    #e4e2de;
  --vb-gray-400:    #b0aba2;
  --vb-gray-600:    #706a60;

  /* Layout */
  --vb-header-h:        90px;
  --vb-header-h-scroll: 68px;
  --vb-container:       1320px;

  /* Typography */
  --vb-font-display: 'Cormorant Garamond', Georgia, serif;
  --vb-font-body:    'Jost', system-ui, -apple-system, sans-serif;

  /* Effects */
  --vb-ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --vb-shadow-header: 0 4px 32px rgba(0,0,0,0.10);
  --vb-shadow-mega:   0 24px 64px rgba(0,0,0,0.13), 0 8px 24px rgba(0,0,0,0.07);
  --vb-shadow-card:   0 4px 24px rgba(0,0,0,0.10);
}

/* ============================================================
   RESET (scoped)
   ============================================================ */
.vb-promo-bar,
.vb-promo-bar *,
#vb-header,
#vb-header *,
#vb-mobile-overlay,
#vb-mobile-nav,
#vb-mobile-nav * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   PROMO BAR
   ============================================================ */
.vb-promo-bar {
  position: relative;
  z-index: 10001;
  background: var(--vb-black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 48px;
  font-family: var(--vb-font-body);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--vb-gold-light);
  white-space: nowrap;
  overflow: hidden;
}

/* Shimmer sweep */
.vb-promo-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201,168,76,0.08) 50%,
    transparent 100%
  );
  animation: vb-shimmer 4s ease-in-out infinite;
}

@keyframes vb-shimmer {
  0%, 100% { transform: translateX(-100%); }
  50%       { transform: translateX(100%); }
}

.vb-promo-bar > span {
  position: relative;
  z-index: 1;
}

.vb-promo-bar-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--vb-gray-400);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s;
}

.vb-promo-bar-close:hover { color: var(--vb-gold-light); }

/* ============================================================
   HEADER SHELL
   ============================================================ */
#vb-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  font-family: var(--vb-font-body);
  background: var(--vb-white);
  transition:
    box-shadow       0.35s var(--vb-ease),
    background       0.35s var(--vb-ease);
}

/* Thin gold accent line at very top */
#vb-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg,
    transparent   0%,
    var(--vb-gold-dark) 20%,
    var(--vb-gold)      50%,
    var(--vb-gold-dark) 80%,
    transparent   100%
  );
  z-index: 1;
}

#vb-header.is-scrolled {
  box-shadow: var(--vb-shadow-header);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ============================================================
   INNER CONTAINER
   ============================================================ */
.vb-header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--vb-header-h);
  max-width: var(--vb-container);
  margin: 0 auto;
  padding: 0 40px;
  transition: height 0.35s var(--vb-ease);
}

#vb-header.is-scrolled .vb-header-inner {
  height: var(--vb-header-h-scroll);
}

/* ============================================================
   LOGO — left column
   ============================================================ */
.vb-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  justify-self: start;
}

.vb-logo img {
  height: 52px;
  width: auto;
  display: block;
  transition: height 0.35s var(--vb-ease);
  object-fit: contain;
}

#vb-header.is-scrolled .vb-logo img {
  height: 40px;
}

/* Text logo fallback */
.vb-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}

.vb-logo-text strong {
  font-family: var(--vb-font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--vb-black);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vb-logo-text em {
  font-family: var(--vb-font-body);
  font-style: normal;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--vb-gold);
}

/* ============================================================
   PRIMARY NAV — center column
   ============================================================ */
.vb-primary-nav {
  justify-self: center;
}

.vb-nav {
  display: flex;
  align-items: center;
  list-style: none;
  height: var(--vb-header-h);
  gap: 0;
  transition: height 0.35s var(--vb-ease);
}

#vb-header.is-scrolled .vb-nav {
  height: var(--vb-header-h-scroll);
}

.vb-nav > li {
  height: 100%;
  position: static; /* required for full-width mega */
}

/* Nav link */
.vb-nav > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 100%;
  padding: 0 20px;
  font-family: var(--vb-font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vb-black-soft);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  transition: color 0.25s;
}

/* Animated underline */
.vb-nav > li > a::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  height: 1px;
  background: var(--vb-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s var(--vb-ease);
}

.vb-nav > li:hover > a,
.vb-nav > li.is-active > a {
  color: var(--vb-gold-dark);
}

.vb-nav > li:hover > a::after,
.vb-nav > li.is-active > a::after {
  transform: scaleX(1);
}

/* Chevron icon */
.vb-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  opacity: 0.5;
  transition: transform 0.3s var(--vb-ease), opacity 0.25s;
}

.vb-nav > li.has-mega:hover .vb-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* ============================================================
   HEADER ACTIONS — right column
   ============================================================ */
.vb-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-self: end;
}

.vb-action-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--vb-black-soft);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.25s, background 0.25s;
}

.vb-action-btn:hover {
  color: var(--vb-gold-dark);
  background: var(--vb-gold-dim);
}

.vb-action-btn svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

/* Cart count badge */
.vb-cart-badge {
  position: absolute;
  top: 5px;
  right: 5px;
  min-width: 16px;
  height: 16px;
  padding: 0 3px;
  border-radius: 10px;
  background: var(--vb-gold);
  color: var(--vb-white);
  font-family: var(--vb-font-body);
  font-size: 8.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 1.5px solid var(--vb-white);
}

/* Divider between nav & actions */
.vb-actions-divider {
  width: 1px;
  height: 20px;
  background: var(--vb-gray-200);
  margin: 0 6px;
}

/* ============================================================
   HAMBURGER
   ============================================================ */
.vb-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s;
}

.vb-hamburger:hover { background: var(--vb-gold-dim); }

.vb-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--vb-black-soft);
  border-radius: 10px;
  transition: transform 0.35s var(--vb-ease), opacity 0.25s, width 0.25s;
}

.vb-hamburger span:nth-child(1) { width: 24px; }
.vb-hamburger span:nth-child(2) { width: 18px; margin-left: auto; }
.vb-hamburger span:nth-child(3) { width: 24px; }

.vb-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); width: 24px; }
.vb-hamburger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.vb-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   MEGA MENU PANEL
   ============================================================ */
.vb-mega {
  position: fixed;
  top: var(--vb-header-h);
  left: 0;
  width: 100%;
  background: var(--vb-white);
  border-top: 1px solid var(--vb-gray-200);
  box-shadow: var(--vb-shadow-mega);
  z-index: 9990;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity     0.28s var(--vb-ease),
    transform   0.28s var(--vb-ease),
    visibility  0s    0.28s;
  pointer-events: none;
}

#vb-header.is-scrolled .vb-mega {
  top: var(--vb-header-h-scroll);
}

/* Show on hover */
.vb-nav > li.has-mega:hover .vb-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition:
    opacity   0.28s var(--vb-ease),
    transform 0.28s var(--vb-ease);
}

/* Gold gradient rule at top of mega */
.vb-mega::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent      0%,
    var(--vb-gold-dark) 25%,
    var(--vb-gold)   50%,
    var(--vb-gold-dark) 75%,
    transparent      100%
  );
}

/* ============================================================
   MEGA INNER — constrained + grid
   ============================================================ */
.vb-mega-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 300px;
  max-width: var(--vb-container);
  margin: 0 auto;
  padding: 44px 40px 44px;
  gap: 0;
  min-height: 360px;
}

/* ============================================================
   MEGA COLUMNS
   ============================================================ */
.vb-mega-col {
  padding: 0 32px;
  border-right: 1px solid var(--vb-gray-100);
}

.vb-mega-col:first-child {
  padding-left: 0;
}

.vb-mega-col:last-of-type:not(.vb-mega-banner) {
  border-right: none;
}

/* Column heading */
.vb-mega-col-title {
  font-family: var(--vb-font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--vb-black);
  letter-spacing: 0.03em;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--vb-gray-200);
  position: relative;
}

/* Gold underline accent on heading */
.vb-mega-col-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 32px;
  height: 1.5px;
  background: var(--vb-gold);
}

/* Link list */
.vb-mega-links {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.vb-mega-links li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  font-family: var(--vb-font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--vb-gray-600);
  text-decoration: none;
  letter-spacing: 0.02em;
  border-bottom: 1px solid transparent;
  transition: color 0.22s, border-color 0.22s, padding-left 0.22s;
}

.vb-mega-links li a:hover {
  color: var(--vb-gold-dark);
  padding-left: 10px;
}

.vb-mega-links li a:hover::before {
  /* tiny arrow */
  content: '›';
  margin-right: 6px;
  color: var(--vb-gold);
}

/* Badges */
.vb-badge {
  flex-shrink: 0;
  font-family: var(--vb-font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 2px;
}

.vb-badge--new {
  background: var(--vb-gold-dim2);
  color: var(--vb-gold-dark);
}

.vb-badge--hot {
  background: #fef0ef;
  color: #c0392b;
}

/* ============================================================
   MEGA BANNER (last column)
   ============================================================ */
.vb-mega-banner {
  padding: 0;
  border: none;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-left: 32px;
  cursor: pointer;
}

.vb-mega-banner-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--vb-ease);
  border-radius: 10px;
}

.vb-mega-banner:hover .vb-mega-banner-img {
  transform: scale(1.06);
}

.vb-mega-banner-overlay {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: linear-gradient(
    165deg,
    transparent 30%,
    rgba(10,10,10,0.72) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
}

.vb-mega-banner-label {
  font-family: var(--vb-font-body);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--vb-gold-light);
  margin-bottom: 8px;
}

.vb-mega-banner-title {
  font-family: var(--vb-font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--vb-white);
  line-height: 1.25;
  margin-bottom: 18px;
}

.vb-mega-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--vb-font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vb-black);
  background: var(--vb-gold-light);
  padding: 10px 20px;
  border-radius: 3px;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.25s, transform 0.22s;
}

.vb-mega-banner-cta:hover {
  background: var(--vb-white);
  transform: translateY(-2px);
}

/* ============================================================
   SEARCH DROPDOWN
   ============================================================ */
.vb-search-container { position: relative; }

.vb-search-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  right: -12px;
  width: 380px;
  background: var(--vb-white);
  border: 1px solid var(--vb-gray-200);
  border-radius: 12px;
  box-shadow: var(--vb-shadow-card);
  padding: 20px;
  z-index: 9995;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity     0.25s var(--vb-ease),
    transform   0.25s var(--vb-ease),
    visibility  0s    0.25s;
}

.vb-search-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity   0.25s var(--vb-ease),
    transform 0.25s var(--vb-ease);
}

/* Search arrow */
.vb-search-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 22px;
  width: 12px;
  height: 12px;
  background: var(--vb-white);
  border-top: 1px solid var(--vb-gray-200);
  border-left: 1px solid var(--vb-gray-200);
  transform: rotate(45deg);
}

.vb-search-form {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--vb-gray-200);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
  background: var(--vb-gray-50);
}

.vb-search-form:focus-within {
  border-color: var(--vb-gold);
  background: var(--vb-white);
  box-shadow: 0 0 0 3px var(--vb-gold-dim);
}

.vb-search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 16px;
  font-family: var(--vb-font-body);
  font-size: 13.5px;
  color: var(--vb-black);
  outline: none;
}

.vb-search-input::placeholder { color: var(--vb-gray-400); }

.vb-search-submit {
  border: none;
  background: var(--vb-gold);
  color: var(--vb-white);
  padding: 0 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.22s;
  flex-shrink: 0;
}

.vb-search-submit:hover { background: var(--vb-gold-dark); }

.vb-search-submit svg {
  width: 15px;
  height: 15px;
  stroke: var(--vb-white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vb-search-popular { margin-top: 16px; }

.vb-search-popular-label {
  font-family: var(--vb-font-body);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vb-gray-400);
  margin-bottom: 10px;
}

.vb-search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.vb-search-tag {
  display: inline-block;
  padding: 5px 13px;
  font-family: var(--vb-font-body);
  font-size: 12px;
  color: var(--vb-gray-600);
  background: var(--vb-gray-100);
  border-radius: 100px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s;
}

.vb-search-tag:hover {
  color: var(--vb-gold-dark);
  background: var(--vb-gold-dim);
  border-color: var(--vb-gold-light);
}

/* ============================================================
   BODY OFFSET
   ============================================================ */
body.vb-menu-active {
  padding-top: var(--vb-header-h);
}

/* ============================================================
   MOBILE OVERLAY
   ============================================================ */
.vb-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.55);
  z-index: 9989;
  opacity: 0;
  transition: opacity 0.35s;
  backdrop-filter: blur(3px);
}

.vb-mobile-overlay.is-open { opacity: 1; }

/* ============================================================
   MOBILE DRAWER
   ============================================================ */
.vb-mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: min(340px, 92vw);
  height: 100%;
  background: var(--vb-white);
  z-index: 9990;
  transform: translateX(-100%);
  transition: transform 0.4s var(--vb-ease);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.vb-mobile-nav.is-open { transform: translateX(0); }

/* Drawer header */
.vb-mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px 22px;
  border-bottom: 1px solid var(--vb-gray-200);
  position: sticky;
  top: 0;
  background: var(--vb-white);
  z-index: 2;
}

.vb-mobile-nav-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 24px; right: 24px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--vb-gold), transparent);
  opacity: 0.4;
}

.vb-mobile-nav-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--vb-gray-200);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  color: var(--vb-gray-600);
  transition: all 0.2s;
}

.vb-mobile-nav-close:hover {
  background: var(--vb-gold-dim);
  color: var(--vb-gold-dark);
  border-color: var(--vb-gold-light);
}

/* Mobile list */
.vb-mobile-list {
  list-style: none;
  flex: 1;
  padding: 8px 0 24px;
}

.vb-mobile-list > li {
  border-bottom: 1px solid var(--vb-gray-100);
}

.vb-mobile-item-header {
  display: flex;
  align-items: center;
  padding: 0 24px;
  cursor: pointer;
  transition: background 0.2s;
  min-height: 52px;
}

.vb-mobile-item-header:hover { background: var(--vb-gray-50); }

.vb-mobile-item-header a {
  flex: 1;
  font-family: var(--vb-font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vb-black-soft);
  text-decoration: none;
  line-height: 52px;
}

.vb-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--vb-gray-100);
  border: none;
  cursor: pointer;
  color: var(--vb-gray-600);
  font-size: 13px;
  transition: background 0.2s, transform 0.3s var(--vb-ease), color 0.2s;
}

.vb-mobile-toggle.is-open {
  background: var(--vb-gold-dim);
  color: var(--vb-gold-dark);
  transform: rotate(180deg);
}

/* Accordion submenu */
.vb-mobile-submenu {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--vb-ease);
  background: var(--vb-gray-50);
  border-top: 1px solid var(--vb-gray-100);
}

.vb-mobile-submenu.is-open { max-height: 700px; }

.vb-mobile-submenu li a {
  display: block;
  padding: 11px 24px 11px 38px;
  font-family: var(--vb-font-body);
  font-size: 12.5px;
  color: var(--vb-gray-600);
  text-decoration: none;
  border-bottom: 1px solid var(--vb-gray-200);
  transition: color 0.2s, background 0.2s, padding-left 0.22s;
}

.vb-mobile-submenu li:last-child a { border-bottom: none; }

.vb-mobile-submenu li a:hover {
  color: var(--vb-gold-dark);
  background: var(--vb-gold-dim);
  padding-left: 46px;
}

/* Mobile search bar */
.vb-mobile-search {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--vb-gray-200);
  margin-top: auto;
  background: var(--vb-white);
  position: sticky;
  bottom: 0;
}

.vb-mobile-search-form {
  display: flex;
  border: 1.5px solid var(--vb-gray-200);
  border-radius: 8px;
  overflow: hidden;
  background: var(--vb-gray-50);
}

.vb-mobile-search-input {
  flex: 1;
  padding: 12px 14px;
  border: none;
  background: transparent;
  font-family: var(--vb-font-body);
  font-size: 13px;
  color: var(--vb-black);
  outline: none;
}

.vb-mobile-search-input::placeholder { color: var(--vb-gray-400); }

.vb-mobile-search-btn {
  padding: 0 18px;
  border: none;
  background: var(--vb-gold);
  color: var(--vb-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.vb-mobile-search-btn:hover { background: var(--vb-gold-dark); }

.vb-mobile-search-btn svg {
  width: 15px;
  height: 15px;
  stroke: var(--vb-white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Scrollbar styling (mobile drawer) */
.vb-mobile-nav::-webkit-scrollbar { width: 3px; }
.vb-mobile-nav::-webkit-scrollbar-track { background: transparent; }
.vb-mobile-nav::-webkit-scrollbar-thumb { background: var(--vb-gray-200); border-radius: 10px; }

/* ============================================================
   RESPONSIVE — TABLET (≤1200px)
   ============================================================ */
@media (max-width: 1200px) {
  :root {
    --vb-container: 100%;
  }

  .vb-header-inner {
    padding: 0 28px;
  }

  .vb-nav > li > a {
    padding: 0 14px;
    font-size: 11.5px;
    letter-spacing: 0.1em;
  }

  .vb-mega-inner {
    grid-template-columns: repeat(4, 1fr) 260px;
    padding: 36px 28px;
  }

  .vb-mega-col { padding: 0 20px; }
}

/* ============================================================
   RESPONSIVE — SMALL TABLET (≤992px)
   ============================================================ */
@media (max-width: 992px) {
  .vb-nav > li > a { padding: 0 10px; }

  .vb-mega-inner {
    grid-template-columns: repeat(3, 1fr) 220px;
  }

  .vb-mega-col:nth-child(4) { display: none; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  .vb-primary-nav { display: none !important; }
  .vb-hamburger   { display: flex; }
  .vb-mobile-overlay { display: block; }

  .vb-header-inner {
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }

  .vb-primary-nav { display: none !important; }

  .vb-actions-divider { display: none; }

  /* On mobile: hide search btn, keep cart & user */
  .vb-search-container { display: none; }

  body.vb-menu-active {
    padding-top: var(--vb-header-h-scroll);
  }
}

/* ============================================================
   FOCUS / ACCESSIBILITY
   ============================================================ */
.vb-action-btn:focus-visible,
.vb-nav > li > a:focus-visible,
.vb-mega-links li a:focus-visible,
.vb-mobile-item-header a:focus-visible {
  outline: 2px solid var(--vb-gold);
  outline-offset: 3px;
  border-radius: 3px;
}
