/** Shopify CDN: Minification failed

Line 53:0 Unexpected "{"
Line 53:1 Expected identifier but found "%"
Line 54:21 Expected identifier but found whitespace
Line 54:23 Unexpected "{"
Line 54:33 Expected ":"
Line 55:0 Unexpected "{"
Line 55:1 Expected identifier but found "%"

**/
/*
 * Wicked Web — minimal dark storefront
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');

:root {
  --color-bg: #08080a;
  --color-surface: #0c0c0f;
  --color-elevated: #101014;
  --color-border: #1c1c22;
  --color-text: #ededed;
  --color-text-muted: #6a6a72;
  --color-accent: #ffffff;
  --color-sold-out: #4a4a50;

  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-size-xs: 0.6875rem;
  --font-size-sm: 0.8125rem;
  --font-size-base: 0.875rem;
  --font-size-lg: 1rem;

  --letter-spacing-wide: 0.06em;
  --line-height-base: 1.5;

  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --page-gutter: 1rem;
  --header-height: 6rem;
  --header-height-scrolled: 4.25rem;
  --logo-height-scrolled: 2.5rem;
  --logo-height-scrolled-desktop: 3rem;

  --ease-out: ease;
  --duration-fast: 150ms;
  --max-width: 100%;
}

{% if settings.color_bg != blank %}
  :root { --color-bg: {{ settings.color_bg }}; }
{% endif %}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #050506;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  font-weight: 400;
  line-height: var(--line-height-base);
  color: var(--color-text);
  background:
    radial-gradient(135% 90% at 50% -10%, #1a1a20 0%, #0d0d10 42%, #07070a 78%, #050506 100%)
    fixed;
  min-height: 100vh;
}

body.no-scroll {
  overflow: hidden;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--page-gutter);
  z-index: 9999;
  padding: var(--space-xs) var(--space-sm);
  background: #fff;
  color: #000;
}

.skip-link:focus {
  top: var(--space-sm);
}

.page-width {
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.display-font {
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
}

.eyebrow {
  font-size: var(--font-size-xs);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.grain-overlay,
.web-bg {
  display: none !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  font-size: var(--font-size-xs);
  font-weight: 500;
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-text);
  min-height: 44px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.15s ease;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn:active {
  transform: scale(0.99);
}

.btn--primary {
  background: linear-gradient(180deg, #fafafa 0%, #d8d8da 100%);
  color: #0a0a0a;
  border-color: transparent;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) inset, 0 6px 18px rgba(0, 0, 0, 0.45);
}

.btn--primary:hover {
  background: linear-gradient(180deg, #ffffff 0%, #e6e6e8 100%);
  border-color: transparent;
}

.btn--sold-out,
.btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.field__input {
  width: 100%;
  padding: 0.75rem;
  font-family: inherit;
  font-size: var(--font-size-sm);
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
}

.field__input:focus {
  outline: none;
  border-color: #444;
}

.field__input::placeholder {
  color: var(--color-text-muted);
}

.price {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.price--compare {
  text-decoration: line-through;
  margin-right: 0.35rem;
}

.badge {
  font-size: var(--font-size-xs);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.section {
  padding-block: var(--space-md);
}

@media (min-width: 768px) {
  :root {
    --page-gutter: 1.25rem;
  }
}
