:root {
  --vb-text: #1d2f5f;
  --vb-muted: #5e6f98;
  --vb-border: #d8e3ff;
  --vb-white: #ffffff;
  --vb-shadow: 0 10px 28px rgba(26, 57, 130, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Be Vietnam Pro", sans-serif;
  color: var(--vb-text);
  background: linear-gradient(180deg, #eef5ff 0%, #ffffff 36%);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.vb-container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.vb-topbar {
  background: #0a4eb3;
  color: #fff;
  font-size: 14px;
}

.vb-topbar .vb-container {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.vb-topbar p {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.vb-hotline {
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.vb-topbar-right {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.vb-auth-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.vb-auth-links a {
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  opacity: 0.95;
}

.vb-auth-open {
  border: 0;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  opacity: 0.95;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}

.vb-auth-open:hover,
.vb-auth-open:focus-visible {
  opacity: 1;
}

.vb-auth-links a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  padding-left: 10px;
}

.vb-auth-open + .vb-auth-open {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  padding-left: 10px;
}

.vb-auth-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.vb-auth-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 24, 56, 0.55);
}

.vb-auth-dialog {
  width: min(460px, 100%);
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #d8e3ff;
  box-shadow: 0 28px 60px rgba(18, 44, 102, 0.22);
  padding: 24px;
}

.vb-auth-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #d8e3ff;
  background: #f3f6ff;
  color: #23488f;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.vb-auth-dialog h2 {
  margin: 0 0 6px;
  font-size: 24px;
}

.vb-auth-dialog > p {
  margin: 0 0 14px;
  color: var(--vb-muted);
  font-size: 14px;
}

.vb-auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  background: #eff4ff;
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 14px;
}

.vb-auth-tab {
  border: 0;
  background: transparent;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: #375793;
  padding: 10px 12px;
  cursor: pointer;
}

.vb-auth-tab.is-active {
  background: #fff;
  color: #0a4eb3;
  box-shadow: 0 6px 14px rgba(36, 79, 167, 0.15);
}

.vb-auth-form {
  display: none;
}

.vb-auth-form.is-active {
  display: grid;
  gap: 9px;
}

.vb-auth-form label {
  font-size: 13px;
  font-weight: 600;
}

.vb-auth-form input {
  width: 100%;
  border: 1px solid #c9d9ff;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
}

.vb-auth-form input:focus {
  outline: none;
  border-color: #0a4eb3;
  box-shadow: 0 0 0 3px rgba(10, 78, 179, 0.15);
}

.vb-auth-form button {
  margin-top: 6px;
  border: 0;
  border-radius: 10px;
  background: #0a4eb3;
  color: #fff;
  font-weight: 700;
  font-family: inherit;
  font-size: 14px;
  padding: 11px 14px;
  cursor: pointer;
}

.vb-auth-note {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--vb-muted);
}

.vb-auth-feedback {
  min-height: 18px;
  margin: 2px 0 0;
  font-size: 13px;
}

.vb-auth-feedback.is-error {
  color: #c92a2a;
}

.vb-auth-feedback.is-success {
  color: #2d7b29;
}

.vb-auth-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

body.vb-lock-scroll {
  overflow: hidden;
}

.vb-topbar-icon {
  font-size: 14px;
  line-height: 1;
}

.vb-header-main {
  background: #fff;
  border-bottom: 1px solid #d8e3ff;
}

.vb-header-row {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 12px 0;
}

.vb-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 800;
  color: var(--vb-primary);
}

.vb-logo img {
  width: 180px;
  object-fit: contain;
}

.vb-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 8px;
  font-weight: 600;
  width: 100%;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.vb-menu li {
  flex: 1;
  text-align: center;
}

.vb-menu a {
  display: inline-block;
  white-space: nowrap;
  font-size: 14px;
}

.vb-nav {
  width: 100%;
  border-top: 1px solid #dbe6ff;
  padding-top: 12px;
}

.vb-header-search {
  min-width: 260px;
  margin-left: auto;
}

.vb-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vb-action-wrap {
  position: relative;
}

.vb-header-action {
  position: relative;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--vb-border);
  border-radius: 50%;
  padding: 0;
  font-weight: 600;
  font-size: 13px;
  background: #f4f7ff;
  overflow: visible;
}

