:root {
  --ovs-color-primary: #111827;
  --ovs-color-primary-contrast: #ffffff;
  --ovs-color-accent: #f59e0b;
  --ovs-color-surface: #ffffff;
  --ovs-color-surface-alt: #f9fafb;
  --ovs-color-border: #e5e7eb;
  --ovs-color-text: #111827;
  --ovs-color-text-muted: #6b7280;
  --ovs-radius-lg: 16px;
  --ovs-space-2: 8px;
  --ovs-space-3: 12px;
  --ovs-space-4: 16px;
  --ovs-space-5: 20px;
  --ovs-color-header-background: var(--ovs-color-header-background);
  --ovs-color-header-text: #111827;
  --ovs-color-bottom-nav-background: var(--ovs-color-bottom-nav-background);
  --ovs-color-footer-background: #111827;
  --ovs-color-footer-text: #f9fafb;
  --ovs-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ovs-color-text);
  background: var(--ovs-color-surface-alt);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
.ovs-container { width: min(100% - 24px, var(--ovs-page-width, 1200px)); margin-inline: auto; }
.ovs-app-shell { min-height: 100dvh; padding: 16px 0 88px; }
.ovs-header {
  position: sticky; top: 0; z-index: 20; background: var(--ovs-color-header-background); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ovs-color-border); color: var(--ovs-color-header-text);
}
.ovs-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 0;
}
.ovs-site-title { font-weight: 700; font-size: 1.05rem; color: var(--ovs-color-header-text); }
.ovs-brand-logo { display:inline-flex; align-items:center; }
.ovs-brand-logo img { display:block; max-width:min(220px, 32vw); max-height:56px; width:auto; height:auto; }
.ovs-header__actions { display: flex; gap: 8px; }
.ovs-header__account,
.ovs-cart-button {
  color: var(--ovs-color-header-text);
}
.ovs-icon-button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  line-height: 1;
}
.ovs-icon-button__icon svg {
  width: 28px;
  height: 28px;
  display: block;
}
.ovs-icon-button, .ovs-mobile-bottom-nav a, .ovs-mobile-bottom-nav button {
  min-width: 44px; min-height: 44px; border: 0; background: transparent; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.ovs-header a,
.ovs-header button,
.ovs-header .ovs-header__nav,
.ovs-header .ovs-header__nav a,
.ovs-header .ovs-header__actions a,
.ovs-header .ovs-header__actions button { color: var(--ovs-color-header-text); }
.ovs-card {
  background: #fff; border-radius: var(--ovs-radius-lg); padding: var(--ovs-space-4); box-shadow: var(--ovs-shadow); margin-bottom: 16px;
}
.ovs-title { margin-top: 0; }
.ovs-entry { color: var(--ovs-color-text-muted); }
.ovs-eyebrow { text-transform: uppercase; letter-spacing: .08em; font-size: .75rem; color: var(--ovs-color-text-muted); }
.ovs-button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 16px;
  border-radius: 999px; background: var(--ovs-color-primary); color: var(--ovs-color-primary-contrast); border: none;
}
.ovs-button--secondary { background: #fff; color: var(--ovs-color-primary); border: 1px solid var(--ovs-color-border); }
.ovs-search-form { display: flex; gap: 8px; }
.ovs-search-form .search-field {
  width: 100%; min-height: 44px; border: 1px solid var(--ovs-color-border); border-radius: 12px; padding: 0 12px;
}
.ovs-search-sheet {
  position: fixed; inset: 0; z-index: 40; background: rgba(17,24,39,.4); padding: 24px 0;
}
.ovs-search-sheet__inner { background: white; border-radius: 20px; padding: 16px; }
.ovs-mobile-bottom-nav {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: var(--ovs-color-bottom-nav-background); border-top: 1px solid var(--ovs-color-border); backdrop-filter: blur(12px);
}
.ovs-mobile-bottom-nav a,
.ovs-mobile-bottom-nav button {
  display: flex; flex-direction: column; gap: 2px; font-size: 12px; color: var(--ovs-color-text-muted);
}
.ovs-footer { padding: 24px 0 100px; color: var(--ovs-color-footer-text); background: var(--ovs-color-footer-background); }
.ovs-footer a, .ovs-footer p, .ovs-footer strong, .ovs-footer span { color: var(--ovs-color-footer-text); }
.woocommerce ul.products { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; padding: 0; margin: 0; list-style: none; }
.woocommerce ul.products li.product {
  width: auto !important; margin: 0 !important; background: #fff; border-radius: 18px; padding: 12px; box-shadow: var(--ovs-shadow); display: flex; flex-direction: column; gap: 10px; overflow: hidden;
}
.single-product div.product .summary { background: #fff; padding: 16px; border-radius: 16px; box-shadow: var(--ovs-shadow); }
@media (min-width: 768px) {
  .woocommerce ul.products { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (min-width: 1024px) {
  .ovs-app-shell { padding-bottom: 24px; }
  .ovs-mobile-bottom-nav { display: none; }
  .ovs-footer { padding-bottom: 24px; }
  .woocommerce ul.products { grid-template-columns: repeat(4, minmax(0,1fr)); }
}

.ovs-page-shell > .wp-block-group, .ovs-page-shell > .wp-block-columns, .ovs-page-shell > .wp-block-cover, .ovs-page-shell > .wp-block-heading, .ovs-page-shell > .wp-block-paragraph { margin-bottom: 16px; }
.ovs-empty-homepage { text-align: left; }


.ovs-homepage-stack { display: grid; gap: 16px; }
.ovs-homepage-section { display: grid; gap: 12px; }
.ovs-section-heading { display:flex; align-items:center; justify-content:space-between; gap:12px; }
.ovs-chip-grid, .ovs-category-grid, .ovs-testimonial-track { display:flex; gap:12px; overflow:auto; scroll-snap-type:x proximity; padding-bottom:4px; }
.ovs-category-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); overflow:visible; }
.ovs-category-tile, .ovs-testimonial-card, .ovs-promo-countdown { background:#fff; border-radius:16px; padding:16px; box-shadow:0 4px 18px rgba(0,0,0,.04); }
.ovs-category-tile img { width:100%; aspect-ratio:1/1; object-fit:cover; border-radius:12px; margin-bottom:10px; }
.ovs-testimonial-card { min-width: 82%; scroll-snap-align:start; }
.ovs-countdown-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:8px; margin-top:12px; }
.ovs-countdown-item { background:rgba(255,255,255,.14); color:#fff; border-radius:14px; padding:10px 8px; text-align:center; }
.ovs-countdown-item strong { display:block; font-size:1.1rem; }
.ovs-promo-countdown.is-light .ovs-countdown-item, .ovs-promo-countdown.is-accent .ovs-countdown-item { background:rgba(17,24,39,.08); color:var(--ovs-color-text); }
.ovs-promo-countdown.is-dark { background:#111827; color:#fff; }
.ovs-promo-countdown.is-accent { background:var(--ovs-color-accent); color:var(--ovs-color-text); }
.ovs-promo-countdown.is-light { background:#fff; color:#111827; border:1px solid var(--ovs-color-border); }
.ovs-empty-note { color: var(--ovs-color-text-muted); font-size:.95rem; }
@media (min-width: 768px) { .ovs-category-grid { grid-template-columns:repeat(4,minmax(0,1fr)); } .ovs-testimonial-card { min-width: 38%; } }


.ovs-search-sheet__inner {
  display: grid;
  gap: 12px;
}
.woocommerce div.product form.cart {
  display: grid;
  gap: 12px;
}
.woocommerce .star-rating {
  margin-bottom: 8px;
}
.ovs-sticky-add-to-cart {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 72px;
  z-index: 29;
  padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
  background: var(--ovs-color-bottom-nav-background);
  border-top: 1px solid var(--ovs-color-border);
  backdrop-filter: blur(12px);
}
.ovs-sticky-add-to-cart__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ovs-sticky-add-to-cart__meta {
  display: grid;
  gap: 2px;
}
.ovs-sticky-add-to-cart__meta span {
  color: var(--ovs-color-text-muted);
  font-size: .92rem;
}
body.admin-bar .ovs-sticky-add-to-cart { bottom: 72px; }
@media (min-width: 1024px) {
  .ovs-sticky-add-to-cart {
    bottom: 0;
  }
}


.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 8px;
}
.woocommerce-account .woocommerce-MyAccount-navigation a,
.ovs-button,
.button.ovs-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--ovs-color-primary);
  color: var(--ovs-color-primary-contrast);
  text-decoration: none;
  border: 0;
}
.button.ovs-button--secondary,
.ovs-button--secondary {
  background: var(--ovs-color-surface-alt);
  color: var(--ovs-color-text);
  border: 1px solid var(--ovs-color-border);
}


.ovs-shop-shell { display: grid; gap: 16px; }
.ovs-shop-toolbar {
  display: grid;
  gap: 12px;
  position: sticky;
  top: 70px;
  z-index: 15;
}
.ovs-shop-toolbar__actions {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
}
.ovs-shop-sorting form,
.woocommerce .ovs-shop-sorting form.woocommerce-ordering {
  width: 100%;
  margin: 0;
}
.ovs-shop-sorting select,
.woocommerce .ovs-shop-sorting select.orderby {
  width: 100%;
  min-height: 44px;
  border-radius: 14px;
  border: 1px solid var(--ovs-color-border);
  background: #fff;
  padding: 0 14px;
}
.ovs-filter-trigger { white-space: nowrap; }
.ovs-filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--ovs-color-primary);
  color: #fff;
  font-size: .75rem;
}
.ovs-shop-layout { display: grid; gap: 16px; }
.ovs-shop-sidebar { display: none; }
.ovs-filter-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(17,24,39,.45);
  padding-top: env(safe-area-inset-top);
}
.ovs-filter-drawer__panel {
  margin-top: auto;
  width: 100%;
  max-height: 90dvh;
  overflow: auto;
  background: #fff;
  border-radius: 22px 22px 0 0;
  padding: 16px;
}
.ovs-filter-drawer__header,
.ovs-active-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ovs-filter-drawer__body,
.ovs-active-filters__list {
  display: grid;
  gap: 12px;
}
.ovs-active-filters__list {
  display: flex;
  flex-wrap: wrap;
}
.ovs-filter-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--ovs-color-surface-alt);
  border: 1px solid var(--ovs-color-border);
  color: var(--ovs-color-text-muted);
  font-size: .9rem;
}
.ovs-filter-widget {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ovs-color-border);
}
.ovs-filter-widget:last-child { border-bottom: 0; padding-bottom: 0; }
.ovs-filter-widget__title,
.ovs-filter-widget .widgettitle,
.ovs-filter-widget .wc-block-product-categories__title {
  margin: 0 0 12px;
  font-size: 1rem;
}
.ovs-filter-widget ul,
.ovs-filter-widget ol { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.ovs-filter-widget a { color: var(--ovs-color-text); }
.ovs-filter-widget .wc-block-components-price-slider__range-input-progress,
.ovs-filter-widget .price_slider_amount .button { min-height: 44px; }
.woocommerce .woocommerce-result-count { margin: 0; color: var(--ovs-color-text-muted); }
.woocommerce nav.woocommerce-pagination ul { border: 0; display: flex; gap: 8px; flex-wrap: wrap; }
.woocommerce nav.woocommerce-pagination ul li { border: 0; }
.woocommerce nav.woocommerce-pagination ul li span,
.woocommerce nav.woocommerce-pagination ul li a {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--ovs-shadow);
}
body.ovs-filter-drawer-open { overflow: hidden; }
@media (min-width: 1024px) {
  .ovs-shop-toolbar {
    top: 16px;
    grid-template-columns: 1fr auto;
    align-items: end;
  }
  .ovs-shop-toolbar__actions { min-width: 320px; }
  .ovs-shop-layout.has-sidebar { grid-template-columns: 280px minmax(0, 1fr); align-items: start; }
  .ovs-shop-sidebar {
    display: block;
    position: sticky;
    top: 150px;
  }
  .ovs-filter-trigger { display: none; }
}


