:root {
  --bg-page: #070b14;
  --bg-surface: rgba(9, 14, 26, 0.92);
  --bg-card: rgba(15, 21, 36, 0.96);
  --bg-card-strong: #11192b;
  --bg-soft: rgba(255, 255, 255, 0.04);
  --bg-input: rgba(11, 17, 31, 0.94);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(199, 255, 47, 0.25);
  --text-main: #f5f8ff;
  --text-soft: #a6b2cc;
  --text-muted: #7d8aa6;
  --brand: #c7ff2f;
  --brand-strong: #e0ff74;
  --brand-dark: #9fcf1f;
  --accent: #59eff7;
  --accent-soft: rgba(89, 239, 247, 0.18);
  --danger: #ff4f7b;
  --shadow-lg: 0 22px 60px rgba(0, 0, 0, 0.38);
  --shadow-md: 0 14px 32px rgba(0, 0, 0, 0.24);
  --radius-xs: 10px;
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --transition: 0.28s ease;
}

html,
body {
  background: var(--bg-page) !important;
  color: var(--text-main) !important;
  font-family: 'Inter', sans-serif !important;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  pointer-events: none;
  z-index: -2;
  filter: blur(60px);
  opacity: 0.42;
}

body::before {
  top: -12rem;
  left: -10rem;
  background: radial-gradient(circle, rgba(199, 255, 47, 0.28) 0%, rgba(199, 255, 47, 0) 70%);
}

body::after {
  right: -10rem;
  top: 10rem;
  background: radial-gradient(circle, rgba(89, 239, 247, 0.18) 0%, rgba(89, 239, 247, 0) 72%);
}

* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-heading__eyebrow,
.brand-lockup__copy strong,
.announcement-bar__tag {
  font-family: 'Space Grotesk', sans-serif !important;
  color: var(--text-main) !important;
}

p,
span,
li,
small,
label,
input,
textarea,
select {
  color: var(--text-soft);
}

a {
  color: inherit;
  transition: color var(--transition), transform var(--transition), background-color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

a:hover,
a:focus {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  position: relative;
}

.spad {
  padding-top: 78px !important;
  padding-bottom: 78px !important;
}

.bg-light,
.text-dark {
  background: transparent !important;
  color: var(--text-main) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

.text-info,
.text-success {
  color: var(--brand) !important;
}

.primary-btn,
.site-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border-radius: 999px !important;
  border: 1px solid transparent !important;
  padding: 0 26px !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.primary-btn,
.site-btn {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%) !important;
  color: #0b1203 !important;
  box-shadow: 0 16px 40px rgba(199, 255, 47, 0.2);
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.12) !important;
}

.primary-btn:hover,
.site-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
}

.secondary-btn:hover {
  border-color: var(--line-strong) !important;
  color: var(--brand);
}

.form-control,
.checkout__input input,
.checkout__input textarea,
.checkout__input select {
  min-height: 54px;
  background: var(--bg-input) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 18px !important;
  color: var(--text-main) !important;
  box-shadow: none !important;
}

.form-control::placeholder,
.checkout__input input::placeholder,
.checkout__input textarea::placeholder {
  color: var(--text-muted) !important;
}

.form-control:focus,
.checkout__input input:focus,
.checkout__input textarea:focus,
.checkout__input select:focus {
  border-color: var(--line-strong) !important;
  box-shadow: 0 0 0 3px rgba(199, 255, 47, 0.09) !important;
}

.announcement-bar {
  position: relative;
  padding: 12px 0;
  background: linear-gradient(90deg, rgba(199, 255, 47, 0.96) 0%, rgba(89, 239, 247, 0.92) 100%);
  color: #07100f;
  z-index: 70;
}

.announcement-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.announcement-bar__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(7, 12, 17, 0.15);
  color: #08100f !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.announcement-bar__message {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #08100f;
  text-transform: lowercase;
}

.announcement-bar__message span {
  color: #08100f;
}

.announcement-bar__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(8, 16, 15, 0.56);
}

.announcement-bar__support {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #08100f;
  font-weight: 800;
}

.announcement-bar__support i {
  font-size: 16px;
}

