/*
 * VAPE WORLD - FRANPOS STOREFRONT THEME
 * Working copy based on the live FranPOS customization backup.
 */

:root {
  --brand-black: #000000;
  --brand-black-soft: #08090d;
  --brand-surface: #101217;
  --brand-surface-alt: #151821;
  --brand-surface-elevated: #1b1f29;
  --brand-red: #ff1d12;
  --brand-red-dark: #c9150e;
  --brand-red-soft: rgba(255, 29, 18, 0.18);
  --brand-white: #ffffff;
  --text-primary: #f8f8fb;
  --text-secondary: #c8ccd6;
  --text-muted: #9299a7;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --success-bg: #1db954;
  --success-text: #ffffff;
  --shadow-sm: 0 12px 28px rgba(0, 0, 0, 0.18);
  --shadow-md: 0 18px 42px rgba(0, 0, 0, 0.28);
  --shadow-lg: 0 28px 64px rgba(0, 0, 0, 0.36);
  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 30px;
  --radius-pill: 999px;
  --font-body: "Poppins", sans-serif;
  --font-heading: "Quicksand", sans-serif;
  --transition-fast: 160ms ease;
  --transition-base: 220ms ease;
  --transition-slow: 320ms ease;
  --focus-ring: 0 0 0 3px rgba(255, 29, 18, 0.22);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body.vw-body {
  margin: 0;
  background:
    radial-gradient(circle at top center, rgba(255, 29, 18, 0.16), transparent 24%),
    linear-gradient(180deg, #000000 0%, #06070a 22%, #090a0d 100%) !important;
  color: var(--text-primary) !important;
  font-family: var(--font-body) !important;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.vw-body #__next,
body.vw-body .vw-storefront,
body.vw-body .vw-storefront main,
body.vw-body #catalog-page,
body.vw-body #product-page,
body.vw-body #cart-page,
body.vw-body #locations-page {
  background: transparent !important;
}

body.vw-body *,
body.vw-body *::before,
body.vw-body *::after {
  font-family: var(--font-body);
}

body.vw-body h1,
body.vw-body h2,
body.vw-body h3,
body.vw-body h4,
body.vw-body h5,
body.vw-body h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

body.vw-body img {
  max-width: 100%;
}

body.vw-body a {
  color: inherit;
  transition:
    color var(--transition-fast),
    opacity var(--transition-fast),
    transform var(--transition-fast);
}

body.vw-body button,
body.vw-body .button {
  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast),
    box-shadow var(--transition-base),
    transform var(--transition-fast);
}

body.vw-body :focus-visible {
  outline: none;
  box-shadow: var(--focus-ring) !important;
}

/* =========================================================
   TOP BAR
   ========================================================= */

.vw-top-banner {
  background: linear-gradient(90deg, #ff2d20 0%, #f21b0f 45%, #cf130b 100%) !important;
  color: var(--brand-white) !important;
  border-bottom: 0 !important;
  box-shadow: 0 10px 24px rgba(255, 29, 18, 0.22);
}

.vw-top-banner a,
.vw-top-banner span,
.vw-top-banner div,
.vw-top-banner p {
  color: var(--brand-white) !important;
}

/* =========================================================
   HEADER
   ========================================================= */

.vw-header {
  background: rgba(0, 0, 0, 0.94) !important;
  color: var(--brand-white) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  z-index: 4000;
}

.vw-header-top-line {
  min-height: 84px;
}

#main-header-bottom-line,
.NavbarComponent-module__LjSYyq__line2,
.NavbarCategoriesComponent-module__9MnTxW__root,
.ListLinksDropdownComponent-module__3leexG__root,
.CustomLinksComponent-module__HkfUga__root {
  position: relative;
  z-index: 4001;
}

.vw-header-brand-link {
  display: inline-flex;
  align-items: center;
}

.vw-header-logo {
  width: auto;
  max-width: 178px;
  max-height: 56px;
  object-fit: contain;
}

#theme-icon {
  display: none !important;
}

#main-header [class*="leftDivider"] {
  display: none !important;
}

.vw-nav-link,
#main-header [class*="tab"],
#main-header [class*="text"],
#main-header .vw-wishlist-trigger,
#main-header .vw-cart-trigger {
  color: var(--brand-white) !important;
  font-weight: 600;
}

.vw-nav-link:hover,
#main-header [class*="tab"]:hover,
#main-header .vw-wishlist-trigger:hover,
#main-header .vw-cart-trigger:hover,
.vw-locations-trigger:hover {
  color: #ffb4ae !important;
}

.vw-locations-trigger {
  transition:
    transform var(--transition-fast),
    color var(--transition-fast);
}

.vw-locations-trigger:hover {
  transform: translateY(-1px);
}

.vw-cart-counter {
  background: var(--brand-red) !important;
  color: var(--brand-white) !important;
  border: 2px solid rgba(0, 0, 0, 0.9);
  box-shadow: 0 10px 22px rgba(255, 29, 18, 0.28);
}

.vw-burger span {
  background: var(--brand-white) !important;
}

.vw-header-search {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
  background: var(--brand-white) !important;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
}

.vw-header-search:focus-within {
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.26),
    var(--focus-ring) !important;
}

.vw-header-search-category {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px !important;
  background: #eef1f5 !important;
  border-right: 1px solid #d7dce5 !important;
}

.vw-header-search-category-label {
  color: #111318 !important;
  font-weight: 600;
}

.vw-header-search-input {
  min-height: 48px;
  border: 0 !important;
  background: transparent !important;
  color: #111318 !important;
  padding: 0 18px !important;
}

.vw-header-search-input::placeholder {
  color: #757d89 !important;
}

.vw-nav-dropdown {
  background: rgba(12, 14, 18, 0.98) !important;
  border: 1px solid var(--border) !important;
  border-radius: 18px !important;
  box-shadow: var(--shadow-lg) !important;
  overflow: visible !important;
  z-index: 4002 !important;
}

.vw-nav-dropdown a {
  color: var(--text-secondary) !important;
}

