/** Shopify CDN: Minification failed

Line 118:18 Unexpected "-->"

**/
/* =========================================================
   NYPHIRA BUTTONS & CTA PACK
   Elegant, harmonisk og konverteringsoptimeret
   ========================================================= */

/* ---------- Basis CTA-knap ---------- */
.ny-btn {
  display: inline-block;
  font-family: var(--nyphira-font-body);
  font-weight: 500;
  font-size: var(--nyphira-text-base);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--nyphira-radius);
  border: 1px solid var(--nyphira-black);
  padding: 10px 26px;
  background: var(--nyphira-black);
  color: var(--nyphira-white);
  transition: all 0.35s ease;
  cursor: pointer;
  text-align: center;
}
.ny-btn:hover {
  background: var(--nyphira-accent);
  border-color: var(--nyphira-accent);
  color: var(--nyphira-white);
  box-shadow: var(--nyphira-shadow-soft);
  transform: translateY(-1px);
}

/* ---------- Sekundær (Outline) ---------- */
.ny-btn-outline {
  background: transparent;
  color: var(--nyphira-black);
  border: 1.4px solid var(--nyphira-black);
}
.ny-btn-outline:hover {
  background: var(--nyphira-black);
  color: var(--nyphira-white);
  box-shadow: var(--nyphira-shadow-soft);
}

/* ---------- Accent (Lilla CTA) ---------- */
.ny-btn-accent {
  background: var(--nyphira-accent);
  border: 1px solid var(--nyphira-accent);
  color: var(--nyphira-white);
  font-weight: 600;
  box-shadow: 0 0 8px rgba(196,164,249,0.3);
}
.ny-btn-accent:hover {
  background: var(--nyphira-hover);
  border-color: var(--nyphira-hover);
  box-shadow: 0 0 12px rgba(196,164,249,0.5);
}

/* ---------- Ghost (kun tekst) ---------- */
.ny-btn-ghost {
  background: none;
  border: none;
  color: var(--nyphira-black);
  font-size: var(--nyphira-text-lg);
  font-weight: 500;
  position: relative;
}
.ny-btn-ghost::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0%;
  background: var(--nyphira-accent);
  transition: width 0.3s ease;
}
.ny-btn-ghost:hover::after {
  width: 100%;
}
.ny-btn-ghost:hover {
  color: var(--nyphira-accent);
}

/* ---------- Store CTA banners ---------- */
.ny-cta-block {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--nyphira-font-heading);
  font-size: 1.2rem;
  background: var(--nyphira-black);
  color: var(--nyphira-white);
  padding: 16px 40px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--nyphira-shadow-strong);
  transition: all 0.4s ease;
}
.ny-cta-block:hover {
  background: var(--nyphira-accent);
  color: var(--nyphira-white);
  transform: scale(1.03);
}

/* ---------- Størrelser ---------- */
.ny-btn-sm { padding: 6px 14px; font-size: var(--nyphira-text-sm); }
.ny-btn-lg { padding: 14px 34px; font-size: var(--nyphira-text-lg); }

/* ---------- Animation ved klik ---------- */
.ny-btn:active, .ny-btn-outline:active, .ny-btn-accent:active {
  transform: scale(0.97);
}
<!-- Standard CTA -->
<a href="/collections/all" class="ny-btn">Shop Now</a>

<!-- Sekundær (outline) -->
<a href="/collections/lingerie" class="ny-btn-outline">Explore Lingerie</a>

<!-- Accent (lilla) -->
<a href="/pages/join" class="ny-btn-accent">Join the Club</a>

<!-- Ghost (ren tekst) -->
<a href="/collections/couples" class="ny-btn-ghost">Discover More</a>

<!-- Stor banner CTA -->
<a href="/collections/new" class="ny-cta-block">New Arrivals</a>