.vb-header-action:hover {
  border-color: #0a4eb3;
  background: #edf3ff;
}

.vb-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  line-height: 1;
}

.vb-action-icon svg {
  width: 18px;
  height: 18px;
  stroke: #4060a1;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vb-header-action:hover .vb-action-icon svg {
  stroke: #0a4eb3;
}

.vb-action-text {
  display: none;
}

.vb-count {
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #e3364a;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  padding: 0 5px;
  font-style: normal;
}

.vb-header-action .vb-count {
  position: absolute;
  top: -7px;
  right: -7px;
}

.vb-mini-dropdown {
  position: absolute;
  right: calc(100% - 48px);
  top: 100%;
  width: 260px;
  max-height: 360px;
  overflow: auto;
  border: 1px solid #d8e3ff;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 28px rgba(14, 46, 117, 0.16);
  padding: 8px;
  z-index: 30;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: none;
  transition: all 0.2s ease;
}

.vb-action-wrap:hover .vb-mini-dropdown,
.vb-mini-dropdown:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.vb-mini-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.vb-mini-list li a {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 8px;
  align-items: center;
}

.vb-mini-list img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #e0e8ff;
}

.vb-mini-list span {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.vb-mini-empty {
  margin: 0;
  color: #5d6f98;
  font-size: 13px;
}

.vb-mini-viewall {
  margin-top: 10px;
  display: inline-block;
  font-weight: 700;
  color: #0a4eb3;
  font-size: 13px;
}

.vb-mini-cart .woocommerce-mini-cart {
  margin: 0;
  padding: 0;
  list-style: none;
}

.vb-mini-cart .woocommerce-mini-cart-item {
  position: relative;
  display: grid;
  grid-template-columns: 0px 1fr;
  column-gap: 8px;
  row-gap: 2px;
  align-items: start;
  border-bottom: 1px dashed #dfe7fb;
  padding: 8px 18px 8px 0 !important;
  margin: 0;
  padding-left: 0 !important;
  margin-left: -8px;
}

.vb-mini-cart .woocommerce-mini-cart-item img {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e1e8ff;
}

.vb-mini-cart .woocommerce-mini-cart-item:last-child {
  border-bottom: 0;
}

.vb-mini-cart .woocommerce-mini-cart-item a:not(.remove) {
  grid-column: 2;
  grid-row: 1;
  display: block;
  margin: 0;
  padding: 0 !important;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.vb-mini-cart .woocommerce-mini-cart-item .quantity {
  grid-column: 2;
  grid-row: 2;
  font-size: 12px;
  color: #4f659e;
}

.vb-mini-cart .woocommerce-mini-cart-item .remove {
  position: absolute;
  right: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  line-height: 14px;
  border-radius: 50%;
  border: 1px solid #d6e1ff;
  color: #7a8dbb !important;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
}

.vb-mini-cart .woocommerce-mini-cart-item .remove:hover {
  border-color: #e3364a;
  color: #e3364a !important;
  background: #fff5f7;
}

.vb-mini-cart .woocommerce-mini-cart__total {
  margin: 8px 0 0;
  padding-top: 8px;
  border-top: 1px solid #e4ebff;
  font-size: 13px;
}

.vb-mini-cart .woocommerce-mini-cart__buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin: 8px 0 0;
}

.vb-mini-cart .button {
  width: 100%;
  text-align: center;
  border-radius: 8px;
  min-height: 34px;
  font-size: 12px;
}

.vb-header-search .woocommerce-product-search,
.vb-header-search .search-form {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  border: 1px solid var(--vb-border);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.vb-header-search input[type="search"] {
  width: 100%;
  border: 0;
  padding: 10px 14px;
  outline: none;
}

.vb-header-search button {
  border: 0;
  height: 40px;
  padding: 0 14px;
  background: var(--vb-primary);
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
}

.vb-menu-toggle {
  display: none;
}

.vb-mega-wrap {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: -10px;
}

.vb-mega-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}

.vb-category-toggle {
  border: 1px solid var(--vb-border);
  background: #fff;
  color: var(--vb-text);
  font-weight: 700;
  border-radius: 10px;
  height: 42px;
  min-width: 150px;
  padding: 0 22px;
  cursor: pointer;
}

.vb-mega-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  width: min(780px, 90vw);
  background: #fff;
  border: 1px solid var(--vb-border);
  border-radius: 14px;
  box-shadow: var(--vb-shadow);
  padding: 16px;
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  z-index: 10;
}

