* {
  box-sizing: border-box;
}

body {
  background-color: #101010;
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
}

@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/fonts/Anton/Anton-Regular.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 200;
  src: url("/assets/fonts/Roboto/roboto-light.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/fonts/Roboto/roboto-regular.woff2") format("woff2");
  font-display: swap;
}

.cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-count-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #d00c16;
  color: #f8f2de;
  font-size: 0.72rem;
  line-height: 18px;
  font-weight: 500;
  text-align: center;
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.cart-count-badge.is-visible {
  opacity: 1;
  transform: scale(1);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.cart-overlay.is-visible {
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1300;
  width: min(440px, 100%);
  height: 100dvh;
  background: #111;
  color: #f8f2de;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.4rem 1rem;
  border-bottom: 1px solid rgba(248, 242, 222, 0.12);
}

.cart-drawer__header h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 400;
}

.cart-drawer__close {
  border: 0;
  background: transparent;
  color: #f8f2de;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.cart-drawer__close img {
  width: 20px;
  height: 20px;
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.2rem;
}

.cart-drawer__footer {
  padding: 1.2rem;
  border-top: 1px solid rgba(248, 242, 222, 0.12);
}

.cart-drawer__subtotal-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 200;
}

.cart-drawer__actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1rem;
}

.cart-drawer__actions button {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 1.2rem;
  border-radius: 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
  appearance: none;
  -webkit-appearance: none;
}

.cart-drawer__actions button:active {
  transform: scale(0.995);
}

.cart-drawer__actions [data-cart-clear] {
  background: transparent;
  border: 1px solid rgba(248, 242, 222, 0.16);
  color: rgba(248, 242, 222, 0.88);
}

.cart-drawer__actions [data-cart-clear]:hover {
  background: rgba(248, 242, 222, 0.05);
  border-color: rgba(248, 242, 222, 0.3);
  color: #f8f2de;
}

.cart-drawer__actions [data-cart-checkout] {
  background: #d00c16;
  border: 1px solid #d00c16;
  color: #f8f2de;
}

.cart-drawer__actions [data-cart-checkout]:hover {
  background: #b40a12;
  border-color: #b40a12;
}

.cart-empty {
  padding: 2rem 0;
}

.cart-empty p {
  margin: 0;
  color: rgba(248, 242, 222, 0.75);
}

.cart-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(248, 242, 222, 0.1);
}

.cart-item__image img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.cart-item__title {
  margin: 0 0 0.55rem;
  font-size: 1rem;
  font-weight: 400;
  color: #f8f2de;
}

.cart-item__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
  font-weight: 200;
  color: rgba(248, 242, 222, 0.85);
}

.cart-item__controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.cart-item__controls button,
.cart-item__controls input {
  height: 38px;
}

.cart-item__controls button {
  border: 1px solid rgba(248, 242, 222, 0.18);
  background: transparent;
  color: #f8f2de;
  padding: 0 0.8rem;
  border-radius: 8px;
  cursor: pointer;
}

.cart-item__controls input {
  width: 62px;
  text-align: center;
  border: 1px solid rgba(248, 242, 222, 0.18);
  background: transparent;
  color: #f8f2de;
  border-radius: 8px;
}

.cart-item__remove {
  margin-left: auto;
}

html.cart-open,
body.cart-open {
  overflow: hidden;
}

.promo-bar {
  z-index: 1200;
  width: 100%;
  height: 44px;
  display: flex;
  align-items: center;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  transition: transform 0.25s ease;
}

body.promo-hidden .promo-bar {
  transform: translate3d(0, -100%, 0);
  pointer-events: none;
}

.promo-inner {
  width: 100%;
  padding: 0 3.8rem;
  box-sizing: border-box;
  overflow: hidden;
}

.promo-track {
  display: flex;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  animation: promo-scroll var(--dur, 28s) linear infinite;
}