.header {
  position: sticky !important;
  top: 0;
  z-index: 60;
  background: rgba(7, 11, 20, 0.88) !important;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__topline {
  background: rgba(255, 255, 255, 0.02) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header__top__left,
.header__top__right {
  padding: 10px 0 !important;
}

.header__top__left ul li,
.header__top__right__auth a,
.header__top__right__social a {
  color: var(--text-soft) !important;
  font-size: 12px !important;
}

.header__top__left ul li:after,
.header__top__right__social:after {
  background: rgba(255, 255, 255, 0.08) !important;
}

.header__top__left ul li i,
.header__top__right__auth a i,
.header__top__right__social a:hover {
  color: var(--brand) !important;
}

.site-header__main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 14px 0 12px;
  min-width: 0;
}

.header__logo {
  padding: 0 !important;
  min-width: 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: 100%;
}

.brand-lockup__icon {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08) 0%, rgba(199, 255, 47, 0.12) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.brand-lockup__icon img {
  width: 70%;
  object-fit: contain;
}

.brand-lockup__copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.brand-lockup__copy strong {
  font-size: 27px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.brand-lockup__wordmark {
  display: block;
  width: min(100%, 240px);
  height: auto;
  object-fit: contain;
  padding: 10px 16px 9px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 10px 24px rgba(0, 0, 0, 0.16);
}

.brand-lockup__fallback {
  display: none;
}

.brand-lockup__copy em {
  font-style: normal;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.header-action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  min-width: 140px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.header-action:hover {
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.header-action__icon {
  position: relative;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(199, 255, 47, 0.12);
  color: var(--brand);
  font-size: 16px;
}

.header-action__badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--brand);
  color: #0c1206;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

.header-action__content {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.header-action__content small {
  color: var(--text-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.header-action__content strong,
.header-action__value {
  color: var(--text-main);
  font-size: 13px;
  font-weight: 800;
}

.header-action--support .header-action__icon {
  background: rgba(89, 239, 247, 0.12);
  color: var(--accent);
}

.header-action--cart .header-action__content strong,
.header-action__value {
  color: var(--brand);
}

.site-header__navrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 0 14px;
}

.header__menu {
  padding: 0 !important;
}

.header__menu ul li {
  margin-right: 28px !important;
}

.header__menu ul li:last-child {
  margin-right: 0 !important;
}

.header__menu ul li a {
  padding: 0 0 8px !important;
  color: var(--text-main) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  position: relative;
}

.header__menu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--accent) 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.header__menu ul li.active a,
.header__menu ul li:hover > a {
  color: var(--brand) !important;
}

.header__menu ul li.active a::after,
.header__menu ul li:hover > a::after {
  transform: scaleX(1);
}

.header__menu ul li .header__menu__dropdown {
  padding: 10px !important;
  background: rgba(10, 16, 29, 0.98) !important;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

.header__menu ul li .header__menu__dropdown li {
  margin-right: 0 !important;
}

.header__menu ul li .header__menu__dropdown li a {
  padding: 11px 14px !important;
  border-radius: 14px;
  color: var(--text-soft) !important;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600 !important;
}

.header__menu ul li .header__menu__dropdown li a::after {
  display: none;
}

.header__menu ul li .header__menu__dropdown li:hover > a {
  background: rgba(199, 255, 47, 0.08);
  color: var(--brand) !important;
}

.site-header__microcopy {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.site-header__microcopy span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 700;
}

.site-header__microcopy i {
  color: var(--brand);
}

.humberger__open {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.03);
}

.humberger__open i {
  color: var(--text-main) !important;
  font-size: 18px;
}

.humberger__menu__wrapper {
  background: rgba(6, 10, 19, 0.98) !important;
  padding: 26px 22px 30px !important;
  box-shadow: var(--shadow-lg);
}

.brand-lockup--mobile .brand-lockup__icon,
.brand-lockup--footer .brand-lockup__icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
}

.brand-lockup--mobile .brand-lockup__wordmark {
  width: min(100%, 190px);
}

.brand-lockup--footer .brand-lockup__wordmark {
  width: min(100%, 220px);
}

.mobile-auth-link {
  margin: 18px 0 14px;
}

.mobile-auth-link a {
  color: var(--text-main) !important;
  font-weight: 700;
}

.mobile-auth-link a i,
.mobile-social-links a:hover {
  color: var(--brand) !important;
}

.mobile-social-links {
  margin-top: 20px;
}

.mobile-social-links a {
  color: var(--text-soft) !important;
  font-size: 18px !important;
}

.humberger__menu__wrapper .slicknav_nav a {
  color: var(--text-main) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
  padding: 14px 0 !important;
}

.humberger__menu__wrapper .slicknav_nav a:hover {
  background: transparent !important;
  color: var(--brand) !important;
}

.hero-home {
  padding: 32px 0 0 !important;
}

.hero-home,
.trust-strip,
.categories--home,
.featured,
.banner--home,
.latest-product--home,
.related-product,
.footer {
  position: relative;
  z-index: 1;
  clear: both;
}

.hero-home__grid {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 24px;
  min-width: 0;
}

.hero-home__main,
.hero-home__aside,
.hero-search-shell__surface,
.footer__surface,
.latest-product__text,
.shoping-cart-page__surface,
.checkout__form,
.checkout__order,
.sidebar__item,
.product__details__pic,
.product__details__text,
.product__details__tab,
.modal-content,
.cart-inline-header {
  background: var(--bg-card) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  box-shadow: var(--shadow-md);
}

.hero-home__aside,
.hero-home__main,
.hero-search-shell__surface,
.shoping-cart-page__surface {
  border-radius: 28px;
}

.hero-home__aside {
  padding: 0 !important;
  overflow: hidden;
}

.hero-home__main {
  padding: 22px;
}

.hero-home__utility {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 14px;
  margin-bottom: 18px;
  min-width: 0;
}

.hero__categories {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.hero__categories__all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 68px;
  padding: 0 22px !important;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%) !important;
}

.hero__categories__all i,
.hero__categories__all span,
.hero__categories__all:after {
  color: #091001 !important;
  font-weight: 800 !important;
}

.hero__categories ul {
  padding: 14px 16px 16px !important;
  background: transparent !important;
  border: 0 !important;
}

.hero-search-shell .hero__categories {
  position: relative;
  border-radius: 22px !important;
  overflow: visible;
}

.hero-search-shell .hero__categories ul {
  display: none !important;
  position: absolute !important;
  top: calc(100% + 10px);
  left: 0;
  width: 280px !important;
  padding: 12px 14px 14px !important;
  border-radius: 22px;
  background: rgba(15, 21, 36, 0.98) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: var(--shadow-lg);
  z-index: 15;
}

.hero-search-shell .hero__categories ul li a {
  padding: 12px 8px;
}

.hero-search-shell__surface {
  padding: 18px;
}

.hero__categories ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__categories ul li:last-child {
  border-bottom: 0;
}

.hero__categories ul li a {
  display: block;
  padding: 14px 8px;
  line-height: 1.2 !important;
  color: var(--text-soft) !important;
  font-size: 14px !important;
}

.hero__categories ul li a:hover {
  color: var(--brand) !important;
  transform: translateX(4px);
}

.hero__search {
  margin-bottom: 0 !important;
  overflow: visible;
}

.hero__search__form {
  width: 100% !important;
  height: auto !important;
  float: none !important;
  border: 0 !important;
  overflow: hidden;
  border-radius: 22px !important;
  background: var(--bg-input) !important;
}

.hero__search__form form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
}

.hero__search__form form input {
  width: 100% !important;
  height: 64px !important;
  padding: 0 24px !important;
  background: transparent !important;
  border: 0 !important;
  color: var(--text-main) !important;
  font-size: 15px !important;
}

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

.hero__search__form form button {
  position: static !important;
  width: 100%;
  height: 64px !important;
  border-radius: 0 !important;
}

.hero-home__support,
.hero__search__phone {
  float: none !important;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 0 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-home__support:hover {
  border-color: var(--line-strong);
  color: var(--brand);
}

.hero-home__support__icon,
.hero__search__phone__icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(199, 255, 47, 0.1);
  color: var(--brand);
  font-size: 20px;
}

.hero-home__support__text,
.hero__search__phone__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.hero-home__support__text strong,
.hero__search__phone__text h6 {
  color: var(--text-main) !important;
  margin: 0 !important;
  font-size: 16px !important;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-home__support__text small,
.hero__search__phone__text span {
  color: var(--text-muted) !important;
  font-size: 12px !important;
}

.hero__item {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 430px;
  padding: 0 !important;
  overflow: hidden;
  border-radius: 30px;
  background-position: center !important;
  background-size: cover !important;
}

.hero-home__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(6, 10, 20, 0.92) 0%, rgba(7, 11, 20, 0.72) 48%, rgba(7, 11, 20, 0.25) 100%),
    radial-gradient(circle at 78% 18%, rgba(89, 239, 247, 0.15), transparent 32%);
}

.hero__text {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  padding: 44px;
}

.hero__text:empty {
  display: none;
}

.hero__text span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(199, 255, 47, 0.12);
  color: var(--brand) !important;
  letter-spacing: 0.18em !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  margin-bottom: 20px !important;
}

.hero__text h2 {
  max-width: 11ch;
  margin-bottom: 16px !important;
  font-size: clamp(36px, 4vw, 62px) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.05em;
}

.hero__text p {
  max-width: 42ch;
  margin-bottom: 0 !important;
  color: rgba(245, 248, 255, 0.78) !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}

