/** Shopify CDN: Minification failed

Line 156:0 Expected "*/" to terminate multi-line comment

**/
/* --- KNAP STYLING --- */
button[name="add"], .product-form__submit {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #1C1A54 0%, #24217A 100%);
  color: #ffffff;
  font-weight: 600 !important;
  font-size: 18px !important;
  border: 1px solid #1C1A54;
  border-radius: 10px;
  padding: 12px 28px;
  text-align: center;
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  width: 100%;
  text-transform: uppercase;
}

/* Hover-effekt */
button[name="add"]:hover, .product-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(28, 26, 84, 0.4);
}

/* --- FLASH LYS EFFEKT --- */
button[name="add"]::after, .product-form__submit::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -75%;
  width: 50%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.25) 100%
  );
  transform: skewX(-20deg);
  transition: left 0.5s ease;
  left: -75%;
  z-index: 1;
  pointer-events: none; /* vigtigt – så laget ikke blokerer klik */
}
button[name="add"]:hover::after, .product-form__submit:hover::after {
  left: 130%;
}

/* --- LOADING STATE --- */
button[name="add"].is-loading, .product-form__submit.is-loading {
  pointer-events: none;
  opacity: 0.95;
}

/* Skjul alt eksisterende indhold mens der loader */
button[name="add"].is-loading > *:not(.btn-spinner),
.product-form__submit.is-loading > *:not(.btn-spinner) {
  opacity: 0;
}

/* Spinneren */
.btn-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  border: 3px solid #fff;
  border-top: 3px solid transparent;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: btnspin 1s linear infinite;
  z-index: 3;
}

@keyframes btnspin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* --- TEKST STYLING --- */
button[name="add"] [data-add-to-cart-text],
.product-form__submit [data-add-to-cart-text] {
  font-family: inherit !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600 !important;
  font-size: 18px !important;
  color: #ffffff !important;
}

/* --- SKJUL UØNSKET BETALINGSIKON --- */
.payment-icons > *:nth-child(6),
.cart-payment-icons > *:nth-child(6) {
  display: none !important;
}

/* --- TRYK NED-EFFEKT (klikfeedback) --- */
button[name="add"]:active, .product-form__submit:active {
  transform: scale(0.98);
  box-shadow: 0 1px 4px rgba(28, 26, 84, 0.3);
}

/* ------------------------------------------ */
/*                 NUCKLE REGULAR (400)       */
/* ------------------------------------------ */
@font-face {
  font-family: 'Nuckle';
  src: url('/cdn/shop/files/Nuckle-Regular.woff2?v=1764947050') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ------------------------------------------ */
/*             NUCKLE SEMIBOLD (600)          */
/* ------------------------------------------ */
@font-face {
  font-family: 'Nuckle';
  src: url('/cdn/shop/files/Nuckle-Semibold_5dfb35c7-63e2-4a4e-a55a-f48e82e5f5f9.woff2?v=1764947057') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ------------------------------------------ */
/*               NUCKLE BOLD (700)            */
/* ------------------------------------------ */
@font-face {
  font-family: 'Nuckle';
  src: url('/cdn/shop/files/Nuckle-Bold.woff2?v=1764947035') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ------------------------------------------ */
/*        GLOBAL OVERSKRIFTER (H1-H3)         */
/* ------------------------------------------ */

h1, .h1,
h2, .h2,
h3, .h3 {
  font-family: 'Nuckle', system-ui, -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-weight: 600 !important;   /* SemiBold som standard */
  line-height: 1.2;
}

/* ------------------------------------------ */
/*        BOLD TEKST INDE*
