@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --bg: #02080d;
  --bg-soft: #06131d;
  --panel: rgba(6, 20, 30, 0.82);
  --panel-strong: rgba(4, 15, 23, 0.94);
  --line: rgba(67, 170, 224, 0.23);
  --line-soft: rgba(255, 255, 255, 0.08);
  --cyan: #08bfff;
  --cyan-2: #39c7ff;
  --text: #f8fbff;
  --muted: #a8b7c7;
  --faint: #748498;
  --green: #29e888;
  --danger: #ff5666;
  --shadow: 0 0 26px rgba(8, 191, 255, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #000;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 52% 12%, rgba(25, 156, 232, 0.16), transparent 28rem),
    radial-gradient(circle at 10% 68%, rgba(2, 120, 170, 0.12), transparent 24rem),
    linear-gradient(180deg, #02070c 0%, #04111a 34%, #02080d 100%);
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 191, 255, 0.04), transparent 18%, transparent 82%, rgba(8, 191, 255, 0.04)),
    url("../images/hero.png") center bottom / 1400px auto no-repeat;
  opacity: 0.12;
  filter: saturate(0.9);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.page-shell {
  width: min(1202px, calc(100% - 64px));
  margin: 0 auto;
}

.app-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(2, 8, 13, 0.88);
  border-bottom: 1px solid rgba(8, 191, 255, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1280px, calc(100% - 80px));
  min-height: 86px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr 210px;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 0 9px rgba(80, 196, 255, 0.45));
}

.brand-word {
  display: flex;
  gap: 17px;
  align-items: baseline;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 9px;
  white-space: nowrap;
}

.brand-word span:last-child {
  color: var(--cyan-2);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 46px;
}

.desktop-nav a {
  position: relative;
  padding: 34px 0 30px;
  color: #f8fbff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.desktop-nav a.is-active {
  color: var(--cyan);
}

.desktop-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: var(--cyan);
  box-shadow: var(--shadow);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 29px;
}

.icon-btn,
.menu-toggle {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  border: 0;
  background: transparent;
}

.icon-btn svg,
.menu-toggle svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.badge {
  position: absolute;
  top: -7px;
  right: -8px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #00131d;
  background: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

.menu-toggle {
  display: none;
}

.mobile-menu {
  display: none;
  padding: 0 28px 24px;
  border-top: 1px solid rgba(8, 191, 255, 0.1);
}

.mobile-menu.is-open {
  display: grid;
  gap: 12px;
}

.mobile-menu a {
  padding: 13px 0;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu a.is-active {
  color: var(--cyan);
}

.mobile-bottom-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 526px;
  overflow: hidden;
  background: #03101a;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/hero.png") 62% center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 8, 13, 0.92) 0%, rgba(3, 13, 21, 0.72) 24%, rgba(3, 13, 21, 0.08) 58%, rgba(2, 8, 13, 0.24) 100%),
    linear-gradient(180deg, rgba(2, 8, 13, 0.05) 0%, rgba(2, 8, 13, 0.25) 65%, #04111a 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1202px, calc(100% - 64px));
  min-height: 526px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(340px, 450px) 1fr 42px;
  align-items: center;
}

.eyebrow {
  color: var(--cyan);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.hero h1,
.page-title,
.section-title,
.auth-title,
.admin-title {
  margin: 8px 0 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(255, 255, 255, 0.16);
}

.hero h1 {
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.93;
}

.hero p {
  width: 305px;
  margin: 20px 0 27px;
  color: #b4c4d8;
  font-size: 19px;
  line-height: 1.45;
}

.button-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  min-height: 48px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(8, 191, 255, 0.48);
  border-radius: 8px;
  background: transparent;
  color: var(--cyan);
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-primary {
  color: #00131d;
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 25px rgba(8, 191, 255, 0.42);
}

.btn-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
}

.trust {
  margin-top: 44px;
  color: #9fb0c3;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.trust-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  color: var(--cyan);
  font-weight: 800;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 28px;
  height: 28px;
  margin-left: -8px;
  border: 2px solid #05111b;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #d7e4ee, #253849);
  color: #07131d;
  font-size: 9px;
  font-weight: 900;
}

.avatar-stack span:first-child {
  margin-left: 0;
}

.hero-dots {
  display: grid;
  gap: 15px;
  justify-items: center;
  color: var(--faint);
  font-weight: 900;
  font-size: 19px;
}

.hero-dots .active {
  color: var(--cyan);
}

.hero-dots i {
  width: 2px;
  height: 35px;
  background: var(--cyan);
  box-shadow: var(--shadow);
}

.feature-strip {
  position: relative;
  z-index: 2;
  width: min(1202px, calc(100% - 64px));
  margin: -16px auto 37px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(4, 18, 28, 0.78);
  backdrop-filter: blur(12px);
}

.feature {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 37px;
  border-right: 1px solid rgba(127, 194, 230, 0.25);
}

.feature:last-child {
  border-right: 0;
}

.feature svg {
  width: 35px;
  height: 35px;
  color: var(--cyan);
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(8, 191, 255, 0.45));
}

.btn svg,
.qty svg,
.icon-row svg,
.float-actions svg,
.payment-options svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn svg {
  width: 20px;
  height: 20px;
}

.qty svg {
  width: 18px;
  height: 18px;
}

.icon-row svg {
  width: 22px;
  height: 22px;
}

.float-actions svg {
  width: 26px;
  height: 26px;
}

.payment-options svg {
  width: 20px;
  height: 20px;
}

.feature strong {
  display: block;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 15px;
}

.section-title {
  font-size: 35px;
  line-height: 0.95;
}

.link-cyan {
  color: var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
}

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

.product-card {
  position: relative;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 35%, rgba(30, 139, 196, 0.18), transparent 58%),
    rgba(6, 20, 30, 0.86);
  overflow: hidden;
}

