@font-face {
  font-family: "Dana";
  src: url("../fonts/Dana/woff2/DanaFaNum-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Dana";
  src: url("../fonts/Dana/woff2/DanaFaNum-DemiBold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Morabba";
  src: url("../fonts/Morabba/woff2/Morabba-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #08111f;
  --ink-soft: #101d31;
  --blue: #176bff;
  --blue-strong: #0757df;
  --cyan: #29c5ff;
  --surface: #ffffff;
  --page: #f4f7fb;
  --muted: #65748a;
  --line: #dfe6ef;
  --success: #0b9f6e;
  --danger: #d84747;
  --shadow: 0 18px 55px rgba(8, 28, 58, 0.11);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--page);
  color: var(--ink);
  font-family: "Dana", Tahoma, sans-serif;
  font-size: 15px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

svg {
  display: block;
}

.store-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.store-header {
  position: sticky;
  z-index: 50;
  top: 0;
  color: #fff;
  background: rgba(7, 16, 30, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
}

.store-nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.store-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 10px 25px rgba(23, 107, 255, 0.35);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
}

.brand-copy {
  display: grid;
  line-height: 1.3;
}

.brand-copy strong {
  font-family: "Morabba", "Dana", sans-serif;
  font-size: 18px;
}

.brand-copy small {
  color: #9cafc7;
  font-size: 11px;
}

.store-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-inline-start: 18px;
}

.store-links a {
  color: #b9c5d5;
  font-size: 14px;
  transition: color 0.2s ease;
}

.store-links a:hover,
.store-links a[aria-current="page"] {
  color: #fff;
}

.store-actions {
  margin-inline-start: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-link,
.cart-link,
.menu-toggle {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f4f8ff;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 0 14px;
  cursor: pointer;
}

.header-link:hover,
.cart-link:hover,
.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.11);
}

.header-link svg,
.cart-link svg,
.menu-toggle svg {
  width: 19px;
  height: 19px;
}

.cart-count {
  min-width: 23px;
  height: 23px;
  display: inline-grid;
  place-items: center;
  padding: 0 5px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 11px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 42px;
  padding: 0;
}

.mobile-panel {
  display: none;
}

.store-main {
  min-height: calc(100vh - 300px);
}

.shop-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 12% 10%, rgba(41, 197, 255, 0.18), transparent 30%),
    radial-gradient(circle at 88% 70%, rgba(23, 107, 255, 0.25), transparent 32%),
    linear-gradient(135deg, #07111f, #10233d);
}

.shop-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to left, #000, transparent 82%);
}

.shop-hero-grid {
  position: relative;
  min-height: 420px;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: 46px;
  padding-block: 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  color: #93dfff;
  font-size: 13px;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
}

.shop-hero h1,
.page-heading h1,
.product-detail-copy h1 {
  margin: 0;
  font-family: "Morabba", "Dana", sans-serif;
  line-height: 1.35;
}

.shop-hero h1 {
  max-width: 620px;
  font-size: clamp(36px, 4.2vw, 58px);
  letter-spacing: -1.2px;
}

.shop-hero p {
  max-width: 620px;
  margin: 20px 0 28px;
  color: #bdcad9;
  font-size: 16px;
}

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

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #dce7f4;
  font-size: 12px;
}

.hero-points svg {
  width: 16px;
  height: 16px;
  color: #61d8ff;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-image-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.23;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  background: #0b192b;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

.hero-image-frame::after,
.product-media::after,
.detail-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(3, 12, 24, 0.62));
}

.hero-image-frame img,
.product-media img,
.detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-float-card {
  position: absolute;
  inset: auto auto 24px -24px;
  z-index: 2;
  width: min(250px, 68%);
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 16px;
  background: rgba(8, 20, 37, 0.88);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.hero-float-card strong,
.hero-float-card span {
  display: block;
}

.hero-float-card strong {
  font-size: 13px;
}

.hero-float-card span {
  color: #a9b8ca;
  font-size: 11px;
}

.shop-section {
  padding-block: 72px 86px;
}

.shop-intro,
.page-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-title h2,
.page-heading h1 {
  margin: 0;
  font-family: "Morabba", "Dana", sans-serif;
  font-size: clamp(27px, 3vw, 39px);
  line-height: 1.45;
}

.section-title p,
.page-heading p {
  margin: 6px 0 0;
  color: var(--muted);
}

.result-count {
  color: var(--muted);
  white-space: nowrap;
  font-size: 13px;
}

.shop-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 35px rgba(20, 48, 84, 0.06);
}

.search-box {
  position: relative;
}