.promo-seq {
  display: flex;
  align-items: center;
  gap: 3.8rem;
  padding-right: 3.8rem;
}

.promo-unit {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  white-space: nowrap;
}

.promo-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #f8f2de;
  font-size: 0.95rem;
  font-weight: 200;
  text-decoration: none;
  white-space: nowrap;
  opacity: 0.95;
}

.promo-item img {
  width: 16px;
  height: 16px;
  display: block;
  opacity: 0.9;
}

.promo-dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(248, 242, 222, 0.55);
  display: inline-block;
  flex: 0 0 auto;
  font-size: 0;
  line-height: 0;
}

.promo-bar:hover .promo-track,
.promo-bar:focus-within .promo-track {
  animation-play-state: paused;
}

@keyframes promo-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(calc(-1 * var(--shift, 0px)), 0, 0);
  }
}

.header-desktop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  margin-top: 30px;
  padding: 1.4rem 3.8rem;
}

.header-desktop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 1.4rem 3.8rem;
  transition: all 0.3s ease-in-out;
}

header.scrolled {
  background: linear-gradient(
    0deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 0.8) 100%
  );
  margin-top: 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left,
.nav-center,
.nav-right {
  display: flex;
  align-items: center;
}

.nav-left {
  justify-content: flex-start;
  min-width: 120px;
}

.nav-center {
  justify-content: center;
  flex: 1;
  margin-top: 1.5rem;
  gap: 1.4rem;
}

.nav-right {
  justify-content: flex-end;
  min-width: 120px;
  margin-top: 1.5rem;
  gap: 1rem;
}

.logo img {
  width: 75px;
  height: auto;
  display: block;
  transition: all 0.3s ease-in-out;
}

header.scrolled .logo img {
  width: 65px;
}

.nav-center a {
  color: #f8f2de;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 200;
}

.current-page {
  color: #d00c16 !important;
}

.nav-center a.current-page {
  position: relative;
  z-index: 1;
}

.lang {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #f8f2de;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 200;
}

.cart img {
  width: 20px;
  height: 20px;
  display: block;
}

.mobile-header {
  display: none;
  width: 100%;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  padding: 15px;
  background: linear-gradient(
    0deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 0.8) 100%
  );
}

.mobile-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-menu {
  background: transparent;
  border: none;
}

.line-menu {
  background-color: #f8f2de;
  width: 25px;
  height: 1px;
  margin-bottom: 5px;
}

.line-small {
  background-color: #f8f2de;
  width: 20px;
  height: 1px;
  margin-bottom: 5px;
  float: right;
}

.menu-mobile {
  display: none;
  background-color: #101010;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  height: 100%;
  height: 100dvh;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10000;
}

.menu-mobile-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.menu-close {
  height: 20px;
  position: relative;
  width: 20px;
}

.menu-closing {
  position: absolute;
  right: 1.4rem;
  top: 1.8rem;
}

.menu-links {
  display: flex;
  flex-direction: column;
  top: 20%;
  left: 1.4rem;
  padding: 30% 2rem 2rem 2rem;
}

.menu-mobile-bottom {
  padding-bottom: 1rem;
}

.menu-links a {
  text-decoration: none;
  padding: 0.7rem 0;
  color: #f8f2de;
  font-weight: 200;
  font-size: 2rem;
  line-height: 2rem;
}

.menu-divider {
  display: block;
  margin: 2rem 2rem 0 auto;
  width: calc(100% - 4rem);
  height: 2px;
}

.menu-divider line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.language-switch {
  display: flex;
  color: #f8f2de;
  font-weight: 200;
  font-size: 1.5rem;
  line-height: 2rem;
  padding: 0.8rem 0 0 1.5rem;
}

.language-switch a {
  text-decoration: none;
  color: #f8f2de;
  margin: 0 0.5rem;
}