.ovs-trust-badges__grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 10px;
}
.ovs-trust-badge,
.ovs-trust-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid var(--ovs-color-border);
  background: #fff;
  padding: 0 14px;
  box-shadow: var(--ovs-shadow);
}
.ovs-trust-badge__icon,
.ovs-trust-strip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(17,24,39,.08);
  font-size: .8rem;
}
.ovs-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}
.ovs-free-shipping-progress__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.ovs-progress {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: var(--ovs-color-border);
  overflow: hidden;
}
.ovs-progress > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--ovs-color-primary);
}
.woocommerce-cart .cross-sells > h2,
.related.products > h2,
.up-sells > h2 {
  font-size: 1.1rem;
  margin-top: 0;
}
.woocommerce-cart .cart_totals,
.woocommerce-checkout .woocommerce-checkout-review-order,
.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-additional-fields,
.woocommerce form.checkout_coupon,
.woocommerce-cart table.shop_table {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--ovs-shadow);
  border: 0;
}
.woocommerce-cart table.shop_table,
.woocommerce-checkout .woocommerce-checkout-review-order,
.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-additional-fields {
  padding: 16px;
}
@media (min-width: 768px) {
  .ovs-trust-badges__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


.ovs-install-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(82px + env(safe-area-inset-bottom));
  z-index: 60;
}
.ovs-install-banner__content {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: rgba(17,24,39,.97);
  color: #fff;
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
}
.ovs-install-banner__title {
  display: block;
  margin-bottom: 4px;
}
.ovs-install-banner__text {
  margin: 0;
  color: rgba(255,255,255,.82);
}
.ovs-install-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
body.ovs-standalone .ovs-install-banner { display:none !important; }
@media (min-width: 1024px) {
  .ovs-install-banner {
    left: auto;
    right: 24px;
    bottom: 24px;
    max-width: 360px;
  }
}


.ovs-store-notice {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #111827;
  color: #fff;
}
.ovs-store-notice__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
}
.ovs-store-notice__inner p {
  margin: 0;
  color: rgba(255,255,255,.92);
}
.ovs-product-badges {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
li.product,
.single-product div.product .woocommerce-product-gallery {
  position: relative;
}
.ovs-product-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  background: #111827;
  color: #fff;
}
.ovs-product-badge--sale { background: #b91c1c; }
.ovs-product-badge--new { background: #065f46; }
.ovs-product-badge--low-stock { background: #92400e; }
.ovs-order-timeline-wrap,
.ovs-order-track-card {
  margin-top: 18px;
}
.ovs-order-track-card__head,
.ovs-order-timeline__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}
.ovs-order-status-pill {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--ovs-color-surface-alt);
  font-weight: 700;
}
.ol, .ovs-order-timeline {
  margin: 0;
  padding: 0;
}
.ovs-order-timeline {
  list-style: none;
  display: grid;
  gap: 14px;
}
.ovs-order-timeline li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
}
.ovs-order-timeline__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-top: 2px;
  background: var(--ovs-color-border);
  box-shadow: 0 0 0 4px rgba(17,24,39,.06);
}
.ovs-order-timeline li.is-complete .ovs-order-timeline__dot,
.ovs-order-timeline li.is-current .ovs-order-timeline__dot {
  background: var(--ovs-color-primary);
}
.ovs-order-timeline li p {
  margin: 4px 0 0;
  color: var(--ovs-color-text-muted);
}
@media (max-width: 767px) {
  .ovs-store-notice__inner,
  .ovs-order-track-card__head,
  .ovs-order-timeline__meta {
    align-items: flex-start;
    flex-direction: column;
  }
}


.ovs-campaign-timer { margin: 14px 0; }
.ovs-entry--tight { margin-bottom: 8px; }
.ovs-countdown-grid--compact { margin-top: 8px; }
.ovs-urgency-box {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff7ed;
  border: 1px solid #fdba74;
  display: grid;
  gap: 8px;
}
.ovs-urgency-box--cart { margin-bottom: 16px; }
.ovs-urgency-message { margin: 0; color: var(--ovs-color-text); font-weight: 600; }
.ovs-inline-countdown {
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}
.ovs-inline-countdown strong {
  display: inline-block;
  min-width: 2ch;
}


