/* =====================================
   THEME (Light) + Dark support
===================================== */
:root {
  --accent: #26ce2c;
  /* yashil brend */
  --bg: #fafafa;
  --text: #222;
  --muted: #6f7781;
  --border: #e8e8e8;
  --surface: #ffffff;

  --like: #ff3b3b;
  --like-bg: rgba(255, 59, 59, .12);
  --fontFamiliyMian: "Press Start 2P", system-ui;
}

[data-theme="dark"] {
  --bg: #0f1115;
  --text: #e7e7e7;
  --muted: #a5adb8;
  --border: #242a34;
  --surface: #161a1e;
}

/* Base */
* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.container {
  max-width: 1200px;
  margin: 24px auto;
  padding: 0 16px;
  margin-top: 100px;
}

.section {
  margin-bottom: 28px
}

.section-title {
  margin: 0 0 10px;
  font-size: 22px;
  font-family: var(--fontFamiliyMian);
  line-height: 40px;
  font-weight: 800
}

.muted {
  color: var(--muted);
  font-size: 12px
}

.row {
  display: flex;
  align-items: center;
  gap: 8px
}

/* Header / Navbar */
.site-header {
  width: 100%;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: fixed;
  top: 0;
  z-index: 999;
}

.site-header .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo img {
  width: 50px;
}

.logo a {
  font-weight: 900
}

.nav {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap
}

.nav__link {
  padding: 8px 10px;
  border-radius: 10px
}

.nav__link:hover {
  background: color-mix(in srgb, var(--accent) 12%, transparent)
}

.nav__link.is-active {
  background: color-mix(in srgb, var(--accent) 18%, transparent)
}

.theme-btn {
  height: 38px;
  min-width: 38px;
  padding: 0 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 10px;
  cursor: pointer;
}

.theme-btn:hover {
  border-color: color-mix(in srgb, var(--accent) 50%, var(--border))
}

/* LIKE page — 3 ustunli grid */
#like-grid.product-grid--3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 18px;
  overflow: visible;
}

@media (max-width:980px) {
  #like-grid.product-grid--3 {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width:600px) {
  #like-grid.product-grid--3 {
    grid-template-columns: 1fr;
  }
}

.nav__like {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav__like .badge {
  position: relative;
  top: -1px;
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
}

/* Buttons / Inputs */
.btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 800;
  cursor: pointer;
  transition: .15s;
}

.btn:hover {
  filter: brightness(.96)
}

.btn--ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
}

.input {
  width: 100%;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0 12px;
  font-size: 16px;
  background: var(--surface);
  color: var(--text);
}

.input--sm {
  height: 36px
}

/* Product Grid & Card */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .02);
  transition: transform .12s, box-shadow .12s;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .08)
}

/* Like tugma */
.like-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, .04);
  border: 1px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  transition: .15s;
  z-index: 5;
}

.like-btn:hover {
  background: rgba(0, 0, 0, .06)
}

.like-btn i {
  font-size: 18px
}

.like-btn[aria-pressed="true"],
.like-btn.is-liked {
  background: var(--like-bg);
  border-color: transparent;
  color: var(--like);
}

/* Card carousel */
.card>.owl-carousel {
  width: 100%
}

.card>.owl-carousel .item {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.card>.owl-carousel .item img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

/* Owl dots */
.card .owl-theme .owl-dots {
  margin: 8px 0 0 !important;
  text-align: center
}

.card .owl-theme .owl-dots .owl-dot {
  margin: 0 5px
}

.card .owl-theme .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--text) 15%, transparent);
  transition: .2s;
}

.card .owl-theme .owl-dots .owl-dot.active span {
  background: var(--accent);
  transform: scale(1.1)
}

.title {
  height: 40px;
  margin: 10px 0 6px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.brand-chip {
  margin-left: auto;
  background: color-mix(in srgb, var(--accent) 15%, white);
  color: var(--accent);
  border-radius: 10px;
  padding: 3px 10px;
  font-size: 11px;
}

.price {
  margin: 8px 0 6px;
  font-weight: 900;
  color: var(--accent)
}

/* Product detail */
.detail-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: start
}