.vw-nav-dropdown a:hover {
  color: var(--brand-white) !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

[class*="ListLinksDropdownComponent"][class*="dropdown"],
[class*="NavbarCategoriesComponent"][class*="dropDownSmall"],
[class*="NavbarCategoriesComponent"][class*="dropDownBig"] {
  background: rgba(12, 14, 18, 0.98) !important;
  border: 1px solid var(--border) !important;
  border-radius: 18px !important;
  box-shadow: var(--shadow-lg) !important;
  color: var(--text-secondary) !important;
}

[class*="ListLinksDropdownComponent"][class*="dropdown"] a,
[class*="ListLinksDropdownComponent"][class*="dropdown"] span,
[class*="ListLinksDropdownComponent"][class*="dropdown"] p,
[class*="NavbarCategoriesComponent"][class*="dropDown"] a,
[class*="NavbarCategoriesComponent"][class*="dropDown"] span,
[class*="NavbarCategoriesComponent"][class*="dropDown"] p,
[class*="NavbarCategoriesComponent"][class*="dropDown"] div {
  color: var(--text-secondary) !important;
}

[class*="ListLinksDropdownComponent"][class*="nestedTab"],
[class*="NavbarCategoriesComponent"][class*="dropdownTab"] {
  background: transparent !important;
  color: var(--text-secondary) !important;
}

[class*="ListLinksDropdownComponent"][class*="nestedTab"]:hover,
[class*="ListLinksDropdownComponent"][class*="nestedTab"]:focus-visible,
[class*="NavbarCategoriesComponent"][class*="dropdownTab"]:hover,
[class*="NavbarCategoriesComponent"][class*="dropdownTab"]:focus-visible {
  background: rgba(255, 255, 255, 0.05) !important;
  color: var(--brand-white) !important;
}

[class*="ListLinksDropdownComponent"][class*="nestedTab"]:hover *,
[class*="ListLinksDropdownComponent"][class*="nestedTab"]:focus-visible *,
[class*="NavbarCategoriesComponent"][class*="dropdownTab"]:hover *,
[class*="NavbarCategoriesComponent"][class*="dropdownTab"]:focus-visible * {
  color: var(--brand-white) !important;
}

[class*="NavbarCategoriesComponent"][class*="dropdownSidebar"] {
  background: linear-gradient(180deg, rgba(17, 19, 24, 0.98), rgba(9, 10, 14, 0.98)) !important;
  border-right: 1px solid var(--border) !important;
}

[class*="NavbarCategoriesComponent"][class*="rightArrowImg"] {
  opacity: 0.88 !important;
  filter: brightness(0) invert(1) !important;
}

.vw-mobile-menu {
  background: rgba(7, 8, 12, 0.98) !important;
  border-left: 1px solid var(--border);
  box-shadow: -28px 0 60px rgba(0, 0, 0, 0.36);
}

.vw-mobile-menu-section {
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.vw-mobile-menu-item {
  color: var(--brand-white) !important;
}

.vw-mobile-guest {
  background: linear-gradient(180deg, rgba(255, 29, 18, 0.16), rgba(255, 29, 18, 0.05)) !important;
  border: 1px solid rgba(255, 29, 18, 0.18);
  border-radius: var(--radius-lg);
  padding: 22px !important;
}

/* =========================================================
   SHARED BUTTONS + FORMS
   ========================================================= */

.vw-button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0 !important;
  border-radius: var(--radius-pill) !important;
  background: linear-gradient(180deg, #ff2d20 0%, #d1170f 100%) !important;
  color: var(--brand-white) !important;
  font-weight: 700 !important;
  box-shadow: 0 18px 30px rgba(255, 29, 18, 0.24);
}

.vw-button-primary:hover {
  background: linear-gradient(180deg, #ff4135 0%, #dd1e15 100%) !important;
  box-shadow: 0 24px 34px rgba(255, 29, 18, 0.3);
  transform: translateY(-1px);
}

.vw-button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: var(--radius-pill) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  background: transparent !important;
  color: var(--brand-white) !important;
  font-weight: 600 !important;
}

.vw-button-outline:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  transform: translateY(-1px);
}

.vw-form-control:not(.vw-header-search-input) {
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  color: var(--brand-white) !important;
  min-height: 48px;
  padding: 0 16px !important;
}

.vw-form-control:not(.vw-header-search-input)::placeholder {
  color: var(--text-muted) !important;
}

button:disabled,
.button:disabled {
  opacity: 0.58 !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

/* =========================================================
   CATALOG LAYOUT
   ========================================================= */

.vw-catalog-page {
  background: transparent !important;
  color: var(--text-primary) !important;
}

.vw-page-container,
.vw-catalog-shell,
.vw-catalog-products,
.vw-product-page,
.vw-product-main,
.vw-cart-page,
.vw-cart-shell,
.vw-find-main,
.vw-find-shell,
.vw-find-content,
.vw-find-list-panel,
.vw-store-list {
  background: transparent !important;
}

[class*="Container-module__"][class*="containerPaddingY"] {
  padding-top: 34px !important;
  padding-bottom: 68px !important;
}

.vw-catalog-shell {
  gap: 28px !important;
}

.vw-catalog-products {
  padding: 24px !important;
  background: linear-gradient(180deg, rgba(18, 20, 26, 0.72), rgba(9, 10, 14, 0.84)) !important;
  border: 1px solid var(--border) !important;
  border-radius: 28px !important;
  box-shadow: var(--shadow-lg);
}

.vw-catalog-mobile-title-line {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin: 0 0 20px !important;
  padding: 14px 18px !important;
  background: linear-gradient(180deg, rgba(18, 20, 26, 0.98), rgba(9, 10, 14, 0.98)) !important;
  border: 1px solid var(--border) !important;
  border-radius: 20px !important;
  box-shadow: var(--shadow-sm);
}

.vw-catalog-title {
  flex: 1 1 auto;
  margin: 0 !important;
  color: var(--brand-white) !important;
  font-family: var(--font-heading) !important;
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em;
  line-height: 1.2 !important;
}

.vw-catalog-mobile-back-root {
  order: -1;
  flex: 0 0 auto;
  position: static !important;
}

.vw-catalog-mobile-back {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px;
  height: 44px;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.vw-catalog-mobile-back img,
.vw-catalog-mobile-back svg {
  filter: brightness(0) invert(1) !important;
}

.vw-sidebar {
  position: sticky;
  top: 142px;
  align-self: flex-start;
  z-index: 1;
}

.vw-category-menu,
.vw-filter-panel {
  background: linear-gradient(180deg, rgba(17, 19, 24, 0.98), rgba(9, 10, 14, 0.98)) !important;
  border: 1px solid var(--border) !important;
  border-radius: 22px !important;
  box-shadow: var(--shadow-md);
}

.vw-category-menu {
  display: none !important;
  padding: 18px 18px 12px !important;
}

.vw-filter-panel {
  padding: 16px !important;
  margin-top: 16px;
}

.vw-category-menu-title,
.vw-filter-title {
  color: var(--brand-white) !important;
  font-family: var(--font-heading) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
}

.vw-category-item {
  padding: 10px 12px !important;
  border-radius: 14px;
  transition:
    background-color var(--transition-fast),
    transform var(--transition-fast);
}

.vw-category-item:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  transform: translateX(3px);
}

.vw-category-item-name {
  color: var(--text-secondary) !important;
  font-size: 14px !important;
  line-height: 1.35;
}

.vw-category-item:has(.vw-category-item-active),
.vw-category-item.vw-category-item--active {
  background: rgba(255, 29, 18, 0.12) !important;
  border: 1px solid rgba(255, 29, 18, 0.16);
}

.vw-category-item-active {
  color: var(--brand-white) !important;
  font-weight: 700 !important;
}

.vw-filter-search {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  color: var(--brand-white) !important;
}

.vw-filter-search::placeholder {
  color: var(--text-muted) !important;
}

.vw-on-sale-filter {
  border-radius: 12px;
}

.vw-category-strip-list {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(102px, 1fr));
  gap: 14px !important;
  margin: 0 0 28px !important;
  padding: 0 !important;
  list-style: none !important;
}

li.vw-category-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  min-height: 118px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(18, 20, 26, 0.98), rgba(9, 10, 14, 0.98));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