.ovs-social-proof-card,
.ovs-review-snapshot,
.ovs-review-highlights__grid > div,
.ovs-post-purchase-nudge,
.ovs-social-proof-strip--card .ovs-social-proof-strip__inner {
  background: #fff;
  border: 1px solid var(--ovs-color-border, #e5e7eb);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 4px 18px rgba(0,0,0,.04);
}
.ovs-review-snapshot,
.ovs-post-purchase-nudge { margin: 16px 0; }
.ovs-review-snapshot__top,
.ovs-social-proof-strip__inner,
.ovs-social-proof-inline { display:flex; flex-wrap:wrap; gap:10px; align-items:center; }
.ovs-review-snapshot__top { justify-content:space-between; }
.ovs-review-snapshot__quote { margin: 10px 0 4px; font-size: .98rem; }
.ovs-review-snapshot__meta,
.ovs-review-snapshot__score,
.ovs-social-proof-inline__item,
.ovs-social-proof-strip__item { color: var(--ovs-color-text-muted, #6b7280); }
.ovs-social-proof-inline { margin: 12px 0 0; }
.ovs-social-proof-inline__item,
.ovs-social-proof-strip__item {
  display:inline-flex; align-items:center; gap:6px; padding:8px 12px; border-radius:999px; background: var(--ovs-color-surface-alt, #f9fafb);
}
.ovs-review-highlights__grid { display:grid; gap:12px; }
.ovs-social-proof-strip--inline .ovs-social-proof-strip__inner {
  display:flex; flex-wrap:wrap; gap:10px; padding:0; border:0; box-shadow:none; background:transparent;
}
@media (min-width: 768px) {
  .ovs-review-highlights__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

.ovs-stock-alert-card .button{min-height:44px;}


.ovs-express-checkout-cta {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.ovs-express-checkout-cta__content { display:grid; gap:6px; }
.ovs-checkout-hero { display:grid; gap:10px; }
.ovs-checkout-steps { display:flex; flex-wrap:wrap; gap:8px; }
.ovs-checkout-steps span {
  display:inline-flex; align-items:center; min-height:36px; padding:0 12px; border-radius:999px;
  background:var(--ovs-color-surface-alt); border:1px solid var(--ovs-color-border); color:var(--ovs-color-text-muted);
}
.ovs-checkout-steps .is-active { background:var(--ovs-color-primary); color:#fff; border-color:var(--ovs-color-primary); }
.ovs-checkout-shell .woocommerce-checkout { display:grid; gap:16px; }
.ovs-checkout-shell .col2-set, .ovs-checkout-shell #order_review_heading, .ovs-checkout-shell #order_review {
  background:#fff; border-radius:16px; padding:16px; box-shadow:var(--ovs-shadow);
}
.ovs-checkout-shell .form-row input.input-text,
.ovs-checkout-shell .form-row textarea,
.ovs-checkout-shell .form-row select {
  min-height:48px; border-radius:14px; border:1px solid var(--ovs-color-border); padding:10px 14px; background:#fff;
}
.ovs-checkout-reassurance { display:flex; flex-wrap:wrap; gap:8px; margin:12px 0 4px; }
.ovs-checkout-reassurance span {
  display:inline-flex; align-items:center; min-height:36px; padding:0 12px; border-radius:999px;
  background:var(--ovs-color-surface-alt); border:1px solid var(--ovs-color-border); font-size:.92rem;
}
.ovs-mobile-checkout-bar {
  position:fixed; left:0; right:0; bottom:72px; z-index:28;
  background:rgba(255,255,255,.96); border-top:1px solid var(--ovs-color-border); backdrop-filter:blur(12px);
  padding:10px 0 calc(10px + env(safe-area-inset-bottom));
}
.ovs-mobile-checkout-bar__inner { display:flex; align-items:center; justify-content:space-between; gap:12px; }
@media (min-width: 1024px) {
  .ovs-mobile-checkout-bar { display:none; }
  .ovs-checkout-shell .woocommerce-checkout { grid-template-columns:minmax(0,1.2fr) minmax(320px,.8fr); align-items:start; }
  .ovs-checkout-shell .col2-set { margin:0; }
}




/* PDP redesign v2.0.26 */
.ovs-product-detail {
  display: grid;
  gap: 24px;
}
.ovs-product-detail__hero {
  display: grid;
  gap: 20px;
  align-items: start;
}
.ovs-product-gallery-shell {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--ovs-shadow);
  padding: 14px;
  display: grid;
  gap: 14px;
}
.ovs-product-gallery__chrome { display:flex; align-items:center; justify-content:space-between; gap:12px; }
.ovs-product-gallery__meta { display:grid; gap:2px; }
.ovs-product-gallery__layout { display:grid; gap:12px; }
.ovs-product-gallery__stage-wrap { position:relative; }
.ovs-product-gallery__stage {
  display:flex;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scrollbar-width:none;
  border-radius:22px;
  background:var(--ovs-color-surface-alt);
  min-height: clamp(280px, 58vw, 640px);
}
.ovs-product-gallery__stage::-webkit-scrollbar { display:none; }
.ovs-product-gallery__slide {
  position:relative;
  min-width:100%;
  min-height: clamp(280px, 58vw, 640px);
  scroll-snap-align:start;
  overflow:hidden;
  border-radius:22px;
  background:var(--ovs-color-surface-alt);
}
.ovs-product-gallery__image { width:100%; height:100%; object-fit:cover; display:block; }
.ovs-product-gallery__zoom {
  position:absolute; right:16px; bottom:16px; z-index:2;
  display:inline-flex; align-items:center; min-height:40px; padding:0 14px;
  border-radius:999px; background:rgba(17,24,39,.72); color:#fff; text-decoration:none;
  backdrop-filter:blur(8px);
}
.ovs-gallery-nav {
  position:absolute; top:50%; transform:translateY(-50%); z-index:3;
  width:46px; height:46px; border-radius:999px; border:1px solid rgba(255,255,255,.5);
  background:rgba(255,255,255,.88); color:var(--ovs-color-primary); box-shadow:0 10px 24px rgba(0,0,0,.12);
  display:inline-flex; align-items:center; justify-content:center; font-size:28px; line-height:1; cursor:pointer;
}
.ovs-gallery-nav--prev { left:14px; }
.ovs-gallery-nav--next { right:14px; }
.ovs-gallery-nav:disabled { opacity:.45; cursor:not-allowed; }
.ovs-product-gallery__thumbs {
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:minmax(76px, 92px);
  gap:10px;
  overflow-x:auto;
  overflow-y:hidden;
  padding:4px 2px 2px;
  scrollbar-width:none;
}
.ovs-product-gallery__thumbs::-webkit-scrollbar { display:none; }
.ovs-product-gallery__thumb {
  border:1px solid var(--ovs-color-border); background:#fff; padding:0; border-radius:16px; overflow:hidden;
  aspect-ratio:1/1; cursor:pointer;
}
.ovs-product-gallery__thumb-image { width:100%; height:100%; object-fit:cover; display:block; }
.ovs-product-gallery__thumb.is-active { border-color: var(--ovs-color-primary); box-shadow: 0 0 0 3px color-mix(in srgb, var(--ovs-color-primary) 18%, transparent); }
.ovs-product-gallery__dots { display:flex; align-items:center; justify-content:center; gap:8px; }
.ovs-product-gallery__dot { width:8px; height:8px; border-radius:50%; background: var(--ovs-color-border); }
.ovs-product-gallery__dot.is-active { width:22px; border-radius:999px; background: var(--ovs-color-primary); }
.ovs-product-gallery-empty { min-height: 360px; display:grid; place-items:center; border-radius:20px; background:var(--ovs-color-surface-alt); color:var(--ovs-color-text-muted); }
.ovs-product-summary-card {
  background:#fff;
  border-radius:24px;
  padding:18px;
  box-shadow:var(--ovs-shadow);
  display:grid;
  gap:16px;
}
.ovs-product-summary-card__topbar {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.ovs-product-rating-anchor {
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--ovs-color-text-muted);
  text-decoration:none;
}
.single-product div.product .summary.entry-summary.ovs-product-summary-card {
  margin:0;
  padding:18px;
  border-radius:24px;
  box-shadow:var(--ovs-shadow);
}
.single-product div.product .woocommerce-product-details__short-description,
.single-product div.product form.cart,
.single-product div.product .product_meta,
.single-product div.product .price {
  margin-bottom:14px;
}
.single-product .woocommerce-tabs,
.single-product .related.products,
.single-product .upsells.products {
  background:#fff;
  border-radius:24px;
  padding:18px;
  box-shadow:var(--ovs-shadow);
}
.single-product div.product form.cart .single_add_to_cart_button,
.single-product div.product form.cart .single_add_to_cart_button.button,
.single-product div.product form.cart button.single_add_to_cart_button {
  background: var(--ovs-color-product-add-to-cart-background, var(--ovs-color-primary));
  color: var(--ovs-color-product-add-to-cart-text, var(--ovs-color-primary-contrast));
  border: 1px solid var(--ovs-color-product-add-to-cart-text, var(--ovs-color-primary-contrast));
  min-height: 48px;
  border-radius: 999px;
  width: 100%;
  justify-content: center;
}
.single-product div.product .ovs-wishlist-button {
  background: var(--ovs-color-product-wishlist-background, #ffffff);
  color: var(--ovs-color-product-wishlist-text, var(--ovs-color-text));
  border: 1px solid var(--ovs-color-product-wishlist-text, var(--ovs-color-border));
  min-height: 48px;
  border-radius: 999px !important;
  width: 100%;
  justify-content: center;
}
.single-product div.product .ovs-wishlist-button:hover,
.single-product div.product .ovs-wishlist-button:focus-visible {
  filter: brightness(.98);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--ovs-color-product-wishlist-background, #ffffff) 28%, transparent);
}
.single-product div.product form.cart .single_add_to_cart_button:hover,
.single-product div.product form.cart .single_add_to_cart_button:focus-visible {
  filter: brightness(.98);
}
@media (min-width: 1024px) {
  .ovs-product-detail__hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
    gap: 28px;
  }
  .ovs-product-gallery__stage,
  .ovs-product-gallery__slide {
    min-height: min(70vh, 720px);
  }
  .ovs-product-gallery__thumbs {
    grid-auto-columns:minmax(92px, 108px);
  }
}
@media (max-width: 767px) {
  .ovs-gallery-nav {
    width:42px;
    height:42px;
    font-size:24px;
  }
  .ovs-gallery-nav--prev { left:10px; }
  .ovs-gallery-nav--next { right:10px; }
  .ovs-product-gallery__zoom {
    left:50%;
    right:auto;
    transform:translateX(-50%);
    bottom:12px;
  }
  .ovs-product-gallery__thumbs {
    grid-auto-columns:minmax(68px, 82px);
  }
}

/* PDP media enhancements v2.0.26 */
.ovs-product-gallery__slide--video {
  background: linear-gradient(180deg, rgba(15,23,42,.02), rgba(15,23,42,.08));
}
.ovs-product-gallery__video-wrap,
.ovs-product-gallery__embed,
.ovs-product-gallery__embed iframe,
.ovs-product-gallery__video {
  width: 100%;
  height: 100%;
}
.ovs-product-gallery__video-wrap {
  position: relative;
  min-height: inherit;
}
.ovs-product-gallery__embed {
  display: grid;
}
.ovs-product-gallery__embed iframe {
  border: 0;
}
.ovs-product-gallery__video {
  object-fit: cover;
  display: block;
  background: #000;
}
.ovs-product-gallery__video-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(17,24,39,.72);
  color: #fff;
  backdrop-filter: blur(8px);
}
.ovs-product-gallery__video-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: inherit;
  color: var(--ovs-color-primary);
  text-decoration: none;
  font-weight: 700;
}
.ovs-product-gallery__thumb-video {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 8px;
  text-align: center;
  background: linear-gradient(180deg, rgba(17,24,39,.04), rgba(17,24,39,.12));
  color: var(--ovs-color-primary);
  font-weight: 700;
}
.ovs-product-gallery__thumb-video span[aria-hidden="true"] {
  font-size: 20px;
  line-height: 1;
}


.ovs-home-hero {
  position: relative;
  padding: 16px 0 8px;
}
.ovs-home-hero__inner {
  min-height: min(68vw, 520px);
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(17,24,39,.78), rgba(17,24,39,.38)),
    var(--ovs-hero-image, linear-gradient(135deg, #111827, #374151));
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: clamp(20px, 4vw, 40px);
}
.ovs-home-hero__content {
  max-width: 560px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}
.ovs-block-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(17,24,39,.75), rgba(17,24,39,.28)),
    var(--ovs-hero-image, linear-gradient(135deg, var(--ovs-color-primary), #374151));
  background-size: cover;
  background-position: center;
  color: #fff;
}
.ovs-block-hero .ovs-eyebrow,
.ovs-block-hero .ovs-title,
.ovs-block-hero .ovs-entry { color: inherit; }
.ovs-block-hero__overlay {
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.08));
}
@media (min-width: 768px) {
  .ovs-home-hero { padding-top: 20px; }
  .ovs-home-hero__inner { min-height: 460px; }
}
@media (min-width: 1024px) {
  .ovs-home-hero__inner { min-height: var(--ovs-home-hero-desktop-height, 520px); }
}

.ovs-home-hero__canvas {
  display: flex;
  align-items: flex-end;
  width: min(100% - 24px, var(--ovs-page-width, 1200px));
  min-height: inherit;
  margin-inline: auto;
  padding: clamp(20px, 4vw, 40px) 0;
}
@media (min-width: 1024px) {
  .ovs-home-hero--full-bleed {
    padding-top: 0;
  }
  .ovs-home-hero--full-bleed .ovs-home-hero__inner {
    border-radius: 0;
    min-height: var(--ovs-home-hero-desktop-height, 560px);
  }
}
@media (max-width: 1023px) {
  .ovs-home-hero--full-bleed .ovs-home-hero__inner {
    border-radius: 28px;
  }
}


.woocommerce .woocommerce-ordering { margin: 0; }
.woocommerce .price { display: flex; flex-wrap: wrap; gap: 6px; align-items: baseline; }
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .added_to_cart,
.woocommerce ul.products li.product .ovs-wishlist-button {
  width: 100%;
  justify-content: center;
}
.woocommerce ul.products li.product .button {
  min-height: 44px;
  border-radius: 999px;
}
.woocommerce ul.products li.product .add_to_cart_button,
.woocommerce ul.products li.product .product_type_simple,
.woocommerce ul.products li.product .product_type_variable,
.woocommerce ul.products li.product .single_add_to_cart_button {
  display: inline-flex;
  align-items: center;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  margin: 6px 0 0;
  line-height: 1.2;
}
.woocommerce ul.products li.product a img { margin: 0; border-radius: 14px; }
.ovs-shop-results .products { align-items: stretch; }
.ovs-shop-results .products li.product > *:last-child { margin-bottom: 0; }
.ovs-shop-results .products li.product .price,
.ovs-shop-results .products li.product .star-rating,
.ovs-shop-results .products li.product .button,
.ovs-shop-results .products li.product .ovs-wishlist-button { margin-top: 0 !important; }

/* v2.0.34 premium shop-grid refinement */
.woocommerce ul.products li.product.ovs-product-card-wrap,
.woocommerce-page ul.products li.product.ovs-product-card-wrap { list-style: none; }
.ovs-product-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  padding: 0;
  border: 1px solid rgba(15,23,42,.05);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.ovs-product-card:hover,
.ovs-product-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(15,23,42,.10);
  border-color: rgba(15,23,42,.10);
}
.ovs-product-card__media {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  border-radius: 24px 24px 0 0;
  padding: 14px 14px 0;
}
.ovs-product-card__media-link {
  display: block;
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}
.ovs-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .28s ease, transform .45s ease;
}
.ovs-product-card__image--secondary { position: absolute; inset: 0; opacity: 0; }
.ovs-product-card:hover .ovs-product-card__image--secondary { opacity: 1; }
.ovs-product-card:hover .ovs-product-card__image--primary { opacity: 0; }
.ovs-product-card:hover .ovs-product-card__image { transform: scale(1.04); }
.ovs-product-card__media::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 0;
  height: 96px;
  background: linear-gradient(180deg, rgba(15,23,42,0) 0%, rgba(15,23,42,.18) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .24s ease;
  border-radius: 0 0 18px 18px;
}
.ovs-product-card:hover .ovs-product-card__media::after,
.ovs-product-card:focus-within .ovs-product-card__media::after { opacity: 1; }
.woocommerce ul.products li.product.ovs-product-card-wrap .onsale {
  position: absolute;
  top: 22px;
  left: 22px;
  min-height: auto;
  line-height: 1;
  margin: 0;
  padding: 9px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow: 0 8px 18px rgba(220,38,38,.22);
}
.ovs-product-card__media-actions {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 16px;
  z-index: 2;
}
.ovs-product-card__quick-view {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 12px 14px;
  background: rgba(255,255,255,.92);
  color: #0f172a;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(15,23,42,.12);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}
.ovs-product-card__quick-view:hover { background: #fff; }
.ovs-product-card:hover .ovs-product-card__quick-view,
.ovs-product-card:focus-within .ovs-product-card__quick-view { opacity: 1; transform: translateY(0); }
.ovs-product-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 18px 20px;
}
.ovs-product-card__meta {
  color: var(--ovs-color-text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .72rem;
  font-weight: 700;
}
.ovs-product-card__title {
  margin: 0;
  font-size: clamp(1.08rem, .8vw + .9rem, 1.45rem);
  line-height: 1.18;
  letter-spacing: -.02em;
}
.ovs-product-card__title a { color: inherit; text-decoration: none; }
.ovs-product-card__title a:hover { color: var(--ovs-color-primary); }
.ovs-product-card .star-rating { transform: scale(.96); transform-origin: left center; }
.ovs-product-card__price {
  font-weight: 800;
  font-size: 1.02rem;
}
.ovs-product-card__price del {
  color: var(--ovs-color-text-muted);
  opacity: .8;
  margin-right: 6px;
}
.ovs-product-card__actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ovs-product-card__primary-action .button,
.ovs-product-card__secondary-actions .button {
  width: 100%;
  border-radius: 999px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.ovs-product-card__primary-action .button {
  background: var(--ovs-color-primary);
  color: var(--ovs-color-primary-contrast);
  border: 1px solid transparent;
}
.ovs-product-card__primary-action .button:hover {
  filter: brightness(.96);
}
.ovs-product-card__secondary-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.ovs-product-card__secondary-actions .button,
.ovs-product-card__secondary-actions .ovs-wishlist-button {
  background: #fff;
  border: 1px solid var(--ovs-color-border);
  color: var(--ovs-color-text);
}
.ovs-product-card__secondary-actions .button:hover,
.ovs-product-card__secondary-actions .ovs-wishlist-button:hover {
  border-color: rgba(15,23,42,.2);
  background: var(--ovs-color-surface-alt);
}
.ovs-compare-button.is-active {
  background: var(--ovs-color-primary);
  color: var(--ovs-color-primary-contrast);
  border-color: var(--ovs-color-primary);
}
.woocommerce ul.products li.product .ovs-product-card .star-rating,
.woocommerce ul.products li.product .ovs-product-card .price { margin: 0; }
.ovs-quick-view-modal,
.ovs-compare-modal { position: fixed; inset: 0; background: rgba(15,23,42,.58); z-index: 1000; padding: 24px; }
.ovs-quick-view-modal__dialog,
.ovs-compare-modal__dialog { max-width: 1080px; margin: 0 auto; background: #fff; border-radius: 28px; padding: 24px; position: relative; max-height: calc(100vh - 48px); overflow: auto; box-shadow: 0 24px 64px rgba(15,23,42,.2); }
.ovs-quick-view-modal__close,
.ovs-compare-modal__close { position: sticky; top: 0; margin-left: auto; display: flex; }
.ovs-quick-view-card { display: grid; grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr); gap: 28px; align-items: start; }
.ovs-quick-view-card__media { background: var(--ovs-color-surface-alt); border-radius: 22px; overflow: hidden; }
.ovs-quick-view-card__image { width: 100%; height: auto; display: block; }
.ovs-quick-view-card__body { display: flex; flex-direction: column; gap: 14px; }
.ovs-quick-view-card__title { margin: 0; font-size: clamp(1.4rem, 1vw + 1rem, 2rem); }
.ovs-quick-view-card__title a { color: inherit; text-decoration: none; }
.ovs-quick-view-card__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.ovs-compare-tray { position: fixed; left: 0; right: 0; bottom: 0; z-index: 999; background: rgba(255,255,255,.96); border-top: 1px solid var(--ovs-color-border); backdrop-filter: blur(12px); box-shadow: 0 -12px 34px rgba(15,23,42,.08); }
.ovs-compare-tray__inner { display: grid; grid-template-columns: 180px 1fr auto; gap: 16px; align-items: center; padding-top: 12px; padding-bottom: calc(12px + env(safe-area-inset-bottom)); }
.ovs-compare-tray__items { display: flex; gap: 10px; flex-wrap: wrap; }
.ovs-compare-pill { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--ovs-color-border); border-radius: 999px; padding: 6px 10px 6px 6px; background: #fff; max-width: 260px; }
.ovs-compare-pill img { width: 34px; height: 34px; object-fit: cover; border-radius: 999px; }
.ovs-compare-pill span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ovs-compare-pill__remove { border: 0; background: transparent; font-size: 20px; line-height: 1; cursor: pointer; }
.ovs-compare-tray__actions { display: flex; gap: 10px; }
.ovs-compare-table-wrap { overflow: auto; }
.ovs-compare-table { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 720px; }
.ovs-compare-table th,
.ovs-compare-table td { padding: 14px; border-bottom: 1px solid var(--ovs-color-border); vertical-align: top; text-align: left; }
.ovs-compare-table thead th { position: sticky; top: 0; background: #fff; z-index: 1; }
.ovs-compare-table thead img { width: 88px; height: 88px; object-fit: cover; border-radius: 16px; display: block; margin-bottom: 8px; }
@media (max-width: 1023px) {
  .ovs-product-card { border-radius: 20px; }
  .ovs-product-card__media { padding: 10px 10px 0; border-radius: 20px 20px 0 0; }
  .ovs-product-card__media-link { aspect-ratio: 1 / 1; }
  .ovs-product-card__media-actions { left: 18px; right: 18px; }
  .ovs-product-card__quick-view { opacity: 1; transform: none; }
  .ovs-product-card__body { padding: 14px 14px 16px; gap: 10px; }
  .ovs-product-card__title { font-size: 1.18rem; }
  .ovs-product-card__secondary-actions { grid-template-columns: 1fr; }
  .ovs-quick-view-card { grid-template-columns: 1fr; }
  .ovs-compare-tray__inner { grid-template-columns: 1fr; }
  .ovs-compare-tray__actions { justify-content: stretch; }
  .ovs-compare-tray__actions .ovs-button { flex: 1; }
}



:root {
  --ovs-header-height: 74px;
  --ovs-admin-bar-offset: 0px;
}
body.admin-bar {
  --ovs-admin-bar-offset: 46px;
}
@media (min-width: 783px) {
  body.admin-bar {
    --ovs-admin-bar-offset: 32px;
  }
}
.ovs-header {
  top: var(--ovs-admin-bar-offset);
  transition: background-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.ovs-header.is-scrolled {
  box-shadow: 0 12px 28px rgba(15, 23, 42, .10);
  background: color-mix(in srgb, var(--ovs-color-header-background) 88%, #ffffff 12%);
}
.ovs-header__inner {
  min-height: var(--ovs-header-height);
}
.ovs-header__nav {
  display: none;
  min-width: 0;
  flex: 1 1 auto;
  justify-content: center;
}
.ovs-header-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.ovs-header-menu li {
  margin: 0;
  position: relative;
}
.ovs-header-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--ovs-color-text);
  font-weight: 600;
  font-size: .95rem;
}
.ovs-search-trigger {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid var(--ovs-color-border);
  background: rgba(255,255,255,.72);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  color: var(--ovs-color-text-muted);
  cursor: pointer;
}
.ovs-search-trigger__label {
  display: none;
  white-space: nowrap;
}
.ovs-cart-button {
  position: relative;
}
.ovs-cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--ovs-color-accent);
  color: var(--ovs-color-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  padding: 0 4px;
}
.ovs-site-offset,
.ovs-app-shell {
  scroll-margin-top: calc(var(--ovs-header-height) + var(--ovs-admin-bar-offset) + 16px);
}
body.ovs-has-sticky-header .ovs-shop-toolbar {
  top: calc(var(--ovs-header-height) + var(--ovs-admin-bar-offset) + 12px);
}
body.ovs-has-sticky-header .ovs-compare-tray {
  bottom: calc(80px + env(safe-area-inset-bottom));
}
@media (min-width: 1024px) {
  .ovs-header__nav {
    display: flex;
  }
  .ovs-search-trigger__label {
    display: inline;
  }
  .ovs-header__actions {
    gap: 10px;
  }
  .ovs-icon-button__icon,
  .ovs-icon-button__icon svg {
    width: 30px;
    height: 30px;
  }
  body.ovs-has-sticky-header .ovs-compare-tray {
    bottom: 24px;
  }
}
@media (max-width: 1023px) {
  .ovs-search-trigger {
    padding: 0;
    width: 44px;
    justify-content: center;
  }
}


.ovs-menu-trigger { display: inline-flex; font-size: 1.2rem; }
.ovs-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
}
.ovs-mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17,24,39,.42);
}
.ovs-mobile-menu__panel {
  position: relative;
  margin-left: auto;
  width: min(92vw, 420px);
  height: 100dvh;
  background: #fff;
  display: grid;
  grid-template-rows: auto 1fr;
  box-shadow: -20px 0 50px rgba(0,0,0,.14);
  transform: translateX(0);
}
.ovs-mobile-menu__header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:16px 18px;
  border-bottom:1px solid var(--ovs-color-border);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}