.detail-grid>* {
  min-width: 0
}

.gallery {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px;
  overflow: hidden;
}

#detail-owl .item {
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center
}

#detail-owl .item img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.thumbs-wrap {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  gap: 8px;
  margin-top: 10px
}

.thumb-nav {
  height: 36px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 8px;
  cursor: pointer
}

.thumbs .owl-stage {
  display: flex
}

.thumbs .owl-item {
  flex: 0 0 auto
}

.thumbs .item {
  width: 96px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box
}

.thumbs .item img {
  width: 100%;
  height: 64px;
  object-fit: contain;
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
  border-radius: 12px;
  padding: 4px;
}

.thumbs .item.is-active img {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent) inset
}

.buybox {
  margin-top: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px
}

.dot--green {
  background: #25c45e
}

.stars {
  color: #ffb703;
  letter-spacing: 2px
}

.buybox .price {
  font-size: 22px;
  margin: 8px 0 12px
}

.quick {
  width: 100%;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  cursor: pointer
}

.btn-big {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  margin-top: 10px
}

.btn-big:hover {
  filter: brightness(.96)
}

.about-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  margin-top: 18px
}

.about-block h2 {
  margin: 0 0 8px;
  font-size: 18px
}

.specs {
  margin: 8px 0 0;
  padding: 0;
  list-style: none
}

.specs li {
  display: flex;
  gap: 12px;
  padding: 6px 0;
  border-top: 1px dashed var(--border)
}

.specs li:first-child {
  border-top: none
}

.specs .k {
  color: var(--muted);
  min-width: 180px
}

/* Category tiles */
.cat-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  overflow: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px
}

.cat-tile {
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: box-shadow .2s, transform .2s;
}

.cat-tile:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
  transform: translateY(-2px)
}

.cat-tile__img {
  height: 160px;
  display: grid;
  place-items: center
}

.cat-tile__img img {
  max-height: 150px;
  object-fit: contain
}

.cat-tile__title {
  font-weight: 800;
  font-size: 18px
}

.cat-arrows button {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  font-size: 18px;
  margin-left: 8px
}

.cat-arrows button:hover {
  border-color: color-mix(in srgb, var(--accent) 50%, var(--border))
}

/* Catalog / Filters */
.catalog {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 20px
}

.catalog__sidebar {
  position: sticky;
  top: 76px;
  align-self: start;
  height: fit-content;
}

.catalog__sidebar .filter {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px
}

.filter__title {
  font-weight: 900;
  margin-bottom: 8px
}

.filter__group {
  margin: 0;
  padding: 10px 0
}

.filter__group+.filter__group {
  border-top: 1px dashed var(--border)
}

.filter__group>summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
  font-weight: 900;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter__group>summary::-webkit-details-marker {
  display: none
}

.filter__group>summary::before {
  content: '';
  width: 10px;
  height: 10px;
  border: 2px solid var(--muted);
  border-left: 0;
  border-top: 0;
  transform: rotate(-45deg);
  transition: .2s;
}

.filter__group[open]>summary::before {
  transform: rotate(45deg)
}

.filter__search {
  position: relative
}

.filter__search .search-ic {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  opacity: .6;
  pointer-events: none;
}

.filter__search .input {
  padding-left: 36px;
  height: 42px;
  border-radius: 10px
}

.filter__search-mini .input {
  height: 36px
}

.filter__price {
  display: flex;
  gap: 8px
}

.filter__price input {
  flex: 1;
  width: 100%;
  height: 40px;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  color: var(--text);
}

.input:focus,
.filter__price input:focus,
.filter__select select:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}

.filter__select select {
  width: 100%;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 10px;
  background: var(--surface);
  color: var(--text);
}

