﻿/*
  STARA KREPOST DAY/NIGHT TEMPLATE
  Все основные цвета, размеры и радиусы вынесены в переменные.
  Меняешь тему — меняются все страницы.
*/

:root {
  --font-main: "Georgia", "Times New Roman", serif;
  --font-ui: Arial, Helvetica, sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --container: 1180px;

  --bg: #f7f4ee;
  --bg-soft: #fffaf0;
  --surface: #ffffff;
  --surface-2: #f0e5d2;
  --text: #2b2117;
  --muted: #75634c;
  --border: rgba(58, 44, 29, .18);
  --accent: #c79a3b;
  --accent-2: #8b5c1f;
  --hero-overlay: rgba(247, 244, 238, .72);
  --shadow: 0 20px 50px rgba(61, 39, 14, .14);
  --wood: linear-gradient(135deg, #efe1c5, #fff8ea 42%, #d8bc7a);
}

html[data-theme="dark"] {
  --bg: #12100e;
  --bg-soft: #1b1712;
  --surface: #1f1a15;
  --surface-2: #2b231a;
  --text: #f5efe2;
  --muted: #c9b999;
  --border: rgba(214, 166, 74, .28);
  --accent: #d6a64a;
  --accent-2: #a86c2d;
  --hero-overlay: rgba(18, 16, 14, .72);
  --shadow: 0 22px 60px rgba(0,0,0,.45);
  --wood: linear-gradient(135deg, #21160f, #3a2415 45%, #0e0c0a);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(199,154,59,.18), transparent 32%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  transition: background .25s ease, color .25s ease;
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.header {
  position: static;
  background: color-mix(in srgb, var(--bg) 84%, transparent);
  border-bottom: 1px solid var(--border);
}

.header__row {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-main);
  font-weight: 700;
  letter-spacing: .08em;
}

.logo__mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #151515;
  background: radial-gradient(circle, #f8e39b, var(--accent));
  border: 2px solid var(--accent-2);
  box-shadow: 0 0 0 4px rgba(199,154,59,.14);
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.nav a:hover { color: var(--accent); }

.theme-toggle {
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.hero {
  min-height: 620px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, var(--hero-overlay), var(--hero-overlay)),
    var(--wood);
  border-bottom: 1px solid var(--border);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 42px;
  align-items: center;
}

/* Hero carousel (early — must work even if later rules fail to parse) */
.hero-carousel {
  position: relative;
  overflow: hidden;
}

.hero-carousel__shell {
  position: relative;
  padding-bottom: 28px;
}

.hero-carousel__track {
  position: relative;
}

.hero-carousel__slide {
  display: none;
}

.hero-carousel__slide.is-active {
  display: block;
}

.hero-carousel__content {
  min-width: 0;
}

.hero-carousel__instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hero-carousel__instagram:hover {
  color: var(--accent);
}

.hero-card__photo {
  height: 360px;
  border-radius: calc(var(--radius-lg) - 4px);
  overflow: hidden;
  background: var(--surface-2);
}

.hero-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}

.hero-carousel__arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: border-color .15s ease, color .15s ease, transform .15s ease;
}

.hero-carousel__arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-carousel__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: color-mix(in srgb, var(--accent) 28%, var(--border));
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}

.hero-carousel__dot.is-active {
  background: var(--accent);
  transform: scale(1.15);
}

.eyebrow {
  color: var(--accent);
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 13px;
}

h1, h2, h3 {
  font-family: var(--font-main);
  margin: 0;
}

