:root {
  --altoke-bg: #030303;
  --altoke-panel: #111;
  --altoke-panel-2: #181818;
  --altoke-line: rgba(255, 255, 255, 0.14);
  --altoke-blue: #45b8f2;
  --altoke-blue-2: #77ccff;
  --altoke-yellow: #f5b51b;
}

* {
  box-sizing: border-box;
}

body {
  background:
    radial-gradient(circle at 50% 0%, rgba(69, 184, 242, 0.08), transparent 32rem),
    linear-gradient(180deg, #050505 0%, #000 100%);
  color: #fff;
  font-family: "Inter", Arial, sans-serif;
}

.font-display {
  font-family: "Oswald", "Inter", Arial, sans-serif;
  letter-spacing: 0;
}

.altoke-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.altoke-logo-text {
  display: inline-grid;
  gap: 0;
  color: #fff;
  font-family: "Permanent Marker", "Inter", cursive;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.76;
  text-transform: uppercase;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
}

.altoke-logo-text .blue {
  color: var(--altoke-blue);
}

.altoke-crown {
  color: var(--altoke-yellow);
  font-family: "Permanent Marker", cursive;
  font-size: 1.9rem;
  line-height: 0.8;
  transform: rotate(-8deg);
  display: inline-block;
}

.altoke-mark {
  display: grid;
  place-items: center;
  width: 120px;
  aspect-ratio: 1;
  border: 4px solid rgba(69, 184, 242, 0.75);
  border-radius: 999px;
  color: #fff;
  font-family: "Permanent Marker", cursive;
  font-size: 5.6rem;
  line-height: 1;
  box-shadow: inset 0 0 28px rgba(69, 184, 242, 0.18), 0 0 38px rgba(69, 184, 242, 0.12);
  position: relative;
}

.altoke-mark::before {
  content: "♛";
  position: absolute;
  top: -32px;
  color: var(--altoke-yellow);
  font-size: 2.5rem;
  transform: rotate(-10deg);
}

.altoke-title {
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 0.95;
}

.altoke-underline::after {
  content: "";
  display: block;
  width: 84px;
  height: 5px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--altoke-blue), rgba(245,181,27,.55), transparent);
  border-radius: 99px;
}

.altoke-panel {
  background: linear-gradient(135deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025));
  border: 1px solid var(--altoke-line);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.altoke-card {
  background: linear-gradient(145deg, #222, #101010);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
}

.altoke-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.altoke-category-tile {
  position: relative;
  display: block;
  min-height: 154px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  background: linear-gradient(145deg, #181818, #070707);
  color: #fff;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.altoke-category-tile:hover,
.altoke-category-tile.is-active {
  border-color: rgba(69,184,242,.85);
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0,0,0,.28), 0 0 0 1px rgba(69,184,242,.16);
}

.altoke-category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .52;
  transition: transform .45s ease, opacity .2s ease;
}

.altoke-category-tile:hover img {
  transform: scale(1.04);
  opacity: .68;
}

.altoke-category-tile > img + div,
.altoke-category-tile > div:first-child:not(:last-child) {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.54)),
    linear-gradient(90deg, rgba(0,0,0,.74), rgba(0,0,0,.16));
}

.altoke-category-tile > div:last-child {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 15px;
  z-index: 1;
}

.altoke-category-tile p {
  margin: 0;
  max-width: 15rem;
  color: #fff;
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,.75);
}

.altoke-category-tile span {
  display: inline-flex;
  margin-top: .45rem;
  color: var(--altoke-blue);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
}

.altoke-person-card {
  background:
    radial-gradient(circle at 50% 22%, rgba(255,255,255,.12), transparent 11rem),
    linear-gradient(145deg, #262626, #101010);
  min-height: 18rem;
}

.altoke-person-card::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 42%;
  height: 78%;
  transform: translateX(-50%);
  border-radius: 999px 999px 18px 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.16), transparent 26%),
    var(--person-color, #111);
  box-shadow: inset 0 -18px 0 rgba(0,0,0,.18), 0 28px 38px rgba(0,0,0,.5);
}

.altoke-person-card::after {
  content: "ALTOKE SPORT";
  position: absolute;
  left: 50%;
  bottom: 38%;
  transform: translateX(-50%) rotate(-8deg);
  width: 38%;
  color: #fff;
  font-family: "Permanent Marker", cursive;
  font-size: clamp(1.1rem, 2vw, 1.7rem);
  line-height: .85;
  text-align: center;
  text-shadow: 0 3px 0 rgba(69,184,242,.65);
  z-index: 1;
}