.vb-mega-wrap:hover .vb-mega-menu,
.vb-mega-wrap.is-open .vb-mega-menu {
  display: grid;
}

.vb-mega-parent {
  display: inline-block;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--vb-primary);
}

.vb-mega-sub {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  font-size: 14px;
}

.vb-hero {
  padding: 20px 0 10px;
}

.vb-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 26px;
  align-items: center;
}

.vb-hero-grid > div {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--vb-shadow);
  padding: 32px;
}

.vb-kicker {
  margin: 0 0 8px;
  color: var(--vb-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 700;
}

.vb-hero h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
}

.vb-hero p {
  color: var(--vb-muted);
}

.vb-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 12px 22px;
  border-radius: 10px;
  background: var(--vb-primary);
  color: #fff;
  font-weight: 700;
}

.vb-hero-bullets {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.vb-hero-bullets li {
  position: relative;
  padding-left: 18px;
}

.vb-hero-bullets li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vb-primary);
  position: absolute;
  left: 0;
  top: 8px;
}

.vb-hero-image-wrap {
  padding: 0;
  overflow: hidden;
}

.vb-hero-banner {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--vb-shadow);
  border: 1px solid var(--vb-border);
  background: #fff;
}

.vb-hero-slider {
  position: relative;
  height: clamp(180px, 28vw, 280px);
  min-height: 0;
}

.vb-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.vb-hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.vb-hero-image-wrap img,
.vb-hero-banner img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
}

.vb-hero-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.vb-hero-dots {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  gap: 8px;
}

.vb-hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.vb-hero-dot.is-active {
  background: #fff;
}

.vb-section {
  padding: 18px 0 30px;
}

.vb-featured-categories {
  padding-top: 12px;
}

.vb-lazy-section {
  opacity: 0.01;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

.vb-lazy-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.vb-promo-section {
  padding-top: 0;
}

.vb-promo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.vb-promo-item {
  display: block;
  border-radius: var(--vb-radius);
  overflow: hidden;
  border: 1px solid var(--vb-border);
  background: #fff;
  box-shadow: var(--vb-shadow);
}

.vb-promo-item img {
  width: 100%;
  aspect-ratio: 2.6 / 1;
  object-fit: cover;
}

.vb-coupon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.vb-coupon-card {
  border: 1px dashed var(--vb-primary);
  background: #fff;
  border-radius: 12px;
  padding: 14px;
}

.vb-coupon-code {
  font-size: 22px;
  color: var(--vb-primary);
}

.vb-coupon-card p {
  margin: 8px 0;
  color: var(--vb-muted);
  font-size: 14px;
}

.vb-coupon-expiry {
  font-size: 13px;
  color: var(--vb-text);
  font-weight: 600;
}

.vb-coupon-copy {
  margin-top: 10px;
  height: 34px;
  border: 1px solid var(--vb-primary);
  background: #fff;
  color: var(--vb-primary);
  border-radius: 999px;
  padding: 0 12px;
  font-weight: 700;
  cursor: pointer;
}

.vb-coupon-copy.is-copied {
  background: var(--vb-primary);
  color: #fff;
}

.vb-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.vb-section-title {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.02em;
}

.vb-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.vb-category-card {
  background: #fff;
  border: 1px solid var(--vb-border);
  border-radius: var(--vb-radius);
  padding: 16px;
  text-align: center;
}

.vb-category-card img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 10px;
}

.vb-category-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--vb-secondary);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  margin-bottom: 10px;
}

.vb-category-card h3,
.vb-product-title,
.vb-blog-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.vb-category-card p {
  margin: 0;
  color: var(--vb-muted);
  font-size: 14px;
}

.vb-subtitle {
  margin: 8px 0 12px;
}

.vb-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.vb-product-grid-small {
  margin-bottom: 18px;
}

.vb-product-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--vb-border);
  border-radius: var(--vb-radius);
  overflow: hidden;
}

.vb-product-thumb {
  position: relative;
  display: block;
  background: #f6fafc;
}

.vb-wishlist-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 1px solid #d2ddfb;
  border-radius: 50%;
  background: #fff;
  color: #5e72a8;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(10, 47, 122, 0.15);
}