.ovs-mobile-menu__body {
  overflow:auto;
  padding:16px 18px 110px;
  display:grid;
  gap:18px;
}
.ovs-mobile-menu__shortcut-grid {
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:10px;
}
.ovs-mobile-menu__shortcut,
.ovs-mobile-menu__search {
  min-height:52px;
  border:1px solid var(--ovs-color-border);
  border-radius:16px;
  background:#fff;
  display:flex;
  align-items:center;
  gap:10px;
  padding:0 14px;
  font-weight:600;
}
.ovs-mobile-menu__search { width:100%; justify-content:flex-start; cursor:pointer; }
.ovs-mobile-menu__section { display:grid; gap:12px; }
.ovs-mobile-menu__section h3 { margin:0; font-size:1rem; }
.ovs-mobile-menu__nav,
.ovs-mobile-menu__nav ul {
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:8px;
}
.ovs-mobile-menu__nav a {
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:48px;
  border-radius:14px;
  padding:0 14px;
  background: var(--ovs-color-surface-alt);
}
.ovs-mobile-menu__chips {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.ovs-chip {
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--ovs-color-border);
}
body.ovs-mobile-menu-open {
  overflow:hidden;
}
body.ovs-mobile-menu-open .ovs-header {
  z-index: 71;
}
@media (min-width: 1024px) {
  .ovs-menu-trigger,
  .ovs-mobile-menu {
    display:none !important;
  }
}
@media (max-width: 1023px) {
  .ovs-header__nav {
    display:none;
  }
  .ovs-search-trigger__label {
    display:none;
  }
}