.product-link {
  display: block;
  padding: 18px 16px 14px;
}

.product-media {
  height: 230px;
  display: grid;
  place-items: center;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.42));
}

.product-card h3 {
  margin: 8px 0 4px;
  font-size: 14px;
  line-height: 1.25;
}

.price {
  color: var(--muted);
  font-weight: 600;
}

.shop-page .price,
.product-detail .price,
.cart-page .price,
.summary-total {
  color: var(--cyan);
}

.add-btn,
.wish-btn,
.remove-btn {
  position: absolute;
  border: 1px solid rgba(8, 191, 255, 0.65);
  background: rgba(3, 16, 25, 0.72);
  color: var(--cyan);
  display: grid;
  place-items: center;
}

.add-btn {
  right: 16px;
  bottom: 17px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cyan);
  color: #00131d;
  box-shadow: 0 0 22px rgba(8, 191, 255, 0.55);
}

.add-btn svg,
.wish-btn svg,
.remove-btn svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wish-btn {
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-color: transparent;
  border-radius: 50%;
  color: #b9c8d8;
  background: rgba(2, 8, 13, 0.24);
}

.wish-btn.is-active {
  color: var(--cyan);
}

.pill-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.pill-row::-webkit-scrollbar {
  display: none;
}

.pill {
  flex: 0 0 auto;
  min-width: 78px;
  height: 53px;
  padding: 0 26px;
  color: #fff;
  border: 1px solid rgba(154, 183, 203, 0.24);
  border-radius: 8px;
  background: rgba(4, 14, 22, 0.52);
  font-weight: 700;
}

.pill.is-active {
  color: var(--cyan);
  border-color: var(--cyan);
}

.page-hero {
  padding: 50px 0 25px;
}

.page-title {
  font-size: 58px;
  line-height: 0.95;
}

.crumbs {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 14px;
  color: #c4cfda;
  font-size: 17px;
}

.crumbs b {
  color: var(--cyan);
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  padding: 26px 0 22px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
}

.sort-control {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}

.sort-control svg {
  width: 33px;
  height: 33px;
  color: var(--cyan);
}

.shop-layout {
  padding-bottom: 86px;
}

.shop-page .product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.shop-page .product-media {
  height: 240px;
}

.shop-page .product-card h3 {
  font-size: 15px;
}

.shop-page .product-link {
  padding: 18px 16px 14px;
}

