/** Shopify CDN: Minification failed

Line 1109:0 Unexpected "}"

**/
:root {
  --accent: #00f0ff;
  --text: #f7fbff;
  --bg: #070812;
  --muted: #99a4bc;
  --line: rgba(0, 240, 255, 0.24);
  --ink: #f7fbff;
  --coral: #ff2bd6;
  --mint: #1bff8f;
  --paper: #111629;
  --white: #ffffff;
  --panel: rgba(12, 18, 38, 0.82);
  --panel-strong: #101529;
  --shadow-neon: 0 0 28px rgba(0, 240, 255, 0.28), 0 0 58px rgba(255, 43, 214, 0.16);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 8%, rgba(255, 43, 214, 0.16), transparent 30%),
    radial-gradient(circle at 85% 18%, rgba(0, 240, 255, 0.13), transparent 30%),
    linear-gradient(180deg, #070812 0%, #0a0d1d 48%, #05060d 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

button, input, select {
  font: inherit;
}

.page-width {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.skip-link,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 20;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
}

.announcement {
  background: #05060d;
  color: var(--white);
  text-align: center;
  font-size: 0.86rem;
  padding: 9px 16px;
}

.announcement p { margin: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(7, 8, 18, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  box-shadow: 0 0 32px rgba(0, 240, 255, 0.11);
}

.header-inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  text-shadow: 0 0 18px rgba(0, 240, 255, 0.42);
  animation: brandNeonPulse 2.8s ease-in-out infinite;
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  max-width: 150px;
  height: auto;
}

@keyframes brandNeonPulse {
  0%,
  100% {
    color: #f7fbff;
    text-shadow:
      0 0 8px rgba(0, 240, 255, 0.38),
      0 0 18px rgba(0, 240, 255, 0.32),
      0 0 34px rgba(255, 43, 214, 0.18);
  }

  50% {
    color: #ffffff;
    text-shadow:
      0 0 10px rgba(255, 255, 255, 0.72),
      0 0 24px rgba(0, 240, 255, 0.78),
      0 0 48px rgba(0, 240, 255, 0.52),
      0 0 72px rgba(255, 43, 214, 0.34);
  }
}

.primary-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 0.96rem;
}

.primary-nav a,
.text-link {
  color: var(--muted);
  transition: color 160ms ease;
}

.primary-nav a:hover,
.text-link:hover {
  color: var(--accent);
  text-shadow: 0 0 16px rgba(0, 240, 255, 0.5);
}

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

.header-actions a,
.icon-button {
  position: relative;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
}

.icon-button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0;
}

.header-actions svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-count {
  position: absolute;
  top: 0;
  right: -4px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--coral);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--panel-strong);
  border-radius: 8px;
  padding: 9px;
}

.menu-button span:not(.visually-hidden) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(720px, 86vh);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media,
.hero-media::after,
.hero-image {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 8, 18, 0.98) 0%, rgba(7, 8, 18, 0.72) 42%, rgba(7, 8, 18, 0.18) 76%),
    linear-gradient(0deg, rgba(7, 8, 18, 0.9) 0%, transparent 34%);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 84px 0 112px;
}

.hero-content h1 {
  max-width: 540px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.7rem, 5.6vw, 5.1rem);
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 0 32px rgba(0, 240, 255, 0.28), 0 0 56px rgba(255, 43, 214, 0.22);
}

.hero-content p:not(.eyebrow) {
  max-width: 470px;
  margin: 24px 0 32px;
  color: #d7def3;
  font-size: 1.12rem;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(0, 240, 255, 0.58);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(0, 240, 255, 0.62);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.22), rgba(255, 43, 214, 0.28));
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
  box-shadow: var(--shadow-neon);
}

.button:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.38), rgba(255, 43, 214, 0.42));
}

.button-light {
  background: var(--white);
  color: #070812;
}

.button-secondary {
  background: transparent;
  color: var(--accent);
  box-shadow: none;
}

.button.wide { width: 100%; }