/* v2.0.37 header + search refinement */
.ovs-header__browse {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid var(--ovs-color-border);
  background: #fff;
  padding: 0 16px;
  font-weight: 700;
  cursor: pointer;
}
.ovs-category-panel {
  border-top: 1px solid var(--ovs-color-border);
  background: color-mix(in srgb, #ffffff 95%, var(--ovs-color-surface-alt) 5%);
  box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
}
.ovs-category-panel__inner {
  padding-block: 18px 24px;
  display: grid;
  gap: 18px;
}
.ovs-category-panel__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.ovs-category-panel__title {
  margin: 0;
  font-size: 1.45rem;
}
.ovs-category-panel__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.ovs-category-panel__column {
  background: #fff;
  border: 1px solid var(--ovs-color-border);
  border-radius: 20px;
  padding: 16px;
  display: grid;
  gap: 12px;
}
.ovs-category-panel__parent {
  font-weight: 800;
  font-size: 1rem;
}
.ovs-category-panel__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.ovs-category-panel__links a,
.ovs-category-panel__empty {
  color: var(--ovs-color-text-muted);
  font-size: .95rem;
}
.ovs-category-panel__footer { display:flex; justify-content:flex-end; }
.ovs-search-sheet {
  overflow: auto;
}
.ovs-search-sheet__inner {
  width: min(100% - 24px, 1120px);
  padding: 20px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, .18);
}
.ovs-search-sheet__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.ovs-search-sheet__title {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}
.ovs-search-sheet__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ovs-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--ovs-color-border);
}
.ovs-search-results__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, .9fr);
  gap: 18px;
}
.ovs-search-results__section {
  background: var(--ovs-color-surface-alt);
  border: 1px solid var(--ovs-color-border);
  border-radius: 20px;
  padding: 16px;
}
.ovs-search-results__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.ovs-search-results__heading h3 {
  margin: 0;
  font-size: 1rem;
}
.ovs-search-results__list,
.ovs-search-links,
.ovs-search-results__aside {
  display: grid;
  gap: 12px;
}
.ovs-search-result-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  background: #fff;
}
.ovs-search-result-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 14px;
}
.ovs-search-result-meta {
  display: block;
  margin-top: 4px;
  color: var(--ovs-color-text-muted);
  font-size: .9rem;
}
.ovs-search-link-card {
  display: grid;
  gap: 4px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--ovs-color-border);
  border-radius: 16px;
}
.ovs-search-link-card span {
  color: var(--ovs-color-text-muted);
  font-size: .9rem;
}
.ovs-mobile-menu__section-head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.ovs-mobile-menu__category-groups {
  display:grid;
  gap:10px;
}
.ovs-mobile-menu__category-group {
  border:1px solid var(--ovs-color-border);
  border-radius:16px;
  background:#fff;
  padding:0 14px;
}
.ovs-mobile-menu__category-group summary {
  list-style:none;
  cursor:pointer;
  min-height:48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-weight:700;
}
.ovs-mobile-menu__category-group summary::-webkit-details-marker { display:none; }
.ovs-mobile-menu__category-links {
  display:grid;
  gap:10px;
  padding:0 0 14px;
}
.ovs-mobile-menu__category-links a {
  color:var(--ovs-color-text-muted);
}
.ovs-mobile-menu__category-parent {
  color: var(--ovs-color-text) !important;
  font-weight: 700;
}
@media (max-width: 1023px) {
  .ovs-category-panel { display: none; }
  .ovs-search-sheet__inner { width: min(100% - 16px, 100%); }
  .ovs-search-results__grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .ovs-search-sheet { padding: 10px 0; }
  .ovs-search-sheet__inner { padding: 14px; border-radius: 18px; }
  .ovs-search-form { grid-template-columns: 1fr; display:grid; }
  .ovs-search-results__section { padding: 14px; }
  .ovs-search-result-item { grid-template-columns: 60px minmax(0,1fr); }
  .ovs-search-result-item img { width: 60px; height: 60px; }
}