li.vw-category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 29, 18, 0.26);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 29, 18, 0.08);
}

.vw-category-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 10px;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #eef1f5 100%);
}

.vw-category-image {
  width: auto;
  max-width: 100%;
  max-height: 38px;
  object-fit: contain;
  transition: transform var(--transition-slow);
}

li.vw-category-card:hover .vw-category-image {
  transform: scale(1.04);
}

.vw-category-title {
  margin: 0 !important;
  color: var(--brand-white) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.3;
  text-align: center;
}

/* =========================================================
   CATEGORIES LANDING PAGE
   ========================================================= */

.vw-categories-page {
  background: transparent !important;
  color: var(--text-primary) !important;
}

.vw-categories-grid {
  background: transparent !important;
}

.vw-categories-card-media {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(180deg, #1a1d25 0%, #0d1016 100%) !important;
  box-shadow: var(--shadow-sm);
}

.vw-categories-card-media > a {
  display: block;
  width: 100%;
  height: 100%;
}

.vw-categories-card-image {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform var(--transition-slow);
}

.vw-categories-card:hover .vw-categories-card-image {
  transform: scale(1.03);
}

.vw-categories-card-title {
  color: var(--brand-white) !important;
}

.vw-product-list-title {
  margin: 4px 0 16px !important;
  color: var(--brand-white) !important;
  font-size: clamp(1.85rem, 2vw, 2.3rem) !important;
  font-weight: 700 !important;
}

.vw-catalog-products > * {
  background: transparent !important;
}

.vw-results-toolbar {
  margin-bottom: 20px !important;
  align-items: center;
}

.vw-results-count {
  color: var(--text-secondary) !important;
  font-size: 14px !important;
}

.vw-sort-dropdown label,
.vw-sort-dropdown-value {
  color: var(--brand-white) !important;
}

.vw-sort-dropdown-border {
  min-height: 52px;
  background: linear-gradient(180deg, rgba(18, 20, 26, 0.98), rgba(9, 10, 14, 0.98)) !important;
  border: 1px solid var(--border) !important;
  border-radius: 16px !important;
  box-shadow: var(--shadow-sm);
}

[class*="Dropdown-module__"][class*="dropdownContent"] {
  background: rgba(12, 14, 18, 0.98) !important;
  border: 1px solid var(--border) !important;
  border-radius: 18px !important;
  box-shadow: var(--shadow-lg) !important;
  overflow: hidden !important;
  z-index: 4003 !important;
}

[class*="Dropdown-module__"][class*="dropdownList"] {
  background: transparent !important;
  padding: 8px 0 !important;
}

[class*="Dropdown-module__"][class*="dropdownItem"] {
  background: transparent !important;
  color: var(--text-secondary) !important;
  font-weight: 600 !important;
}

[class*="Dropdown-module__"][class*="dropdownItem"]:hover,
[class*="Dropdown-module__"][class*="dropdownItem"]:focus-visible {
  background: rgba(255, 255, 255, 0.06) !important;
  color: var(--brand-white) !important;
}

[class*="Dropdown-module__"][class*="dropdownItemActive"],
[class*="Dropdown-module__"][class*="dropdownItem"].dropdown-selected {
  background: rgba(255, 29, 18, 0.18) !important;
  color: var(--brand-white) !important;
}

.vw-products-grid {
  gap: 22px !important;
}

/* =========================================================
   PRODUCT CARDS
   ========================================================= */

[test-info^="product-id-"].vw-product-card {
  position: relative;
  display: flex !important;
  flex-direction: column;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(18, 20, 26, 0.98), rgba(9, 10, 14, 0.98)) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-lg) !important;
  overflow: hidden !important;
  box-shadow: var(--shadow-md);
  transform: translateZ(0);
  transition:
    transform var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

[test-info^="product-id-"].vw-product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 29, 18, 0.72), transparent);
  opacity: 0.8;
  pointer-events: none;
}

[test-info^="product-id-"].vw-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 29, 18, 0.28) !important;
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.44),
    0 0 0 1px rgba(255, 29, 18, 0.08);
}

.vw-product-top {
  position: relative;
  padding: 18px 18px 0;
  background: transparent !important;
}

.vw-product-image-link {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 236px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(180deg, #1a1d25 0%, #0d1016 100%) !important;
}

[test-info^="product-id-"] .vw-product-image-link,
[test-info^="product-id-"].vw-product-card:hover .vw-product-image-link {
  transform: none !important;
}

.vw-product-image {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  width: auto !important;
  max-width: 100% !important;
  max-height: 210px !important;
  object-fit: contain !important;
  transform: translate(-50%, -50%) !important;
  transform-origin: center center;
  transition:
    transform var(--transition-slow),
    filter var(--transition-base);
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.24));
}

[test-info^="product-id-"].vw-product-card:hover .vw-product-image {
  transform: translate(-50%, -50%) scale(1.04) !important;
}