.search-box svg {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 19px;
  height: 19px;
  color: #8592a5;
  transform: translateY(-50%);
  pointer-events: none;
}

.search-box input {
  width: 100%;
  height: 48px;
  padding: 0 46px 0 15px;
  border: 1px solid var(--line);
  outline: 0;
  border-radius: 12px;
  background: #f8fafc;
  color: var(--ink);
  transition: border 0.2s, box-shadow 0.2s, background 0.2s;
}

.search-box input:focus {
  border-color: rgba(23, 107, 255, 0.55);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(23, 107, 255, 0.09);
}

.filter-chips {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-chips::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  min-height: 40px;
  flex: 0 0 auto;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 11px;
  color: #5d6d83;
  background: transparent;
  cursor: pointer;
}

.filter-chip:hover {
  color: var(--ink);
  background: #f3f6fa;
}

.filter-chip.is-active {
  border-color: rgba(23, 107, 255, 0.17);
  color: var(--blue-strong);
  background: #edf4ff;
  font-weight: 700;
}

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

.product-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 12px 38px rgba(11, 35, 66, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(23, 107, 255, 0.25);
  box-shadow: var(--shadow);
}

.product-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.55;
  background: #102039;
}

.product-media img {
  transition: transform 0.45s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.035);
}

.product-tag {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  background: rgba(7, 18, 34, 0.74);
  font-size: 11px;
  backdrop-filter: blur(9px);
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.product-card h3 {
  margin: 0;
  font-family: "Morabba", "Dana", sans-serif;
  font-size: 20px;
  line-height: 1.55;
}

.product-description {
  min-height: 56px;
  margin: 8px 0 15px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 20px;
}

.product-features span {
  padding: 4px 9px;
  border-radius: 8px;
  color: #52647a;
  background: #f1f5f9;
  font-size: 10px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid #edf0f5;
}

.inquiry-price {
  display: grid;
  flex: 0 0 auto;
  line-height: 1.4;
}

.inquiry-price small {
  color: #8793a5;
  font-size: 10px;
}

.inquiry-price strong {
  color: var(--blue-strong);
  font-size: 13px;
}

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

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.18s, background 0.18s, border 0.18s, color 0.18s;
}

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

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

.btn-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(23, 107, 255, 0.2);
}

.btn-primary:hover {
  background: var(--blue-strong);
}

.btn-secondary {
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
}

.btn-secondary:hover {
  border-color: #b9c8dc;
  background: #f8fafc;
}

.btn-icon {
  width: 44px;
  padding: 0;
}

.btn-full {
  width: 100%;
}

.empty-products {
  grid-column: 1 / -1;
  padding: 55px 24px;
  text-align: center;
  border: 1px dashed #cad4e1;
  border-radius: 20px;
  background: #fff;
}

.empty-products svg,
.empty-cart-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  color: #9aa9bc;
}

.empty-products h3,
.empty-cart h2 {
  margin: 0 0 6px;
}

.empty-products p,
.empty-cart p {
  margin: 0 0 20px;
  color: var(--muted);
}

.trust-strip {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trust-item {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.trust-icon {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  color: var(--blue);
  background: #edf4ff;
}

.trust-icon svg {
  width: 21px;
  height: 21px;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  font-size: 13px;
}

.trust-item span {
  color: var(--muted);
  font-size: 11px;
}

.inner-page {
  padding-block: 52px 88px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 23px;
  color: #7d8b9d;
  font-size: 12px;
}

.breadcrumb a:hover {
  color: var(--blue);
}

.breadcrumb svg {
  width: 13px;
  height: 13px;
}

.detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 46px;
  align-items: start;
}

.detail-media {
  position: sticky;
  top: 106px;
  overflow: hidden;
  aspect-ratio: 1.16;
  border-radius: var(--radius-xl);
  background: #102039;
  box-shadow: var(--shadow);
}

.product-detail-copy {
  padding-block: 10px;
}

.detail-category {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--blue-strong);
  background: #eaf2ff;
  font-size: 11px;
  font-weight: 700;
}

.product-detail-copy h1 {
  font-size: clamp(31px, 4vw, 48px);
}

.detail-lead {
  margin: 18px 0 22px;
  color: var(--muted);
  font-size: 16px;
}

.detail-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.detail-feature-list li {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: #42536a;
  font-size: 12px;
}

.detail-feature-list svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--success);
}

.detail-order-box {
  padding: 20px;
  border: 1px solid #d6e2f1;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 15px 45px rgba(10, 34, 66, 0.08);
}

.detail-order-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 17px;
}