.shop-page .add-btn {
  width: 36px;
  height: 36px;
  right: 16px;
  bottom: 17px;
  border-radius: 6px;
  background: rgba(3, 16, 25, 0.72);
  color: var(--cyan);
  box-shadow: none;
}

.tag {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 22px;
  padding: 8px 12px;
  color: var(--cyan);
  border-radius: 7px;
  background: rgba(8, 191, 255, 0.18);
  font-weight: 900;
}

.cart-list {
  display: grid;
  gap: 12px;
}

.cart-item {
  display: grid;
  grid-template-columns: 230px 1fr 110px;
  gap: 26px;
  align-items: center;
  min-height: 212px;
  padding: 0 24px 0 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  overflow: hidden;
}

.cart-thumb {
  height: 210px;
  display: grid;
  place-items: center;
  background: rgba(6, 20, 30, 0.7);
}

.cart-thumb img {
  width: 92%;
  height: 92%;
  object-fit: contain;
}

.cart-item h3 {
  margin: 0 0 10px;
  font-size: 25px;
}

.cart-meta {
  color: var(--muted);
  font-size: 18px;
}

.cart-meta b {
  color: var(--cyan);
  font-weight: 500;
}

.qty {
  display: inline-grid;
  grid-template-columns: 52px 92px 52px;
  height: 50px;
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.qty button {
  border: 0;
  border-right: 1px solid var(--line);
  background: rgba(2, 10, 16, 0.58);
  color: var(--cyan);
  font-size: 28px;
}

.qty button:last-child {
  border-right: 0;
  border-left: 1px solid var(--line);
}

.qty span {
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 800;
}

.cart-actions {
  align-self: stretch;
  display: grid;
  justify-items: end;
  align-content: center;
  gap: 18px;
}

.icon-row {
  display: flex;
  gap: 20px;
}

.icon-row button {
  color: #c0cede;
  border: 0;
  background: transparent;
}

.shipping-card,
.summary-card,
.panel,
.auth-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
}

.shipping-card {
  display: grid;
  grid-template-columns: 72px 1fr 120px;
  gap: 20px;
  align-items: center;
  margin: 20px 0;
  padding: 22px 26px;
}

.progress {
  height: 5px;
  margin-top: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.progress span {
  display: block;
  width: 67%;
  height: 100%;
  background: var(--cyan);
  box-shadow: var(--shadow);
}

.summary-card {
  padding: 25px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin: 14px 0;
  color: #dce5ef;
  font-size: 19px;
}

.summary-total {
  padding-top: 22px;
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 31px;
  font-weight: 900;
}

.checkout-grid,
.account-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
  gap: 22px;
  padding-bottom: 84px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  min-height: 48px;
  width: 100%;
  padding: 12px 14px;
  color: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(2, 9, 15, 0.8);
}

.field textarea {
  min-height: 92px;
  resize: vertical;
}

.payment-options {
  display: grid;
  gap: 12px;
}

.payment-options label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(2, 9, 15, 0.52);
}

.account-card {
  padding: 25px 28px;
}

.profile-row {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 25px;
  align-items: center;
}

.profile-pic {
  position: relative;
  width: 136px;
  height: 136px;
  overflow: hidden;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}

.stat {
  display: grid;
  justify-items: center;
  gap: 8px;
  border-right: 1px solid var(--line-soft);
}

.stat:last-child {
  border-right: 0;
}

.stat svg {
  width: 36px;
  height: 36px;
  color: var(--cyan);
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat strong {
  color: #c8efff;
  font-size: 30px;
}

.menu-list {
  display: grid;
  margin-top: 24px;
  padding: 26px 28px;
}

.menu-list button,
.menu-list a {
  display: grid;
  grid-template-columns: 52px 1fr 24px;
  align-items: center;
  min-height: 86px;
  color: #fff;
  border: 0;
  border-bottom: 1px solid var(--line-soft);
  background: transparent;
  text-align: left;
}

.menu-list svg {
  width: 35px;
  height: 35px;
  color: var(--cyan);
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-list strong {
  color: var(--cyan);
  font-size: 24px;
}

.menu-list span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 18px;
}

.club-card {
  display: grid;
  grid-template-columns: 285px 1fr;
  align-items: center;
  gap: 25px;
  margin: 24px 0 92px;
  padding: 26px;
}

.club-card img {
  max-height: 170px;
  object-fit: contain;
}

.product-detail {
  padding-bottom: 46px;
}

.detail-hero {
  position: relative;
  min-height: 562px;
  display: grid;
  place-items: center;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(2, 8, 13, 0.1), rgba(2, 8, 13, 0.92)),
    url("../images/hero.png") center 58% / cover no-repeat;
}