.vb-wishlist-btn.is-active {
  color: #fff;
  background: #e3364a;
  border-color: #e3364a;
}

.vb-wishlist-btn span {
  font-size: 16px;
  line-height: 1;
}

.products li.product {
  position: relative;
}

.vb-wishlist-btn-loop {
  right: 20px;
  top: 20px;
}

.vb-product-card.is-loading .vb-product-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #e8eef1 25%, #f5f9fb 45%, #e8eef1 65%);
  background-size: 250% 100%;
  animation: vb-shimmer 1.2s linear infinite;
}

.vb-product-card.is-loading .vb-product-image {
  opacity: 0;
}

.vb-product-image {
  opacity: 1;
  transition: opacity 0.2s ease;
}

.vb-product-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.vb-badge-sale {
  position: absolute;
  left: 10px;
  top: 10px;
  background: #e3364a;
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  padding: 4px 10px;
  z-index: 2;
}

.vb-product-content {
  padding: 14px;
}

.vb-price {
  margin: 10px 0;
  font-weight: 700;
  color: var(--vb-primary);
}

.vb-product-card .button {
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: var(--vb-primary);
  color: #fff;
  text-align: center;
  font-weight: 600;
  padding: 10px 14px;
}

.vb-quick-cart {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 3;
  display: inline-flex;
  width: 34px;
  height: 34px;
  justify-content: center;
  align-items: center;
  border: 1px solid #d2ddfb;
  border-radius: 50%;
  color: #5e72a8;
  background: #fff;
  box-shadow: 0 6px 14px rgba(10, 47, 122, 0.15);
}

.vb-quick-cart span {
  font-size: 15px;
  line-height: 1;
}

.vb-section-about {
  background: var(--vb-secondary);
  margin-top: 20px;
  padding: 44px 0;
}

.vb-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.vb-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.vb-benefits article {
  background: #fff;
  border: 1px solid var(--vb-border);
  border-radius: 12px;
  padding: 14px;
}

.vb-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.vb-blog-card {
  background: #fff;
  border: 1px solid var(--vb-border);
  border-radius: 12px;
  overflow: hidden;
}

.vb-blog-thumb img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.vb-blog-card h3,
.vb-blog-card p {
  padding: 0 14px;
}

.vb-blog-card p {
  color: var(--vb-muted);
  margin-bottom: 16px;
}

.vb-site-footer {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid #d8e3ff;
  background: #f3f7ff;
}

.vb-hero,
.vb-section {
  position: relative;
}

.vb-shop-head p {
  margin-top: 8px;
  color: var(--vb-muted);
}