.search-panel {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  padding: 26px 0;
  background: rgba(7, 8, 18, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(17, 19, 21, 0.12);
}

.search-panel[hidden] {
  display: none;
}

.search-box {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
}

.search-box input {
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 0 16px;
}

.theme-search {
  grid-template-columns: 1fr auto;
  margin-bottom: 34px;
}

.search-count h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.search-results {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.search-result {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  min-height: 74px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(255, 43, 214, 0.08);
}

.search-result strong {
  display: block;
  color: var(--white);
}

.search-empty {
  grid-column: 1 / -1;
  color: var(--muted);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  width: min(420px, 100%);
  height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #090b17;
  box-shadow: -20px 0 60px rgba(17, 19, 21, 0.18);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer-header,
.cart-drawer-footer {
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.cart-drawer-footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.cart-drawer-header h2 {
  margin: 0;
  font-size: 1.5rem;
}

.cart-drawer-items {
  overflow: auto;
  padding: 4px 22px;
}

.drawer-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.drawer-item-title {
  margin: 0 0 8px;
  font-weight: 800;
}

.drawer-item-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 4px;
}

.drawer-item-controls button {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 6px;
  background: var(--panel-strong);
  color: var(--accent);
  cursor: pointer;
}

.drawer-empty {
  color: var(--muted);
  padding: 24px 0;
}

.cart-drawer-footer p {
  display: flex;
  justify-content: space-between;
  margin: 0 0 14px;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 35;
  border: 0;
  background: rgba(17, 19, 21, 0.32);
}

.cart-backdrop[hidden] {
  display: none;
}

.section {
  padding: 80px 0;
}

.section[id] {
  scroll-margin-top: 92px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 28px;
}

.section-heading h2,
.promo-inner h2,
.newsletter h2,
.collection-heading h1,
.cart-page h1,
.narrow-page h1,
.product-details h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0;
}

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

#arrivals,
.featured-products {
  overflow: hidden;
}

#arrivals .section-heading,
.featured-products .section-heading {
  position: relative;
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .brand {
    animation: none;
  }

  #arrivals .product-grid,
  .featured-products .product-grid {
    animation: none;
    overflow-x: auto;
  }
}

.product-card {
  min-width: 0;
  padding: 8px;
  border: 1px solid rgba(0, 240, 255, 0.18);
  border-radius: 8px;
  background: rgba(10, 15, 32, 0.68);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
}

.product-link {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden;
  border-radius: 8px;
  background: var(--panel-strong);
  border: 1px solid var(--line);
  box-shadow: inset 0 0 32px rgba(0, 240, 255, 0.08);
}

.product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 220ms ease;
}

.product-card:hover .product-image {
  transform: scale(1.025);
}

.placeholder {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 240, 255, 0.26), rgba(255, 43, 214, 0.22)),
    linear-gradient(45deg, rgba(255,255,255,0.04) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.04) 50%, rgba(255,255,255,0.04) 75%, transparent 75%),
    var(--panel-strong);
  background-size: auto, 22px 22px, auto;
}

.product-image.placeholder::before {
  content: "";
  position: absolute;
  inset: 22%;
  border: 1px solid rgba(0, 240, 255, 0.62);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.34), transparent 12%),
    linear-gradient(145deg, rgba(0, 240, 255, 0.22), rgba(255, 43, 214, 0.18));
  box-shadow: 0 0 28px rgba(0, 240, 255, 0.22), inset 0 0 18px rgba(255, 255, 255, 0.08);
}

.product-image.placeholder::after {
  content: "";
  position: absolute;
  left: 28%;
  right: 28%;
  bottom: 18%;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.8);
}

.product-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 2px;
  padding-top: 6px;
}

.add-button {
  min-height: 34px;
  margin-top: auto !important;
  padding-inline: 14px;
  font-size: 0.82rem;
}

.product-title {
  color: var(--white);
  font-weight: 750;
  font-size: 0.96rem;
  line-height: 1.25;
}

.price {
  margin: 0;
  color: var(--muted);
}

.sale-price {
  color: var(--coral);
  font-weight: 800;
}

.price s {
  margin-left: 8px;
}

.category-section {
  background: rgba(9, 13, 29, 0.92);
  border-block: 1px solid var(--line);
}

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

.category-tile {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: end;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 240, 255, 0.32), rgba(255, 43, 214, 0.28)),
    var(--panel-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-neon);
  padding: 22px;
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.56), transparent 58%);
}

.category-tile span {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 850;
}

.promo-band {
  padding: 54px 0;
  background:
    linear-gradient(90deg, rgba(0, 240, 255, 0.22), rgba(255, 43, 214, 0.24)),
    #090b17;
  color: var(--white);
  border-block: 1px solid var(--line);
}

.promo-inner,
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.promo-inner p,
.newsletter p {
  max-width: 560px;
  margin: 12px 0 0;
}

.newsletter {
  background: linear-gradient(135deg, rgba(27, 255, 143, 0.12), rgba(0, 240, 255, 0.1));
}