.hero-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-home__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.hero-home__stat {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-home__stat strong {
  display: block;
  color: var(--text-main);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.hero-home__stat span {
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-home__quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-home__quicklinks a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--text-main);
  font-size: 12px;
  font-weight: 700;
}

.hero-home__quicklinks a:hover {
  border-color: var(--line-strong);
  color: var(--brand);
}

.trust-strip {
  padding: 28px 0 8px;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-strip__item i {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(89, 239, 247, 0.12);
  color: var(--accent);
  font-size: 18px;
}

.trust-strip__item strong {
  display: block;
  color: var(--text-main);
  font-size: 15px;
  font-weight: 700;
}

.trust-strip__item span {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 12px;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--brand) !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading__eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--brand), transparent);
}

.section-heading__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.section-heading h2,
.section-title h2 {
  margin: 0 !important;
  font-size: clamp(28px, 3vw, 42px) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.04em;
}

.section-heading p {
  max-width: 58ch;
  margin: 10px 0 0 !important;
  color: var(--text-muted) !important;
  font-size: 15px !important;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-weight: 700;
}

.section-link::after {
  content: "\f178";
  font-family: FontAwesome;
  font-size: 14px;
}

.categories--home {
  padding-top: 48px;
}

.categories__item {
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.categories__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 11, 20, 0.02) 20%, rgba(7, 11, 20, 0.88) 100%);
}

.categories__item__content {
  position: relative;
  z-index: 1;
  width: calc(100% - 8px);
  min-height: 84px;
  padding: 14px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(20, 26, 40, 0.92) 0%, rgba(24, 31, 47, 0.96) 100%);
  backdrop-filter: blur(10px);
}

.categories__item__content small {
  display: block;
  margin-bottom: 6px;
  color: var(--brand);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.categories__item h5 {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

.categories__item h5 a {
  color: var(--text-main) !important;
  display: -webkit-box;
  overflow: hidden;
  max-width: 14ch;
  font-size: 17px !important;
  font-weight: 700;
  line-height: 1.06 !important;
  letter-spacing: 0.02em;
  background: transparent !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.categories__slider.owl-carousel .owl-nav button,
.latest-product__slider.owl-carousel .owl-nav button {
  width: 46px;
  height: 46px;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: var(--text-main) !important;
}

.categories__slider.owl-carousel .owl-nav button:hover,
.latest-product__slider.owl-carousel .owl-nav button:hover {
  border-color: var(--line-strong) !important;
  color: var(--brand) !important;
}

.featured__controls ul,
.site-header__microcopy,
.hero-home__quicklinks {
  scrollbar-width: none;
}

.featured__controls ul::-webkit-scrollbar,
.site-header__microcopy::-webkit-scrollbar,
.hero-home__quicklinks::-webkit-scrollbar {
  display: none;
}

.featured__controls {
  margin-bottom: 24px !important;
}

.featured__controls ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start !important;
}

.featured__controls ul li {
  margin-right: 0 !important;
}

.featured__controls ul li a,
.featured__controls ul li {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--text-soft) !important;
  font-size: 13px !important;
  font-weight: 700;
}

.featured__controls ul li:hover,
.featured__controls ul li:hover a {
  border-color: var(--line-strong);
  color: var(--brand) !important;
}

.featured__filter > [class*="col-"] {
  margin-bottom: 20px;
}

.featured .featured__filter {
  row-gap: 20px;
}

.featured .featured__filter > [class*="col-"] {
  flex: 0 0 180px;
  max-width: 180px;
}

.featured__item,
.product__discount__item,
.product__item {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: #111318 !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.34);
}

.product-card-link {
  display: flex;
  flex-direction: column;
  color: inherit !important;
}

.featured__item:hover,
.product__discount__item:hover,
.product__item:hover,
.product-card-link:hover .featured__item,
.product-card-link:hover .product__discount__item {
  transform: translateY(-3px);
  border-color: rgba(255, 149, 0, 0.48);
}

.featured__item__pic,
.product__discount__item__pic,
.product__item__pic {
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 170 / 110;
  position: relative;
  background-position: center !important;
  background-size: cover !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.featured__item__pic::after,
.product__discount__item__pic::after,
.product__item__pic::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 58px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.22) 100%);
  pointer-events: none;
}

.product-card-link:hover .featured__item__pic::after,
.product-card-link:hover .product__discount__item__pic::after {
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.32) 100%);
}

.product__discount__percent {
  top: 10px !important;
  left: 10px !important;
  min-width: 52px;
  height: 28px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--danger) 0%, #ff7a8f 100%) !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 800 !important;
}

.product-card-shell__body {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 0;
  padding: 9px 10px 0;
  background: #111318;
}

.product-card-shell__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  gap: 8px;
  align-items: end;
}

.product-card-link--content {
  display: grid;
  gap: 2px;
}

.product-card-shell__title {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  color: #f8fbff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.22;
  text-transform: uppercase;
}