h1 {
  font-size: clamp(46px, 7vw, 92px);
  line-height: .92;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.lead {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
  max-width: 620px;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 15px 22px;
  border: 1px solid var(--border);
  font-weight: 900;
  cursor: pointer;
}

.btn--primary {
  color: #15110c;
  background: linear-gradient(135deg, #f8dc87, var(--accent));
  border-color: var(--accent-2);
}

.btn--ghost {
  background: var(--surface);
  color: var(--text);
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.beer-glass {
  height: 360px;
  border-radius: 36px 36px 70px 70px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.45), transparent 18%),
    linear-gradient(180deg, #ffe59b, #c7831f 50%, #5a290d);
  border: 8px solid color-mix(in srgb, var(--accent) 65%, #fff);
  box-shadow: inset 0 0 40px rgba(255,255,255,.25);
}

.section {
  padding: 74px 0;
}

.section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section h2 {
  font-size: clamp(32px, 4vw, 52px);
}

.grid {
  display: grid;
  gap: 22px;
}

.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow);
}

.category {
  min-height: 150px;
  background:
    linear-gradient(135deg, rgba(199,154,59,.22), transparent),
    var(--surface);
}

.product-card {
  display: grid;
  gap: 14px;
}

.product-card__img {
  height: 180px;
  border-radius: var(--radius-sm);
  background: radial-gradient(circle, rgba(255,255,255,.4), transparent 35%), var(--wood);
  border: 1px solid var(--border);
  display: block;
  overflow: hidden;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card h3 a {
  color: var(--text);
}

.product-card h3 a:hover {
  color: var(--accent);
}

.product-card p {
  color: var(--muted) !important;
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.category h3 {
  color: var(--text);
}

.category p {
  color: var(--muted);
  margin: 8px 0 0;
}

.price {
  font-size: 22px;
  font-weight: 900;
  color: var(--accent);
}

.badge {
  display: inline-flex;
  width: fit-content;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
}

.filter {
  position: sticky;
  top: 16px;
  align-self: start;
}

.filter button {
  width: 100%;
  margin-bottom: 10px;
  justify-content: flex-start;
}

.product-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: start;
}

.product-photo {
  min-height: 520px;
  border-radius: var(--radius-lg);
  background: var(--wood);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0;
}

.spec {
  text-align: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.table th, .table td {
  padding: 18px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.checkout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
}

.form {
  display: grid;
  gap: 14px;
}

.input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  padding: 16px;
  font-size: 16px;
}

.footer {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--muted);
  margin-top: 24px;
}

.sk-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.sk-footer__brand {
  font-family: var(--font-main);
  color: var(--text);
}

.sk-footer__meta {
  margin: 0;
  font-size: 14px;
}

.sk-footer__meta a {
  color: var(--muted);
}

.sk-footer__meta a:hover {
  color: var(--accent);
}

.sk-footer__social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.sk-footer__social a {
  color: var(--accent);
  font-size: 18px;
}

.sk-footer__social a:hover {
  color: var(--accent-2);
}

#search,
.sk-search {
  display: none !important;
}

.breadcrumb,
ul.breadcrumb,
ol.breadcrumb,
.sk-breadcrumb,
nav[aria-label="breadcrumb"],
#product-info > .breadcrumb,
#product-info > ul.breadcrumb,
.breadcrumb-item {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
}

@media (max-width: 900px) {
  .hero__grid,
  .product-page,
  .checkout,
  .catalog-layout {
    grid-template-columns: 1fr;
  }
  .grid--4,
  .grid--3,
  .grid--2 {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; padding: 64px 0; }
  .hero-card__photo { height: 260px; }
  .beer-glass { height: 260px; }
}

/* OpenCart 4 integration */
#container .container {
  width: 100%;
  max-width: 1140px;
}

body,
#container,
main {
  background: var(--bg) !important;
  color: var(--text);
}

#container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative !important;
  margin-bottom: 0 !important;
}

#content,
#column-left,
#column-right {
  padding-bottom: 0 !important;
}

main {
  flex: 1 0 auto;
}

.bpz-header-fixed,
.sk-site-header {
  position: static;
  background: color-mix(in srgb, var(--bg) 92%, transparent) !important;
  border-bottom: 1px solid var(--border);
  box-shadow: none;
  overflow: visible;
}

.sk-logo {
  flex: 0 0 auto;
}

.sk-site-header .header__row {
  min-height: 82px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: nowrap;
}

.sk-header-actions {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  flex-wrap: nowrap;
}

#cart,
.sk-cart {
  flex-shrink: 0;
}