.filter__brands {
  display: grid;
  gap: 6px
}

.filter__brands .check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px
}

.check {
  display: flex;
  align-items: center;
  gap: 8px
}

.check input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent)
}

.filter__brands--scroll {
  max-height: 260px;
  overflow: auto;
  padding-right: 6px;
  scrollbar-width: thin;
}

.filter__brands--scroll::-webkit-scrollbar {
  width: 8px
}

.filter__brands--scroll::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--text) 20%, transparent);
  border-radius: 999px;
}

.catalog__toolbar .btn {
  width: max-content !important;
}

.catalog__content .catalog__toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px
}

.result-meta {
  font-weight: 800;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
}

.sort select {
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 8px;
  background: var(--surface);
  color: var(--text)
}

.pager button {
  height: 36px;
  padding: 0 10px;
  margin-right: 6px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 8px;
  cursor: pointer
}

.pager button.is-active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent)
}

/* Chips + Empty state */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 14px
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--border));
  color: var(--text);
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  user-select: none;
}

.chip b {
  font-weight: 800
}

.empty {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 10px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 8%, transparent), transparent);
  padding: 40px 10px;
  border-radius: 16px;
  border: 1px dashed var(--border);
}

.empty__img {
  max-width: 360px;
  width: 80%;
  height: auto;
  opacity: .9
}

.empty__title {
  margin: 8px 0 0;
  font-size: 22px;
  font-weight: 900
}

.empty__text {
  margin: 0 0 6px
}

.empty__actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap
}

/* Navbar Like — stack ko‘rinish */
.nav__link--stack {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.nav__cart .icon-wrap {
  position: relative;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav__cart i {
  font-size: 18px;
}

.badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  line-height: 1;
  border-radius: 999px;
  padding: 3px 6px;
  min-width: 16px;
  text-align: center;
  border: 2px solid rgba(0, 0, 0, .8);
}

.mainVideoHeader video {
  width: 100%;
  margin-top: 80px;
  height: 90vh;
  object-fit: cover;
  object-position: center center;
}

/* Footer */
.site-footer {
  margin-top: 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  color: var(--text);
}

.site-footer .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 26px 16px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 18px;
  align-items: start;
}

@media (max-width: 840px) {
  .site-footer .inner {
    grid-template-columns: 1fr;
  }
}

.footer__brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer__logo img {
  height: 40px;
  width: auto;
  display: block;
}

.footer__brand p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px
}

.footer__right {
  display: grid;
  gap: 14px;
  justify-items: end;
}

@media (max-width: 840px) {
  .footer__right {
    justify-items: start;
  }
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer__nav a {
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  transition: .15s;
}

.footer__nav a:hover {
  border-color: color-mix(in srgb, var(--accent) 50%, var(--border));
  box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
}

.footer__socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.soc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 14px;
  transition: .15s;
}

.soc-btn i {
  font-size: 18px;
}

.soc-btn:hover {
  border-color: color-mix(in srgb, var(--accent) 50%, var(--border));
  box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
}

.soc--yt i {
  color: #ff0000
}

.soc--ig i {
  color: #E1306C
}

.soc--tg i {
  color: #229ED9
}