.product-card-shell__title-text {
  display: block;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.product-card-shell__title i {
  flex: 0 0 auto;
  color: #7efc9a;
  font-size: 8px;
}

.product-card-shell__price {
  display: block;
  color: #ffffff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
}

.product-card-shell__note {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  line-height: 1.1;
}

.product-card-shell__quicklink {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: rgba(42, 183, 176, 0.18);
  border: 1px solid rgba(42, 183, 176, 0.34);
  color: #47e3cf !important;
}

.product-card-shell__quicklink:hover {
  background: rgba(42, 183, 176, 0.28);
}

.product-card-shell__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 36px;
  margin-top: 0;
  border-radius: 8px;
  background: linear-gradient(180deg, #ff9f1a 0%, #ff8a00 100%);
  color: #0c0c0d !important;
  font-size: 11px;
  font-weight: 800;
}

.product-card-shell__cta span,
.product-card-shell__cta i {
  color: inherit !important;
}

.product-card-shell__cta i {
  font-size: 14px;
}

.product-card-shell .featured__item__pic,
.product-card-shell .product__discount__item__pic {
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.catalog-card__body {
  display: flex !important;
  flex-direction: column;
  flex: 1 1 auto;
  justify-content: space-between;
  gap: 6px;
  padding: 9px 10px 0 !important;
  background: #111318;
}

.catalog-card-shell {
  height: auto;
  min-width: 0;
}

.catalog-card-shell .product__item__pic__hover,
.catalog-card-shell .featured__item__pic__hover,
.catalog-card-shell .product__discount__item__pic .product__item__pic__hover {
  display: none !important;
}

.catalog-card__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  gap: 8px;
  align-items: end;
}

.catalog-card__content {
  display: grid;
  gap: 2px;
  min-width: 0;
  color: inherit !important;
}

.catalog-card__title {
  display: block;
  overflow: hidden;
  color: #f8fbff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.22;
  text-transform: uppercase;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.catalog-card__price {
  display: block;
  color: #ffffff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
}

.catalog-card__note {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  line-height: 1.1;
}

.catalog-card__quicklink {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: rgba(42, 183, 176, 0.18);
  border: 1px solid rgba(42, 183, 176, 0.34);
  color: #47e3cf !important;
}

.catalog-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: calc(100% + 20px);
  min-height: 36px;
  margin: 0 -10px;
  border-radius: 10px 10px 16px 16px;
  background: linear-gradient(180deg, #ff9f1a 0%, #ff8a00 100%);
  color: #0c0c0d !important;
  font-size: 11px;
  font-weight: 800;
}

.catalog-card__cta span,
.catalog-card__cta i {
  color: inherit !important;
}

@media (max-width: 575px) {
  .catalog-card-shell,
  .product-card-shell {
    border-radius: 18px;
  }

  .product-card-shell .featured__item__pic,
  .product-card-shell .product__discount__item__pic {
    aspect-ratio: 16 / 11;
    background-size: contain !important;
    background-position: center center !important;
    background-color: #111318 !important;
  }

  .catalog-card__body,
  .product-card-shell__body {
    padding-top: 9px !important;
  }

  .catalog-card__cta,
  .product-card-shell__cta {
    min-height: 36px;
  }
}

.categories__slider.owl-carousel,
.latest-product__slider.owl-carousel {
  position: relative;
}

.categories__slider.owl-carousel .owl-stage-outer,
.latest-product__slider.owl-carousel .owl-stage-outer {
  padding: 8px 0 10px;
}

.product-card-shell .featured__item__pic__hover,
.product-card-shell .product__item__pic__hover,
.product-card-shell .featured__item__text,
.product-card-shell .product__discount__item__text,
.product-card-shell .product__item__text {
  display: none !important;
}

.banner--home .banner__pic {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.latest-product--home {
  padding-top: 34px !important;
}

.latest-product__text {
  padding: 24px;
  border-radius: 28px;
}

.latest-product__text h4 {
  margin-bottom: 20px !important;
  font-size: 24px !important;
  font-weight: 700 !important;
}

.latest-product__item {
  margin-bottom: 14px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.latest-product__item:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.latest-product__item__pic {
  width: 100%;
}

.latest-product__item__pic img {
  width: 100%;
  height: 112px;
  object-fit: cover;
  border-radius: 18px;
}

.latest-product__item__text {
  padding-top: 2px !important;
}

.latest-product__item__text h6 {
  color: var(--text-main) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  margin-bottom: 10px !important;
}

.latest-product__item__text span {
  color: var(--brand) !important;
  font-size: 20px !important;
  font-weight: 800 !important;
}

.footer {
  padding: 44px 0 30px !important;
  background: transparent !important;
}

.footer__surface {
  padding: 30px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(13, 19, 34, 0.98) 0%, rgba(8, 12, 21, 0.98) 100%) !important;
}

.footer__cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  margin-bottom: 26px;
  border-radius: 28px;
  background: linear-gradient(140deg, rgba(199, 255, 47, 0.12) 0%, rgba(89, 239, 247, 0.08) 100%);
  border: 1px solid rgba(199, 255, 47, 0.15);
}

.footer__cta__copy {
  max-width: 760px;
}

.footer__kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer__cta h3 {
  margin-bottom: 10px !important;
  max-width: 18ch;
  font-size: clamp(24px, 2.6vw, 34px) !important;
  line-height: 1.06 !important;
}

.footer__cta p {
  max-width: 54ch;
  margin: 0 !important;
  color: var(--text-soft) !important;
}

.footer__cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
}

.footer__cta__actions .primary-btn,
.footer__cta__actions .secondary-btn {
  width: 100%;
}

.footer__content {
  margin-bottom: 10px;
}

.footer__about p,
.footer__widget p {
  color: var(--text-muted) !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
}

.footer__contact,
.footer__widget ul {
  margin-top: 18px;
}

.footer__contact li,
.footer__widget ul li {
  color: var(--text-soft) !important;
  line-height: 1.9 !important;
}

.footer__contact i {
  width: 20px;
  color: var(--brand);
}

.footer__widget h6 {
  margin-bottom: 16px !important;
  font-size: 17px !important;
  font-weight: 700 !important;
}

.footer__widget ul li a {
  color: var(--text-soft) !important;
}

.footer__widget ul li a:hover {
  color: var(--brand) !important;
}

.footer__widget form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.footer__widget form input {
  min-height: 54px;
  padding: 0 18px;
  border-radius: 18px;
  background: var(--bg-input);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-main);
}

.footer__widget__social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer__widget__social a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.footer__widget__social a:hover {
  color: var(--brand);
  border-color: var(--line-strong);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__bottom p {
  margin: 0 !important;
  color: var(--text-muted) !important;
}

.footer__payment img {
  max-width: 220px;
  border-radius: 14px;
}

.floating-alert-trigger {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 48;
}

.floating-alert-trigger__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  color: #091001;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  font-weight: 800;
}

.hero-search-shell {
  padding: 24px 0 0 !important;
}

.hero-search-shell__surface {
  padding: 22px;
}

.hero-search-shell__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.hero-search-shell__benefits span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 700;
}

.hero-search-shell__benefits i {
  color: var(--brand);
}

.sidebar__item {
  margin-bottom: 20px;
  padding: 22px;
  border-radius: 26px;
}

.sidebar__item h4 {
  margin-bottom: 18px !important;
  font-size: 22px !important;
  font-weight: 700 !important;
}

.sidebar__item ul li {
  margin-bottom: 10px;
}

.sidebar__item ul li a {
  color: var(--text-soft) !important;
}

.sidebar__item ul li a:hover {
  color: var(--brand) !important;
}

.price-range-wrap .price-range.ui-widget-content {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 0 !important;
}

.price-range-wrap .price-range .ui-slider-range,
.price-range-wrap .price-range.ui-widget-content .ui-slider-handle {
  background: var(--brand) !important;
}

.price-range-wrap .range-slider .price-input input {
  color: var(--brand) !important;
}

.product__pagination a {
  width: 46px;
  height: 46px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--text-main) !important;
}

.product__pagination a:hover,
.product__pagination a.bg-info {
  background: rgba(199, 255, 47, 0.12) !important;
  color: var(--brand) !important;
  border-color: var(--line-strong);
}

.product-details {
  padding-top: 28px !important;
}