.detail-order-top strong,
.detail-order-top span {
  display: block;
}

.detail-order-top strong {
  font-size: 16px;
}

.detail-order-top span {
  color: var(--muted);
  font-size: 11px;
}

.detail-price {
  color: var(--blue-strong);
  white-space: nowrap;
  font-weight: 700;
}

.detail-order-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
}

.detail-note {
  margin: 13px 0 0;
  color: #7d8a9c;
  font-size: 10px;
}

.cart-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
  gap: 24px;
}

.panel-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 12px 38px rgba(11, 35, 66, 0.055);
}

.cart-list {
  overflow: hidden;
}

.cart-item {
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border-bottom: 1px solid #edf1f5;
}

.cart-item:last-child {
  border-bottom: 0;
}

.cart-item-image {
  overflow: hidden;
  aspect-ratio: 1.35;
  border-radius: 13px;
  background: #102039;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-copy {
  min-width: 0;
}

.cart-item-copy h3 {
  margin: 0 0 4px;
  font-family: "Morabba", "Dana", sans-serif;
  font-size: 17px;
}

.cart-item-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 13px;
}

.quantity-control button,
.remove-item {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: #4d5e74;
  background: #fff;
  cursor: pointer;
}

.quantity-control button {
  width: 31px;
  height: 31px;
  border-radius: 9px;
}

.quantity-control button:hover {
  border-color: #a9b8cb;
  color: var(--blue);
}

.quantity-control svg,
.remove-item svg {
  width: 15px;
  height: 15px;
}

.quantity-control span {
  min-width: 25px;
  text-align: center;
  font-weight: 700;
}

.cart-item-side {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.item-inquiry-label {
  color: var(--blue-strong);
  font-size: 11px;
  font-weight: 700;
}

.remove-item {
  width: 35px;
  height: 35px;
  border-radius: 10px;
}

.remove-item:hover {
  border-color: #f1c3c3;
  color: var(--danger);
  background: #fff7f7;
}

.summary-card {
  position: sticky;
  top: 102px;
  padding: 23px;
}

.summary-card h2 {
  margin: 0 0 18px;
  font-family: "Morabba", "Dana", sans-serif;
  font-size: 21px;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 10px 0;
  color: var(--muted);
  font-size: 12px;
}

.summary-row strong {
  color: var(--ink);
}

.summary-divider {
  height: 1px;
  margin: 10px 0;
  background: var(--line);
}

.summary-note {
  margin: 15px 0;
  padding: 12px;
  border-radius: 11px;
  color: #52657c;
  background: #f2f6fb;
  font-size: 10px;
}

.empty-cart {
  padding: 64px 25px;
  text-align: center;
}

.checkout-form {
  padding: 25px;
}

.checkout-form h2 {
  margin: 0 0 20px;
  font-family: "Morabba", "Dana", sans-serif;
  font-size: 23px;
}

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

.field {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: #35475f;
  font-size: 12px;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  outline: 0;
  border-radius: 12px;
  color: var(--ink);
  background: #f9fbfd;
  transition: border 0.2s, box-shadow 0.2s, background 0.2s;
}

.field input {
  height: 49px;
  padding: 0 14px;
}

.field textarea {
  min-height: 125px;
  resize: vertical;
  padding: 12px 14px;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(23, 107, 255, 0.55);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(23, 107, 255, 0.08);
}

.field-error {
  min-height: 16px;
  color: var(--danger);
  font-size: 10px;
}

.checkout-consent {
  margin: 18px 0;
  color: var(--muted);
  font-size: 11px;
}

.checkout-summary-list {
  display: grid;
  gap: 11px;
  margin-bottom: 15px;
}

.checkout-summary-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eef1f5;
  font-size: 11px;
}

.checkout-summary-item span:last-child {
  color: var(--muted);
  white-space: nowrap;
}

.order-state {
  padding: 58px 26px;
  text-align: center;
}

.order-state-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--success);
  box-shadow: 0 16px 34px rgba(11, 159, 110, 0.22);
}

.order-state-icon svg {
  width: 31px;
  height: 31px;
}

.order-state h2 {
  margin: 0 0 7px;
  font-family: "Morabba", "Dana", sans-serif;
  font-size: 28px;
}

.order-state p {
  max-width: 520px;
  margin: 0 auto 23px;
  color: var(--muted);
}

.form-alert {
  display: none;
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 11px;
  font-size: 11px;
}

.form-alert.is-visible {
  display: block;
}

.form-alert.is-error {
  color: #9d2929;
  background: #fff0f0;
  border: 1px solid #f2c8c8;
}