.detail-hero img {
  width: min(680px, 86vw);
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 30px 28px rgba(0, 0, 0, 0.55));
}

.float-actions {
  position: absolute;
  right: 32px;
  top: 30px;
  display: grid;
  gap: 22px;
}

.float-actions button {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
}

.dot-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 18px 0 6px;
}

.dot-row span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
}

.dot-row span:first-child {
  background: var(--cyan);
}

.detail-content {
  width: min(890px, calc(100% - 64px));
  margin: 0 auto;
}

.detail-content h1 {
  margin: 8px 0 10px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 43px;
  line-height: 0.94;
}

.product-detail .price {
  font-size: 34px;
  font-weight: 500;
}

.detail-content p,
.detail-content li {
  color: #f3f6fa;
  font-size: 20px;
  line-height: 1.55;
}

.swatches,
.sizes {
  display: flex;
  gap: 14px;
  margin: 10px 0 22px;
}

.swatch {
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: #050505;
}

.swatch.is-active {
  border-color: var(--cyan);
}

.swatch.white {
  background: #fff;
}

.swatch.gray {
  background: #252525;
}

.size {
  width: 76px;
  height: 70px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(4, 14, 22, 0.58);
  font-size: 21px;
}

.size.is-active {
  color: var(--cyan);
  border-color: var(--cyan);
}

.detail-buy-row {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 20px;
  align-items: end;
}

.detail-buttons {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.detail-buttons .btn {
  min-height: 58px;
  box-shadow: inset 0 0 18px rgba(8, 191, 255, 0.18), 0 0 18px rgba(8, 191, 255, 0.22);
}

.detail-buttons .btn.is-active {
  color: #00131d;
  background: var(--cyan);
  border-color: var(--cyan);
}

.mini-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.mini-features .feature {
  min-height: 86px;
  padding: 0 20px;
}

.auth-wrap {
  min-height: calc(100vh - 86px);
  display: grid;
  place-items: center;
  padding: 40px 20px;
}

.admin-login-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
}

.auth-card {
  width: min(520px, 100%);
  padding: 32px;
}

.auth-title,
.admin-title {
  font-size: 48px;
}

.auth-actions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.admin-shell {
  display: grid;
  grid-template-columns: 250px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 26px 22px;
  border-right: 1px solid var(--line);
  background: rgba(2, 8, 13, 0.95);
}