.product__details__pic,
.product__details__text,
.product__details__tab {
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(16, 22, 37, 0.98) 0%, rgba(11, 16, 28, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
}

.product__details__pic {
  position: sticky;
  top: 112px;
  align-self: flex-start;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.product__details__pic__item {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 0;
  background: radial-gradient(circle at top left, rgba(255, 154, 28, 0.14) 0%, rgba(11, 16, 28, 0.94) 55%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px;
}

.product__details__pic__item img,
.product__details__pic__slider.owl-carousel .owl-item img {
  border-radius: 18px;
}

.product__details__pic__item--large {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.product__details__pic__slider.owl-carousel .owl-item img {
  height: 88px;
  width: 100%;
  object-fit: cover;
}

.product__details__pic__slider {
  display: none !important;
}

.product__details__text {
  display: grid;
  gap: 14px;
}

.product__details__text h3 {
  font-size: clamp(28px, 3vw, 40px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.04em;
  margin-bottom: 0 !important;
}

.product__details__text p {
  color: var(--text-soft) !important;
  line-height: 1.58 !important;
}

.product__details__rating i {
  color: #ffb24f !important;
}

.product__details__rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 0;
}

.product__details__rating span {
  margin-left: 6px;
  color: var(--text-muted) !important;
  font-size: 13px;
}

.digital-badge {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0;
}

.product-quick-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-quick-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 700;
}

.product-quick-points i {
  color: #ffb24f;
}

.badge-digital,
.badge-promo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.badge-digital {
  background: rgba(255, 160, 26, 0.12);
  color: #ffb257;
}

.badge-promo {
  background: rgba(255, 79, 123, 0.12);
  color: #ff7f98;
}

.digital-price-box {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 18px 18px 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 160, 26, 0.12) 0%, rgba(12, 18, 31, 0.96) 88%);
  border: 1px solid rgba(255, 159, 26, 0.24);
  box-shadow: 0 18px 36px rgba(255, 149, 0, 0.08);
}

.price-old {
  color: rgba(245, 248, 255, 0.54);
  text-decoration: line-through;
  font-size: 13px;
}

.price-current {
  color: #ffffff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 700;
  line-height: 1;
}

.price-note {
  color: #d1d8ea;
  font-size: 14px;
  font-weight: 500;
}

.price-economy {
  color: #ffb257;
  font-size: 13px;
  font-weight: 700;
}

.product-description {
  margin: 0 !important;
  color: var(--text-muted) !important;
  font-size: 15px;
  line-height: 1.55 !important;
}

.digital-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.benefit-item i {
  color: #ffb24f;
}

.benefit-item span {
  color: var(--text-main);
  font-size: 13px;
  font-weight: 700;
}

.digital-buy-area,
.digital-delivery-info,
.digital-out-of-stock {
  padding: 18px;
  border-radius: 24px;
  background: rgba(8, 12, 22, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.digital-option-group {
  margin-bottom: 14px;
}

.digital-option-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-main);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.digital-qty-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}

.digital-buy-btn {
  flex: 1 1 auto;
  min-height: 56px;
  background: linear-gradient(135deg, #ff9f1a 0%, #ffb84d 100%) !important;
  color: #120902 !important;
  box-shadow: 0 16px 32px rgba(255, 159, 26, 0.22) !important;
}

.digital-buy-note {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.55;
}

.digital-delivery-info,
.digital-out-of-stock {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 14px;
}

.digital-delivery-info i,
.digital-out-of-stock i {
  color: #ffb24f;
  font-size: 18px;
}

.product__details__tab .nav-tabs {
  justify-content: flex-start !important;
  border-bottom: 0 !important;
  margin-bottom: 22px !important;
}

.product__details__tab .nav-tabs:before,
.product__details__tab .nav-tabs:after {
  display: none !important;
}

.product__details__tab .nav-tabs li {
  margin-right: 10px !important;
}

.product__details__tab .nav-tabs li a {
  min-height: 44px;
  padding: 0 18px !important;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft) !important;
  font-weight: 700 !important;
}

.product__details__tab .nav-tabs li a.active {
  background: linear-gradient(135deg, #ff9f1a 0%, #ffb84d 100%);
  color: #120902 !important;
}

.product__details__tab .tab-content {
  padding: 6px 2px 2px !important;
}

.product__details__tab__desc h6 {
  margin-bottom: 14px !important;
  font-size: 20px !important;
}

.digital-message {
  min-height: 18px;
  font-size: 12px;
  line-height: 1.45;
}

.page-empty-state,
.combo-summary,
.combo-freight-box {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.page-empty-state h2 {
  margin-bottom: 12px !important;
}

.combo__details__text {
  display: grid;
  gap: 18px;
}

.combo-summary {
  padding-bottom: 20px;
}

.combo-summary h4,
.combo-freight-box h5 {
  margin-bottom: 14px !important;
  color: var(--text-main) !important;
  font-size: 24px !important;
  font-weight: 700 !important;
}

.combo-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.combo-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--text-main) !important;
  font-size: 13px;
  font-weight: 700;
}

.combo-chip:hover,
.combo-list-row:hover {
  border-color: var(--line-strong);
  color: var(--brand) !important;
}

.combo-chip i {
  color: var(--brand);
}

.combo-empty-state {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  color: var(--text-muted);
}

.combo-tab-content {
  padding-top: 6px;
}

.combo-list-stack {
  display: grid;
  gap: 10px;
}

.combo-list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--text-main) !important;
}

.combo-list-row span,
.combo-list-row small {
  color: inherit;
}

.combo-freight-box {
  margin-top: 4px;
}

.combo-freight-result {
  margin-top: 12px;
  color: var(--text-main);
}

.digital-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.info-item {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.info-item i {
  color: var(--brand);
  font-size: 18px;
}

.info-item b {
  color: var(--text-main);
  font-size: 14px;
}

.info-item span {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.5;
}

.related-product {
  padding: 18px 0 72px;
}

.related-product__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.related-product__item {
  min-width: 0;
}

.related-product__item .catalog-card-shell,
.related-product__item .featured__item,
.related-product__item .product__discount__item {
  height: 100%;
  margin-bottom: 0;
}

.related-product--combo .section-heading {
  margin-bottom: 24px;
}

.shoping-cart-page,
.checkout {
  padding-top: 28px !important;
}

.shoping-cart-page__surface {
  padding: 26px;
}

.shoping__cart__table table {
  width: 100%;
}

.shoping__cart__table table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.shoping__cart__table table td {
  padding: 18px 10px;
  vertical-align: middle;
  color: var(--text-soft);
}

.shoping__cart__item img {
  border-radius: 16px;
}

.shoping__cart__price {
  color: var(--brand) !important;
  font-weight: 800;
}

.cart-remove-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 72, 88, 0.34);
  background: rgba(255, 72, 88, 0.12);
  color: #ff6373 !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cart-remove-btn:hover {
  background: rgba(255, 72, 88, 0.2);
  color: #ffffff !important;
}

.checkout__form {
  padding: 28px !important;
  border-radius: 30px;
}

.checkout__form h4,
.checkout__order h4 {
  margin-bottom: 18px !important;
  font-size: 28px !important;
  font-weight: 700 !important;
}