.altoke-product-card {
  display: grid;
  grid-template-rows: 300px 360px;
  height: 660px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    #090909;
  border: 2px solid rgba(255,255,255,.18);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 44px rgba(0,0,0,.38);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.altoke-product-card a {
  color: inherit;
  text-decoration: none;
}

.altoke-product-card button,
.altoke-product-card a {
  font-family: inherit;
}

.altoke-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.altoke-product-card:hover {
  border-color: rgba(69,184,242,.85);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 24px 54px rgba(0,0,0,.5), 0 0 0 1px rgba(69,184,242,.22);
}

.altoke-product-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 40%, rgba(69,184,242,.18), transparent 11rem),
    linear-gradient(180deg, #202020 0%, #101010 100%);
  border-bottom: 1px solid rgba(255,255,255,.13);
}

.altoke-product-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: .45rem;
  transition: transform .35s ease;
}

.altoke-product-card:hover .altoke-product-photo {
  transform: scale(1.045);
}

.altoke-product-empty {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: rgba(255,255,255,.18);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.altoke-product-ribbon,
.altoke-product-options {
  position: absolute;
  z-index: 2;
  max-width: calc(100% - 1.5rem);
  border-radius: 4px;
  padding: .55rem .75rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: .58rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.altoke-product-ribbon {
  right: .75rem;
  top: .75rem;
  color: #000;
}

.altoke-product-ribbon--sale { background: var(--altoke-yellow); }
.altoke-product-ribbon--new { background: var(--altoke-blue); }
.altoke-product-ribbon--top { background: #fff; }

.altoke-product-options {
  left: .75rem;
  bottom: .75rem;
  border: 1px solid rgba(69,184,242,.45);
  background: rgba(0,0,0,.78);
  color: var(--altoke-blue);
}

.altoke-product-body {
  display: grid;
  grid-template-rows: 30px 58px 42px 100px 54px;
  gap: .82rem;
  min-width: 0;
  padding: 1.05rem;
}

.altoke-product-kicker {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: .7rem;
}

.altoke-product-kicker span:first-child {
  min-width: 0;
  overflow: hidden;
  color: var(--altoke-blue);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.altoke-product-kicker span:last-child {
  border-radius: 4px;
  background: #fff;
  padding: .45rem .6rem;
  color: #000;
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.altoke-product-name {
  margin: 0;
  color: #fff;
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.altoke-product-name a:hover {
  color: var(--altoke-blue);
}

.altoke-product-tags {
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
  gap: .45rem;
  overflow: hidden;
}

.altoke-product-tags span {
  border-radius: 4px;
  background: rgba(255,255,255,.08);
  padding: .45rem .55rem;
  color: rgba(255,255,255,.74);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .13em;
  line-height: 1;
  text-transform: uppercase;
}

.altoke-product-price-box {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.045);
  padding: .9rem;
}

.altoke-product-price-box p,
.altoke-product-price-box span {
  margin: 0;
  color: rgba(255,255,255,.42);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
}

.altoke-product-price-box strong {
  display: block;
  margin-top: .35rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  line-height: .95;
}

.altoke-product-price-box span {
  display: block;
  margin-top: .45rem;
  color: var(--altoke-blue);
}

.altoke-product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
}

.altoke-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.altoke-card-action--ghost {
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.035);
  color: #fff;
}

.altoke-card-action--ghost:hover {
  border-color: #fff;
  background: #fff;
  color: #000;
}

.altoke-card-action--primary {
  background: var(--altoke-blue);
  color: #000;
}

.altoke-card-action--primary:hover {
  background: #fff;
  color: #000;
}

.altoke-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 52px;
  padding: 0 1.6rem;
  border-radius: 6px;
  background: linear-gradient(180deg, #62c6ff, #39a9ed);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: transform .2s ease, filter .2s ease;
}

.altoke-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.altoke-ghost-btn {
  border: 1px solid var(--altoke-line);
  border-radius: 6px;
  color: #fff;
  background: rgba(255,255,255,0.03);
}

@media (max-width: 768px) {
  .altoke-shell {
    width: min(100% - 28px, 1180px);
  }

  .altoke-product-card {
    grid-template-rows: 290px 360px;
    height: 650px;
  }

  .altoke-product-body {
    padding: 1rem;
  }
}