.footer__copy {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
  color: var(--muted);
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

@media (max-width: 600px) {
  .footer__copy {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Mobile navbar */
.hamburger {
  color: var(--text);
  display: none;
  width: 42px;
  height: 38px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
}

@media (max-width: 960px) {
  .hamburger {
    display: inline-flex;
  }

  .nav {
    display: none;
  }

  /* desktop nav yashiriladi */
}

.mnav {
  position: fixed;
  inset: 0 auto 0 0;
  width: 82vw;
  max-width: 360px;
  height: 100vh;
  background: var(--surface);
  color: var(--text);
  border-right: 1px solid var(--border);
  transform: translateX(-100%);
  transition: transform .25s ease;
  z-index: 1001;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  padding: 12px 14px;
}

.mnav.is-open {
  transform: translateX(0);
}

body.mnav-open {
  overflow: hidden;
}

.mnav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--border);
}

.mnav__logo img {
  height: 34px;
  width: auto;
  display: block
}

.mnav__close {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 10px;
  cursor: pointer;
}

.mnav__nav {
  display: grid;
  gap: 8px;
  padding: 12px 0;
}

.mnav__link {
  display: block;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  font-weight: 800;
}

.mnav__link:active {
  transform: translateY(1px);
}

.mnav__meta {
  padding: 10px 0;
  display: grid;
  gap: 6px;
  border-top: 1px dashed var(--border)
}

.mnav__phone {
  font-weight: 900
}

.mnav__hint {
  color: var(--muted);
  font-size: 12px
}

.mnav__socials {
  display: flex;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
}

.mnav__socials .soc {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}

.mnav__socials .soc i {
  font-size: 20px
}

.mnav__socials .soc--yt i {
  color: #ff0000
}

.mnav__socials .soc--ig i {
  color: #E1306C
}

.mnav__socials .soc--tg i {
  color: #229ED9
}

.mnav-shroud {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  backdrop-filter: blur(1px);
  z-index: 1000;
  opacity: 0;
  transition: opacity .25s ease;
}

.mnav-shroud.is-visible {
  opacity: 1;
}

.srow {
  display: none;
}

/* ===== Hero Carousel (Owl 2) ===== */
.hero {
  position: relative;
  padding: 0 0 10px;
}

.hero .owl-carousel {
  border-radius: 18px;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  height: clamp(360px, 62vh, 640px);
}

.hero-slide>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.06);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(180deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .46)); */
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 2rem 2.4rem;
  width: 100%;
  height: 100%;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .35);
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.hero-title {
  margin: 0;
  line-height: 1.06;
  font-weight: 800;
  font-size: clamp(28px, 4.4vw, 56px);
}

.hero-sub {
  margin: 0;
  opacity: .95;
  font-size: clamp(14px, 1.6vw, 18px);
}

.hero-cta {
  position: absolute;
  right: 20px;
  bottom: 20px;
 
  padding: .8rem 1.15rem;
  border-radius: 12px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 22px rgba(0, 0, 0, .25);
  transition: transform .18s ease, box-shadow .18s ease;
}

.hero-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .32);
}

.hero .owl-dots {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
}

.hero .owl-dot span {
  width: 8px;
  height: 8px;
}

.hero .owl-nav {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero .owl-nav button.owl-prev,
.hero .owl-nav button.owl-next {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .35) !important;
}

.hero .owl-nav .owl-prev {
  left: .6rem;
}

.hero .owl-nav .owl-next {
  right: .6rem;
}

.hero .owl-nav button span {
  color: #fff;
  font-size: 26px;
  line-height: 1;
}

@media (max-width: 640px) {
  .hero .owl-carousel {
    border-radius: 12px;
  }

  .hero-content {
    padding: 1.4rem;
  }

  .hero-cta {
    padding: .7rem 1rem;
  }
}

/* Responsive tweaks */
@media (max-width:980px) {
  .detail-grid {
    grid-template-columns: 1fr
  }

  #detail-owl .item {
    height: 360px
  }

  #detail-owl .item img {
    max-height: 340px
  }

  .catalog {
    grid-template-columns: 1fr
  }
}

.cardPayment {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  margin: 0 auto;
}

.site-footer .container {
  margin: 0 auto;
}

.cardPayment img {
  border: 1px solid var(--border);
  padding: 10px;
  border-radius: 12px;
}

@media (max-width:600px) {
  .cardPayment {
    flex-wrap: wrap;
  }

  .catalog__sidebar {
    position: static;
  }

  .thumbs-wrap .owl-item {
    width: max-content !important;
  }

  .mainVideoHeader video {
    height: max-content !important;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr))
  }

  .card>.owl-carousel .item {
    height: 150px
  }
}