/** Shopify CDN: Minification failed

Line 14:0 Unexpected "@import"
Line 135:4 Expected ":"
Line 136:0 Expected "}" to go with "{"

**/
achno-custom.css
/* =============================================
   ACHNO — Custom Design System
   ============================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500&display=swap');

:root {
  --achno-black:   #0A0A0A;
  --achno-white:   #F5F5F3;
  --achno-accent:  #C8D8E8;
  --achno-grey:    #1A1A1A;
  --achno-muted:   #888888;
}

/* === BASE === */
body {
  background-color: var(--achno-black);
  color: var(--achno-white);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* === TYPOGRAFI === */
h1, h2, h3, .h1, .h2, .h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.08em;
  font-weight: 400;
  text-transform: uppercase;
}

/* === NAVIGATION === */
.header {
  background-color: var(--achno-black) !important;
  border-bottom: 1px solid #1F1F1F;
  padding: 20px 0;
}

.header__menu-item a,
.header a {
  color: var(--achno-white) !important;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.header__menu-item a:hover,
.header a:hover {
  opacity: 1;
  color: var(--achno-white) !important;
}

/* === HERO / BANNER === */
.banner {
  margin-bottom: 0;
}

.banner__content {
  padding: 60px 40px;
}

.banner__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: 0.1em;
  line-height: 0.95;
}

/* === SEKTIONER — luftigare === */
.section {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.section-header {
  margin-bottom: 48px;
}

/* === PRODUKTKORT === */
.card {
  background: transparent;
  border: none;
}

.card__media {
  overflow: hidden;
  border-radius: 2px;
}

.card__media img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card:hover .card__media img {
  transform: scale(1.04);
}

.card__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--achno-white);
}

.price {
  color: var(--achno-muted);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

/* === KNAPPAR === */
.button, .btn {
  background-color: var(--achno-white) !important;
  color: var(--achno-black) !important;
  border: none !important;
  border-radius: 0 !important;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 36px !important;
  tr