.admin-sidebar nav {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.admin-sidebar button,
.admin-sidebar a {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  text-align: left;
  font-weight: 800;
}

.admin-sidebar .is-active {
  color: var(--cyan);
  border-color: var(--line);
}

.admin-main {
  padding: 30px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.metric {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
}

.metric strong {
  display: block;
  color: var(--cyan);
  font-size: 34px;
  margin-top: 10px;
}

.admin-section {
  display: none;
}

.admin-section.is-active {
  display: block;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 13px;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
}

th {
  color: var(--cyan);
}

.inline-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hidden {
  display: none !important;
}

@media (min-width: 880px) {
  .home-page .product-card .wish-btn {
    display: none;
  }
}

@media (max-width: 879px) {
  body {
    padding-bottom: 92px;
  }

  body::before {
    background-size: 1000px auto;
    opacity: 0.14;
  }

  .page-shell {
    width: calc(100% - 68px);
  }

  .app-header {
    position: relative;
  }

  .header-inner {
    width: calc(100% - 68px);
    min-height: 156px;
    grid-template-columns: 42px 1fr 206px;
    gap: 18px;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .brand img {
    width: 64px;
    height: 64px;
  }

  .brand-word {
    gap: 12px;
    font-size: 14px;
    letter-spacing: 9px;
  }

  .desktop-nav {
    display: none;
  }

  .header-actions {
    gap: 28px;
  }

  .header-actions .admin-link {
    display: none;
  }

  .icon-btn svg,
  .menu-toggle svg {
    width: 33px;
    height: 33px;
  }

  .hero {
    min-height: 562px;
  }

  .hero::before {
    background-position: 55% center;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(2, 8, 13, 0.95) 0%, rgba(2, 8, 13, 0.6) 42%, rgba(2, 8, 13, 0.02) 74%),
      linear-gradient(180deg, rgba(2, 8, 13, 0.03) 0%, rgba(2, 8, 13, 0.17) 62%, #04111a 98%);
  }

  .hero-content {
    width: calc(100% - 70px);
    min-height: 562px;
    display: block;
    padding-top: 40px;
  }

  .eyebrow {
    font-size: 18px;
  }

  .hero h1 {
    width: 420px;
    max-width: 100%;
    font-size: 49px;
  }

  .hero p {
    width: 290px;
    margin: 20px 0 26px;
    font-size: 23px;
  }

  .button-row {
    display: grid;
    width: 253px;
    gap: 12px;
  }

  .btn {
    min-height: 56px;
    border-radius: 8px;
    font-size: 16px;
  }

  .hero-dots {
    display: flex;
    gap: 68px;
    margin-top: 26px;
    font-size: 24px;
  }

  .hero-dots i {
    display: none;
  }

  .hero-dots::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 270px;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan) 0 31%, rgba(255, 255, 255, 0.2) 31% 100%);
  }

  .trust {
    margin-top: 45px;
    font-size: 18px;
  }

  .trust-line {
    gap: 18px;
  }

  .avatar-stack span {
    width: 37px;
    height: 37px;
  }

  .feature-strip {
    width: calc(100% - 68px);
    margin: 28px auto 29px;
    grid-template-columns: repeat(4, 1fr);
  }

  .feature {
    min-height: 197px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 15px;
    padding: 12px 10px;
  }

  .feature svg {
    width: 46px;
    height: 46px;
  }

  .feature strong {
    font-size: 18px;
  }

  .feature span {
    font-size: 18px;
    line-height: 1.35;
  }

  .section-title {
    font-size: 40px;
  }

  .home-page .product-grid,
  .shop-page .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 16px;
  }

  .product-card {
    border-radius: 12px;
  }

  .product-link,
  .shop-page .product-link {
    padding: 18px 22px 23px;
  }

  .product-media,
  .shop-page .product-media {
    height: 230px;
  }

  .product-card h3,
  .shop-page .product-card h3 {
    font-size: 20px;
  }

  .price {
    font-size: 18px;
  }

  .add-btn,
  .shop-page .add-btn {
    width: 49px;
    height: 49px;
    right: 24px;
    bottom: 23px;
    border-radius: 50%;
    background: var(--cyan);
    color: #00131d;
    box-shadow: 0 0 22px rgba(8, 191, 255, 0.55);
  }

  .shop-page .add-btn {
    border-radius: 6px;
    background: rgba(3, 16, 25, 0.72);
    color: var(--cyan);
    box-shadow: none;
  }

  .section-head {
    margin-top: 12px;
  }

  .page-hero {
    padding: 40px 0 27px;
  }

  .page-title {
    font-size: 58px;
  }

  .pill-row {
    gap: 20px;
  }

  .pill {
    height: 53px;
    font-size: 18px;
  }

  .shop-toolbar {
    font-size: 19px;
  }

  .mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 42;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    min-height: 100px;
    padding: 13px 16px 20px;
    border-top: 1px solid var(--line-soft);
    background: rgba(3, 12, 19, 0.96);
    backdrop-filter: blur(16px);
  }

  .mobile-bottom-nav a {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 5px;
    color: #b9c3d0;
    font-size: 18px;
  }

  .mobile-bottom-nav a.is-active {
    color: var(--cyan);
  }

  .mobile-bottom-nav svg {
    width: 33px;
    height: 33px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .cart-item {
    grid-template-columns: 230px 1fr 105px;
  }

  .checkout-grid,
  .account-grid {
    grid-template-columns: 1fr;
  }

  .profile-row {
    grid-template-columns: 150px 1fr;
  }

  .profile-row .btn {
    grid-column: 1 / -1;
    justify-self: end;
  }

  .club-card {
    grid-template-columns: 260px 1fr;
  }

  .detail-content {
    width: calc(100% - 64px);
  }

  .detail-buy-row {
    grid-template-columns: 1fr;
  }

  .mini-features {
    grid-template-columns: repeat(4, 1fr);
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
  }
}