.vw-product-stock {
  position: absolute !important;
  top: 30px !important;
  right: 30px !important;
  z-index: 2;
  padding: 6px 10px !important;
  border-radius: var(--radius-pill);
  font-size: 10px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

[class*="productListItemStockIndicatorGreen"].vw-product-stock,
[class*="productListItemStockIndicatorGreen"].vw-product-stock--available,
.vw-product-stock--available {
  background: none !important;
  background-color: #1db954 !important;
  background-image: none !important;
  border: 1px solid rgba(0, 0, 0, 0.18) !important;
  box-shadow: 0 10px 18px rgba(29, 185, 84, 0.26) !important;
  color: #ffffff !important;
}

.vw-product-bottom {
  display: flex !important;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 14px;
  padding: 18px !important;
  background: linear-gradient(180deg, rgba(18, 20, 26, 0.98), rgba(9, 10, 14, 0.98)) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.vw-product-name {
  display: block !important;
  min-height: 3.2em;
  color: var(--brand-white) !important;
  font-family: var(--font-heading) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 1.32 !important;
  letter-spacing: -0.02em;
  text-decoration: none !important;
}

.vw-product-name:hover {
  color: #ffd1cd !important;
}

[test-info^="product-id-"].vw-product-card .vw-product-name,
[test-info^="product-id-"].vw-product-card a[class*="productListItemName"] {
  color: var(--brand-white) !important;
}

.vw-product-brand {
  display: block;
  margin-bottom: 6px;
  color: #ff7268 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

[test-info^="product-id-"].vw-product-card .vw-product-brand,
[test-info^="product-id-"].vw-product-card [class*="productListItemBrand"] {
  color: #ff7268 !important;
}

.vw-product-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.vw-product-price {
  margin: 0 !important;
  color: var(--brand-white) !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
}

[test-info^="product-id-"].vw-product-card .vw-product-price,
[test-info^="product-id-"].vw-product-card [class*="Price"][class*="price"] {
  color: var(--brand-white) !important;
}

.vw-product-price-prefix {
  color: var(--text-muted) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vw-product-cart-action {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ff2d20 0%, #d1170f 100%) !important;
  color: var(--brand-white) !important;
  line-height: 0;
  overflow: hidden;
  box-shadow: 0 16px 28px rgba(255, 29, 18, 0.24);
}

.vw-product-cart-action:hover {
  background: linear-gradient(180deg, #ff4135 0%, #dd1e15 100%) !important;
  box-shadow: 0 22px 34px rgba(255, 29, 18, 0.3);
  transform: translateY(-2px);
}

.vw-product-cart-action > svg,
.vw-product-cart-action [class*="productListItemCartIcon"],
.vw-product-cart-icon {
  display: block !important;
  width: 22px !important;
  height: 22px !important;
  min-width: 22px;
  min-height: 22px;
  margin: 0 !important;
  color: var(--brand-white) !important;
  fill: currentColor !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

[test-info^="product-id-"].vw-product-card--placeholder .vw-product-image-link {
  background:
    linear-gradient(135deg, rgba(24, 26, 33, 0.98), rgba(11, 13, 17, 0.98)),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.02),
      rgba(255, 255, 255, 0.02) 12px,
      transparent 12px,
      transparent 24px
    ) !important;
}

/* =========================================================
   PRODUCT PAGE
   ========================================================= */

.vw-product-page {
  padding-top: 28px;
  padding-bottom: 68px;
}

.vw-product-main {
  background: transparent !important;
}

.vw-breadcrumbs {
  margin-bottom: 28px !important;
}

.vw-breadcrumbs-list {
  gap: 10px !important;
}

.vw-breadcrumb-item,
.vw-breadcrumbs a {
  color: var(--text-muted) !important;
  font-size: 13px !important;
}

.vw-breadcrumbs [aria-current="page"] {
  color: var(--brand-white) !important;
}

.vw-product-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 32px !important;
  align-items: start;
}

.vw-product-media-column,
.vw-product-side-column {
  min-width: 0;
}

.vw-product-side-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vw-product-media-heading {
  display: none !important;
}

.vw-product-gallery,
.vw-product-info-panel,
.vw-product-actions-panel {
  background: linear-gradient(180deg, rgba(18, 20, 26, 0.98), rgba(9, 10, 14, 0.98)) !important;
  border: 1px solid var(--border) !important;
  border-radius: 28px !important;
  box-shadow: var(--shadow-lg);
}

.vw-product-gallery {
  display: block !important;
  min-width: 0;
  padding: 20px;
}

.vw-product-gallery-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  min-width: 0;
  min-height: 520px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.16), transparent 42%),
    linear-gradient(180deg, #1a1d25 0%, #0d1016 100%) !important;
}

.vw-product-gallery-swiper,
.vw-product-gallery .swiper,
.vw-product-gallery .swiper-wrapper,
.vw-product-gallery .swiper-slide {
  width: 100% !important;
}

.vw-product-gallery .swiper-slide {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

img.vw-product-gallery-image {
  display: block !important;
  position: static !important;
  inset: auto !important;
  width: auto !important;
  height: auto !important;
  max-width: min(100%, 460px) !important;
  max-height: 440px !important;
  margin: 0 auto !important;
  object-fit: contain !important;
  transform: none !important;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.28));
}

.vw-product-info-panel,
.vw-product-actions-panel {
  padding: 28px !important;
}

.vw-product-info-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.vw-product-info-row {
  display: flex !important;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  margin-bottom: 16px !important;
}

.vw-product-info-panel .vw-product-info-row:first-child {
  display: block !important;
  margin-bottom: 0 !important;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vw-product-page-title {
  margin: 0 !important;
  color: var(--brand-white) !important;
  font-size: clamp(2rem, 3vw, 3rem) !important;
  font-weight: 700 !important;
  line-height: 1.08 !important;
}

.vw-product-page-brand,
.vw-product-page-brand a {
  color: #ff7268 !important;
  font-weight: 600;
}

.vw-product-info-panel .vw-product-page-brand,
.vw-product-info-panel .vw-product-page-brand a {
  display: block !important;
  margin-top: 10px !important;
  font-size: 1.05rem !important;
}

.vw-product-price-summary {
  margin-top: 18px !important;
  padding: 18px 20px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.03) !important;
}

