/*
Theme Name: ViewMart
Theme URI: https://viewmart.pk
Author: ViewMart
Description: Premium, accessible multi-category WooCommerce theme for View Mart Pakistan.
Version: 2.0.0
Text Domain: viewmart
Requires at least: 6.5
Requires PHP: 8.1
*/

:root {
  --vm-navy: #0b1f3a;
  --vm-blue: #1769e0;
  --vm-blue-dark: #0d4fb8;
  --vm-sky: #eaf3ff;
  --vm-cyan: #20b8cd;
  --vm-text: #122033;
  --vm-muted: #64748b;
  --vm-border: #e2e8f0;
  --vm-soft: #f6f8fb;
  --vm-white: #fff;
  --vm-success: #14804a;
  --vm-sale: #e83e56;
  --vm-shadow: 0 14px 36px rgba(15, 32, 58, .09);
  --vm-radius: 18px;
  --vm-width: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--vm-text);
  background: var(--vm-white);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: var(--vm-blue); text-decoration: none; transition: .2s ease; }
a:hover { color: var(--vm-blue-dark); }
img { max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
.screen-reader-text {
  position: absolute!important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.container { width: min(calc(100% - 40px), var(--vm-width)); margin-inline: auto; }
.site-main { min-height: 55vh; }

.topbar {
  background: var(--vm-navy);
  color: #dce7f6;
  font-size: 13px;
}
.topbar-inner {
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.topbar a { color: #fff; }
.topbar-links { display: flex; gap: 22px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--vm-border);
  backdrop-filter: blur(12px);
}
.header-main {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: 34px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--vm-navy);
  font-weight: 800;
  font-size: 25px;
  letter-spacing: -.8px;
}
.brand:hover { color: var(--vm-navy); }
.brand-mark {
  display: grid;
  place-items: center;
  width: 39px; height: 39px;
  color: #fff;
  background: linear-gradient(135deg, var(--vm-blue), var(--vm-cyan));
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(23,105,224,.24);
}
.brand-mark svg { width: 22px; }
.header-search { position: relative; }
.header-search form { display: flex; }
.header-search input[type="search"] {
  width: 100%;
  height: 46px;
  padding: 0 52px 0 18px;
  color: var(--vm-text);
  background: var(--vm-soft);
  border: 1px solid transparent;
  border-radius: 12px;
  outline: none;
}
.header-search input[type="search"]:focus {
  background: #fff;
  border-color: var(--vm-blue);
  box-shadow: 0 0 0 4px rgba(23,105,224,.1);
}
.header-search button {
  position: absolute;
  top: 5px; right: 6px;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  padding: 0;
  color: var(--vm-navy);
  background: transparent;
  border: 0;
  cursor: pointer;
}
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-action {
  position: relative;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  color: var(--vm-navy);
  border-radius: 12px;
}
.header-action:hover { color: var(--vm-blue); background: var(--vm-sky); }
.header-action svg { width: 22px; height: 22px; }
.cart-count {
  position: absolute;
  top: 0; right: 0;
  min-width: 18px; height: 18px;
  display: grid; place-items: center;
  padding: 0 4px;
  color: #fff;
  background: var(--vm-sale);
  border: 2px solid #fff;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 800;
}
.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav-wrap { border-top: 1px solid var(--vm-border); }
.main-navigation { display: flex; align-items: center; min-height: 50px; }
.main-navigation ul { list-style: none; padding: 0; margin: 0; display: flex; align-items: center; gap: 34px; }
.main-navigation a { color: #334155; font-size: 14px; font-weight: 650; }
.main-navigation a:hover,
.main-navigation .current-menu-item > a { color: var(--vm-blue); }
.browse-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-right: 38px;
  color: var(--vm-navy)!important;
  font-weight: 750!important;
}

.hero { padding: 38px 0 28px; }
.hero-grid {
  min-height: 480px;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, .7fr);
  gap: 22px;
}
.hero-main {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: clamp(38px, 6vw, 76px);
  color: #fff;
  background: linear-gradient(125deg, #071a35 0%, #123e78 60%, #1b75d0 100%);
  border-radius: 26px;
  isolation: isolate;
}
.hero-main::before,
.hero-main::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
}
.hero-main::before {
  width: 360px; height: 360px;
  right: -90px; top: -90px;
  background: radial-gradient(circle, rgba(51,192,225,.52), rgba(51,192,225,0) 70%);
}
.hero-main::after {
  width: 280px; height: 280px;
  right: 9%; bottom: -150px;
  border: 52px solid rgba(255,255,255,.06);
}
.hero-content { max-width: 610px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #bfe9ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--vm-cyan); }
.hero h1 {
  max-width: 650px;
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(38px, 5.4vw, 66px);
  line-height: 1.04;
  letter-spacing: -2.8px;
}
.hero p { max-width: 560px; margin: 0 0 32px; color: #d9e9fb; font-size: 18px; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 23px;
  color: #fff;
  background: var(--vm-blue);
  border: 1px solid var(--vm-blue);
  border-radius: 12px;
  font-weight: 750;
  cursor: pointer;
  box-shadow: 0 9px 22px rgba(23,105,224,.22);
}
.btn:hover { color: #fff; background: var(--vm-blue-dark); transform: translateY(-1px); }
.btn-light { color: var(--vm-navy); background: #fff; border-color: #fff; }
.btn-light:hover { color: var(--vm-blue); background: #f8fbff; }
.hero-side { display: grid; gap: 22px; }
.promo-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  border-radius: 24px;
}
.promo-card h3 { max-width: 210px; margin: 0 0 8px; font-size: 25px; line-height: 1.15; }
.promo-card p { margin: 0; font-size: 14px; }
.promo-card .promo-icon {
  position: absolute;
  top: 23px; right: 24px;
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: 20px;
}
.promo-card svg { width: 34px; height: 34px; }
.promo-one { background: #e6f4ff; }
.promo-one .promo-icon { color: var(--vm-blue); background: rgba(255,255,255,.75); }
.promo-two { color: #fff; background: linear-gradient(135deg, #0e9872, #22bda0); }
.promo-two h3 { color: #fff; }
.promo-two .promo-icon { background: rgba(255,255,255,.16); }

.trust-strip { padding: 18px 0 44px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--vm-border);
  border-radius: 16px;
}
.trust-item { display: flex; align-items: center; gap: 13px; padding: 20px 24px; }
.trust-item + .trust-item { border-left: 1px solid var(--vm-border); }
.trust-icon {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  color: var(--vm-blue);
  background: var(--vm-sky);
  border-radius: 12px;
}
.trust-icon svg { width: 22px; }
.trust-item strong { display: block; color: var(--vm-navy); font-size: 14px; }
.trust-item span { display: block; color: var(--vm-muted); font-size: 12px; line-height: 1.35; }

.section { padding: 52px 0; }
.section-soft { background: var(--vm-soft); }
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 28px;
}
.section-heading h2 { margin: 0 0 4px; font-size: clamp(28px, 3vw, 38px); line-height: 1.15; letter-spacing: -1.2px; }
.section-heading p { margin: 0; color: var(--vm-muted); }
.view-all { font-size: 14px; font-weight: 750; white-space: nowrap; }
.category-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.category-card {
  padding: 24px 16px;
  color: var(--vm-text);
  background: #fff;
  border: 1px solid var(--vm-border);
  border-radius: 17px;
  text-align: center;
}
.category-card:hover { color: var(--vm-blue); border-color: #b8d4fb; transform: translateY(-4px); box-shadow: var(--vm-shadow); }
.category-icon {
  width: 66px; height: 66px;
  display: grid; place-items: center;
  margin: 0 auto 15px;
  color: var(--vm-blue);
  background: var(--vm-sky);
  border-radius: 19px;
}
.category-icon svg { width: 33px; height: 33px; }
.category-card strong { display: block; font-size: 14px; }
.category-card small { color: var(--vm-muted); font-size: 11px; }

.products-grid,
.woocommerce ul.products {
  display: grid!important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding: 0!important;
  margin: 0!important;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none!important; }
.woocommerce ul.products li.product,
.product-card {
  position: relative;
  float: none!important;
  width: auto!important;
  margin: 0!important;
  padding: 0 0 20px!important;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--vm-border);
  border-radius: 18px;
  transition: .25s ease;
}
.woocommerce ul.products li.product:hover,
.product-card:hover { border-color: #c4d7f0; transform: translateY(-5px); box-shadow: var(--vm-shadow); }
.woocommerce ul.products li.product a img {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0 0 18px!important;
  object-fit: cover;
  background: var(--vm-soft);
}
.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 0 18px!important;
  margin: 0 0 9px!important;
  color: var(--vm-text);
  font-size: 15px!important;
  line-height: 1.42;
}
.woocommerce ul.products li.product .price {
  padding: 0 18px;
  margin: 0 0 15px!important;
  color: var(--vm-blue)!important;
  font-size: 17px!important;
  font-weight: 800!important;
}
.woocommerce ul.products li.product .price del { color: #94a3b8; font-size: 13px; font-weight: 500; }
.woocommerce ul.products li.product .price ins { text-decoration: none; }
.woocommerce ul.products li.product .button {
  margin: 0 18px!important;
  width: calc(100% - 36px);
  min-height: 43px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 13px!important;
  color: #fff!important;
  background: var(--vm-navy)!important;
  border-radius: 10px!important;
  font-size: 13px!important;
}
.woocommerce ul.products li.product .button:hover { background: var(--vm-blue)!important; }
.woocommerce span.onsale {
  top: 12px!important; left: 12px!important; right: auto!important;
  min-width: 0!important; min-height: 0!important;
  padding: 6px 10px!important;
  color: #fff!important;
  background: var(--vm-sale)!important;
  border-radius: 8px!important;
  font-size: 11px!important;
  line-height: 1!important;
}
.deal-banner {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 45px 55px;
  color: #fff;
  background: linear-gradient(115deg, #081c38, #1554a2);
  border-radius: 24px;
}
.deal-banner h2 { margin: 0 0 10px; color: #fff; font-size: clamp(28px, 4vw, 44px); letter-spacing: -1.5px; }
.deal-banner p { margin: 0; color: #d6e7fa; }
.deal-code { display: inline-block; margin-top: 16px; padding: 7px 12px; border: 1px dashed #74c8ef; border-radius: 8px; font-size: 13px; font-weight: 800; letter-spacing: 1px; }

.content-wrap { padding: 52px 0 70px; }
.page-header { padding: 44px 0; background: var(--vm-soft); border-bottom: 1px solid var(--vm-border); }
.page-header h1 { margin: 0; font-size: clamp(32px, 4vw, 48px); letter-spacing: -1.6px; }
.page-header p { margin: 8px 0 0; color: var(--vm-muted); }
.entry-content { max-width: 860px; margin-inline: auto; }
.entry-content h2, .entry-content h3 { margin-top: 1.6em; color: var(--vm-navy); }
.entry-content table { width: 100%; border-collapse: collapse; }
.entry-content th, .entry-content td { padding: 12px; border: 1px solid var(--vm-border); text-align: left; }

.woocommerce .woocommerce-breadcrumb { margin: 0 0 22px!important; color: var(--vm-muted)!important; font-size: 13px!important; }
.woocommerce .woocommerce-breadcrumb a { color: var(--vm-blue)!important; }
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering { margin-bottom: 28px!important; }
.woocommerce select,
.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  min-height: 46px;
  padding: 10px 13px;
  color: var(--vm-text);
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
}
.woocommerce textarea { min-height: 110px; }
.woocommerce div.product { display: flow-root; }
.woocommerce div.product div.images img { border-radius: 18px; background: var(--vm-soft); }
.woocommerce div.product .product_title { color: var(--vm-navy); font-size: clamp(30px, 4vw, 44px); line-height: 1.15; }
.woocommerce div.product p.price,
.woocommerce div.product span.price { color: var(--vm-blue)!important; font-size: 26px!important; font-weight: 800; }
.woocommerce div.product form.cart .button,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  min-height: 46px;
  padding: 0 20px!important;
  color: #fff!important;
  background: var(--vm-blue)!important;
  border-radius: 10px!important;
}
.woocommerce div.product form.cart .button:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover { background: var(--vm-blue-dark)!important; }
.woocommerce .quantity .qty { min-height: 46px; border: 1px solid #cbd5e1; border-radius: 9px; }
.woocommerce div.product .woocommerce-tabs ul.tabs { padding: 0!important; }
.woocommerce div.product .woocommerce-tabs ul.tabs::before { border-color: var(--vm-border)!important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li { background: var(--vm-soft)!important; border-color: var(--vm-border)!important; border-radius: 10px 10px 0 0!important; }
.woocommerce table.shop_table { border-color: var(--vm-border)!important; border-radius: 14px!important; overflow: hidden; }
.woocommerce table.shop_table th,
.woocommerce table.shop_table td { padding: 15px!important; border-color: var(--vm-border)!important; }
.woocommerce .cart-collaterals .cart_totals,
.woocommerce-checkout-review-order,
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  padding: 24px;
  background: var(--vm-soft);
  border: 1px solid var(--vm-border)!important;
  border-radius: 16px!important;
}
.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
  border-top: 0!important;
  border-left: 4px solid var(--vm-blue);
  border-radius: 10px;
  background: var(--vm-sky)!important;
}
.woocommerce-message { border-left-color: var(--vm-success); }
.woocommerce-error { border-left-color: var(--vm-sale); }
.woocommerce-account .woocommerce-MyAccount-navigation ul { list-style: none; padding: 0; margin: 0; border: 1px solid var(--vm-border); border-radius: 14px; overflow: hidden; }
.woocommerce-account .woocommerce-MyAccount-navigation li + li { border-top: 1px solid var(--vm-border); }
.woocommerce-account .woocommerce-MyAccount-navigation a { display: block; padding: 12px 16px; color: var(--vm-text); }
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a { color: var(--vm-blue); background: var(--vm-sky); font-weight: 700; }

.newsletter { padding: 60px 0; background: var(--vm-sky); }
.newsletter-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 50px; }
.newsletter h2 { margin: 0 0 8px; font-size: 34px; letter-spacing: -1px; }
.newsletter p { margin: 0; color: var(--vm-muted); }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input { flex: 1; min-width: 0; height: 50px; padding: 0 16px; background: #fff; border: 1px solid #c8d9ef; border-radius: 11px; outline: none; }
.newsletter-form button { border: 0; }

.site-footer { color: #c3d0e2; background: #07172d; }
.footer-main { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 60px; padding: 66px 0 50px; }
.footer-brand .brand { color: #fff; margin-bottom: 16px; }
.footer-brand p { max-width: 330px; color: #9dafc6; font-size: 14px; }
.footer-column h3 { margin: 0 0 17px; color: #fff; font-size: 15px; }
.footer-column ul { list-style: none; padding: 0; margin: 0; }
.footer-column li { margin: 9px 0; }
.footer-column a { color: #9dafc6; font-size: 14px; }
.footer-column a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.1); color: #8498b2; font-size: 13px; }
.payment-pills { display: flex; gap: 7px; }
.payment-pills span { padding: 3px 8px; color: #cbd7e7; border: 1px solid rgba(255,255,255,.16); border-radius: 5px; font-size: 10px; font-weight: 750; }

@media (max-width: 1024px) {
  .header-main { gap: 18px; }
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-main { min-height: 430px; }
  .hero-side { grid-template-columns: 1fr 1fr; }
  .promo-card { min-height: 200px; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid, .woocommerce ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--vm-border); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--vm-border); }
  .footer-main { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-column:last-child { grid-column: 2 / -1; }
}

@media (max-width: 768px) {
  .container { width: min(calc(100% - 28px), var(--vm-width)); }
  .topbar-links { display: none; }
  .topbar-inner { justify-content: center; text-align: center; }
  .header-main { grid-template-columns: auto 1fr auto; min-height: 68px; }
  .header-search { grid-column: 1 / -1; order: 4; margin: -6px 0 12px; }
  .menu-toggle { display: grid; place-items: center; }
  .nav-wrap {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(86vw, 360px);
    padding: 90px 28px 30px;
    background: #fff;
    border: 0;
    box-shadow: -20px 0 50px rgba(10,29,54,.18);
    transform: translateX(105%);
    transition: .28s ease;
  }
  .menu-open .nav-wrap { transform: translateX(0); }
  .main-navigation { display: block; }
  .main-navigation ul { display: block; }
  .main-navigation li { margin: 0 0 18px; }
  .main-navigation a { font-size: 17px; }
  .browse-link { margin: 0 0 25px; }
  .hero { padding-top: 22px; }
  .hero-main { min-height: 430px; padding: 38px 28px; }
  .hero h1 { letter-spacing: -1.8px; }
  .hero-side { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item + .trust-item { border-left: 0; border-top: 1px solid var(--vm-border); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid, .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .deal-banner { grid-template-columns: 1fr; padding: 34px 28px; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 38px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  .brand { font-size: 21px; }
  .brand-mark { width: 35px; height: 35px; }
  .header-actions .account-link { display: none; }
  .hero-main { min-height: 410px; }
  .hero p { font-size: 16px; }
  .section { padding: 40px 0; }
  .section-heading { align-items: start; flex-direction: column; }
  .category-grid { gap: 10px; }
  .category-card { padding: 18px 8px; }
  .products-grid, .woocommerce ul.products { grid-template-columns: 1fr 1fr; gap: 10px; }
  .woocommerce ul.products li.product .woocommerce-loop-product__title { padding-inline: 11px!important; font-size: 13px!important; }
  .woocommerce ul.products li.product .price { padding-inline: 11px; font-size: 14px!important; }
  .woocommerce ul.products li.product .button { margin-inline: 10px!important; width: calc(100% - 20px); font-size: 11px!important; }
  .newsletter-form { flex-direction: column; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand, .footer-column:last-child { grid-column: auto; }
}

/* Premium retail refresh inspired by leading Pakistani technology stores. */
.site-header {
  box-shadow: 0 8px 28px rgba(15, 39, 72, .06);
}
.site-logo {
  display: block;
  width: auto;
  height: 48px;
  object-fit: contain;
}
.footer-logo {
  height: 44px;
  padding: 4px 10px;
  background: #fff;
  border-radius: 10px;
}
.header-main {
  min-height: 84px;
  grid-template-columns: 220px minmax(320px, 1fr) auto;
}
.header-search input[type="search"] {
  height: 50px;
  background: #f4f7fb;
  border-color: #e1e8f1;
  border-radius: 9px;
}
.header-search button {
  top: 5px;
  right: 5px;
  width: 40px;
  height: 40px;
  color: #fff;
  background: var(--vm-blue);
  border-radius: 8px;
}
.nav-wrap {
  background: #fff;
}
.main-navigation {
  min-height: 52px;
}
.main-navigation a {
  color: #243750;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .2px;
}
.browse-link {
  align-self: stretch;
  margin-left: -18px;
  padding: 0 20px;
  color: #fff!important;
  background: var(--vm-blue);
}
.hero {
  padding-top: 28px;
  background: #f5f7fa;
}
.hero-grid {
  min-height: 495px;
  grid-template-columns: minmax(0, 1.7fr) minmax(310px, .68fr);
  gap: 18px;
}
.hero-main {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: 34px;
  padding: clamp(36px, 4.6vw, 66px);
  background:
    radial-gradient(circle at 95% 10%, rgba(47, 151, 255, .3), transparent 34%),
    linear-gradient(125deg, #071a35 0%, #0b2f62 62%, #135fc5 100%);
  border-radius: 18px;
}
.hero-main::after {
  display: none;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: clamp(40px, 4.5vw, 62px);
}
.hero-product {
  position: relative;
  align-self: center;
  padding: 16px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 18px;
  box-shadow: 0 24px 55px rgba(0,0,0,.2);
  transform: rotate(1.5deg);
}
.hero-product img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
}
.hero-offer {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: -15px;
  padding: 8px 13px;
  color: #fff;
  background: #e93c59;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
  box-shadow: 0 8px 20px rgba(233,60,89,.28);
}
.hero-side {
  gap: 18px;
}
.promo-card {
  min-height: 238px;
  display: block;
  padding: 0;
  background: #fff;
  border: 1px solid #e0e6ee;
  border-radius: 16px;
}
.promo-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.promo-card:hover > img {
  transform: scale(1.04);
}
.promo-card::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(5,20,42,.9));
}
.promo-card > div {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  color: #fff;
}
.promo-card h3,
.promo-two h3 {
  max-width: none;
  margin: 2px 0 5px;
  color: #fff;
  font-size: 23px;
}
.promo-card p {
  color: #dcecff;
}
.promo-kicker {
  color: #7cceff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.promo-two {
  background: #fff;
}
.trust-strip {
  padding: 0 0 28px;
  background: #f5f7fa;
}
.trust-grid {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(15,39,72,.04);
}
.brand-strip {
  border-top: 1px solid var(--vm-border);
  border-bottom: 1px solid var(--vm-border);
  background: #fff;
}
.brand-strip > .container {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 34px;
}
.brand-strip-label {
  flex: 0 0 auto;
  color: var(--vm-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.brand-list {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: #718096;
}
.brand-list strong {
  font-size: 15px;
  letter-spacing: .6px;
}
.section-soft {
  background: #f5f7fa;
}
.category-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.category-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 122px 1fr;
  align-items: center;
  min-height: 132px;
  padding: 0;
  text-align: left;
  border-radius: 13px;
}
.category-photo {
  align-self: stretch;
  overflow: hidden;
  background: #eef2f7;
}
.category-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.category-card:hover .category-photo img {
  transform: scale(1.06);
}
.category-copy {
  padding: 18px;
}
.category-card strong {
  color: var(--vm-navy);
  font-size: 16px;
}
.category-card small {
  display: block;
  margin-top: 3px;
  color: var(--vm-muted);
  font-size: 12px;
}
.section-heading h2 {
  color: #102a4f;
  font-size: clamp(27px, 2.7vw, 36px);
}
.woocommerce ul.products li.product,
.product-card {
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(15,39,72,.035);
}
.woocommerce ul.products li.product:hover,
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(15,39,72,.11);
}
.woocommerce ul.products li.product a img {
  aspect-ratio: 1 / .88;
  padding: 8px;
  object-fit: cover;
  background: #f5f7fa;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  min-height: 52px;
  color: #172b46;
  font-size: 14px!important;
  font-weight: 650;
}
.woocommerce ul.products li.product .button {
  background: var(--vm-blue)!important;
}
.deal-banner {
  border-radius: 16px;
  background:
    radial-gradient(circle at 85% 20%, rgba(39,180,215,.35), transparent 30%),
    linear-gradient(115deg, #071a35, #104f9d);
}

@media (max-width: 1024px) {
  .header-main {
    grid-template-columns: 190px minmax(250px, 1fr) auto;
  }
  .hero-main {
    min-height: 440px;
  }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brand-list strong:nth-last-child(-n+2) {
    display: none;
  }
}

@media (max-width: 768px) {
  .site-logo {
    height: 42px;
  }
  .header-main {
    grid-template-columns: 170px 1fr auto;
  }
  .browse-link {
    margin: 0 0 25px;
    padding: 12px 15px;
    border-radius: 8px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-main {
    grid-template-columns: 1fr .8fr;
    min-height: 420px;
  }
  .hero-product {
    padding: 10px;
  }
  .hero-side {
    grid-template-columns: 1fr 1fr;
  }
  .brand-strip > .container {
    overflow-x: auto;
  }
  .brand-list {
    min-width: 570px;
  }
  .brand-list strong {
    display: block!important;
  }
}

@media (max-width: 560px) {
  .header-main {
    grid-template-columns: 145px 1fr auto;
  }
  .site-logo {
    width: 145px;
    height: auto;
  }
  .hero-main {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-product {
    max-width: 270px;
  }
  .hero-side {
    grid-template-columns: 1fr;
  }
  .promo-card {
    min-height: 220px;
  }
  .category-grid {
    grid-template-columns: 1fr;
  }
  .category-card {
    grid-template-columns: 110px 1fr;
    min-height: 112px;
  }
}

/* View Mart 2.0 design system */
:root {
  --vm-navy: #0b0f14;
  --vm-blue: #168a63;
  --vm-blue-dark: #0f6e4e;
  --vm-sky: #e8f3ee;
  --vm-cyan: #168a63;
  --vm-text: #161b1a;
  --vm-muted: #68706d;
  --vm-border: #deddd8;
  --vm-soft: #f1f0ec;
  --vm-white: #f8f7f4;
  --vm-success: #168a63;
  --vm-sale: #9f3d49;
  --vm-gold: #c4a46b;
  --vm-shadow: 0 14px 42px rgba(11, 15, 20, .08);
  --vm-radius: 12px;
  --vm-width: 1360px;
}
body {
  color: var(--vm-text);
  background: var(--vm-white);
  font-family: Manrope, Inter, "Segoe UI", Arial, sans-serif;
}
:focus-visible {
  outline: 3px solid rgba(22, 138, 99, .35);
  outline-offset: 3px;
}
.container { width: min(calc(100% - 48px), var(--vm-width)); }
.topbar {
  color: #f8f7f4;
  background: #0b0f14;
}
.topbar-inner {
  min-height: 34px;
  justify-content: center;
  gap: clamp(28px, 7vw, 100px);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .35px;
}
.topbar-inner span + span::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  margin-right: clamp(28px, 7vw, 100px);
  vertical-align: middle;
  background: var(--vm-gold);
  border-radius: 50%;
}
.site-header {
  top: 0;
  background: rgba(248, 247, 244, .97);
  border-color: var(--vm-border);
  box-shadow: 0 6px 24px rgba(11,15,20,.045);
}
.header-main {
  min-height: 82px;
  grid-template-columns: 232px minmax(320px, 1fr) auto;
  gap: 30px;
}
.site-logo {
  width: 214px;
  height: auto;
}
.header-search .vm-search-toggle {
  width: 100%;
  height: 48px;
  display: grid;
  grid-template-columns: 21px 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 0 13px;
  color: #6e7471;
  background: #fff;
  border: 1px solid #d8d7d1;
  border-radius: 9px;
  text-align: left;
  cursor: text;
}
.header-search .vm-search-toggle:hover {
  border-color: #a8ada9;
  box-shadow: 0 0 0 4px rgba(22,138,99,.06);
}
.header-search .vm-search-toggle svg { width: 20px; color: var(--vm-blue); }
.header-search kbd {
  padding: 3px 7px;
  color: #7a807d;
  background: #f1f0ec;
  border: 1px solid #d8d7d1;
  border-radius: 5px;
  font-size: 10px;
}
.header-actions { gap: 4px; }
.header-action {
  width: 58px;
  height: 56px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  color: #222826;
  border-radius: 8px;
}
.header-action small { font-size: 9px; font-weight: 700; }
.header-action:hover { color: var(--vm-blue); background: #edf4f0; }
.cart-count,
.vm-wishlist-count {
  position: absolute;
  top: 2px;
  right: 6px;
  min-width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  padding: 0 4px;
  color: #fff;
  background: #168a63;
  border: 2px solid #f8f7f4;
  border-radius: 999px;
  font-size: 9px;
}
.nav-wrap {
  border-top: 1px solid var(--vm-border);
  border-bottom: 1px solid var(--vm-border);
}
.main-navigation { min-height: 48px; }
.main-navigation ul { gap: 31px; }
.main-navigation a {
  color: #343a37;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .45px;
}
.browse-link {
  align-self: center;
  margin: 0 38px 0 0;
  padding: 8px 14px;
  color: #fff!important;
  background: #0b0f14;
  border-radius: 7px;
}
.category-nav { background: #eeede8; }
.category-nav .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 42px);
  overflow-x: auto;
  scrollbar-width: none;
}
.category-nav a {
  flex: 0 0 auto;
  color: #555d59;
  font-size: 11px;
  font-weight: 650;
}
.category-nav a:hover { color: var(--vm-blue); }
.hero {
  padding: 32px 0 24px;
  background: #f8f7f4;
}
.hero-grid {
  min-height: 526px;
  grid-template-columns: minmax(0, 1.75fr) minmax(300px, .65fr);
  gap: 16px;
}
.hero-main {
  grid-template-columns: minmax(0, .9fr) minmax(330px, 1.1fr);
  gap: 42px;
  min-height: 526px;
  padding: clamp(36px, 5vw, 76px);
  color: #f8f7f4;
  background:
    radial-gradient(circle at 82% 15%, rgba(196,164,107,.18), transparent 33%),
    linear-gradient(128deg, #0b0f14, #18201d 68%, #18382d);
  border-radius: 14px;
}
.hero-main::before {
  width: 340px;
  height: 340px;
  right: -80px;
  top: -120px;
  background: radial-gradient(circle, rgba(22,138,99,.18), transparent 70%);
}
.hero h1 {
  max-width: 620px;
  margin-bottom: 20px;
  color: #f8f7f4;
  font-size: clamp(39px, 4.4vw, 62px);
  line-height: 1.04;
  letter-spacing: -2.3px;
}
.hero p { max-width: 550px; color: #cdd2cf; font-size: 16px; }
.eyebrow,
.vm-overline {
  color: var(--vm-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.eyebrow::before { background: var(--vm-gold); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.btn {
  min-height: 46px;
  color: #fff;
  background: var(--vm-blue);
  border-color: var(--vm-blue);
  border-radius: 8px;
  box-shadow: none;
}
.btn-light { color: #0b0f14; background: #f8f7f4; border-color: #f8f7f4; }
.btn-light:hover { color: #0b0f14; background: #fff; }
.btn-ghost { color: #f8f7f4; background: transparent; border-color: rgba(248,247,244,.32); }
.btn-ghost:hover { color: #f8f7f4; background: rgba(255,255,255,.08); }
.btn-outline { color: #0b0f14; background: transparent; border-color: #0b0f14; }
.hero-product {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 12px;
  box-shadow: none;
  transform: none;
}
.hero-product img {
  height: 390px;
  aspect-ratio: auto;
  border-radius: 10px;
  box-shadow: 0 30px 60px rgba(0,0,0,.28);
}
.hero-offer {
  top: 18px;
  left: -12px;
  color: #0b0f14;
  background: var(--vm-gold);
  box-shadow: none;
}
.promo-card {
  min-height: 255px;
  border-color: var(--vm-border);
  border-radius: 12px;
}
.promo-card::after { background: linear-gradient(transparent, rgba(11,15,20,.88)); }
.promo-kicker { color: #d7bd8a; }
.trust-strip { padding: 0 0 24px; background: #f8f7f4; }
.trust-grid { border-radius: 10px; box-shadow: none; }
.trust-icon { color: var(--vm-blue); background: #e8f2ed; }
.trust-item strong { color: #171c1a; }
.section { padding: 64px 0; }
.section-soft { background: #eeede8; }
.section-heading { margin-bottom: 30px; }
.section-heading h2 { color: #0b0f14; font-size: clamp(27px, 2.7vw, 38px); letter-spacing: -1.2px; }
.section-heading p { max-width: 600px; }
.view-all { color: #168a63; }
.category-grid { grid-template-columns: repeat(3, 1fr); }
.category-card {
  grid-template-columns: 45% 1fr;
  min-height: 170px;
  background: #f8f7f4;
  border-color: #d7d5cf;
  border-radius: 10px;
}
.category-card:hover {
  color: var(--vm-blue);
  border-color: #a8b9b0;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(11,15,20,.07);
}
.category-copy { padding: 20px; }
.category-card strong { color: #0b0f14; font-size: 17px; }
.products-grid,
.woocommerce ul.products { gap: 18px; }
.woocommerce ul.products li.product,
.product-card {
  padding-bottom: 18px!important;
  background: #fff;
  border-color: #deddd8;
  border-radius: 10px;
  box-shadow: none;
}
.woocommerce ul.products li.product:hover,
.product-card:hover {
  border-color: #bfc2bd;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(11,15,20,.08);
}
.woocommerce ul.products li.product a img {
  aspect-ratio: 1 / 1;
  padding: 0;
  object-fit: cover;
  background: #eeede8;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  min-height: 49px;
  color: #202523;
  font-size: 14px!important;
  font-weight: 650;
}
.woocommerce ul.products li.product .price {
  color: #168a63!important;
  font-size: 16px!important;
}
.woocommerce ul.products li.product .button {
  color: #0b0f14!important;
  background: #f8f7f4!important;
  border: 1px solid #c9cac5;
  border-radius: 7px!important;
}
.woocommerce ul.products li.product .button:hover { color: #fff!important; background: #168a63!important; border-color: #168a63; }
.woocommerce span.onsale {
  color: #fff!important;
  background: #9f3d49!important;
  border-radius: 5px!important;
}
.vm-new-badge,
.vm-stock-badge {
  position: absolute;
  z-index: 4;
  top: 12px;
  right: 12px;
  padding: 5px 8px;
  color: #0b0f14;
  background: #d9c18f;
  border-radius: 5px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
}
.vm-stock-badge { color: #fff; background: #5e6562; }
.vm-wishlist-button {
  position: absolute;
  z-index: 5;
  top: 48px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #343a37;
  background: rgba(255,255,255,.92);
  border: 1px solid #deddd8;
  border-radius: 50%;
  cursor: pointer;
}
.single-product .vm-wishlist-button {
  position: static;
  width: auto;
  height: 44px;
  display: inline-flex;
  gap: 8px;
  margin-top: 6px;
  padding: 0 14px;
  border-radius: 8px;
}
.single-product .vm-wishlist-button::after { content: "Save to wishlist"; font-size: 12px; font-weight: 700; }
.vm-wishlist-button svg { width: 18px; }
.vm-wishlist-button.is-active { color: #fff; background: #168a63; border-color: #168a63; }
.deal-banner {
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 58px 64px;
  color: #f8f7f4;
  background:
    linear-gradient(90deg, rgba(11,15,20,.95), rgba(11,15,20,.68)),
    url("assets/images/home-kitchen.jpg") center/cover;
  border-radius: 12px;
}
.deal-banner h2 { max-width: 700px; color: #f8f7f4; }
.deal-banner p { max-width: 680px; }
.newsletter { padding: 58px 0; background: #dfe9e3; }
.newsletter h2 { color: #0b0f14; }
.newsletter-inner { grid-template-columns: 1.1fr .9fr; }
.site-footer { background: #0b0f14; }
.footer-logo { width: 205px; height: auto; padding: 0; background: transparent; border-radius: 0; }
.footer-main { grid-template-columns: 1.45fr repeat(3, 1fr); gap: 54px; }
.footer-brand p,
.footer-column a { color: #aeb5b1; }
.footer-column a:hover { color: #f8f7f4; }
.footer-contact { display: grid; gap: 5px; margin-top: 16px; }
.footer-contact a { color: #d9c18f; font-size: 13px; }
.footer-social { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.footer-social a { font-size: 11px; text-decoration: underline; text-underline-offset: 3px; }
.payment-pills span { color: #cfd3d1; }

.page-header {
  padding: 52px 0;
  background: #eeede8;
  border-color: var(--vm-border);
}
.page-header h1 { color: #0b0f14; font-size: clamp(30px, 3.5vw, 47px); }
.content-wrap { padding: 50px 0 80px; }
.vm-wide-entry { max-width: none; }
.woocommerce .woocommerce-breadcrumb a { color: #168a63!important; }
.woocommerce div.product .product_title { color: #0b0f14; font-size: clamp(29px, 3.4vw, 44px); }
.woocommerce div.product p.price,
.woocommerce div.product span.price { color: #168a63!important; }
.woocommerce div.product form.cart .button,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  color: #fff!important;
  background: #168a63!important;
  border-radius: 8px!important;
}
.woocommerce div.product form.cart .button:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover { background: #0f6e4e!important; }
.vm-buy-now {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  padding: 0 22px;
  color: #0b0f14;
  border: 1px solid #0b0f14;
  border-radius: 8px;
  font-weight: 750;
}
.vm-buy-now:hover { color: #fff; background: #0b0f14; }
.vm-delivery-note {
  display: grid;
  gap: 2px;
  margin: 18px 0;
  padding: 13px 15px;
  background: #e6f0ea;
  border-left: 3px solid #168a63;
  border-radius: 6px;
}
.vm-delivery-note span { color: #5e6662; font-size: 12px; }
.vm-product-confidence {
  display: grid;
  gap: 0;
  margin-top: 20px;
  border: 1px solid #deddd8;
  border-radius: 9px;
}
.vm-product-confidence > div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
}
.vm-product-confidence > div + div { border-top: 1px solid #deddd8; }
.vm-product-confidence svg { width: 21px; color: #168a63; }
.vm-product-confidence span { display: grid; }
.vm-product-confidence small { color: #707773; }
.vm-recent-products { clear: both; padding-top: 45px; }
.vm-mobile-atc { display: none; }

.vm-shop-layout {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  gap: 34px;
}
.vm-shop-filters {
  align-self: start;
  padding: 20px;
  background: #fff;
  border: 1px solid #deddd8;
  border-radius: 10px;
}
.vm-filter-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.vm-filter-head h2 { margin: 0; font-size: 18px; }
.vm-filter-close { display: none; }
.vm-shop-filters form { display: grid; gap: 19px; }
.vm-shop-filters label,
.vm-shop-filters legend { color: #343a37; font-size: 12px; font-weight: 750; }
.vm-shop-filters select,
.vm-shop-filters input[type="number"] {
  width: 100%;
  height: 42px;
  margin-top: 7px;
  padding: 0 10px;
  background: #f8f7f4;
  border: 1px solid #d5d4ce;
  border-radius: 7px;
}
.vm-shop-filters fieldset { padding: 0; border: 0; }
.vm-price-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.vm-check { display: flex; align-items: center; gap: 8px; }
.vm-check input { width: 17px; height: 17px; accent-color: #168a63; }
.vm-clear-filters { color: #6b716e; font-size: 12px; text-align: center; }
.vm-mobile-shop-tools { display: flex; justify-content: flex-end; margin-bottom: 14px; }
.vm-filter-toggle { display: none; }
.vm-grid-toggle { display: flex; gap: 4px; }
.vm-grid-toggle button {
  padding: 7px 10px;
  color: #696f6c;
  background: transparent;
  border: 1px solid #d4d3cd;
  border-radius: 6px;
  cursor: pointer;
}
.vm-grid-toggle .is-active { color: #fff; background: #0b0f14; border-color: #0b0f14; }
.vm-active-filters { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 15px; }
.vm-active-filters span { padding: 6px 10px; background: #e5eee9; border-radius: 999px; font-size: 11px; }
.vm-product-results.is-list-view .woocommerce ul.products { grid-template-columns: 1fr!important; }
.vm-product-results.is-list-view .woocommerce ul.products li.product { min-height: 210px; display: grid; grid-template-columns: 220px 1fr; align-content: center; }
.vm-product-results.is-list-view .woocommerce ul.products li.product a.woocommerce-LoopProduct-link { display: grid; grid-template-columns: 220px 1fr; grid-template-rows: auto auto; grid-column: 1 / -1; align-items: center; }
.vm-product-results.is-list-view .woocommerce ul.products li.product a img { grid-row: 1 / 3; margin: 0!important; }
.vm-product-results.is-list-view .woocommerce ul.products li.product .button { grid-column: 2; max-width: 220px; }
.vm-not-found { min-height: 62vh; display: grid; place-items: center; text-align: center; }
.vm-not-found h1 { max-width: 760px; margin: 10px auto; font-size: clamp(38px, 6vw, 70px); line-height: 1.05; }
.vm-not-found p { color: var(--vm-muted); }
.vm-not-found .hero-actions { justify-content: center; margin-top: 24px; }
.vm-hidden-field { display: none!important; }
.vm-whatsapp {
  position: fixed;
  z-index: 900;
  right: 20px;
  bottom: 20px;
  padding: 11px 15px;
  color: #fff;
  background: #168a63;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(11,15,20,.18);
  font-size: 12px;
  font-weight: 750;
}
.vm-whatsapp:hover { color: #fff; background: #0f6e4e; }

@media (max-width: 1024px) {
  .header-main { grid-template-columns: 205px minmax(220px, 1fr) auto; }
  .header-action small { display: none; }
  .header-action { width: 43px; height: 43px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-side { grid-template-columns: 1fr 1fr; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid,
  .woocommerce ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-main { grid-template-columns: 1.3fr repeat(2, 1fr); }
  .footer-column:last-child { grid-column: auto; }
}

@media (max-width: 768px) {
  .container { width: min(calc(100% - 28px), var(--vm-width)); }
  .topbar-inner span { display: none; }
  .topbar-inner span:first-child { display: block; }
  .topbar-inner span + span::before { display: none; }
  .header-main { grid-template-columns: 158px 1fr auto; min-height: 68px; }
  .site-logo { width: 155px; }
  .header-search { grid-column: 1 / -1; margin: -4px 0 11px; }
  .header-search kbd { display: none; }
  .header-actions .wishlist-link,
  .header-actions .account-link { display: none; }
  .nav-wrap { background: #f8f7f4; }
  .main-navigation { display: block; }
  .main-navigation ul { display: block; }
  .main-navigation li { margin-bottom: 18px; }
  .browse-link { margin-bottom: 24px; }
  .category-nav .container { justify-content: flex-start; }
  .hero-main { grid-template-columns: 1fr .85fr; min-height: 445px; padding: 34px 28px; }
  .hero-product img { height: 310px; }
  .hero-side { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .products-grid,
  .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .deal-banner { grid-template-columns: 1fr; padding: 38px 28px; }
  .newsletter-inner { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .vm-shop-layout { grid-template-columns: 1fr; }
  .vm-shop-filters {
    position: fixed;
    z-index: 11000;
    inset: 0 0 0 auto;
    width: min(360px, 100%);
    overflow: auto;
    border: 0;
    border-radius: 0;
    box-shadow: -18px 0 50px rgba(11,15,20,.2);
    transform: translateX(105%);
    transition: transform .22s ease;
  }
  .vm-shop-filters.is-open { transform: translateX(0); }
  .vm-filters-open::before { content: ""; position: fixed; z-index: 10999; inset: 0; background: rgba(11,15,20,.5); }
  .vm-filter-close,
  .vm-filter-toggle { display: inline-flex; }
  .vm-filter-close { width: 35px; height: 35px; align-items: center; justify-content: center; border: 0; border-radius: 50%; }
  .vm-mobile-shop-tools { justify-content: space-between; }
  .vm-filter-toggle { padding: 8px 12px; background: #fff; border: 1px solid #d4d3cd; border-radius: 6px; }
}

@media (max-width: 560px) {
  .header-main { grid-template-columns: 145px 1fr auto; }
  .hero-main { grid-template-columns: 1fr; min-height: auto; }
  .hero h1 { font-size: 39px; letter-spacing: -1.5px; }
  .hero-product { max-width: none; }
  .hero-product img { width: 100%; height: 240px; }
  .hero-side { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 128px; }
  .products-grid,
  .woocommerce ul.products { gap: 10px; }
  .woocommerce ul.products li.product .woocommerce-loop-product__title { min-height: 56px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .vm-newsletter-row { flex-direction: column; }
  .vm-mobile-atc {
    position: fixed;
    z-index: 850;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: #f8f7f4;
    border-top: 1px solid #d4d3cd;
    box-shadow: 0 -8px 24px rgba(11,15,20,.1);
  }
  .vm-mobile-atc span { display: grid; min-width: 0; }
  .vm-mobile-atc small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .vm-mobile-atc button { min-height: 44px; padding: 0 16px; color: #fff; background: #168a63; border: 0; border-radius: 7px; font-weight: 750; }
  .single-product .vm-whatsapp { bottom: 76px; }
  .vm-buy-now { margin: 8px 0 0; width: 100%; }
}

@media (max-width: 340px) {
  .container { width: min(calc(100% - 20px), var(--vm-width)); }
  .header-main { grid-template-columns: 128px 1fr auto; }
  .site-logo { width: 128px; }
  .hero h1 { font-size: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after { scroll-behavior: auto!important; transition-duration: .01ms!important; animation-duration: .01ms!important; animation-iteration-count: 1!important; }
}