#cart .dropdown,
#cart .dropdown.d-grid {
  display: inline-block !important;
}

.sk-cart .btn,
#cart .btn,
#cart .btn-dark,
#cart .btn-block,
#cart .btn-lg {
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 700;
  padding: 10px 14px !important;
  min-height: 0 !important;
  line-height: 1.2;
  white-space: nowrap;
}

.sk-cart .btn:hover,
#cart .btn:hover {
  color: var(--accent) !important;
  border-color: var(--accent) !important;
}

#menu.sk-header-nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: nowrap;
  min-width: 0;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

#menu.sk-header-nav > a {
  color: var(--muted) !important;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

#menu.sk-header-nav > a:hover {
  color: var(--accent) !important;
}

.form-control,
.form-select {
  background: var(--surface) !important;
  color: var(--text) !important;
  border: 1px solid var(--border) !important;
}

#menu .dropdown-menu,
.sk-menu-dropdown {
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  max-height: 70vh;
  overflow: auto;
  min-width: 260px;
}

#menu .dropdown-header {
  color: var(--accent);
  font-weight: 800;
}

#menu .dropdown-item {
  color: var(--text) !important;
}

#menu .dropdown-item:hover,
#menu .sk-menu-all:hover {
  background: color-mix(in srgb, var(--accent) 14%, transparent) !important;
  color: var(--accent) !important;
}

.btn-primary {
  background: linear-gradient(135deg, #f8dc87, var(--accent)) !important;
  border-color: var(--accent-2) !important;
  color: #15110c !important;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-light,
.btn-dark {
  background: var(--surface) !important;
  color: var(--text) !important;
  border-color: var(--border) !important;
}

footer,
footer.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-soft) !important;
  color: var(--muted) !important;
  position: relative;
  z-index: 1;
  margin-top: 24px;
}

footer h5 {
  display: none;
}

footer .row {
  display: none;
}

footer hr {
  display: none;
}

footer p:not(.sk-footer__meta) {
  display: none;
}

.product-thumb {
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.product-thumb .description h4 a,
.product-thumb .description p {
  color: var(--text) !important;
}

.product-thumb .price,
.product-thumb .price-new {
  color: var(--accent) !important;
}

.product-thumb .button button {
  background: var(--surface-2) !important;
  color: var(--text) !important;
  border-color: var(--border) !important;
}

.product-thumb .button button:first-child {
  background: linear-gradient(135deg, #f8dc87, var(--accent)) !important;
  color: #15110c !important;
}

#content,
#common-home,
#product-category,
#product-info,
#checkout-cart,
#checkout-checkout {
  background: transparent !important;
  color: var(--text);
}

#product-info.sk-product-page {
  padding-top: 24px;
}

#content h1,
#content h2,
#content h3 {
  color: var(--text) !important;
  font-family: var(--font-main);
}

.bpz-about {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.bpz-about p,
.section .card p {
  color: var(--muted);
}

.sk-site-header .theme-toggle {
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--surface) !important;
  color: var(--text) !important;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  box-shadow: var(--shadow);
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
  flex-shrink: 0;
}

.sk-site-header .theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent) !important;
}

@media (max-width: 900px) {
  .sk-site-header .header__row {
    min-height: 72px;
    height: auto;
    padding: 10px 0;
    gap: 12px;
  }

  .sk-logo .logo span:not(.logo__mark) {
    font-size: 12px;
  }

  #menu.sk-header-nav {
    flex: 1 1 auto;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  #menu.sk-header-nav::-webkit-scrollbar {
    display: none;
  }

  #menu.sk-header-nav > a {
    font-size: 13px;
  }

  .sk-cart {
    display: none;
  }
}

@media (max-width: 767px) {
  .logo span:not(.logo__mark) {
    font-size: 12px;
  }
}

/* Catalog page */
.sk-catalog,
#product-category {
  background: transparent !important;
  padding-bottom: 8px;
}