.vb-page-hero {
  padding: 26px 0;
  border-bottom: 1px solid #d8e3ff;
  background: radial-gradient(circle at 15% 30%, rgba(10, 78, 179, 0.14), transparent 35%),
    linear-gradient(180deg, #f4f8ff 0%, #ffffff 70%);
}

.vb-page-hero .vb-section-title {
  margin-bottom: 8px;
}

.vb-page-hero p {
  margin: 0;
  max-width: 760px;
  color: #4f628f;
}

.vb-panel {
  border: 1px solid #dbe5fb;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--vb-shadow);
  padding: 16px;
}

.vb-shop-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.vb-shop-categories a {
  background: #f1f5ff;
  border: 1px solid #d8e3ff;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}

.vb-shop-categories a:hover {
  background: #0a4eb3;
  color: #fff;
  border-color: #0a4eb3;
}

.vb-shop-products .products {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.vb-shop-products .products li.product {
  border: 1px solid var(--vb-border);
  border-radius: var(--vb-radius);
  background: #fff;
  padding: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vb-shop-products .products li.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 24px rgba(14, 58, 138, 0.14);
}

.vb-shop-products .products li.product img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 10px;
}

.vb-shop-products .products li.product h2 {
  font-size: 16px;
  margin: 10px 0 8px;
}

.vb-shop-products .products li.product .price {
  color: var(--vb-primary);
  font-weight: 700;
}

.vb-shop-products .products li.product .button {
  margin-top: 10px;
  width: 100%;
  text-align: center;
  border-radius: 8px;
}

.vb-blog-grid-news {
  gap: 18px;
}

.vb-blog-grid-news .vb-blog-card {
  border-radius: 14px;
  border: 1px solid #dbe5fb;
  box-shadow: 0 10px 22px rgba(13, 54, 130, 0.08);
}

.vb-news-date {
  display: inline-block;
  margin: 12px 14px 0;
  color: #5570b4;
  font-size: 13px;
  font-weight: 600;
}

.vb-pagination {
  margin-top: 18px;
}

.vb-pagination .page-numbers {
  display: inline-flex;
  min-width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--vb-border);
  border-radius: 8px;
  margin-right: 6px;
  background: #fff;
}

.vb-pagination .current {
  background: var(--vb-primary);
  color: #fff;
}

.vb-about-intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.vb-about-intro > div,
.vb-contact-card {
  border: 1px solid var(--vb-border);
  background: #fff;
  border-radius: 12px;
  padding: 18px;
}

.vb-about-intro h2,
.vb-contact-card h2 {
  margin-top: 0;
  margin-bottom: 8px;
}

.vb-about-stats {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.vb-about-stats article {
  border: 1px solid var(--vb-border);
  border-radius: 12px;
  background: #f7f9ff;
  padding: 14px;
  text-align: center;
}

.vb-about-stats strong {
  display: block;
  font-size: 24px;
  color: var(--vb-primary);
}

.vb-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.vb-contact-form {
  display: grid;
  gap: 10px;
}

.vb-contact-form input,
.vb-contact-form textarea {
  width: 100%;
  border: 1px solid var(--vb-border);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
}

.vb-contact-form button {
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: var(--vb-primary);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.vb-contact-card p {
  margin: 7px 0;
}

.vb-store-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
}

.vb-store-list {
  display: grid;
  gap: 10px;
}

.vb-store-list article {
  border: 1px solid var(--vb-border);
  border-radius: 10px;
  padding: 12px;
  background: #f7faff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.vb-store-list article:hover,
.vb-store-list article.is-active {
  border-color: #0a4eb3;
  background: #eef4ff;
  box-shadow: 0 10px 18px rgba(17, 60, 141, 0.13);
}

.vb-store-list h3 {
  margin: 0 0 6px;
}

.vb-store-actions {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vb-store-actions a:last-child {
  color: #0a4eb3;
  font-weight: 700;
}

.vb-store-map iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 12px;
}

.vb-empty-state {
  margin: 0;
  color: #5d6f98;
}

.woocommerce-product-search label {
  display: none;
}

.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
  border: 1px solid #dbe5fb;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--vb-shadow);
  padding: 16px;
}

.woocommerce .shop_table {
  border: 1px solid #dbe5fb;
  border-radius: 12px;
  overflow: hidden;
}

.woocommerce table.shop_table th {
  background: #f1f5ff;
  color: #1d2f5f;
  font-weight: 700;
}

.woocommerce table.shop_table td,
.woocommerce table.shop_table th {
  border-color: #e2e9ff;
  padding: 12px;
}

.woocommerce-cart table.cart img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #dfe7fb;
}

.woocommerce .product-name a {
  font-weight: 700;
}

.woocommerce .quantity .qty {
  width: 72px;
  min-height: 36px;
  border: 1px solid #d7e1ff;
  border-radius: 8px;
}

.woocommerce .actions .coupon .input-text {
  min-height: 40px;
  border: 1px solid #d7e1ff;
  border-radius: 8px;
}

.woocommerce .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  border-radius: 8px;
  background: #0a4eb3;
  color: #fff;
  font-weight: 700;
}

.woocommerce .button.alt,
.woocommerce button.button.alt,
.woocommerce a.button.alt,
.woocommerce input.button.alt {
  background: #0a4eb3;
}

.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-checkout #order_review,
.woocommerce-checkout #customer_details {
  border: 1px solid #dbe5fb;
  border-radius: 12px;
  background: #fbfcff;
  padding: 14px;
}

.woocommerce-checkout #customer_details .woocommerce-billing-fields,
.woocommerce-checkout #customer_details .woocommerce-shipping-fields {
  background: #fff;
  border: 1px solid #e3e9ff;
  border-radius: 12px;
  padding: 14px;
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .select2-container .select2-selection {
  min-height: 42px;
  border: 1px solid #d7e1ff;
  border-radius: 8px;
}

.vb-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px;
}