.product-hero {
  --text: #f8f2de;
  --radius: 15px;
  --accent: 215 40 40;
  --ok: 80 210 130;
  color: var(--text);
  padding: 12rem 8rem 8rem 8rem;
  background:
    radial-gradient(
      1200px 600px at 20% 10%,
      rgba(var(--accent), 0.16),
      transparent 55%
    ),
    radial-gradient(
      900px 500px at 85% 25%,
      rgba(120, 120, 120, 0.1),
      transparent 60%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0));
}

.product-breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 2rem;
  color: rgba(248, 242, 222, 0.58);
  font-size: 0.95rem;
  font-weight: 300;
}

.product-breadcrumb a {
  color: rgba(248, 242, 222, 0.72);
  text-decoration: none;
  transition:
    color 220ms ease,
    opacity 220ms ease;
  font-weight: 200;
}

.product-breadcrumb a:hover {
  color: #f8f2de;
}

.product-breadcrumb span[aria-current="page"] {
  color: #f8f2de;
}

.product-hero.theme--blue {
  --accent: 70 120 255;
}
.product-hero.theme--grey {
  --accent: 170 170 170;
}
.product-hero.theme--red {
  --accent: 215 40 40;
}

.product-hero__wrap {
  margin: 0 auto;
}

.product-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-size: 0.9rem;
  color: #b7b7b7;
  text-decoration: none;

  margin-bottom: 18px;
  opacity: 0.85;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.product-back-link img {
  width: 14px;
  height: 14px;
  opacity: 0.8;
}

.product-back-link:hover {
  opacity: 1;
  transform: translateX(-3px);
}

.product-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 2.8rem;
  align-items: stretch;
  width: 100%;
}

.product-gallery__layout {
  display: flex;
  gap: 1rem;
  height: 100%;
  min-height: 0;
}

.product-gallery__thumbs {
  flex: 0 0 86px;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding-top: 0.15rem;
}

.product-gallery__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition:
    transform 450ms ease,
    filter 450ms ease;
  filter: contrast(1.05) saturate(1.02);
  cursor: s-resize;
}

.product-thumb {
  width: 86px;
  height: 86px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
  padding: 0;
  cursor: pointer;
  display: block;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
}

.product-thumb:hover {
  border-color: rgba(var(--accent), 0.5);
  transform: translateY(-1px);
}

.product-thumb.is-active {
  border-color: rgba(var(--accent), 0.85);
  box-shadow: 0 0 0 3px rgba(var(--accent), 0.18);
}

.product-gallery__enlarge {
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    opacity 200ms ease,
    transform 200ms ease;
  pointer-events: none;
}

.product-gallery__enlarge img {
  width: 20px;
  height: 20px;
}

.product-gallery__frame:hover .product-gallery__enlarge {
  opacity: 1;
  transform: translateY(0);
}

.product-info {
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: transparent;
  box-shadow: none;
  border: none;
  padding: 0.4rem 0 0.4rem 1.2rem;
  position: relative;
}

.product-info::before {
  content: "";
  position: absolute;
  left: -0.9rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 18%,
    rgba(255, 255, 255, 0.06) 82%,
    transparent 100%
  );
  opacity: 0.9;
  pointer-events: none;
}

.product-info__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.05rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(239, 233, 227, 0.86);
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  backdrop-filter: blur(6px);
}

.badge--soft {
  background: rgba(255, 255, 255, 0.02);
}

.badge--stock {
  border-color: rgba(var(--ok), 0.45);
  background: rgba(var(--ok), 0.1);
  color: #f8f2de;
}

.adult-badge {
  color: #d00c16;
}

.badge--stock::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #47e61766;
  box-shadow: 0 0 16px rgba(var(--ok), 0.35);
  display: inline-block;
  margin-right: 0.45rem;
}

.product-title {
  font-family: "Anton", sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: clamp(2rem, 2.4vw, 2.6rem);
  margin: 0;
  font-size: 3rem;
  line-height: 1.05;
}

.product-price {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 200;
}