.vw-product-price-label {
  margin: 0 0 8px !important;
  color: #ff8f87 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vw-product-price-values {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

.vw-product-price-current {
  color: var(--brand-white) !important;
  font-size: clamp(2rem, 3vw, 2.5rem) !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

.vw-product-price-original {
  color: var(--text-muted) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  text-decoration: line-through !important;
}

.vw-product-price-note {
  margin: 10px 0 0 !important;
  color: var(--text-secondary) !important;
  font-size: 0.9rem !important;
}

.vw-product-info-panel .vw-product-info-row:nth-child(2) {
  margin-bottom: 0 !important;
  color: #aeb5c2 !important;
}

.vw-product-info-panel p,
.vw-product-info-panel h4,
.vw-product-info-panel span,
.vw-product-info-panel div,
.vw-product-actions-panel p,
.vw-product-actions-panel h4,
.vw-product-actions-panel span,
.vw-product-actions-panel div {
  color: var(--text-secondary);
}

.vw-product-info-panel a,
.vw-product-actions-panel a {
  color: var(--brand-white);
}

.vw-product-availability-card {
  margin-top: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.vw-product-availability-card h4 {
  margin: 0 0 8px !important;
  color: var(--brand-white) !important;
  font-size: 1rem !important;
}

.vw-product-zip-note,
.vw-product-zip-note span {
  color: var(--text-secondary) !important;
}

.vw-product-zip-note span {
  color: #ff8f87 !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.vw-product-availability-card [class*="warningWrapper"] {
  margin-bottom: 14px !important;
  padding: 16px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(255, 202, 92, 0.24) !important;
  background: rgba(255, 202, 92, 0.08) !important;
}

.vw-product-availability-card [class*="warningWrapper"] span {
  color: #ffe4aa !important;
}

a.vw-nearby-location-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  align-items: center !important;
  gap: 14px !important;
  padding: 14px 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  text-decoration: none !important;
}

a.vw-nearby-location-row p {
  margin: 0 !important;
}

a.vw-nearby-location-row p[class*="StoreName"] {
  color: var(--brand-white) !important;
  font-weight: 700 !important;
}

a.vw-nearby-location-row p[class*="Distance"],
a.vw-nearby-location-row p[class*="Stock"] {
  color: var(--text-secondary) !important;
}

a.vw-nearby-location-row .vw-button-primary,
a.vw-nearby-location-row button[class*="nearbyLocationsProductButton"] {
  width: auto !important;
  min-width: 118px;
  padding: 0 20px !important;
}

.vw-product-order-shell {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.vw-product-order-availability {
  display: flex !important;
  align-items: flex-end !important;
  gap: 14px !important;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vw-product-order-availability p,
.vw-product-order-availability h4 {
  margin: 0 !important;
}

.vw-product-order-availability p {
  color: var(--text-secondary) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vw-product-order-availability h4 {
  color: var(--brand-white) !important;
  font-size: 1.5rem !important;
  line-height: 1;
}

.vw-modifier-head {
  padding: 16px 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

.vw-modifier-head *,
.vw-modifier-head h4,
.vw-modifier-head span {
  color: #f5f6f8 !important;
}

.vw-modifier-body {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px !important;
  padding-top: 18px !important;
}

.vw-modifier-body button {
  width: 100% !important;
  min-height: 58px !important;
  padding: 12px 16px !important;
  white-space: normal !important;
  line-height: 1.25 !important;
  text-align: center !important;
}

.vw-modifier-body button.button-grayed {
  opacity: 0.46 !important;
}

.vw-quantity-shell {
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  padding: 4px !important;
}

.vw-quantity-shell input {
  border: 0 !important;
  background: transparent !important;
  text-align: center !important;
  min-height: 48px !important;
  box-shadow: none !important;
}

.vw-quantity-shell button {
  color: var(--brand-white) !important;
}

.vw-product-action-buttons {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px !important;
}

.vw-product-action-buttons > * {
  width: 100% !important;
}

#product-page .vw-form-control {
  width: 100%;
}

#product-page label {
  color: var(--text-secondary) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#product-page .vw-button-primary,
#product-page button.button-primary,
#product-page button.button-secondary {
  width: 100%;
}

.vw-return-button {
  margin: 0 0 24px !important;
}

/* =========================================================
   CART + CART POPUP
   ========================================================= */

.vw-cart-page {
  padding-top: 28px;
  padding-bottom: 68px;
}

.vw-cart-shell {
  display: flex !important;
  flex-direction: column;
  gap: 32px !important;
}

.vw-cart-wrapper {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px !important;
  align-items: start;
}

.vw-cart-main,
.vw-cart-total {
  background: linear-gradient(180deg, rgba(18, 20, 26, 0.98), rgba(9, 10, 14, 0.98)) !important;
  border: 1px solid var(--border) !important;
  border-radius: 28px !important;
  box-shadow: var(--shadow-md);
}

.vw-cart-main {
  overflow: hidden;
}

.vw-cart-main-header {
  padding: 28px 32px 22px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.vw-cart-main-title {
  margin: 0 !important;
  color: var(--brand-white) !important;
  font-size: clamp(1.75rem, 2vw, 2.2rem) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
}

.vw-cart-items-list {
  display: flex !important;
  flex-direction: column;
}

.vw-cart-item {
  display: grid !important;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 26px !important;
  align-items: center;
  padding: 24px 32px !important;
}

.vw-cart-item + .vw-cart-item {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.vw-cart-item-image-wrap {
  position: relative !important;
  width: 140px;
  height: 140px;
  overflow: hidden;
  border-radius: 22px !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.16), transparent 42%),
    linear-gradient(180deg, #1a1d25 0%, #0d1016 100%) !important;
  box-shadow: var(--shadow-sm);
}

img.vw-cart-item-image {
  position: absolute !important;
  inset: 12px !important;
  width: calc(100% - 24px) !important;
  height: calc(100% - 24px) !important;
  object-fit: contain !important;
  color: transparent !important;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.26));
}

.vw-cart-item-body {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 280px);
  gap: 24px !important;
  align-items: center;
  min-width: 0;
  width: 100% !important;
}

.vw-cart-item-info {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  gap: 12px !important;
  min-width: 0;
  padding-right: 4px !important;
}

.vw-cart-item-title {
  color: var(--brand-white) !important;
  text-decoration: none !important;
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
}

.vw-cart-item-title:hover {
  color: #ffb4ae !important;
}

.vw-cart-item-details {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
}

.vw-cart-item-detail {
  margin: 0 !important;
  color: var(--text-secondary) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.45 !important;
}

.vw-cart-item-price {
  margin: 4px 0 0 !important;
  color: #ff7268 !important;
  font-size: 1.75rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

.vw-cart-item-actions {
  display: flex !important;
  flex-direction: column;
  gap: 14px !important;
  align-items: stretch !important;
  align-self: center;
  width: auto !important;
  padding: 0 !important;
}

.vw-cart-item-quantity {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 8px !important;
  align-items: end !important;
  width: 100%;
}

.vw-cart-input-container {
  display: flex !important;
  flex-direction: column;
  gap: 8px !important;
  width: 100% !important;
}

.vw-cart-input-label {
  position: static !important;
  display: block !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--text-muted) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.vw-cart-input-border {
  display: flex !important;
  align-items: center !important;
  min-height: 56px;
  padding: 0 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  box-shadow: none !important;
}

.vw-cart-input {
  width: 100% !important;
  min-height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--brand-white) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  box-shadow: none !important;
  appearance: textfield;
}

.vw-cart-input::-webkit-outer-spin-button,
.vw-cart-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.vw-cart-input-buttons {
  display: flex !important;
  flex-direction: column;
  gap: 8px !important;
  width: 42px;
}

.vw-cart-input-buttons button {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 24px;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

.vw-cart-input-buttons button:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
}

.vw-cart-input-buttons img {
  filter: brightness(0) invert(1) !important;
}

.vw-cart-item-buttons {
  display: flex !important;
  flex-direction: column;
  gap: 8px !important;
}

.vw-cart-item-available {
  color: var(--text-muted) !important;
  font-size: 13px !important;
}

.vw-cart-item-available span:last-child {
  color: #8ff3a3 !important;
  font-weight: 700 !important;
}

.vw-cart-button {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: var(--radius-pill) !important;
  background: transparent !important;
  color: var(--brand-white) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}

.vw-cart-button:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  transform: translateY(-1px);
}

.vw-cart-button-danger {
  color: #ffb4ae !important;
  border-color: rgba(255, 114, 104, 0.22) !important;
  background: rgba(255, 29, 18, 0.08) !important;
}

.vw-cart-button-danger:hover {
  background: rgba(255, 29, 18, 0.14) !important;
  border-color: rgba(255, 114, 104, 0.32) !important;
}

.vw-cart-total {
  position: sticky;
  top: 146px;
  display: flex !important;
  flex-direction: column;
  gap: 20px !important;
  padding: 24px !important;
}

.vw-cart-total-info {
  display: flex !important;
  flex-direction: column;
  gap: 18px !important;
}

.vw-cart-total-row {
  display: flex !important;
  align-items: center;
  justify-content: space-between !important;
  gap: 16px !important;
  padding-bottom: 18px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.vw-cart-total-name {
  margin: 0 !important;
  color: var(--brand-white) !important;
  font-size: 1.6rem !important;
  font-weight: 700 !important;
}

.vw-cart-total-value {
  color: var(--brand-white) !important;
  font-size: 1.9rem !important;
  font-weight: 700 !important;
}

.vw-cart-total .vw-button-primary,
.vw-cart-total .vw-button-outline {
  width: 100% !important;
}

.vw-cart-product-tile {
  display: flex !important;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
  padding: 16px !important;
  border: 1px solid var(--border) !important;
  border-radius: 22px !important;
  background: linear-gradient(180deg, rgba(18, 20, 26, 0.98), rgba(9, 10, 14, 0.98)) !important;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    transform var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.vw-cart-product-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 29, 18, 0.24) !important;
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 29, 18, 0.08);
}