.checkout__input p {
  color: var(--text-main) !important;
  font-size: 13px !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.checkout__order {
  padding: 26px;
  border-radius: 30px;
}

.checkout__order .checkout__order__products,
.checkout__order .checkout__order__subtotal,
.checkout__order .checkout__order__total {
  color: var(--text-main) !important;
  border-color: rgba(255, 255, 255, 0.07) !important;
}

.checkout__order ul li {
  color: var(--text-soft) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.checkout__order ul li span,
.checkout__order .checkout__order__subtotal span,
.checkout__order .checkout__order__total span {
  color: var(--brand) !important;
  font-weight: 800;
}

.modal-content {
  border-radius: 28px !important;
  overflow: hidden;
}

.modal-header,
.modal-body {
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.06) !important;
}

.modal-title,
.cart-inline-title,
.modal-header .close {
  color: var(--text-main) !important;
}

.close {
  opacity: 1 !important;
}

.table,
.table td,
.table th {
  color: var(--text-soft) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.nice-select {
  float: none !important;
  min-height: 54px;
  line-height: 54px !important;
  background: var(--bg-input) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 18px !important;
  color: var(--text-main) !important;
}

.nice-select .list {
  width: 100%;
  background: rgba(9, 14, 26, 0.98) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 18px !important;
}

.nice-select .option {
  color: var(--text-soft) !important;
}

.nice-select .option:hover,
.nice-select .option.selected {
  background: rgba(199, 255, 47, 0.08) !important;
  color: var(--brand) !important;
}

.pro-qty,
.pro-qty2 {
  width: 140px;
  height: 54px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: space-between;
  border-radius: 18px !important;
  background: var(--bg-input) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  overflow: hidden;
}

.pro-qty input,
.pro-qty2 input {
  width: 54px !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: rgba(255, 255, 255, 0.04) !important;
  color: var(--text-main) !important;
  text-align: center !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  box-shadow: none !important;
}

.pro-qty .qtybtn,
.pro-qty2 .qtybtn2 {
  width: 42px;
  height: 100%;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: var(--text-soft) !important;
  font-size: 18px !important;
  background: transparent !important;
}

.pro-qty .qtybtn:hover,
.pro-qty2 .qtybtn2:hover {
  color: var(--brand) !important;
}

lgpd-cookie {
  --cookie-bg: rgba(9, 14, 26, 0.96);
  --cookie-color: #f5f8ff;
}

@media (max-width: 1199px) {
  .site-header__actions {
    gap: 10px;
  }

  .header-action {
    min-width: 132px;
  }

  .hero-home__utility {
    grid-template-columns: minmax(0, 1fr);
  }

  .trust-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .announcement-bar__inner,
  .site-header__navrow,
  .header__top {
    display: none !important;
  }

  .header {
    position: static !important;
  }

  .site-header__main {
    grid-template-columns: 48px minmax(0, 1fr) 68px;
    gap: 14px;
    padding: 16px 0;
  }

  .brand-lockup__icon {
    width: 58px;
    height: 58px;
    border-radius: 20px;
  }

  .brand-lockup__copy strong {
    font-size: 21px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-lockup__wordmark {
    width: min(100%, 210px);
  }

  .brand-lockup__copy em {
    display: none;
  }

  .site-header__actions .header-action:not(.header-action--cart) {
    display: none;
  }

  .header-action--cart {
    min-width: auto;
    padding: 12px;
  }

  .header-action--cart .header-action__content {
    display: none;
  }

  .humberger__open {
    display: inline-flex;
  }

  .hero-home__grid {
    grid-template-columns: 1fr;
  }

  .hero-home__aside {
    order: 2;
  }

  .hero-home__main {
    order: 1;
  }

  .hero-home__stats,
  .digital-benefits,
  .digital-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .related-product__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product__details__pic {
    position: static;
    top: auto;
    margin-bottom: 18px;
  }

  .footer__cta,
  .footer__bottom,
  .section-heading__row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__cta {
    grid-template-columns: 1fr;
  }

  .hero-search-shell__surface,
  .footer__surface,
  .shoping-cart-page__surface,
  .checkout__form,
  .checkout__order,
  .latest-product__text,
  .sidebar__item,
  .product__details__pic,
  .product__details__text,
  .product__details__tab {
    padding: 22px;
  }
}

@media (max-width: 767px) {
  .container {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .announcement-bar {
    padding: 10px 0;
  }

  .site-header__main {
    grid-template-columns: minmax(0, 1fr) 54px 54px;
    gap: 10px;
    align-items: center;
  }

  .product__details__text h3 {
    font-size: 30px !important;
  }

  .product-quick-points,
  .digital-benefits,
  .digital-info-grid {
    grid-template-columns: 1fr;
  }

  .product-quick-points {
    display: grid;
  }

  .digital-price-box,
  .digital-buy-area,
  .digital-delivery-info,
  .digital-out-of-stock {
    border-radius: 22px;
  }

  .humberger__open {
    order: 3;
  }

  .header__logo {
    order: 1;
    min-width: 0;
  }

  .site-header__actions {
    order: 2;
    width: 54px;
    justify-content: center;
  }

  .brand-lockup {
    gap: 12px;
    justify-content: flex-start;
  }

  .site-header .brand-lockup__icon {
    display: none;
  }

  .brand-lockup__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .brand-lockup__copy strong {
    font-size: 18px;
  }

  .brand-lockup__wordmark {
    width: min(100%, 180px);
  }

  .site-header .brand-lockup__wordmark {
    display: block;
    width: min(100%, 168px);
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-header .brand-lockup__fallback {
    display: none;
  }

  .header-action--cart {
    width: 54px;
    min-width: 54px;
    padding: 8px;
    justify-content: center;
  }

  .header-action__icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
  }

  .header-action__badge {
    min-width: 20px;
    height: 20px;
    top: -5px;
    right: -5px;
  }

  .hero-home {
    padding-top: 16px !important;
  }

  .hero-home__main,
  .hero-search-shell__surface {
    padding: 14px;
    border-radius: 24px;
    min-width: 0;
  }

  .hero-home__aside {
    border-radius: 24px;
    min-width: 0;
    order: 1;
  }

  .hero-home__main {
    order: 2;
  }

  .hero__categories__all {
    min-height: 58px;
    padding: 0 16px !important;
  }

  .hero__categories__all span {
    min-width: 0;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-home__utility,
  .hero-search-shell__surface .row {
    gap: 12px;
  }

  .hero-home__utility {
    margin-bottom: 12px;
  }

  .hero-home__main .row,
  .hero-search-shell__surface .row {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-home__main [class*="col-"],
  .hero-search-shell__surface [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
  }

  .hero__search__form form {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__search__form form input,
  .hero__search__form form button {
    height: 56px !important;
  }

  .hero__search__form form button {
    margin-top: 0;
    border-radius: 0 0 18px 18px !important;
  }

  .hero-home__support,
  .hero__search__phone {
    min-height: 56px;
    padding: 0 14px;
    width: 100%;
  }

  .hero__item {
    display: block !important;
    min-height: 0 !important;
    height: auto !important;
  }

  .hero__item--home {
    min-height: 0 !important;
    aspect-ratio: 1376 / 768;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: top center !important;
    background-color: rgba(7, 11, 20, 0.96) !important;
  }

  .hero__text {
    width: 100%;
    padding: 24px 20px 18px;
  }

  .hero__text h2 {
    max-width: none;
    font-size: 26px !important;
  }

  .hero__text p {
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  .hero-home__actions {
    gap: 10px;
    margin-top: 20px;
  }

  .hero-home__actions .primary-btn,
  .hero-home__actions .secondary-btn {
    min-height: 48px;
    padding: 0 18px !important;
    font-size: 12px !important;
  }

  .hero-home__stats {
    gap: 10px;
    margin-top: 16px;
  }

  .hero-home__stat {
    padding: 14px 16px;
  }

  .hero-home__stat strong {
    font-size: 20px;
  }

  .hero-home__stats,
  .digital-benefits,
  .digital-info-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .trust-strip__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 10px;
    border-radius: 18px;
  }

  .trust-strip__item i {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 15px;
  }

  .trust-strip__item strong {
    font-size: 11px;
    line-height: 1.2;
  }

  .trust-strip__item span {
    margin-top: 3px;
    font-size: 9px;
    line-height: 1.25;
  }

  .section-heading h2,
  .section-title h2 {
    font-size: 22px !important;
    line-height: 1.08 !important;
  }

  .featured__controls ul,
  .hero-home__quicklinks,
  .site-header__microcopy {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .categories__item,
  .featured__item__pic,
  .product__discount__item__pic {
    min-height: 220px;
    height: 220px !important;
  }

  .categories__item__content {
    width: 100%;
    min-height: 76px;
    padding: 12px 14px;
  }

  .categories__item h5 a {
    max-width: none;
    font-size: 15px !important;
  }

  .featured__filter > [class*="col-"] {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    padding-left: 6px !important;
    padding-right: 6px !important;
  }

  .related-product__grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 180px));
    justify-content: center;
    gap: 12px;
  }

  .featured .featured__filter {
    margin-left: -6px;
    margin-right: -6px;
  }

  .featured__item,
  .product__discount__item {
    border-radius: 18px;
  }

  .featured__item__pic,
  .product__discount__item__pic {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 18 / 25;
    border-radius: 18px 18px 0 0;
  }

  .related-product__item .featured__item__pic,
  .related-product__item .product__discount__item__pic {
    aspect-ratio: 18 / 25 !important;
    background-size: cover !important;
    background-position: center center !important;
    background-color: transparent !important;
  }

  .product__discount__percent {
    top: 10px !important;
    left: 10px !important;
    min-width: 54px;
    height: 28px;
    font-size: 11px !important;
  }

  .featured__item__text,
  .product__discount__item__text,
  .product__item__text {
    padding: 12px 10px 14px !important;
  }

  .related-product__item {
    width: 180px;
  }

  .featured__item__text h6,
  .featured__item__text h6 a,
  .product__discount__item__text h5,
  .product__discount__item__text h5 a,
  .product__item__text h6,
  .product__item__text h6 a {
    font-size: 12px !important;
    line-height: 1.25 !important;
  }

  .featured__item__text h5,
  .product__discount__item__text .product__item__price,
  .product__item__text h5 {
    font-size: 14px !important;
    line-height: 1.15 !important;
  }

  .product__discount__item__text .product__item__price span {
    display: block;
    margin-right: 0;
    margin-bottom: 4px;
    font-size: 11px !important;
  }

  .latest-product__item__pic img {
    height: 96px;
  }

  .footer__surface,
  .footer__cta,
  .latest-product__text,
  .shoping-cart-page__surface,
  .checkout__form,
  .checkout__order,
  .modal-content {
    border-radius: 24px;
  }

  .footer__widget form {
    grid-template-columns: 1fr;
  }

  .shoping__cart__table {
    overflow: visible;
  }

  .product__details__tab .nav-tabs {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 24px !important;
  }

  .product__details__tab .nav-tabs li {
    width: 100%;
    margin: 0 !important;
  }

  .product__details__tab .nav-tabs li:nth-child(3) {
    grid-column: 1 / -1;
  }

  .product__details__tab .nav-tabs li a {
    width: 100%;
    min-height: 52px;
    padding: 0 12px !important;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px !important;
  }

  .product__details__tab .tab-content {
    padding: 16px 4px 0 !important;
  }

  .product__details__tab__desc h6 {
    font-size: 20px !important;
    line-height: 1.2 !important;
  }

  .product__details__tab__desc p,
  .product__details__tab__desc span,
  .product__details__tab__desc small {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .shoping-cart-page__surface {
    padding: 18px !important;
    overflow: hidden;
  }

  .shoping-cart-page .section-heading__row {
    gap: 14px;
  }

  .shoping-cart-page .section-link {
    min-height: 44px;
  }

  .shoping__cart__table table,
  .shoping__cart__table tbody {
    display: block;
    width: 100%;
  }

  .shoping__cart__table table tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "item remove"
      "meta meta"
      "price qty";
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .shoping__cart__table table td {
    display: block;
    width: auto !important;
    max-width: 100%;
    min-width: 0;
    padding: 0 !important;
    border: 0 !important;
  }

  .shoping__cart__table table td.shoping__cart__item:first-child {
    grid-area: item;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    width: 100% !important;
    min-width: 0;
  }

  .shoping__cart__item img {
    width: 64px !important;
    height: 64px;
    object-fit: cover;
    grid-column: 1;
  }

  .shoping__cart__item h5 {
    display: block !important;
    width: 100%;
    max-width: 100%;
    margin: 0 !important;
    min-width: 0;
    grid-column: 2;
    overflow: hidden;
  }

  .shoping__cart__item h5 small,
  .shoping__cart__item h5 a {
    display: block;
    width: 100%;
    max-width: 100%;
    color: var(--text-main) !important;
    font-size: 14px !important;
    line-height: 1.3 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .shoping__cart__table table td.shoping__cart__item:nth-child(2) {
    grid-area: meta;
  }

  .shoping__cart__price {
    grid-area: price;
    align-self: center;
    font-size: 20px !important;
    line-height: 1.15;
  }

  .shoping__cart__quantity {
    grid-area: qty;
    justify-self: end;
  }

  .shoping__cart__item__close {
    grid-area: remove;
    justify-self: end;
    align-self: start;
    width: 112px !important;
  }

  .shoping__cart__item__close .cart-remove-btn {
    width: 112px !important;
    min-width: 112px;
    max-width: 112px;
    box-sizing: border-box;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 14px;
    font-size: 11px;
  }

  .shoping__cart__item__close .cart-remove-btn span {
    color: inherit !important;
    font-size: inherit !important;
    cursor: inherit !important;
  }

  .shoping-cart-page__surface > .row.p-3 {
    margin: 0 !important;
    padding: 18px 0 0 !important;
    gap: 12px;
  }

  .shoping-cart-page__surface > .row.p-3 > [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: left !important;
  }

  .shoping-cart-page__surface > .row.p-3 h4 {
    font-size: 24px !important;
  }

  .shoping-cart-page #btn-comprar,
  .shoping-cart-page #btn-finalizar {
    display: flex;
    width: 100%;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    margin: 0 0 10px !important;
    border-radius: 999px !important;
  }

  .digital-qty-row {
    flex-direction: column;
    align-items: stretch;
  }

  .combo-list-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .site-header__main {
    grid-template-columns: minmax(0, 1fr) 52px 52px;
  }

  .site-header__actions {
    width: 52px;
  }

  .header-action--cart,
  .humberger__open {
    width: 52px;
    min-width: 52px;
  }

  .site-header .brand-lockup__wordmark {
    width: min(100%, 140px);
  }

  .featured__filter > [class*="col-"] {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }

  .featured__item__pic,
  .product__discount__item__pic {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    aspect-ratio: 16 / 11;
  }

  .related-product__item .featured__item__pic,
  .related-product__item .product__discount__item__pic {
    aspect-ratio: 18 / 25 !important;
    background-size: cover !important;
    background-position: center center !important;
    background-color: transparent !important;
  }

  .product-card-shell__cta {
    width: calc(100% + 20px);
    margin-left: -10px;
    margin-right: -10px;
    border-radius: 10px 10px 18px 18px;
  }

  .categories__item {
    min-height: 260px;
  }

  .product__details__pic,
  .product__details__text,
  .product__details__tab,
  .checkout__form,
  .checkout__order {
    padding: 18px;
  }
}

@media (max-width: 430px) {
  .site-header__main {
    grid-template-columns: minmax(0, 1fr) 50px 50px;
    padding: 14px 0;
    gap: 8px;
  }

  .site-header__actions {
    width: 50px;
  }

  .header-action--cart,
  .humberger__open {
    width: 50px;
    min-width: 50px;
    height: 50px;
  }

  .site-header .brand-lockup__wordmark {
    width: min(100%, 126px);
  }

  .hero-home__main,
  .hero-home__aside,
  .hero-search-shell__surface {
    padding: 12px;
    border-radius: 22px;
  }

  .hero__categories__all {
    justify-content: flex-start;
    gap: 12px;
    min-height: 54px;
    padding: 0 14px !important;
  }

  .hero__categories__all span {
    font-size: 14px;
  }

  .hero__search__form form input {
    height: 52px !important;
    padding: 0 16px !important;
    font-size: 13px !important;
  }

  .hero__search__form form button {
    height: 52px !important;
  }

  .hero__search__phone {
    min-height: 52px;
    padding: 0 12px;
  }

  .hero__search__phone__icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    font-size: 17px;
  }

  .hero__search__phone__text h6 {
    font-size: 14px !important;
  }

  .hero__search__phone__text span {
    font-size: 11px !important;
  }

  .hero__text {
    padding: 22px 18px 16px;
  }

  .hero__item--home {
    aspect-ratio: 1376 / 768;
    background-position: center center !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
  }

  .hero__text span {
    min-height: 34px;
    padding: 0 14px;
    font-size: 10px !important;
    margin-bottom: 16px !important;
  }

  .hero__text h2 {
    font-size: 22px !important;
    line-height: 1.02 !important;
  }

  .hero__text p {
    font-size: 13px !important;
  }

  .hero-home__actions {
    display: grid;
    gap: 10px;
  }

  .hero-home__actions .primary-btn,
  .hero-home__actions .secondary-btn {
    width: 100%;
    min-height: 46px;
  }

  .hero-home__stat {
    padding: 12px 14px;
  }

  .hero-home__stat strong {
    font-size: 18px;
  }

  .section-heading h2,
  .section-title h2 {
    font-size: 20px !important;
  }

  .featured__filter > [class*="col-"] {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }

  .featured__item__pic,
  .product__discount__item__pic {
    aspect-ratio: 17 / 23;
  }
}

@media (max-width: 767px) {
  body {
    --mobile-product-card-gap: 12px;
    --mobile-product-card-max: 180px;
    --mobile-product-grid-max: calc((var(--mobile-product-card-max) * 2) + var(--mobile-product-card-gap));
  }

  .product.spad > .container > .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .product.spad > .container > .row > [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .product.spad > .container > [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .featured .featured__filter {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    justify-items: center;
    align-items: start;
    column-gap: var(--mobile-product-card-gap);
    row-gap: 20px;
    width: 100%;
    max-width: var(--mobile-product-grid-max);
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .row:has(> [class*="col-"] > .catalog-card-shell),
  .row:has(> [class*="col-"] > .product__item.catalog-card-shell),
  .row:has(> [class*="col-"] > .product__discount__item.catalog-card-shell),
  .product__discount__slider:has(> [class*="col-"] > .catalog-card-shell) {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    justify-items: center;
    align-items: start;
    column-gap: var(--mobile-product-card-gap);
    row-gap: 20px;
    width: 100%;
    max-width: var(--mobile-product-grid-max);
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .featured .featured__filter > [class*="col-"],
  .featured__filter > [class*="col-"],
  .row:has(> [class*="col-"] > .catalog-card-shell) > [class*="col-"],
  .product__discount__slider:has(> [class*="col-"] > .catalog-card-shell) > [class*="col-"] {
    width: 100% !important;
    max-width: var(--mobile-product-card-max) !important;
    min-width: 0 !important;
    flex: 0 1 var(--mobile-product-card-max) !important;
    display: flex;
    justify-content: stretch;
    align-items: flex-start;
    justify-self: center;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 0 !important;
  }

  .featured__filter .product-card-shell,
  .related-product__grid .product-card-shell,
  .catalog-card-shell {
    width: 100% !important;
    min-width: 0 !important;
    max-width: var(--mobile-product-card-max) !important;
    flex: 0 1 var(--mobile-product-card-max) !important;
    height: 250px !important;
    max-height: 250px !important;
    min-height: 250px !important;
    align-self: flex-start;
    box-sizing: border-box;
    overflow: hidden;
  }

  .product-card-shell__body {
    flex: 1 1 auto !important;
    justify-content: space-between;
    padding-bottom: 0 !important;
  }

  .catalog-card__body {
    flex: 1 1 auto !important;
    justify-content: space-between;
    padding-bottom: 0 !important;
  }

  .product-card-shell__cta,
  .catalog-card__cta {
    margin-bottom: 0 !important;
  }

  .featured__filter .product-card-shell .featured__item__pic,
  .featured__filter .product-card-shell .product__discount__item__pic,
  .related-product__grid .product-card-shell .featured__item__pic,
  .related-product__grid .product-card-shell .product__discount__item__pic,
  .catalog-card-shell .product__item__pic,
  .catalog-card-shell .product__discount__item__pic {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 16 / 11 !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-color: #111318 !important;
  }

  .product-details + .related-product .related-product__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    justify-items: center;
    align-items: stretch;
    width: 100%;
    max-width: var(--mobile-product-grid-max);
    column-gap: var(--mobile-product-card-gap);
    row-gap: 20px;
    margin-left: auto;
    margin-right: auto;
  }

  .product-details + .related-product .related-product__item,
  .product-details + .related-product .product-card-shell {
    width: 100%;
    max-width: var(--mobile-product-card-max);
    min-width: 0;
  }

  .product-details + .related-product .product-card-link--media {
    display: block;
    width: 100%;
    line-height: 0;
    background: #111318;
  }

  .product-details + .related-product .product-card-shell .featured__item__pic,
  .product-details + .related-product .product-card-shell .product__discount__item__pic {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 16 / 11 !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-color: #111318 !important;
    border-radius: 18px 18px 0 0 !important;
  }
}