.price__current {
  font-size: 2.15rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.currency {
  opacity: 0.85;
  margin-right: 0.2rem;
}

.price__note {
  color: #f8f2de;
  font-size: 0.95rem;
}

.price-sub {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.price__old {
  color: #f8f2de;
  text-decoration: line-through;
  font-weight: 200;
}

.product-short {
  margin: 1.1rem 0 0.9rem;
  color: #f8f2de;
  line-height: 1.55;
  font-weight: 200;
}

.product-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.55rem;
  font-weight: 200;
}

.product-highlights li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #f8f2de;
  list-style: none;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background-color: #f8f2de;
  box-shadow: 0 0 22px rgba(var(--accent), 0.25);
}

/* Optional: zusätzliche Akzent-Themes passend zu Farben */
.product-hero.theme--gold {
  --accent: 200 170 90;
}
.product-hero.theme--purple {
  --accent: 155 90 255;
}
.product-hero.theme--dark {
  --accent: 140 140 140;
}

/* Farbwahl (Varianten) */
.variant-picker {
  margin: 0.15rem 0 1rem;
}

.variant-picker__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.65rem;
}

.variant-picker__label {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(239, 233, 227, 0.86);
  font-weight: 300;
}

.variant-picker__selected {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(239, 233, 227, 0.72);
  font-weight: 200;
}

.variant-picker__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.variant-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.52rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(239, 233, 227, 0.92);
  cursor: pointer;
  transition:
    transform 200ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
  font-weight: 200;
  font-size: 0.95rem;
  user-select: none;
  font-family: "Roboto", sans-serif;
  font-weight: 200;
}

.variant-btn:hover {
  border-color: rgba(var(--accent), 0.5);
  transform: translateY(-1px);
}

.variant-btn.is-active,
.variant-btn[aria-checked="true"] {
  border-color: rgba(var(--accent), 0.85);
  box-shadow: 0 0 0 3px rgba(var(--accent), 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.variant-btn:focus-visible {
  outline: none;
  border-color: rgba(var(--accent), 0.85);
  box-shadow: 0 0 0 4px rgba(var(--accent), 0.18);
}

.swatch {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--swatch, rgba(255, 255, 255, 0.35));
  box-shadow: 0 0 18px rgba(var(--accent), 0.12);
  flex: 0 0 16px;
}

.variant-name {
  line-height: 1;
  font-weight: 200 !important;
}

.product-options {
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.buy-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 1rem;
}

.qty-picker {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.qty-picker__btn,
.qty-picker__input {
  height: 52px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: #f8f2de;
}

.qty-picker__btn {
  width: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition:
    transform 200ms ease,
    border-color 260ms ease,
    background 260ms ease,
    opacity 260ms ease;
}

.qty-picker__btn:hover {
  background: rgba(248, 242, 222, 0.04);
  border-color: rgba(248, 242, 222, 0.18);
}

.qty-picker__btn:active {
  transform: scale(0.97);
}

.qty-picker__btn img {
  width: 14px;
  height: 14px;
  display: block;
  margin: 0;
}

.qty-picker__input {
  width: 82px;
  padding: 0 12px;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  appearance: textfield;
  -moz-appearance: textfield;
}

.qty-picker__input::-webkit-outer-spin-button,
.qty-picker__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-hero__wrap .btn {
  height: 52px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  letter-spacing: 0.01em;
  transition:
    transform 200ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease,
    background 260ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #f8f2de;
  user-select: none;
  font-family: "Roboto", sans-serif !important;
  font-weight: 200;
  font-size: 1.1rem;
}

.product-hero__wrap .btn:hover {
  background-color: #d00c16;
  border: none;
}

.product-hero__wrap .btn img {
  margin-top: 2px;
}

.btn--primary {
  border-color: #f8f2de;
  color: #f8f2de;
  background-color: #d00c16;
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.55),
    0 18px 70px rgba(var(--accent), 0.16);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 90px rgba(0, 0, 0, 0.62),
    0 26px 110px rgba(var(--accent), 0.2);
}

.btn--primary:active {
  transform: translateY(0px);
}

.btn--buy {
  flex: 1 1 auto;
  min-width: 0;
}

.btn--buy img {
  margin-top: 2px;
}

.btn__arrow {
  font-size: 1.25rem;
  line-height: 1;
  transform: translateY(-1px);
  opacity: 0.9;
}

.product-actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 0.85rem;
}