.sk-catalog-tools {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sk-catalog-tools .form-select {
  min-width: 150px;
  border-radius: 999px;
  font-size: 13px;
}

.filter h3 {
  font-family: var(--font-main);
  margin: 0 0 14px;
}

.filter .btn--ghost {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  margin-bottom: 10px;
  text-decoration: none;
}

.filter .btn--ghost.is-active {
  border-color: var(--accent);
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, transparent);
}

.filter__sub {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.filter .btn--ghost-sm {
  font-size: 12px;
  padding: 10px 14px;
}

.sk-catalog-main {
  min-width: 0;
}

.sk-product-grid {
  align-items: stretch;
}

.sk-product-grid .product-thumb {
  height: 100%;
  display: grid;
  gap: 14px;
  margin: 0;
  border: 1px solid var(--border);
  background: var(--surface) !important;
}

.sk-product-grid .product-thumb .image,
.sk-product-grid .product-thumb .content,
.sk-product-grid .product-thumb .description,
.sk-product-grid .product-thumb .button {
  all: unset;
}

.sk-product-grid .product-thumb h3 {
  font-family: var(--font-main);
  font-size: 1.15rem;
  margin: 0;
}

.sk-product-grid .product-thumb h3 a {
  color: var(--text);
}

.sk-product-grid .product-thumb p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.sk-product-grid .product-thumb .price,
.sk-product-grid .product-thumb .price-new {
  color: var(--accent) !important;
  font-size: 22px;
  font-weight: 900;
}

.sk-product-grid .product-thumb .price-old {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  text-decoration: line-through;
}

.sk-product-grid .product-thumb form {
  margin-top: auto;
}

.sk-product-grid .product-thumb .btn--primary {
  width: 100%;
}

.sk-catalog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.sk-results {
  color: var(--muted);
  font-size: 14px;
}

.sk-category-description {
  color: var(--muted);
  margin-bottom: 24px;
}

.pagination .page-link {
  background: var(--surface) !important;
  border-color: var(--border) !important;
  color: var(--text) !important;
}

.pagination .page-item.active .page-link {
  background: linear-gradient(135deg, #f8dc87, var(--accent)) !important;
  border-color: var(--accent-2) !important;
  color: #15110c !important;
}

#column-left,
#column-right {
  display: none !important;
}

/* === GREEN PURGE (legacy BPZ theme + Bootstrap) === */
:root {
  --bs-green: var(--accent);
  --bs-success: var(--accent);
  --bs-success-rgb: 199, 154, 59;
  --bs-form-valid-color: var(--accent);
  --bs-form-valid-border-color: var(--accent);
  --bpz-dark-green: var(--surface);
  --bpz-dark-green-hover: var(--surface-2);
  --bpz-dark-green-light: var(--surface);
  --bpz-dark-green-bg: var(--bg);
}

#top,
header,
.bpz-header-wrapper,
.bpz-header-fixed,
#menu,
footer,
#content,
#column-left,
#column-right,
#common-home,
#product-category,
#checkout-cart,
#checkout-checkout,
.bpz-banner,
.list-group,
.list-group-item,
.card,
.product-thumb,
#output-cart thead th,
#checkout-checkout fieldset,
#checkout-checkout #checkout-shipping-method,
#checkout-checkout #checkout-payment-method,
#checkout-checkout #checkout-confirm,
#checkout-payment .card,
#checkout-payment .card-header {
  background: var(--surface) !important;
  background-color: var(--surface) !important;
  background-image: none !important;
  border-color: var(--border) !important;
  color: var(--text) !important;
}

#top,
header,
.bpz-header-wrapper,
.bpz-header-fixed,
.sk-site-header {
  background: color-mix(in srgb, var(--bg) 92%, transparent) !important;
}

footer,
footer.footer {
  background: var(--bg-soft) !important;
}

main,
#container,
body {
  background: var(--bg) !important;
}

#menu,
#menu.navbar,
#menu.sk-header-nav {
  background: transparent !important;
  border: 0 !important;
}