.ovs-reward-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--ovs-color-primary, #111827);
  color: var(--ovs-color-primary-contrast, #fff);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(17,24,39,.12);
}

.ovs-rewards-card .ovs-account-card__header {
  margin-bottom: 12px;
}

.ovs-rewards-balance {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 16px 0 20px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(245,158,11,.14), rgba(17,24,39,.06));
  border: 1px solid var(--ovs-color-border, #e5e7eb);
}

.ovs-rewards-balance strong {
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1;
}

.ovs-rewards-history table th,
.ovs-rewards-history table td {
  font-size: 14px;
}


.ovs-reward-chip {
  gap: 8px;
  padding: 0 10px 0 14px;
}
.ovs-reward-chip__tier {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  font-size: 11px;
  letter-spacing: .02em;
}
.ovs-reward-chip--silver { background: linear-gradient(135deg, #475569, #94a3b8); }
.ovs-reward-chip--gold { background: linear-gradient(135deg, #92400e, #f59e0b); }
.ovs-tier-card {
  margin: 0 0 18px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--ovs-color-border, #e5e7eb);
  background: linear-gradient(135deg, rgba(17,24,39,.03), rgba(245,158,11,.10));
}
.ovs-tier-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.ovs-tier-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  background: #92400e;
}
.ovs-tier-pill--silver { background: #64748b; }
.ovs-tier-pill--gold { background: #d97706; }
.ovs-tier-progress { display: grid; gap: 8px; }
.ovs-tier-progress__bar {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(17,24,39,.08);
  overflow: hidden;
}
.ovs-tier-progress__bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #111827, #f59e0b);
}


.ovs-tier-badges{display:flex;flex-wrap:wrap;gap:8px;margin:10px 0 0}
.ovs-tier-badge{display:inline-flex;align-items:center;gap:6px;padding:6px 10px;border-radius:999px;font-size:12px;font-weight:700;line-height:1;background:#eef2ff;color:#312e81}
.ovs-tier-badge--silver{background:#eef2ff;color:#3730a3}
.ovs-tier-badge--gold{background:#fff7ed;color:#9a3412}
.ovs-tier-badge--price{background:#ecfdf5;color:#166534}
.ovs-tier-badge--bronze{background:#fdf2f8;color:#9d174d}
.ovs-tier-badges--single{margin:0 0 14px}
.ovs-tier-price{display:flex;flex-wrap:wrap;align-items:baseline;gap:8px}
.ovs-tier-price del{opacity:.6}
.ovs-tier-price ins{text-decoration:none;font-weight:800}
.ovs-tier-price small{display:block;flex-basis:100%;font-size:12px;color:var(--ovs-color-text-muted)}
.ovs-tier-locked-price{font-weight:700;color:#b45309}
.ovs-tier-locked-notice{margin:0 0 16px}


.ovs-auth-shell {
  padding: 8px 0 24px;
}
.ovs-auth-layout {
  display: grid;
  gap: 16px;
}
.ovs-auth-card {
  display: grid;
  gap: 16px;
}
.ovs-auth-card--intro {
  background: linear-gradient(135deg, rgba(245,158,11,.16), rgba(17,24,39,.04));
}
.ovs-auth-card__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}
.ovs-auth-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ovs-auth-benefits {
  display: grid;
  gap: 10px;
}
.ovs-auth-benefit {
  display: grid;
  gap: 4px;
  padding: 14px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--ovs-color-border);
  border-radius: 14px;
}
.ovs-auth-benefit span,
.ovs-auth-form__hint {
  color: var(--ovs-color-text-muted);
  font-size: .95rem;
}
.ovs-auth-form {
  display: grid;
  gap: 14px;
}
.ovs-auth-form label {
  display: grid;
  gap: 8px;
}
.ovs-auth-form input {
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid var(--ovs-color-border);
  background: #fff;
  padding: 0 14px;
  font: inherit;
}
.ovs-auth-form input:focus {
  outline: 2px solid rgba(245,158,11,.35);
  outline-offset: 1px;
  border-color: var(--ovs-color-accent);
}
.ovs-auth-form__grid {
  display: grid;
  gap: 14px;
}
@media (min-width: 920px) {
  .ovs-auth-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    align-items: start;
  }
  .ovs-auth-form__grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* My Account layout redesign */
.woocommerce-account .entry-content {
  display: block;
}

.woocommerce-account .entry-content > .woocommerce,
.woocommerce-account .woocommerce {
  width: 100%;
}

.ovs-account-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.ovs-account-layout__sidebar {
  position: sticky;
  top: 96px;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  padding: 18px;
  border-radius: 22px;
  background: var(--ovs-color-surface-alt, #f9fafb);
  border: 1px solid var(--ovs-color-border, #e5e7eb);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  margin: 0;
  display: grid;
  gap: 10px;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
  margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  min-height: 50px;
  padding: 12px 16px;
  border-radius: 16px;
  background: #fff;
  color: var(--ovs-color-text, #111827);
  border: 1px solid var(--ovs-color-border, #e5e7eb);
  box-shadow: none;
  font-weight: 700;
  line-height: 1.35;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.woocommerce-account .woocommerce-MyAccount-navigation a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation a:focus-visible {
  background: rgba(17, 24, 39, 0.08);
  color: var(--ovs-color-text, #111827);
  border-color: rgba(17, 24, 39, 0.14);
  transform: translateX(2px);
  outline: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation .is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a:focus-visible {
  background: var(--ovs-color-accent, #f59e0b);
  color: var(--ovs-color-text, #111827);
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(245, 158, 11, 0.25);
  transform: none;
}

.woocommerce-account .woocommerce-MyAccount-content,
.ovs-account-layout__content {
  min-width: 0;
  display: grid;
  gap: 16px;
}

.woocommerce-account .woocommerce-MyAccount-content > h2:first-child,
.woocommerce-account .woocommerce-MyAccount-content > h3:first-child {
  margin-top: 0;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-error,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info,
.woocommerce-account .woocommerce-MyAccount-content form,
.woocommerce-account .woocommerce-MyAccount-content table.shop_table,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm {
  border-radius: 22px;
}

@media (max-width: 1023px) {
  .ovs-account-layout {
    grid-template-columns: 1fr;
  }

  .ovs-account-layout__sidebar {
    position: static;
  }
}

@media (max-width: 767px) {
  .woocommerce-account .woocommerce-MyAccount-navigation {
    padding: 14px;
    border-radius: 18px;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation a {
    min-height: 46px;
    padding: 11px 14px;
    border-radius: 14px;
  }
}

/* v2.0.57 shop view switcher and pagination controls */
.ovs-shop-toolbar__actions {
  grid-template-columns: auto auto minmax(180px, 1fr);
}

.ovs-shop-view-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--ovs-color-border, #e5e7eb);
  box-shadow: 0 8px 20px rgba(17,24,39,.05);
  white-space: nowrap;
}

.ovs-shop-view-switcher__button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--ovs-color-text-muted, #6b7280);
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
}

.ovs-shop-view-switcher__button:hover,
.ovs-shop-view-switcher__button:focus-visible {
  color: var(--ovs-color-text, #111827);
  background: var(--ovs-color-surface-alt, #f9fafb);
  outline: none;
}

.ovs-shop-view-switcher__button.is-active {
  background: var(--ovs-color-primary, #111827);
  color: var(--ovs-color-primary-contrast, #fff);
}

.ovs-shop-results--list ul.products,
.woocommerce .ovs-shop-results--list ul.products,
.woocommerce-page .ovs-shop-results--list ul.products {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .ovs-shop-results--list .ovs-product-card {
    display: grid;
    grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
    min-height: 230px;
  }

  .ovs-shop-results--list .ovs-product-card__media {
    border-radius: 24px 0 0 24px;
    padding: 14px;
  }

  .ovs-shop-results--list .ovs-product-card__media-link {
    height: 100%;
    aspect-ratio: auto;
  }

  .ovs-shop-results--list .ovs-product-card__body {
    justify-content: center;
    padding: 24px;
  }

  .ovs-shop-results--list .ovs-product-card__actions {
    max-width: 520px;
  }

  .ovs-shop-results--list .ovs-product-card__secondary-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.woocommerce nav.woocommerce-pagination {
  margin-top: 20px;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--ovs-color-primary, #111827);
  color: var(--ovs-color-primary-contrast, #fff);
}

@media (max-width: 767px) {
  .ovs-shop-toolbar__actions {
    grid-template-columns: 1fr;
  }

  .ovs-shop-view-switcher,
  .ovs-shop-sorting,
  .woocommerce .ovs-shop-sorting form.woocommerce-ordering {
    width: 100%;
  }

  .ovs-shop-view-switcher__button {
    flex: 1 1 0;
  }
}

/* Login redesign */
.ovs-account-auth-layout {
  max-width: 100%;
}

.ovs-account-layout__content--auth {
  width: 100%;
}

.ovs-auth-shell--login {
  padding: 12px 0 28px;
}

.ovs-login-shell {
  display: flex;
  justify-content: center;
}

.ovs-login-card {
  width: min(100%, 560px);
  margin: 0 auto;
  padding: clamp(20px, 4vw, 34px);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(249,250,251,.96));
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 22px 55px rgba(17,24,39,.10);
  display: grid;
  gap: 18px;
}

.ovs-login-card__header {
  display: grid;
  gap: 10px;
  text-align: center;
}

.ovs-login-card__title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 1.05;
}

.ovs-login-card__intro {
  max-width: 42ch;
  margin: 0 auto;
}

.ovs-login-card__quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.ovs-login-card__quick-links .ovs-button {
  min-width: 180px;
}

.ovs-login-form {
  display: grid;
  gap: 16px;
}

.ovs-login-form__field {
  display: grid;
  gap: 8px;
  margin: 0;
}

.ovs-login-form__field > span:first-child {
  font-weight: 600;
}

.ovs-login-form input[type="text"],
.ovs-login-form input[type="password"],
.ovs-login-form input[type="email"] {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid var(--ovs-color-border, #d1d5db);
  background: #fff;
  font: inherit;
  box-shadow: inset 0 1px 2px rgba(17,24,39,.04);
}

.ovs-login-form input[type="text"]:focus,
.ovs-login-form input[type="password"]:focus,
.ovs-login-form input[type="email"]:focus {
  outline: 2px solid rgba(17,24,39,.12);
  outline-offset: 1px;
  border-color: var(--ovs-color-primary, #111827);
}

.ovs-login-form__password-wrap {
  position: relative;
  display: block;
}

.ovs-login-form__password-wrap input {
  padding-right: 58px;
}

.ovs-login-form__toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ovs-color-text-muted, #6b7280);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.ovs-login-form__toggle:hover,
.ovs-login-form__toggle:focus-visible {
  background: rgba(17,24,39,.06);
  color: var(--ovs-color-text, #111827);
  outline: none;
}

.ovs-login-form__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.ovs-login-form__remember {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .98rem;
}

.ovs-login-form__remember input {
  width: 18px;
  height: 18px;
  margin: 0;
}

.ovs-login-form__forgot {
  color: var(--ovs-color-primary, #111827);
  font-weight: 700;
}

.ovs-login-form__submit {
  width: 100%;
  min-height: 54px;
  border-radius: 16px;
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 16px 28px rgba(17,24,39,.14);
}

.ovs-login-form__footer {
  text-align: center;
  color: var(--ovs-color-text-muted, #6b7280);
  display: grid;
  gap: 4px;
  padding-top: 6px;
}

.ovs-login-form__footer p {
  margin: 0;
}

.ovs-login-form__footer a {
  color: var(--ovs-color-primary, #111827);
  font-weight: 700;
}

.ovs-login-card .woocommerce-error,
.ovs-login-card .woocommerce-info,
.ovs-login-card .woocommerce-message {
  margin: 0;
  border-radius: 16px;
}

@media (max-width: 767px) {
  .ovs-login-card {
    width: 100%;
    border-radius: 22px;
    padding: 20px;
  }

  .ovs-login-card__quick-links .ovs-button {
    width: 100%;
  }

  .ovs-login-form__meta {
    align-items: flex-start;
    flex-direction: column;
  }
}


.ovs-footer__inner {
  display: grid;
  gap: 18px;
}
.ovs-footer__title {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.ovs-footer__tagline,
.ovs-footer__contact p,
.ovs-footer__address p,
.ovs-footer__meta p {
  margin: 0;
  color: var(--ovs-color-footer-text);
  opacity: .92;
}
.ovs-footer__contact,
.ovs-footer__address,
.ovs-footer__brand {
  display: grid;
  gap: 8px;
}
.ovs-footer__meta {
  display: grid;
  gap: 8px;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid rgba(255,255,255,.12);
}
@media (min-width: 768px) {
  .ovs-footer__inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }
  .ovs-footer__meta {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .ovs-footer__meta p:last-child {
    text-align: right;
  }
}

.ovs-footer__policy-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 8px;
}

.ovs-footer__policy-list a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ovs-auth-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  font-size: .95rem;
  color: var(--ovs-color-text-muted, #6b7280);
}

.ovs-auth-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.ovs-auth-consent a,
.ovs-checkout-legal-note a {
  color: var(--ovs-color-primary, #111827);
  font-weight: 700;
}

.ovs-checkout-legal-note {
  margin: 12px 0 0;
  font-size: .92rem;
  line-height: 1.6;
  color: var(--ovs-color-text-muted, #6b7280);
}


.ovs-announcement-bar {
  background: var(--ovs-color-primary, #111827);
  color: var(--ovs-color-primary-contrast, #fff);
}
.ovs-announcement-bar__inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
}
.ovs-announcement-bar__text {
  font-size: .95rem;
  line-height: 1.4;
}
.ovs-announcement-bar__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: var(--ovs-color-primary-contrast, #fff);
  font-size: .9rem;
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .ovs-announcement-bar__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.ovs-footer__support-shortcuts {
  display: grid;
  gap: 12px;
}

.ovs-footer__support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ovs-footer__support-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  color: var(--ovs-color-footer-text);
  text-decoration: none;
  font-weight: 600;
}

.ovs-footer__support-action--secondary {
  background: transparent;
}

/* Accessibility & UX readiness */
.ovs-skip-link {
  position: absolute;
  left: 12px;
  top: -56px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--ovs-color-primary, #111827);
  color: var(--ovs-color-primary-contrast, #fff);
  box-shadow: 0 12px 30px rgba(17,24,39,.18);
}
.ovs-skip-link:focus {
  top: 12px;
}
:focus-visible {
  outline: 3px solid rgba(245,158,11,.55);
  outline-offset: 2px;
}
#ovs-main-content:focus {
  outline: none;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Final visual polish / QA milestone v2.0.74 */
.ovs-button,
.button,
.single-product div.product form.cart .single_add_to_cart_button,
.single-product div.product .ovs-wishlist-button,
.ovs-icon-button {
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease, filter .18s ease;
}

.ovs-header .ovs-header__actions .ovs-icon-button {
  border-radius: 999px;
}

.ovs-header .ovs-header__actions .ovs-icon-button:hover,
.ovs-header .ovs-header__actions .ovs-icon-button:focus-visible {
  background: color-mix(in srgb, var(--ovs-color-header-text) 10%, transparent);
  outline: none;
}

.ovs-header .ovs-header__actions .ovs-icon-button:focus-visible,
.ovs-button:focus-visible,
.button:focus-visible,
.single-product div.product form.cart .single_add_to_cart_button:focus-visible,
.single-product div.product .ovs-wishlist-button:focus-visible {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--ovs-color-primary, #111827) 20%, transparent);
}

.single-product div.product .summary.entry-summary.ovs-product-summary-card {
  gap: 18px;
}

.single-product div.product .product_title {
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.single-product div.product .price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 800;
}

.single-product div.product .price del {
  color: var(--ovs-color-text-muted, #6b7280);
  font-size: .95rem;
  font-weight: 600;
}

.single-product div.product .woocommerce-product-details__short-description {
  color: var(--ovs-color-text-muted, #6b7280);
  line-height: 1.7;
}

.single-product div.product .woocommerce-product-details__short-description p:last-child {
  margin-bottom: 0;
}

.single-product div.product p.stock {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--ovs-color-surface-alt, #f9fafb);
  border: 1px solid var(--ovs-color-border, #e5e7eb);
  color: var(--ovs-color-text-muted, #6b7280);
  font-weight: 700;
}

.single-product div.product p.stock.in-stock {
  color: #0f766e;
  border-color: color-mix(in srgb, #0f766e 26%, white);
  background: color-mix(in srgb, #0f766e 8%, white);
}

.single-product div.product p.stock.out-of-stock {
  color: #b91c1c;
  border-color: color-mix(in srgb, #b91c1c 22%, white);
  background: color-mix(in srgb, #b91c1c 8%, white);
}

.single-product div.product form.cart:not(.variations_form) {
  display: grid;
  gap: 12px;
  align-items: stretch;
}

.single-product div.product form.cart:not(.variations_form) .quantity {
  width: min(180px, 100%);
  margin: 0;
}

.single-product div.product form.cart:not(.variations_form) .quantity .qty {
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid var(--ovs-color-border, #e5e7eb);
  background: #fff;
  color: var(--ovs-color-text, #111827);
  font: inherit;
  font-weight: 600;
  padding: 0 14px;
}

.single-product div.product form.cart:not(.variations_form) .quantity .qty:focus-visible {
  outline: none;
  border-color: var(--ovs-color-primary, #111827);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--ovs-color-primary, #111827) 12%, transparent);
}

.single-product div.product form.cart .single_add_to_cart_button,
.single-product div.product .ovs-wishlist-button {
  font-weight: 700;
}

.single-product div.product .product_meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--ovs-color-text-muted, #6b7280);
}

.single-product div.product .product_meta > span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--ovs-color-surface-alt, #f9fafb);
  border: 1px solid var(--ovs-color-border, #e5e7eb);
  font-size: .93rem;
}

.single-product div.product .product_meta a {
  color: var(--ovs-color-text, #111827);
  font-weight: 600;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-radius: 18px;
  padding: 14px 16px;
}

.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button {
  margin-left: 10px;
}

@media (min-width: 640px) {
  .single-product div.product form.cart:not(.variations_form) {
    grid-template-columns: minmax(132px, 180px) minmax(0, 1fr);
  }
}