.btn--share {
  height: 40px !important;
  padding: 0 0.9rem;
  border-radius: 999px !important;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  color: rgba(239, 233, 227, 0.78);
  font-weight: 200;
  font-size: 0.92rem !important;
  gap: 0.55rem;
  box-shadow: none;
}

.btn--share img {
  width: 16px;
  height: 16px;
  margin-top: -1px;
}

.btn--share:hover {
  border-color: rgba(var(--accent), 0.45) !important;
  color: rgba(239, 233, 227, 0.92);
  box-shadow: 0 16px 60px rgba(var(--accent), 0.1);
  transform: translateY(-1px);
  background: transparent !important;
}

.btn--share:active {
  transform: translateY(0);
}

@media (max-width: 640px) {
  .buy-row {
    gap: 12px;
  }

  .qty-picker {
    gap: 8px;
  }

  .qty-picker__btn {
    width: 48px;
    height: 48px;
  }

  .qty-picker__input {
    width: 68px;
    height: 48px;
  }

  .btn--buy {
    height: 48px !important;
  }
}

.trust {
  margin-top: 2.1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 1.3rem;
}

.trust-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.7rem;
  align-items: start;
}

.trust-item img {
  width: 22px;
  height: 22px;
  fill: rgba(var(--accent), 0.85);
  filter: drop-shadow(0 0 16px rgba(var(--accent), 0.2));
  margin-top: 2px;
}

.trust-title {
  margin: 0;
  font-weight: 300;
  font-size: 1.1rem;
  color: #f8f2de;
}