.newsletter-form {
  width: min(100%, 460px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.newsletter-form input,
.cart-item input {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 0 14px;
}

.product-form select {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 0 40px 0 14px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%2300f0ff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-form select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.25);
}

.product-form select option {
  background-color: #0c0e1a;
  color: #f7fbff;
}

.form-note {
  grid-column: 1 / -1;
}

.product-main {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  gap: 54px;
  padding: 64px 0 92px;
}

.product-gallery {
  display: grid;
  gap: 16px;
}

.product-main-image {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
  border-radius: 8px;
  background: var(--panel-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-neon);
}

.product-details {
  position: sticky;
  top: 102px;
  align-self: start;
}

.product-form {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.rte {
  color: #d7def3;
}

.collection-heading {
  margin-bottom: 34px;
}

.pagination {
  grid-column: 1 / -1;
  margin-top: 24px;
}

.cart-items {
  border-top: 1px solid var(--line);
}

.cart-item {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 96px;
  height: 112px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-title {
  font-weight: 800;
}

.cart-item input {
  width: 84px;
  margin-top: 6px;
}

.cart-summary {
  margin-left: auto;
  width: min(100%, 380px);
  display: grid;
  gap: 12px;
  padding-top: 24px;
}

.cart-summary p {
  display: flex;
  justify-content: space-between;
}

.narrow-page {
  width: min(800px, calc(100% - 32px));
}

.site-footer {
  background: #05060d;
  color: var(--white);
  padding: 48px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
}

.footer-grid p {
  max-width: 420px;
  color: rgba(255,255,255,0.72);
}

.footer-grid nav {
  display: grid;
  gap: 12px;
  color: rgba(255,255,255,0.72);
}

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .menu-button {
    display: block;
    order: -1;
  }

  .primary-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(7, 8, 18, 0.98);
    box-shadow: 0 18px 48px rgba(0, 240, 255, 0.16), 0 0 42px rgba(255, 43, 214, 0.1);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 12px;
    color: #d7def3;
    border-radius: 6px;
  }

  .primary-nav a:hover {
    background: rgba(0, 240, 255, 0.08);
    color: var(--accent);
  }

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

  .category-grid,
  .product-main,
  .promo-inner,
  .newsletter-inner,
  .footer-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .product-details {
    position: static;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 500px;
    align-items: center;
  }

  .hero-media::after {
    background:
      linear-gradient(0deg, rgba(7, 8, 18, 1) 0%, rgba(7, 8, 18, 0.96) 52%, rgba(7, 8, 18, 0.62) 86%),
      linear-gradient(90deg, rgba(7, 8, 18, 0.9), rgba(7, 8, 18, 0.62));
  }

  .hero-image {
  opacity: 1 !important;
  filter: none !important;
  object-position: center center !important;
  display: block !important;
  visibility: visible !important;
}

  .hero-content {
    padding: 280px 0 44px;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .section {
    padding: 56px 0;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

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



  .product-card {
    padding: 8px;
  }

  .product-title {
    font-size: 0.86rem;
  }

  .price {
    font-size: 0.84rem;
  }

  .add-button {
    min-height: 34px;
    padding-inline: 10px;
    font-size: 0.8rem;
  }

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

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

  .search-box,
  .search-results {
    grid-template-columns: 1fr;
  }

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

  .cart-item > p {
    grid-column: 2;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 48px;
  width: 100%;
  grid-column: 1 / -1;
}

.pagination span {
  display: inline-flex;
}

.pagination a,
.pagination .current,
.pagination .disabled,
.pagination-btn {
  min-height: 40px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 240, 255, 0.28);
  border-radius: 8px;
  background: var(--panel-strong);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.22s ease !important;
  text-decoration: none;
  cursor: pointer;
}

.pagination a:hover,
.pagination-btn:hover {
  border-color: var(--accent);
  color: var(--white);
  box-shadow: 0 0 14px rgba(0, 240, 255, 0.22);
}

.pagination .current,
.pagination-btn.active {
  border-color: var(--coral) !important;
  background: linear-gradient(135deg, rgba(255, 43, 214, 0.38), rgba(0, 240, 255, 0.18)) !important;
  box-shadow: 0 0 18px rgba(255, 43, 214, 0.36) !important;
  color: var(--white) !important;
}

.pagination .disabled,
.pagination-btn[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
  .hero-media {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
}

.hero-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.hero-content {
  position: relative !important;
  z-index: 1 !important;
}
}