.vw-cart-product-tile-image-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 18px !important;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.16), transparent 42%),
    linear-gradient(180deg, #1a1d25 0%, #0d1016 100%) !important;
}

.vw-cart-product-tile-image-link {
  display: block !important;
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

img.vw-cart-product-tile-image {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  color: transparent !important;
  transition: transform var(--transition-slow);
}

.vw-cart-product-tile:hover .vw-cart-product-tile-image {
  transform: scale(1.03);
}

.vw-cart-product-tile-content {
  display: flex !important;
  flex-direction: column;
  gap: 14px !important;
  flex: 1 1 auto;
}

.vw-cart-product-tile-top {
  display: flex !important;
  flex-direction: column;
  gap: 8px !important;
}

.vw-cart-product-tile-name {
  color: var(--brand-white) !important;
  text-decoration: none !important;
  font-size: 1.02rem !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
}

.vw-cart-product-tile-name:hover {
  color: #ffb4ae !important;
}

.vw-cart-product-tile-brand {
  display: block !important;
  margin-bottom: 8px !important;
  color: #ff7268 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.vw-cart-product-tile-price {
  color: var(--brand-white) !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
}

.vw-cart-product-tile .vw-button-outline {
  width: 100% !important;
  min-height: 44px;
}

.vw-empty-cart {
  max-width: 540px;
  margin: 0 auto;
  padding: 42px 34px !important;
  text-align: center;
  background: linear-gradient(180deg, rgba(18, 20, 26, 0.98), rgba(9, 10, 14, 0.98)) !important;
  border: 1px solid var(--border) !important;
  border-radius: 28px !important;
  box-shadow: var(--shadow-lg);
}

.vw-empty-cart-title {
  margin: 0 0 18px !important;
  color: var(--brand-white) !important;
  font-size: clamp(1.6rem, 2vw, 2.2rem) !important;
}

.vw-empty-cart-button {
  min-width: 220px;
}

.vw-featured-products {
  margin-top: 48px !important;
}

.vw-cart-page #featured-products-block,
.vw-cart-page [class*="featuredProducts"],
.vw-cart-page [class*="recentlyViewedProducts"],
.vw-cart-page [class*="recently-viewed-products"] {
  padding: 28px !important;
  background: linear-gradient(180deg, rgba(18, 20, 26, 0.96), rgba(9, 10, 14, 0.98)) !important;
  border: 1px solid var(--border) !important;
  border-radius: 28px !important;
  box-shadow: var(--shadow-md);
}

.vw-featured-products-block {
  padding: 28px !important;
  background: linear-gradient(180deg, rgba(18, 20, 26, 0.96), rgba(9, 10, 14, 0.98)) !important;
  border: 1px solid var(--border) !important;
  border-radius: 28px !important;
  box-shadow: var(--shadow-md);
}

.vw-featured-products-title {
  margin-bottom: 20px !important;
  color: var(--brand-white) !important;
  font-size: clamp(1.8rem, 2vw, 2.25rem) !important;
}

.vw-cart-page .recently-viewed-products-title,
.vw-cart-page [class*="RecentlyViewedProducts"][class*="title"] {
  color: var(--brand-white) !important;
}

.vw-cart-popup-blocker {
  background: rgba(0, 0, 0, 0.72) !important;
}

.vw-cart-popup {
  background: linear-gradient(180deg, rgba(18, 20, 26, 0.99), rgba(9, 10, 14, 0.99)) !important;
  border: 1px solid var(--border) !important;
  border-radius: 24px !important;
  box-shadow: var(--shadow-lg);
  color: var(--brand-white) !important;
}

.vw-cart-popup [class*="Dropdown-module__"][class*="dropdown"] {
  min-width: 88px;
}

.vw-cart-popup [class*="Dropdown-module__"][class*="dropdownLabel"] {
  color: var(--text-muted) !important;
  background: transparent !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vw-cart-popup [class*="Dropdown-module__"][class*="dropdownBorder"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  min-height: 56px;
  padding: 0 14px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 14px !important;
  box-shadow: none !important;
}

.vw-cart-popup [class*="Dropdown-module__"][class*="selectedOption"] {
  color: var(--brand-white) !important;
  font-weight: 700 !important;
}

.vw-cart-popup [class*="Dropdown-module__"][class*="dropdownBorder"] img,
.vw-cart-popup [class*="Dropdown-module__"][class*="dropdownBorder"] svg {
  filter: brightness(0) invert(1) !important;
}

.vw-cart-popup h2,
.vw-cart-popup h3,
.vw-cart-popup a,
.vw-cart-popup p,
.vw-cart-popup div,
.vw-cart-popup span {
  color: inherit !important;
}

/* =========================================================
   CHECKOUT
   ========================================================= */

.vw-checkout-page,
.vw-checkout-wrapper,
.vw-checkout-sidebar,
.vw-checkout-sidebar-inner,
.vw-checkout-summary-column {
  background: transparent !important;
}

.vw-checkout-wrapper {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px !important;
  align-items: start;
}

.vw-checkout-sidebar-inner {
  display: flex !important;
  flex-direction: column;
  gap: 18px !important;
}

.vw-checkout-section {
  padding: 24px !important;
  background: linear-gradient(180deg, rgba(18, 20, 26, 0.98), rgba(9, 10, 14, 0.98)) !important;
  border: 1px solid var(--border) !important;
  border-radius: 28px !important;
  box-shadow: var(--shadow-md);
}

.vw-checkout-section--collapsed {
  min-height: 80px;
}

.vw-checkout-section-header {
  margin: 0 0 16px !important;
}

.vw-checkout-section--collapsed .vw-checkout-section-header {
  margin-bottom: 0 !important;
}

.vw-checkout-section-title {
  margin: 0 !important;
  color: var(--brand-white) !important;
  font-size: clamp(1.35rem, 2vw, 1.75rem) !important;
  font-weight: 700 !important;
}

.vw-checkout-auth-form {
  display: flex !important;
  flex-direction: column;
  gap: 16px !important;
}

.vw-checkout-field {
  margin: 0 !important;
}

.vw-checkout-label {
  color: #ff8f87 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vw-checkout-field-container {
  display: flex !important;
  align-items: center !important;
  min-height: 56px;
  padding: 0 16px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 18px !important;
  box-shadow: none !important;
}

.vw-checkout-field-container:focus-within {
  border-color: rgba(255, 29, 18, 0.5) !important;
  box-shadow: 0 0 0 3px rgba(255, 29, 18, 0.16) !important;
}

.vw-checkout-input {
  width: 100% !important;
  min-height: 54px;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  color: var(--brand-white) !important;
  box-shadow: none !important;
}

.vw-checkout-input::placeholder {
  color: var(--text-muted) !important;
}

.vw-checkout-inline-link {
  color: #ff8f87 !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

.vw-checkout-inline-link:hover {
  color: #ffb4ae !important;
}

.vw-checkout-section [class*="text-secondary"],
.vw-checkout-section [class*="secondary"] {
  color: var(--text-secondary) !important;
}

.vw-checkout-section strong,
.vw-checkout-section b {
  color: var(--brand-white) !important;
}

.vw-checkout-payment-section,
.vw-checkout-payment-section.vw-checkout-section {
  overflow: visible !important;
}

.vw-checkout-payment-section iframe,
.vw-checkout-payment-section [class*="Iframe"],
.vw-checkout-payment-section [class*="iframe"],
.vw-checkout-payment-section [class*="Card"],
.vw-checkout-payment-section [class*="card"] {
  pointer-events: auto !important;
}

.vw-checkout-payment-section [class*="Field-module__"][class*="container"],
.vw-checkout-payment-section [class*="Input-module__"][class*="inputBorder"],
.vw-checkout-payment-section [class*="Dropdown-module__"][class*="dropdownBorder"] {
  min-height: 56px;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 18px !important;
  box-shadow: none !important;
}

.vw-checkout-payment-section [class*="Field-module__"][class*="container"]:focus-within,
.vw-checkout-payment-section [class*="Input-module__"][class*="inputBorder"]:focus-within,
.vw-checkout-payment-section [class*="Dropdown-module__"][class*="dropdownBorder"]:focus-within {
  border-color: rgba(255, 29, 18, 0.5) !important;
  box-shadow: 0 0 0 3px rgba(255, 29, 18, 0.16) !important;
}

.vw-checkout-code-hidden {
  display: none !important;
}

.vw-checkout-code-box {
  width: 48px !important;
  height: 48px !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  color: var(--brand-white) !important;
  text-align: center;
  font-size: 1rem !important;
  font-weight: 700 !important;
}

.vw-checkout-summary-column {
  position: sticky;
  top: 146px;
}

.vw-checkout-summary-title {
  margin: 0 0 16px !important;
  color: var(--brand-white) !important;
  font-size: clamp(1.6rem, 2vw, 2rem) !important;
  font-weight: 700 !important;
}

.vw-checkout-summary-card {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(18, 20, 26, 0.98), rgba(9, 10, 14, 0.98)) !important;
  border: 1px solid var(--border) !important;
  border-radius: 28px !important;
  box-shadow: var(--shadow-md);
}

.vw-checkout-summary-item {
  display: grid !important;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 18px !important;
  padding: 20px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.vw-checkout-summary-image-wrap {
  position: relative !important;
  width: 104px;
  height: 104px;
  overflow: hidden;
  border-radius: 20px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.09), transparent 55%), linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)) !important;
}