.btn-success,
.bg-success,
.alert-success {
  background: linear-gradient(135deg, #f8dc87, var(--accent)) !important;
  border-color: var(--accent-2) !important;
  color: #15110c !important;
}

.text-success {
  color: var(--accent) !important;
}

.btn-outline-success {
  border-color: var(--accent) !important;
  color: var(--accent) !important;
}

.btn-outline-success:hover {
  background: color-mix(in srgb, var(--accent) 14%, transparent) !important;
  color: var(--accent) !important;
}

.form-control.is-valid,
.form-select.is-valid,
.was-validated .form-control:valid,
.was-validated .form-select:valid {
  border-color: var(--accent) !important;
}

.valid-feedback,
.valid-tooltip {
  color: var(--accent) !important;
}

.product-thumb .button button,
#product-info .btn-primary,
#checkout-cart .btn-primary,
#checkout-payment .btn-primary {
  background: linear-gradient(135deg, #f8dc87, var(--accent)) !important;
  border-color: var(--accent-2) !important;
  color: #15110c !important;
}

.product-thumb .button button:hover,
#product-info .btn-primary:hover,
#checkout-cart .btn-primary:hover,
#checkout-payment .btn-primary:hover {
  filter: brightness(1.05);
}

.card.product-card p,
.product-card p {
  color: var(--muted) !important;
}

.card.product-card h3 a {
  color: var(--text) !important;
}

/* === Theme-aware typography (override OpenCart #444 etc.) === */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  color: var(--text) !important;
}

.hero h1,
.section h2,
.section h3,
.section__head h2,
.sk-catalog .section__head h2,
.filter h3,
.category h3,
.bpz-about h2,
.sk-footer__brand,
.logo,
.logo a,
#product-info h1,
#content h1,
#content h2,
#content h3,
#content h4,
#checkout-cart h1,
#checkout-cart h2,
#checkout-checkout h1,
#checkout-checkout h2,
legend {
  color: var(--text) !important;
}

.lead,
.eyebrow,
.bpz-about p,
.section .card p,
.card.product-card p,
.product-card p,
.category p,
.sk-category-description,
.sk-results,
.badge,
label,
.text-muted,
.product-thumb .description p,
.sk-product-grid .product-thumb p,
#content p,
#content label,
#content .text-muted,
#product-info p,
#product-info label,
#product-info .list-unstyled li,
#product-info .tab-content,
#checkout-cart p,
#checkout-cart label,
#checkout-cart td,
#checkout-checkout p,
#checkout-checkout label,
#checkout-checkout li,
#output-cart td,
.table td,
.table th,
.price-tax,
.price-old {
  color: var(--muted) !important;
}

.eyebrow {
  color: var(--accent) !important;
}

.price,
.price-new,
.product-thumb .price,
.product-thumb .price-new,
.sk-product-grid .product-thumb .price,
.sk-product-grid .product-thumb .price-new {
  color: var(--accent) !important;
}

#content a:not(.btn):not(.dropdown-item),
#product-info a:not(.btn):not(.dropdown-item),
#checkout-cart a:not(.btn),
#checkout-checkout a:not(.btn) {
  color: var(--accent) !important;
}

#content a:not(.btn):hover,
#product-info a:not(.btn):hover {
  color: var(--accent-2) !important;
}

.sk-footer__meta,
.sk-footer__meta a,
footer,
footer.footer {
  color: var(--muted) !important;
}

.sk-footer__meta a:hover {
  color: var(--accent) !important;
}

.btn--ghost {
  background: var(--surface) !important;
  color: var(--text) !important;
  border-color: var(--border) !important;
}

.dropdown-menu,
.dropdown-item {
  color: var(--text) !important;
}

.dropdown-header {
  color: var(--accent) !important;
}

.nav-tabs .nav-link {
  color: var(--muted) !important;
}

.nav-tabs .nav-link.active {
  color: var(--text) !important;
  background: var(--surface) !important;
  border-color: var(--border) !important;
}

.tab-content {
  color: var(--text) !important;
}

.alert {
  background: var(--surface) !important;
  border-color: var(--border) !important;
  color: var(--text) !important;
}

.header,
.sk-site-header,
.bpz-header-fixed,
header {
  position: static !important;
  top: auto !important;
}