.store-footer {
  padding-block: 48px 24px;
  color: #c5d0de;
  background: #07111f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.75fr;
  gap: 50px;
  padding-bottom: 34px;
}

.footer-about p {
  max-width: 510px;
  margin: 17px 0 0;
  color: #8fa0b5;
  font-size: 12px;
}

.footer-col h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 14px;
}

.footer-col a,
.footer-col span {
  display: block;
  margin: 8px 0;
  color: #91a2b8;
  font-size: 12px;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #77889e;
  font-size: 10px;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: 24px;
  max-width: min(360px, calc(100vw - 40px));
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  color: #fff;
  background: #0b1b30;
  box-shadow: 0 18px 45px rgba(2, 14, 31, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.25s ease;
}

.toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.toast svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: #58d8a9;
}

.toast span {
  font-size: 12px;
}

.loading {
  opacity: 0.65;
  pointer-events: none;
}

@media (max-width: 1020px) {
  .store-links {
    display: none;
  }

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

  .mobile-panel {
    position: fixed;
    z-index: 49;
    inset: 78px 0 auto;
    display: grid;
    gap: 6px;
    padding: 16px 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    background: #081321;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.24);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.2s ease;
  }

  .mobile-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-panel a {
    padding: 10px 12px;
    border-radius: 10px;
    color: #c7d1df;
  }

  .mobile-panel a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
  }

  .shop-hero-grid {
    grid-template-columns: 1fr 0.82fr;
    gap: 28px;
  }

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

  .cart-layout,
  .checkout-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
  }
}

@media (max-width: 800px) {
  .store-nav {
    min-height: 70px;
  }

  .mobile-panel {
    top: 70px;
  }

  .header-link {
    display: none;
  }

  .shop-hero-grid {
    grid-template-columns: 1fr;
    padding-block: 46px 58px;
  }

  .hero-visual {
    width: min(580px, 100%);
    margin-inline: auto;
  }

  .hero-float-card {
    right: 18px;
    left: auto;
  }

  .shop-toolbar {
    grid-template-columns: 1fr;
  }

  .filter-chips {
    justify-content: flex-start;
  }

  .detail-shell,
  .cart-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .detail-media,
  .summary-card {
    position: relative;
    top: auto;
  }

  .detail-media {
    aspect-ratio: 1.45;
  }

  .summary-card {
    order: -1;
  }

  .cart-layout .summary-card {
    order: 0;
  }

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

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .store-container {
    width: min(100% - 28px, 1180px);
  }

  .store-nav {
    gap: 9px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-copy small {
    display: none;
  }

  .store-actions {
    gap: 7px;
  }

  .cart-link {
    width: 42px;
    padding: 0;
  }

  .cart-link > span:not(.cart-count) {
    display: none;
  }

  .cart-count {
    position: absolute;
    top: 10px;
    margin-right: 24px;
    min-width: 19px;
    height: 19px;
    border: 2px solid #081321;
    font-size: 9px;
  }

  .shop-hero-grid {
    min-height: auto;
    padding-block: 40px 50px;
  }

  .shop-hero h1 {
    font-size: 36px;
  }

  .shop-hero p {
    margin-block: 15px 23px;
    font-size: 13px;
  }

  .hero-image-frame {
    aspect-ratio: 1.17;
    border-radius: 20px;
  }

  .hero-float-card {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .shop-section {
    padding-block: 52px 68px;
  }

  .shop-intro,
  .page-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 21px;
  }

  .section-title h2,
  .page-heading h1 {
    font-size: 28px;
  }

  .shop-toolbar {
    margin-bottom: 20px;
    padding: 10px;
  }

  .filter-chips {
    margin-inline: -2px;
    padding-bottom: 2px;
  }

  .filter-chip {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-card h3 {
    font-size: 19px;
  }

  .product-description {
    min-height: 0;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .inner-page {
    padding-block: 34px 68px;
  }

  .detail-shell {
    gap: 25px;
  }

  .detail-media {
    aspect-ratio: 1.18;
    border-radius: 20px;
  }

  .product-detail-copy h1 {
    font-size: 31px;
  }

  .detail-lead {
    font-size: 14px;
  }

  .detail-feature-list {
    grid-template-columns: 1fr;
  }

  .detail-order-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .detail-order-actions {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: start;
    gap: 13px;
    padding: 15px;
  }

  .cart-item-side {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

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

  .summary-card,
  .checkout-form {
    padding: 18px;
  }

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

  .field-full {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .footer-about {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .toast {
    right: 14px;
    bottom: 14px;
    max-width: calc(100vw - 28px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