.vw-checkout-summary-image {
  position: absolute !important;
  inset: 10px !important;
  width: calc(100% - 20px) !important;
  height: calc(100% - 20px) !important;
  object-fit: contain !important;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.28));
}

.vw-checkout-summary-info {
  display: flex !important;
  flex-direction: column;
  gap: 8px !important;
  min-width: 0;
}

.vw-checkout-summary-item-title {
  color: var(--brand-white) !important;
  text-decoration: none !important;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

.vw-checkout-summary-item-title:hover {
  color: #ffb4ae !important;
}

.vw-checkout-summary-info-text {
  margin: 0 !important;
  color: var(--text-secondary) !important;
  font-size: 14px !important;
}

.vw-checkout-summary-price-wrap {
  display: flex !important;
  flex-direction: column;
  gap: 6px !important;
}

.vw-checkout-summary-total-price {
  margin: 0 !important;
  color: #ff7268 !important;
  font-size: 1.85rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

.vw-checkout-summary-totals {
  padding: 20px !important;
  background: rgba(255, 255, 255, 0.02) !important;
}

.vw-checkout-summary-totals-list {
  display: flex !important;
  flex-direction: column;
  gap: 8px !important;
}

.vw-checkout-summary-row {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0 !important;
}

.vw-checkout-summary-row h4,
.vw-checkout-summary-row p,
.vw-checkout-summary-row div:first-child,
.vw-checkout-summary-row span:first-child {
  margin: 0 !important;
  color: var(--text-secondary) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
}

.vw-checkout-summary-row span:last-child,
.vw-checkout-summary-row div:last-child {
  color: var(--brand-white) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
}

.vw-checkout-summary-row--total {
  margin-top: 6px !important;
  padding-top: 14px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.vw-checkout-summary-row--total h4,
.vw-checkout-summary-row--total p,
.vw-checkout-summary-row--total div,
.vw-checkout-summary-row--total span {
  color: var(--brand-white) !important;
  font-size: 1.45rem !important;
  font-weight: 700 !important;
}

.vw-checkout-sidebar .vw-button-primary {
  width: 100%;
}

/* =========================================================
   FIND / STORE SELECTOR PAGE
   ========================================================= */

body.vw-find-page {
  background:
    radial-gradient(circle at top center, rgba(255, 29, 18, 0.18), transparent 18%),
    linear-gradient(180deg, #000000 0%, #090a0d 100%) !important;
}

.vw-location-sidebar {
  background: rgba(7, 8, 12, 0.9) !important;
  border-left: 1px solid var(--border);
  box-shadow: -24px 0 54px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.vw-find-title {
  color: var(--brand-white) !important;
  font-size: clamp(2rem, 3vw, 2.6rem) !important;
  font-weight: 700 !important;
}

.vw-find-map {
  overflow: hidden;
  border: 1px solid var(--border) !important;
  border-radius: 28px !important;
  box-shadow: var(--shadow-md);
}

.vw-store-list-card {
  padding: 24px !important;
  background: linear-gradient(180deg, rgba(18, 20, 26, 0.98), rgba(9, 10, 14, 0.98)) !important;
  border: 1px solid var(--border) !important;
  border-radius: 24px !important;
  box-shadow: var(--shadow-md);
}

.vw-store-list-name {
  color: var(--brand-white) !important;
  font-size: 1.35rem !important;
  font-weight: 700 !important;
}

.vw-store-list-address,
.vw-store-list-hours,
.vw-store-list-hours a,
.vw-store-list-delivery,
.vw-store-count {
  color: var(--text-secondary) !important;
}

.vw-store-list-order-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  min-width: 140px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, #ff2d20 0%, #d1170f 100%) !important;
  color: var(--brand-white) !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  box-shadow: 0 16px 28px rgba(255, 29, 18, 0.24);
}

.vw-store-list-order-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 34px rgba(255, 29, 18, 0.3);
}

.vw-location-list {
  gap: 18px !important;
  padding: 20px !important;
}

.vw-location-card {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(18, 20, 26, 0.98), rgba(9, 10, 14, 0.98)) !important;
  border: 1px solid var(--border) !important;
  border-radius: 24px !important;
  box-shadow: var(--shadow-md);
}

.vw-location-info {
  padding: 24px !important;
}

.vw-location-store-name {
  margin: 0 0 14px !important;
  color: var(--brand-white) !important;
  font-size: 1.35rem !important;
  font-weight: 700 !important;
}

.vw-location-grid {
  gap: 24px !important;
}

.vw-location-info h5,
.vw-location-info h6 {
  color: #ff8f87 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vw-location-info a,
.vw-location-info p,
.vw-location-info span,
.vw-location-info li {
  color: var(--text-secondary) !important;
}

.vw-location-actions {
  gap: 12px !important;
  margin-top: 18px !important;
}

.vw-location-action-link {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, #ff2d20 0%, #d1170f 100%);
  color: var(--brand-white) !important;
  text-decoration: none !important;
  box-shadow: 0 16px 26px rgba(255, 29, 18, 0.22);
}

.vw-location-action-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 32px rgba(255, 29, 18, 0.28);
}

.vw-location-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.vw-location-hours {
  margin-top: 12px !important;
  padding-top: 12px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vw-location-hours-item {
  padding: 8px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* =========================================================
   FOOTER
   ========================================================= */

.vw-footer {
  margin-top: 40px;
  background: #000000 !important;
  color: var(--brand-white) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vw-footer-top,
.vw-footer-middle,
.vw-footer-bottom,
#main-footer,
#footer-nav-and-social,
#footer-powered-by {
  background: transparent !important;
}

#main-footer {
  background: linear-gradient(180deg, rgba(11, 12, 16, 0.98), rgba(0, 0, 0, 0.98)) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

#footer-nav-and-social,
#footer-powered-by {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.vw-footer-link,
.vw-footer a,
.vw-footer div,
.vw-footer p,
.vw-footer li,
.vw-footer span {
  color: var(--brand-white) !important;
}

.vw-footer-link:hover,
.vw-footer a:hover {
  color: #ffb4ae !important;
}

.vw-footer-brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none !important;
}

.vw-footer-brand-img {
  width: auto;
  height: auto;
  max-width: 190px;
  max-height: 46px;
  object-fit: contain;
}

#footer-button {
  border-radius: var(--radius-pill) !important;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 1200px) {
  .vw-product-layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  }

  .vw-checkout-wrapper {
    grid-template-columns: 1fr;
  }

  .vw-checkout-summary-column {
    position: static;
  }

  .vw-cart-wrapper {
    grid-template-columns: 1fr;
  }

  .vw-cart-total {
    position: static;
  }
}

@media (max-width: 980px) {
  .vw-sidebar {
    position: static;
  }

  .vw-product-layout {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 24px !important;
  }

  .vw-product-media-column,
  .vw-product-side-column {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
  }

  .vw-product-media-column {
    display: block !important;
    gap: 20px;
  }

  .vw-product-gallery-frame {
    min-height: 420px;
  }

  .vw-category-strip-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .vw-cart-item {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 20px !important;
    padding: 24px !important;
  }

  .vw-cart-item-image-wrap {
    width: 120px;
    height: 120px;
    border-radius: 18px !important;
  }

  .vw-cart-item-body {
    grid-template-columns: 1fr;
    gap: 18px !important;
  }

  .vw-checkout-summary-item {
    grid-template-columns: 96px minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .vw-header-top-line {
    min-height: 74px;
  }

  .vw-header-logo {
    max-width: 146px;
    max-height: 48px;
  }

  .vw-mobile-menu {
    width: min(86vw, 360px) !important;
  }

  .vw-product-list-title {
    font-size: 1.65rem !important;
  }

  .vw-catalog-mobile-title-line {
    margin-bottom: 16px !important;
    padding: 12px 14px !important;
    border-radius: 18px !important;
  }

  .vw-catalog-title {
    font-size: 1.1rem !important;
  }

  .vw-products-grid {
    gap: 16px !important;
  }

  [test-info^="product-id-"].vw-product-card {
    border-radius: 20px !important;
  }

  .vw-product-top {
    padding: 14px 14px 0;
  }

  .vw-product-image-link {
    min-height: 184px;
    padding: 14px;
  }

  .vw-product-image {
    max-height: 168px !important;
  }

  .vw-product-bottom {
    padding: 15px !important;
    gap: 12px;
  }

  .vw-product-name {
    font-size: 16px !important;
  }

  .vw-product-price {
    font-size: 19px !important;
  }

  .vw-category-strip-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vw-product-gallery,
  .vw-product-info-panel,
  .vw-product-actions-panel,
  .vw-checkout-section,
  .vw-checkout-summary-card,
  .vw-cart-main,
  .vw-cart-total,
  .vw-empty-cart,
  .vw-location-card {
    border-radius: 22px !important;
  }

  .vw-checkout-wrapper {
    gap: 20px !important;
  }

  .vw-checkout-section {
    padding: 20px !important;
  }

  .vw-checkout-summary-item {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 14px !important;
    padding: 18px !important;
  }

  .vw-checkout-summary-image-wrap {
    width: 88px;
    height: 88px;
    border-radius: 18px !important;
  }

  .vw-product-gallery-frame {
    min-height: 320px;
    padding: 20px;
  }

  .vw-product-gallery,
  .vw-product-gallery-frame,
  .vw-product-gallery-swiper,
  .vw-product-gallery .swiper,
  .vw-product-gallery .swiper-wrapper,
  .vw-product-gallery .swiper-slide {
    width: 100% !important;
    max-width: 100% !important;
  }

  .vw-product-page-title {
    font-size: 2.35rem !important;
  }

  .vw-modifier-body {
    grid-template-columns: 1fr;
  }

  .vw-product-action-buttons,
  a.vw-nearby-location-row {
    grid-template-columns: 1fr;
  }

  .vw-cart-shell {
    gap: 24px !important;
  }

  .vw-cart-main-header {
    padding: 22px 20px 18px !important;
  }

  .vw-cart-item {
    grid-template-columns: 1fr;
    padding: 22px 20px !important;
  }

  .vw-cart-item-image-wrap {
    width: 100%;
    max-width: 170px;
    height: 170px;
  }

  .vw-cart-item-quantity {
    max-width: 240px;
  }

  .vw-cart-total {
    padding: 20px !important;
  }
}

@media (max-width: 560px) {
  .vw-top-banner {
    font-size: 12px;
  }

  .vw-catalog-mobile-title-line {
    gap: 12px !important;
  }

  .vw-catalog-mobile-back {
    width: 40px;
    height: 40px;
  }

  .vw-checkout-section {
    padding: 18px !important;
  }

  .vw-checkout-section-title {
    font-size: 1.15rem !important;
  }

  .vw-checkout-summary-item {
    grid-template-columns: 1fr;
  }

  .vw-checkout-summary-image-wrap {
    width: 96px;
    height: 96px;
  }

  .vw-checkout-code-box {
    width: 42px !important;
    height: 42px !important;
  }

  .vw-category-strip-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vw-product-row {
    align-items: center;
  }

  .vw-product-cart-action {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .vw-cart-input-buttons {
    width: 38px;
  }

  .vw-cart-input-buttons button {
    width: 38px;
  }

  .vw-location-action-link {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
