:root {
  --vt-primary: #0b0b0b;
  --vt-accent: #d4af37;
}

.vt-header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  z-index: 100;
}

.vt-header--sticky {
  position: sticky;
  top: 0;
}

.vt-header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vt-header-logo img {
  max-height: 48px;
  width: auto;
}

.vt-site-name {
  font-weight: 700;
  font-size: 20px;
}

.vt-site-name {
  font-weight: 700;
  font-size: 20px;
}

.vt-menu {
  display: flex;
  gap: 24px;
  list-style: none;
}

.vt-menu a {
  text-decoration: none;
  font-weight: 600;
  color: var(--vt-primary);
}

.vt-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.vt-header-whatsapp {
  background: var(--vt-accent);
  color: #000;
  padding: 8px 14px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
}

.vt-mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
}

/* Mobile */
@media (max-width: 768px) {
  .vt-menu {
    display: none;
  }

  .vt-mobile-toggle {
    display: block;
  }
}

.vt-header-nav.is-open {
  display: block;
}

.vt-header-menu-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.vt-header-menu {
  display: flex;
}

.vt-menu {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vt-menu a {
  text-decoration: none;
  font-weight: 600;
}

/* Mobile */
.vt-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .vt-header-menu {
    display: none;
  }

  .vt-header-menu.is-open {
    display: block;
  }

  .vt-menu {
    flex-direction: column;
    gap: 14px;
  }

  .vt-menu-toggle {
    display: block;
  }
}

.vt-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.vt-header-cta {
  padding: 8px 14px;
  font-weight: 600;
  background: var(--vt-accent, #d4af37);
  color: #000;
  text-decoration: none;
  border-radius: 4px;
}

.vt-header-whatsapp {
  padding: 8px 14px;
  font-weight: 600;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

.vt-header-cart {
  position: relative;
  font-size: 18px;
  color: inherit;
  text-decoration: none;
}

.vt-cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #dc2626;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 50%;
}

.vt-promo-bar {
    background: #d89b0e; /* your gold */
    color: #000;
    overflow: hidden;
    width: 100%;
    height: 40px; /* controls bar height */
    display: flex;
    align-items: center;
}

.vt-promo-track {
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: transform 0.6s ease-in-out;
}

.vt-promo-item {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    white-space: nowrap;
}

.vt-promo-item a {
    color: inherit;
    text-decoration: underline;
}