.vb-footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.vb-copy {
  margin-top: 20px;
  padding: 14px 0;
  text-align: center;
  color: var(--vb-muted);
  font-size: 14px;
}

.vb-mobile-bottom {
  display: none;
}

@media (max-width: 1024px) {
  .vb-product-grid,
  .vb-category-grid,
  .vb-coupon-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vb-shop-products .products,
  .vb-about-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vb-mega-menu {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .vb-menu-toggle {
    display: inline-flex;
    border: 1px solid var(--vb-border);
    border-radius: 10px;
    background: #fff;
    font-weight: 600;
    height: 38px;
    align-items: center;
    padding: 0 12px;
  }

  .vb-category-toggle {
    height: 38px;
  }

  .vb-mega-wrap {
    width: 100%;
    order: 3;
  }

  .vb-header-search {
    width: 100%;
    order: 4;
    margin-left: 0;
  }

  .vb-header-actions {
    width: 100%;
    order: 5;
    justify-content: flex-end;
  }

  .vb-mini-dropdown {
    display: none;
  }

  .vb-header-action {
    flex: 0 0 auto;
  }

  .vb-mega-menu {
    position: static;
    width: 100%;
    margin-top: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vb-nav {
    display: none;
    width: 100%;
  }

  .vb-nav.is-open {
    display: block;
  }

  .vb-menu {
    flex-direction: column;
    padding-bottom: 12px;
  }

  .vb-menu li {
    text-align: left;
  }

  .vb-header-row {
    flex-wrap: wrap;
    padding-top: 14px;
  }

  .vb-hero-grid,
  .vb-about-grid,
  .vb-footer-grid {
    grid-template-columns: 1fr;
  }

  .vb-product-grid,
  .vb-category-grid,
  .vb-coupon-grid,
  .vb-promo-grid,
  .vb-blog-grid,
  .vb-benefits,
  .vb-shop-products .products,
  .vb-about-stats,
  .vb-contact-grid,
  .vb-about-intro,
  .vb-store-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vb-hero-grid > div {
    padding: 22px;
  }

  .vb-hero-slider,
  .vb-hero-image-wrap img,
  .vb-hero-banner img {
    height: 180px;
    min-height: 0;
  }

  .vb-main {
    padding-bottom: 78px;
  }

  .vb-mobile-bottom {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    background: #fff;
    border-top: 1px solid var(--vb-border);
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
  }

  .vb-mobile-item {
    height: 62px;
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--vb-text);
    position: relative;
    padding: 0 6px;
  }

  .vb-mobile-cart em {
    position: absolute;
    top: 8px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #e3364a;
    color: #fff;
    font-style: normal;
    font-size: 11px;
    padding: 0 4px;
  }

  .woocommerce table.shop_table_responsive tr,
  .woocommerce-page table.shop_table_responsive tr {
    border: 1px solid #e2e9ff;
    border-radius: 10px;
    margin-bottom: 10px;
    display: block;
    padding: 8px;
    background: #fff;
  }

  .woocommerce table.shop_table_responsive tr td,
  .woocommerce-page table.shop_table_responsive tr td {
    border: 0;
    padding: 8px 10px;
  }

  .woocommerce table.shop_table_responsive tr td::before,
  .woocommerce-page table.shop_table_responsive tr td::before {
    color: #34559d;
    font-weight: 700;
  }

  .woocommerce-cart .actions .coupon,
  .woocommerce-cart .actions .button {
    width: 100%;
    margin-top: 8px;
  }
}

@media (max-width: 520px) {
  .vb-product-grid,
  .vb-category-grid,
  .vb-coupon-grid,
  .vb-promo-grid,
  .vb-blog-grid,
  .vb-benefits,
  .vb-shop-products .products,
  .vb-about-stats,
  .vb-contact-grid,
  .vb-about-intro,
  .vb-store-grid {
    grid-template-columns: 1fr;
  }

  .vb-header-action .vb-action-text {
    display: none;
  }

  .vb-mega-menu {
    grid-template-columns: 1fr;
  }

  .vb-topbar .vb-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .vb-topbar-right {
    width: 100%;
    justify-content: space-between;
  }
}

@keyframes vb-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vb-lazy-section,
  .vb-product-image,
  .vb-hero-slide {
    transition: none;
  }

  .vb-product-card.is-loading .vb-product-thumb::after {
    animation: none;
  }
}