.trust-sub {
  margin: 0.15rem 0 0;
  color: #f8f2de;
  font-weight: 200;
  font-size: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.product-info-bottom {
  margin: 0 8rem 6rem 8rem;
}

.product-info-bottom h3 {
  font-family: "Anton", sans-serif;
  font-weight: 500;
  font-size: 1.9rem;
  color: #f8f2de;
  margin-bottom: 0rem;
  margin-top: 1rem;
}

.product-info-bottom p {
  color: #f8f2de;
  font-weight: 200;
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

.header-slider h2 {
  font-family: "Anton", sans-serif;
  font-weight: 500;
  font-size: 3rem;
  color: #f8f2de;
  margin-bottom: 2rem;
  margin-top: 0;
}

.product-grid-section {
  padding: clamp(18px, 2.2vw, 26px);
  background:
    radial-gradient(
      1200px 280px at 25% 20%,
      rgba(255, 40, 0, 0.18),
      rgba(0, 0, 0, 0) 60%
    ),
    radial-gradient(
      1200px 280px at 75% 30%,
      rgba(255, 120, 0, 0.1),
      rgba(0, 0, 0, 0) 62%
    ),
    linear-gradient(180deg, #101010 0%, #101010 100%);
  padding: 2rem 8rem 8rem 8rem;
}

.second-product-grid {
  padding: 6rem 8rem;
}

.product-grid {
  gap: 6rem 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-card__media {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.bestseller-badge {
  position: absolute;
  top: 0;
  right: -2px;
  width: 90px;
  pointer-events: none;
}

.poduct-img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  transform: translateZ(0);
  -webkit-user-drag: none;
  user-select: none;
  border-radius: 15px;
}

.product-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.product-card__title {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.2px;
  font-weight: 500;
  text-transform: uppercase;
  color: #efe9e3;
}

.product-card__price {
  font-size: 1.3rem;
  font-weight: 200;
  color: #efe9e3;
  white-space: nowrap;
}

.product-card__desc {
  margin: 6px 0 0;
  font-weight: 200;
  font-size: 1rem;
  line-height: 1.35;
  color: #efe9e3;
  max-width: 80%;
}

.product-card__actions {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.product-card__actions .btn {
  color: #f8f2de;
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 200;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.15s ease,
    filter 0.15s ease,
    opacity 0.15s ease;
  user-select: none;
  white-space: nowrap;
}

.product-card__actions .btn--light {
  background: #f8f2de;
  color: #1b1b1b;
}

.product-card__actions .btn--red {
  background: #6b0000;
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
  }
  .product-card__media:hover .poduct-img {
    transform: scale(1.03);
    transition: transform 0.35s ease;
  }
}

.btn:focus-visible,
.product-card__media:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 3px;
}

footer {
  background-color: #191919;
  padding: 2rem 8rem 0 8rem;
}

.footer-logo {
  width: 65px;
  height: auto;
}

.footer-slogan {
  color: #f8f2de;
  font-weight: 200;
  font-size: 1.1rem;
  width: 60%;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  margin: 4rem 0;
}

.footer-links div {
  width: 25%;
  display: flex;
  flex-direction: column;
}

.footer-links h4 {
  color: #f8f2de;
  font-weight: 300;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.footer-links a {
  text-decoration: none;
  color: #f8f2de;
  font-weight: 200;
  line-height: 1.4rem;
  font-size: 1rem;
  display: inline-block;
}

.footer-logos {
  display: flex;
  gap: 1rem;
}

.footer-line {
  width: 100%;
  height: 1px;
  background-color: #3a3838;
  margin-top: 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #f8f2de;
  font-weight: 200;
  font-size: 0.9rem;
}

.footer-bottom a {
  text-decoration: none;
  color: #f8f2de;
  font-weight: 200;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .header-desktop {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
  .hero-text {
    left: 1rem;
    width: calc(100% - 2rem);
    right: 1rem;
    bottom: 20%;
  }

  .product-hero {
    padding: 10rem 1rem 6rem 1rem;
  }
  .product-hero__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  figure {
    margin: 0;
  }
  .product-gallery__layout {
    flex-direction: column-reverse;
  }
  .product-gallery__thumbs {
    flex-direction: row;
  }
  .product-info {
    padding: 1.2rem 0 0;
  }
  .product-info::before {
    display: none;
  }
  .product-gallery__frame {
    min-height: 520px;
  }
  .buy-row {
    grid-template-columns: 65px 1fr;
  }
  .product-actions {
    justify-content: flex-start;
  }
  .product-gallery__frame {
    min-height: 440px;
  }
  .product-title {
    width: 100%;
    font-size: 2rem;
    line-height: 2.7rem;
  }
  .price__current {
    font-size: 2rem;
  }
  .product-short {
    font-size: 1.1rem;
  }
  .product-highlights li {
    font-size: 1.1rem;
  }
  .qty input {
    font-size: 1.1rem;
  }
  .product-info-bottom {
    margin: 0 1rem 6rem 1rem;
  }
  .product-grid-section {
    padding: 2rem 1rem 6rem 1rem;
  }
  .poduct-img {
    height: 400px;
  }
  .product-grid {
    gap: 4rem 1.6rem;
  }
  .product-slider__track {
    padding-right: 0;
  }
  .product-card__title {
    font-size: 1.4rem;
  }

  footer {
    padding: 2rem 1rem 0rem 1rem;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .social-icons {
    margin-top: 0.5rem;
  }

  .footer-slogan {
    width: 70%;
  }

  .footer-links {
    flex-direction: column;
    margin: 1rem 0;
  }
  .footer-logos {
    margin-top: 3rem;
  }
  .footer-bottom {
    padding: 1rem;
    flex-direction: column;
  }
  .footer-bottom p {
    margin: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .header-desktop {
    display: none;
  }
  .mobile-header {
    display: flex;
  }

  .product-hero {
    padding: 10rem 3rem 6rem 3rem;
  }
  .product-hero__grid {
    grid-template-columns: 1fr;
  }
  .product-info {
    padding: 1.2rem 0 0;
  }
  figure {
    margin: 0;
  }
  .product-gallery__frame img {
    height: 600px;
  }
  .product-gallery__layout {
    flex-direction: column-reverse;
  }
  .product-gallery__thumbs {
    flex-direction: row;
  }
  .product-info::before {
    display: none;
  }
  .product-gallery__frame {
    min-height: 520px;
  }
  .buy-row {
    grid-template-columns: 110px 1fr;
  }
  .product-actions {
    justify-content: flex-start;
  }

  .product-gallery__frame {
    min-height: 440px;
  }
  .product-title {
    width: 100%;
    font-size: 2.4rem;
    line-height: 2.7rem;
  }
  .price__current {
    font-size: 2.2rem;
  }
  .product-short {
    font-size: 1.1rem;
  }
  .product-highlights li {
    font-size: 1.1rem;
  }
  .qty input {
    font-size: 1.1rem;
  }
  .product-info-bottom {
    margin: 0 3rem 6rem 3rem;
  }
  .product-grid-section {
    padding: 2rem 3rem 6rem 3rem;
  }
  .poduct-img {
    height: 400px;
  }
  .product-grid {
    gap: 4rem 1.6rem;
  }
  .product-slider__track {
    padding-right: 0;
  }
  .product-card__title {
    font-size: 1.4rem;
  }

  footer {
    padding: 2rem 3rem 0rem 3rem;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .social-icons {
    margin-top: 0.5rem;
  }

  .footer-slogan {
    width: 70%;
  }

  .footer-links {
    flex-direction: column;
    margin: 1rem 0;
  }
  .footer-logos {
    margin-top: 3rem;
  }
  .footer-bottom {
    padding: 1rem;
    flex-direction: column;
  }
  .footer-bottom p {
    margin: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) and (orientation: landscape) {
  .header-desktop {
    padding: 1.8rem 2.5%;
  }
  .product-hero {
    padding: 12rem 6rem 8rem 6rem;
  }
  figure {
    margin: 0;
  }
  .product-gallery__layout {
    flex-direction: column-reverse;
    height: auto;
  }
  .product-gallery__thumbs {
    flex-direction: row;
  }
  figure {
    margin: 0;
  }
  .product-title {
    font-size: 2.8rem;
  }
  .price__current {
    font-size: 2rem;
  }
  .product-info-bottom {
    margin: 0 6rem;
  }
  .product-grid-section {
    padding: 4rem 6rem 8rem 6rem;
  }
  .header-slider h2 {
    font-size: 2.6rem;
  }
  footer {
    padding: 2rem 6rem 0 6rem;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1380px) {
}

@media only screen and (min-width: 1024px) and (max-width: 1520px) {
  .header-desktop {
    padding: 1.8rem 2.5%;
  }
  .product-hero {
    padding: 12rem 6rem 8rem 6rem;
  }
  .product-title {
    font-size: 2.8rem;
  }
  .poduct-img {
    height: 420px;
  }
  .product-gallery__layout {
    flex-direction: column-reverse;
    height: auto;
  }
  .product-gallery__frame img {
    height: 600px;
  }
  figure {
    margin: 0;
  }
  .product-gallery__thumbs {
    flex-direction: row;
  }
  .product-card__title {
    font-size: 1.5rem;
  }
  .price__current {
    font-size: 2rem;
  }
  .product-info-bottom {
    margin: 0 6rem;
  }
  .product-grid-section {
    padding: 4rem 6rem 8rem 6rem;
  }
  .header-slider h2 {
    font-size: 2.6rem;
  }
  footer {
    padding: 2rem 6rem 0 6rem;
  }
}