@media (max-width: 560px) {
  .page-shell,
  .hero-content,
  .feature-strip,
  .header-inner,
  .detail-content {
    width: calc(100% - 32px);
  }

  .header-inner {
    min-height: 96px;
    grid-template-columns: 34px 1fr auto;
    gap: 10px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand {
    gap: 8px;
  }

  .brand-word {
    gap: 8px;
    font-size: 11px;
    letter-spacing: 5px;
  }

  .header-actions {
    gap: 12px;
  }

  .icon-btn,
  .menu-toggle {
    width: 30px;
    height: 30px;
  }

  .icon-btn svg,
  .menu-toggle svg {
    width: 25px;
    height: 25px;
  }

  .header-actions .account-link {
    display: none;
  }

  .hero {
    min-height: 500px;
  }

  .hero-content {
    min-height: 500px;
    padding-top: 22px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    width: 250px;
    font-size: 18px;
  }

  .button-row {
    width: 230px;
  }

  .hero-dots {
    gap: 43px;
  }

  .hero-dots::after {
    width: 205px;
  }

  .trust {
    font-size: 13px;
  }

  .avatar-stack span {
    width: 27px;
    height: 27px;
  }

  .feature-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature:nth-child(2) {
    border-right: 0;
  }

  .feature {
    min-height: 130px;
    border-bottom: 1px solid rgba(127, 194, 230, 0.25);
  }

  .feature:nth-child(3),
  .feature:nth-child(4) {
    border-bottom: 0;
  }

  .feature strong,
  .feature span {
    font-size: 13px;
  }

  .home-page .product-grid,
  .shop-page .product-grid {
    gap: 12px;
  }

  .product-link,
  .shop-page .product-link {
    padding: 12px 14px 18px;
  }

  .product-media,
  .shop-page .product-media {
    height: 160px;
  }

  .product-card h3,
  .shop-page .product-card h3 {
    font-size: 14px;
  }

  .price {
    font-size: 13px;
  }

  .add-btn,
  .shop-page .add-btn {
    width: 36px;
    height: 36px;
    right: 14px;
    bottom: 17px;
  }

  .wish-btn {
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
  }

  .page-title {
    font-size: 46px;
  }

  .crumbs {
    font-size: 14px;
  }

  .pill {
    height: 48px;
    padding: 0 20px;
    font-size: 15px;
  }

  .shop-toolbar {
    font-size: 14px;
  }

  .cart-item {
    grid-template-columns: 120px 1fr;
    gap: 14px;
    min-height: 150px;
    padding: 0 14px 0 0;
  }

  .cart-thumb {
    height: 150px;
  }

  .cart-actions {
    grid-column: 2;
    justify-items: start;
    align-content: start;
  }

  .cart-item h3 {
    font-size: 19px;
  }

  .cart-meta {
    font-size: 14px;
  }

  .qty {
    grid-template-columns: 44px 64px 44px;
    height: 44px;
  }

  .shipping-card {
    grid-template-columns: 1fr;
  }

  .summary-row {
    font-size: 16px;
  }

  .profile-row {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

  .club-card {
    grid-template-columns: 1fr;
  }

  .detail-hero {
    min-height: 450px;
  }

  .float-actions {
    right: 18px;
  }

  .float-actions button {
    width: 56px;
    height: 56px;
  }

  .detail-content h1 {
    font-size: 38px;
  }

  .detail-content p,
  .detail-content li {
    font-size: 16px;
  }

  .sizes {
    flex-wrap: wrap;
  }

  .mini-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .auth-card {
    padding: 22px;
  }

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