/* =========================================
   RESET / GRUNNLEGGENDE
========================================= */

html,
body {
    background: #ffffff !important;
    margin: 0;
    padding: 0;
}


/* =========================================
   TYPOGRAFI – GLOBAL
========================================= */

body,
td,
th {
    font-family: system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1c2a4b;
}

/* Overskrifter */
h1 {
    font-size: 34px;
    font-weight: 700;
    margin: 0 0 14px;
}

h2 {
    font-size: 26px;
    font-weight: 700;
    margin: 40px 0 14px;
}

h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 24px 0 10px;
}


/* Lenker */
a {
    color: #395fdd;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


/* =========================================
   HOVEDLAYOUT
========================================= */

.page {
    max-width: 1200px;
    margin: 0 auto;
       padding: 36px 24px 70px;
    background: transparent;
}

.content,
.content-inner,
.category-page {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}


/* =========================================
   PRODUKTLISTER
========================================= */

.product-row {
    padding: 18px 0;
    border-bottom: 1px solid #e3e6f2;
}


/* =========================================
   SE SANG – IKON
========================================= */

.icon-view {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    top: 14px;
}

.icon-svg {
    width: 100%;
    height: 100%;
    display: block;
    stroke: #395fdd;
    stroke-width: 2.2;
    fill: none;
    transition: stroke 0.15s ease;
}

.icon-view:hover .icon-svg {
    stroke: #223fa8;
}


/* =========================================
   POPUP – SANGVISNING (FASIT)
========================================= */

.song-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.song-modal {
    background: #ffffff;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.song-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: #f1f1f1;
    border-bottom: 1px solid #ddd;
    flex-shrink: 0;
}

.song-image-wrap {
    position: relative;
    display: inline-block;
}

.song-image {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
}

.song-frame-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.song-footer {
    padding: 12px;
    border-top: 1px solid #ddd;
    text-align: center;
    flex-shrink: 0;
}

.song-buy-btn {
    padding: 10px 16px;
    font-size: 16px;
    background: #395fdd;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
    margin-top: 80px;
    padding: 32px 24px 36px;
    border-top: 1px solid #e3e6f2;
    background: #ffffff;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-main {
    font-size: 14px;
    color: #4b556f;
}

.footer-contact {
    font-size: 14px;
    color: #6b728a;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-payments {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 14px;
}

.footer-payments img {
    height: 26px;
    opacity: 0.85;
}


/* =========================================
   FLYTENDE HANDLEKURV
========================================= */

.floating-cart {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 68px;
    height: 68px;
    background: #395fdd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: transform 0.15s ease;
}

.floating-cart:hover {
    transform: scale(1.05);
}

.cart-icon {
    font-size: 30px;
    color: #ffffff;
}

#fs-cart-count {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 22px;
    height: 22px;
    background: #ffd400;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hidden-cart {
    display: none;
}


/* =========================================
   HANDLEKURV – TOAST
========================================= */

.cart-toast {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: #1f7a1f;
    color: #ffffff;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 10000;
}

.cart-toast.show {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================
   HANDLEKURV – TABELL (DESKTOP)
========================================= */

.cart-table {
    width: 100%;
    table-layout: fixed;
}

.cart-table th:nth-child(1),
.cart-table td:nth-child(1),
.cart-table th:nth-child(4),
.cart-table td:nth-child(4),
.cart-table th:nth-child(5),
.cart-table td:nth-child(5) {
    text-align: center;
}

.cart-table th:nth-child(2),
.cart-table td:nth-child(2),
.cart-table th:nth-child(3),
.cart-table td:nth-child(3) {
    text-align: left;
}


/* =========================================
   HANDLEKURV – CHECKOUT
========================================= */

.cart-bottom {
    width: 900px;
    margin-top: 30px;
    text-align: right;
}

.cart-checkout {
    display: inline-block;
    width: 220px;
    text-align: center;
}

.cart-total {
    font-weight: 700;
}


/* =========================================
   VIPPS – DESKTOP
========================================= */

.vipps-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ff5b24;
    padding: 14px 12px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
    transition: transform 0.15s ease;
}

.vipps-primary:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.vipps-text {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
}

.vipps-text strong {
    font-size: 26px;
    font-weight: 700;
    margin-left: 4px;
}

.or-text {
    margin-top: 8px;
    font-size: 13px;
    color: #666;
}

.cart-page .content-inner h1 {
    margin-top: 36px;
}

/* Desktop-sikring: mobilmeny skal aldri vises som standard */
.fs-mobile-menu {
  display: none;
}

/* Desktop-sikring: burger skal være skjult på desktop */
.fs-burger {
  display: none;
}



/* =========================
   HANDLEKURV – FJERN ALL KORT-STIL
   (skygge, bakgrunn, radius)
========================= */

.cart-page,
.cart-page * {
    box-shadow: none !important;
}

.cart-page .content,
.cart-page .content-inner,
.cart-page .page {
    background: transparent !important;
    border-radius: 0 !important;
}

/* =========================
   HEADER – DESKTOP
========================= */

.fs-header {
    width: 100%;
    background: linear-gradient(to bottom, #3A57E8, #3149C5);
    border-bottom: 1px solid #22348F;
}

.fs-header-inner {
    max-width: 1200px;
    min-height: 150px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fs-logo-area {
    display: flex;
    align-items: center;
    gap: 18px;
}

.fs-logo-img {
    height: 80px;
}

.fs-logo-text {
    display: flex;
    flex-direction: column;
}

.fs-logo-title {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
}

.fs-logo-sub {
    font-size: 16px;
    color: #eef1ff;
}

.fs-topmenu {
    display: flex;
    gap: 12px;
}

.fs-topmenu a {
    padding: 10px 20px;
    background: #ffffff;
    border-radius: 8px;
    border: 2px solid #3A57E8;
    color: #1c2a4b;
    font-weight: 600;
    text-decoration: none;
}

.fs-burger {
    display: none; /* skjult på desktop */
}




  .cart-icon {
    font-size: 36px;        /* litt større – behold hvis du liker størrelsen */
    color: #ffffff;

    position: relative;
    top: 5px;               /* flytter ikonet litt NED */
    left: -4px;             /* flytter ikonet litt TIL VENSTRE */

    line-height: 1;
    filter: brightness(2) contrast(2);
    text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}


  .cart-table {
    width: 100%;
    border-collapse: collapse;
  }

.product-mobile {
  display: none;
}



/* =========================
   CART – MOBILVISNING
========================= */

@media (max-width: 768px) {

  /* HEADER */
  .fs-header-inner {
    min-height: auto;
    padding: 12px 16px;
  }

  .fs-topmenu {
    display: none;
  }

  /* VIS logo-tekst på mobil */
  .fs-logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .fs-logo-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
  }

  .fs-logo-sub {
    font-size: 12px;
    color: #e6ebff;
    line-height: 1.2;
  }

  /* Juster logo + tekst horisontalt */
  .fs-logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .fs-logo-img {
    height: 40px; /* litt mindre på mobil */
  }
  

  .fs-burger {
    display: block;
    font-size: 28px;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
  }

  /* MOBILMENY */
  .fs-mobile-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e3e6f2;
    padding: 12px 16px 20px;
    display: none;
    z-index: 9998;
  }

  .fs-mobile-menu.open {
    display: block;
  }

  .mobile-link {
    display: block;
    padding: 12px 0;
    font-size: 18px;
    font-weight: 600;
    color: #1c2a4b;
  }

  .mobile-divider {
    height: 1px;
    background: #e3e6f2;
    margin: 12px 0;
  }

  .mobile-parent {
    width: 100%;
    background: none;
    border: none;
    padding: 12px 0;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #1c2a4b;
  }

  .mobile-submenu {
    display: none;
    padding-left: 12px;
  }

  .mobile-submenu.open {
    display: block;
  }

  .mobile-submenu a {
    display: block;
    padding: 8px 0;
    font-size: 16px;
    color: #395fdd;
  }


/* =========================
   CART – SE SANG (MOBIL)
========================= */


 .product-desktop {
    display: none;
  }

  .product-mobile {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid #e3e6f2;
  }

  .mobile-title {
    font-size: 17px;
    font-weight: 700;
  }

  .mobile-melody {
    font-size: 15px;
    color: #444;
  }

  .mobile-price {
    font-size: 15px;
    margin-top: 4px;
  }

  .mobile-actions {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  /* 🔍 Forstørrelsesglass – FULL KONTROLL */
  .mobile-view-song {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mobile-view-song .icon-view {
    width: 34px;      /* ← juster størrelse */
    height: 34px;
    top: 0;           /* ← flytt opp/ned */
    left: 0;          /* ← flytt høyre/venstre */
  }

  .mobile-view-song .icon-svg {
    stroke-width: 2.6;
  }

  /* 🛒 Knapp */
  .product-mobile .cart-button {
    padding: 10px 14px;
    font-size: 15px;
    white-space: nowrap;
  }

    
/* =========================
   CATEGORY HEADER – DESKTOP
========================= */

.category-header {
    margin-top: 36px;
    margin-bottom: 40px;
    padding: 0;
}

.category-header h1 {
    font-size: 32px;
    margin: 0 0 18px;

}

.category-description {
    font-size: 17px;
    line-height: 1.6;
    max-width: 820px;

}


  /* Produktliste wrapper */
  .product-list {
    max-width: 100%;
    padding: 0 12px;
  }

  /* Selve produkt-raden */
  .product-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Tekstdel */
  .product-row > div:first-child {
    width: 100%;
  }

  /* Ikoner / pris / knapp */
  .product-row > div:last-child {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
  }

  /* Pris litt tydeligere */
  .price-circle {
    width: 52px;
    height: 52px;
    font-size: 15px;
  }

  /* Legg i handlevogn – full bredde */
  .cart-button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }


  .cart-view-song {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .cart-view-song span:first-child {
    font-weight: 600;
    color: #1c2a4b;
  }

  .cart-view-song .icon-view {
    width: 36px;
    height: 36px;
    top: 0;           /* ikke arve forskyvning */
  }

  .cart-view-song .icon-svg {
    stroke-width: 2.4;
  }


  /* Skjul tabell-header */
  .cart-table thead,
  .cart-table tr:first-child {
    display: none;
  }

  /* Hver rad blir et "kort" */
  .cart-table tr {
    display: block;
    margin-bottom: 14px;
    padding: 12px;
    border: 1px solid #e3e6f2;
    border-radius: 8px;
    background: #ffffff;
  }

  .cart-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border: none;
    font-size: 15px;
  }

  /* Venstre label */
  .cart-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #6b728a;
    padding-right: 10px;
    flex-shrink: 0;
  }

  /* Pris litt tydeligere */


  .cart-price {
    font-weight: 700;
  }

  /* Fjern-knapp */
  .cart-remove a {
    color: #c62828;
    font-size: 18px;
    text-decoration: none;
  }

  /* Checkout-blokk full bredde */
  .cart-bottom {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }

  .cart-checkout {
    width: 100%;
  }
}
/* =========================================
   SEO-SIDER – FJERN HVIT BOKS (KORREKT SELECTOR)
========================================= */

/* Selve wrapperen */


/* SEO-sider – kun innhold, IKKE header/footer */
.page.seo-page .content,
.page.seo-page .content-inner,
.page.seo-page .seo-content {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}




/* Innhold */
.page.seo-page .content,
.page.seo-page .content-inner,
.page.seo-page .seo-content {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Eventuelle pseudo-elementer */
.page.seo-page::before,
.page.seo-page::after {
    display: none !important;
}


/* =========================================
   SEO – STRAM OPP SIDEMENY TOPP
========================================= */

.page.seo-page .sidebar h3,
.page.seo-page .sidebar h4 {
    margin-top: 0 !important;
}
/* Desktop produktliste */
@media (min-width: 1024px) {

  .product-row {
    align-items: flex-start; /* viktig når teksten blir høy */
  }

  .product-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 2px;
  }

  /* Label + tekst i to kolonner (wrap under teksten) */
  .product-melody,
  .product-description {
    display: grid;
    grid-template-columns: max-content 1fr;
    column-gap: 8px;
    line-height: 1.4;
    margin-top: 3px;
  }

  .product-melody .label,
  .product-description .label {
    font-weight: 700;
    white-space: nowrap;
  }

  .product-melody .text,
  .product-description .text {
    min-width: 0; /* gjør at wrapping funker riktig */
  }

}
@media (min-width: 1024px) {

    .product-meta {
        margin-top: 10px;
        padding-left: 26px; /* matcher hengende innrykk visuelt */
        font-size: 14px;
        color: #555;
    }

    .product-meta .meta-row {
        display: flex;
        align-items: flex-start;
        margin-bottom: 3px;
        line-height: 1.4;
    }

    .product-meta .meta-label {
        min-width: 160px;
        font-weight: 600;
        color: #333;
    }

    .product-meta .meta-value {
        flex: 1;
    }

}
.song-audio-top {
    display: flex;
    justify-content: center;
    margin: 14px 0 10px;
}

.song-play-btn {
    font-size: 15px;
    padding: 6px 14px;
}
.song-audio-inline {
    display: flex;
    justify-content: flex-start; /* evt center */
    margin: 6px 0 10px;
}

.song-play-btn {
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 6px;
    background: #f3f5f8;
    border: 1px solid #cfd6e0;
    color: #1f2937;
    cursor: pointer;
    margin-top: 0px;   /* 👈 flytter bare knappen ned */
    justify-content: center;
}

.song-play-btn:hover {
    background: #e8edf4;
}
.song-frame {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
}


/* =========================================
   SLIK FUNGERER DET – DB-VENNLIG OG STABIL
========================================= */

.how-it-works {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.how-it-works .step {
    position: relative;
    background: #fafafa;
    border-radius: 14px;
    padding: 24px 22px 26px 64px; /* plass til ikon */
    box-sizing: border-box;
}

/* Felles ikon */
.how-it-works .step::before {
    position: absolute;
    top: 22px;
    left: 22px;
    font-size: 26px;
    line-height: 1;
}

/* Ikoner per steg – helt uten DB */
.how-it-works .step:nth-child(1)::before {
    content: "📝";
}

.how-it-works .step:nth-child(2)::before {
    content: "🎵";
}

.how-it-works .step:nth-child(3)::before {
    content: "📦";
}

.how-it-works .step:nth-child(4)::before {
    content: "⚡";
}

.how-it-works .step h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
    color: #1c2a4b;
}

.how-it-works .step p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #1c2a4b;
}
/* =========================================
   SEO-SIDE – TVING CTA-KNAPP
========================================= */

.page.seo-page .how-it-works-cta {
    margin-top: 32px;
    text-align: center;
}

.page.seo-page .cta-find-song {
    display: inline-block !important;
    padding: 14px 26px !important;
    background: #395fdd !important;
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none !important;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.page.seo-page .cta-find-song:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    text-decoration: none;
}

/* =========================================
   SONG FINDER – VALGBOKSER UTEN IKONER
========================================= */

.song-finder-options .step {
    padding: 28px 22px;              /* fjerner plass for ikon */
    text-align: center;
    background: #f7f9fc;
    border: 2px solid #e3e6f2;
    border-radius: 14px;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

/* Fjern ikonene helt */
.song-finder-options .step::before {
    content: none !important;
    display: none !important;
}

/* Tittel */
.song-finder-options .step h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #1c2a4b;
}

/* Hover-effekt */
.song-finder-options .step:hover {
    transform: translateY(-2px);
    border-color: #395fdd;
    box-shadow: 0 10px 24px rgba(57,95,221,0.18);
    text-decoration: none;
}

/* Sørg for at hele boksen er klikkbar */
.song-finder-options .step {
    text-decoration: none;
}

/* === Steg 1 – valg av anledning === */

.songplanner-step .option-grid {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
    
}

.songplanner-step .option-grid {
    max-width: 760px;   /* ← nøkkelen */
}

.songplanner-step .option-box {
    background: #f4f5f7;
    border: 1px solid #cfd4dc;
    border-radius: 10px;
    padding: 20px 26px;
    min-width: 240px;

    text-align: left;

    cursor: pointer;
    transition: all 0.2s ease;
}

/* 🔹 TITTEL – litt mindre og roligere */
.songplanner-step .option-box h3 {
    margin: 0 0 6px;
    font-size: 18px;          /* ↓ fra 20px */
    font-weight: 700;
    color: #1c2a4b;
}

/* 🔹 UNDERTEKST – mindre og lettere */
.songplanner-step .option-box p {
    margin: 0;
    font-size: 14px;          /* matcher /hjem/ */
    line-height: 1.5;
    color: #4b556f;           /* roligere gråblå */
    font-weight: 400;
}

/* Hover */
.songplanner-step .option-box:hover {
    background: #ffffff;
    border-color: #395fdd;
    box-shadow: 0 6px 16px rgba(57,95,221,0.12);
}
/* === Wizard: midtstill bokser som kun har tittel === */
.songplanner-step .option-box:not(:has(p)) {
    text-align: center;
}

/* Litt bedre vertikal balanse når kun tittel */
.songplanner-step .option-box:not(:has(p)) h3 {
    margin: 0;
}
/* =========================================
   STEG 4 – KORREKT GRID + STRUKTUR
========================================= */

.songplanner-step .option-grid.option-grid-multi {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 32px;
}

/* Selve boksen */
.songplanner-step .option-box-multi {
    background: #f8fafc;
    border: 2px solid #e3e6f2;
    border-radius: 16px;
    padding: 22px 24px;

    display: flex;
    flex-direction: column;
    gap: 10px;

    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

/* Header: checkbox + tittel på samme linje */
.songplanner-step .option-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Checkbox */
.songplanner-step .option-header input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    flex-shrink: 0;
}

/* Tittel */
.songplanner-step .option-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #1c2a4b;
}

/* Beskrivelse */
.songplanner-step .option-box-multi p {
    margin: 0 0 0 30px;
    font-size: 14px;
    line-height: 1.55;
    color: #4b556f;
}

/* Hover */
.songplanner-step .option-box-multi:hover {
    border-color: #395fdd;
    box-shadow: 0 10px 26px rgba(57,95,221,0.18);
}

/* Fortsett-knapp – egen sone */
.songplanner-step .form-actions {
    margin-top: 36px;
}






/* Mobil */
@media (max-width: 768px) {
    .songplanner-step .option-grid.option-grid-multi {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .songplanner-step .option-box-multi p {
        margin-left: 0;
    }

/* Skjul gul pris på mobil */
  .price-circle {
    display: none;
  }

  /* Utvid sangnummer-linjen på mobil */
  .product-meta-number::after {
    content: " – Pris " attr(data-price);
    font-weight: 700;
  }


/* 🎵 Sangtittel */
  .product-title {
    font-weight: 700;
  }

  /* 🔹 Kun label (Melodi:, Beskrivelse:) */
  .product-melody .label,
  .product-description .label {
    font-weight: 700;
  }

/* Vis " – Pris " fet, men selve beløpet normalt */
  .product-meta-number::after {
    content: " – Pris ";
    font-weight: 700;   /* label fet */
  }

  .product-meta-number::after {
    content: attr(data-price);
    font-weight: 400;   /* beløp normal */
    margin-left: 4px;
  }
  .mobile-price-inline {
    font-weight: 400;   /* selve beløpet normal */
  }

}

/* Desktop: skjul inline-pris (bruk gul sirkel der) */


@media (min-width: 769px) {

  .mobile-price-inline {
    display: none;
  }

}
@media (max-width: 768px) {

  /* 🔴 SKJUL GUL PRISRUNDE PÅ MOBIL */
  .price-circle {
    display: none !important;
  }

  /* Vis inline-pris etter sangnummer */
  .mobile-price-inline {
    display: inline;
    font-weight: 400;
  }
  /* Handlingslinjen: 🔍 + tekst + knapp */
  .product-row > div:last-child {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    flex-wrap: nowrap;
  }

  /* 🔍 Forhåndsvisning */
  .openSong {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
  }

  /* Knapp: IKKE full bredde på mobil */
  .cart-button {
    width: auto !important;
    padding: 10px 14px;
    font-size: 14px;
    white-space: nowrap;
  }
  /* 🔍 IKON – tving synlighet og riktig størrelse */
  

}
/* =========================
   MOBIL – FORHÅNDSVISNING
========================= */
@media (max-width: 768px) {

  /* Handlingslinje */
  .product-row > div:last-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
  }

  /* 🔍 Ikon + tekst */
  .openSong {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
  }

  .openSong-text {
    display: inline;
    font-size: 14px;
    font-weight: 600;
    color: #1c2a4b;
  }

  .openSong .icon-svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.4;
    flex-shrink: 0;
  }

  .icon-view {
    width: auto;
    height: auto;
    position: static;
  }

  /* 🛒 Knapp */
  .cart-button {
    width: auto !important;
    padding: 10px 14px;
    font-size: 14px;
    white-space: nowrap;
  }

}

/* =========================
   MOBIL: ikon + tekst
========================= */
@media (max-width: 768px) {

  .openSong {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
  }

  .openSong-text {
    display: inline;
    font-size: 14px;
    font-weight: 600;
    color: #1c2a4b;
  }

  .icon-view {
    width: 28px;
    height: 28px;
    position: static;
  }

  .icon-view .icon-svg {
    width: 100%;
    height: 100%;
    stroke-width: 2.4;
  }

}

/* =========================
   DESKTOP: kun ikon
========================= */
@media (min-width: 769px) {

  .openSong-text {
    display: none;
  }

  .icon-view {
    width: 70px;
    height: 70px;
    position: relative;
    top: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .icon-view .icon-svg {
    width: 100%;
    height: 100%;
  }

}
@media (min-width: 769px) {
  .openSong-text {
    display: none;
  }
}
@media (max-width: 768px) {
  .product-row {
    flex-direction: column;
  }
}
/* =========================
   MOBIL: MELDI / BESKRIVELSE I KOLONNER
========================= */
@media (max-width: 768px) {

  .product-melody,
  .product-description {
    display: grid;
    grid-template-columns: max-content 1fr;
    column-gap: 8px;
    align-items: start;
    line-height: 1.4;
    margin-top: 4px;
  }

  .product-melody .label,
  .product-description .label {
    font-weight: 700;
    white-space: nowrap;
  }

  .product-melody .text,
  .product-description .text {
    min-width: 0;          /* 🔑 viktig for wrapping */
  }

}
/* =========================
   MOBIL: TVING VISNING AV FORSTØRRELSESGLASS
========================= */
@media (max-width: 768px) {

  .openSong {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
  }

  /* IKON-BEHOLDER */
  .openSong .icon-view {
    display: inline-flex !important;
    width: 22px;
    height: 22px;
    position: static !important;
    top: auto !important;
  }

  /* SVG SELVE IKONET */
  .openSong .icon-view svg,
  .openSong .icon-svg {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    stroke: #395fdd;
    stroke-width: 2.4;
    fill: none;
  }
  /* Handlingslinje på mobil */
  .product-row > div:last-child {
    justify-content: flex-start; /* 🔑 IKKE space-between */
    gap: 14px;
  }
}
@media (max-width: 768px) {

  /* Handlingslinjen (der ikon + pris/knapp ligger) */
  .product-row > div:last-child{
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    justify-content: flex-start !important; /* start */
    flex-wrap: nowrap !important;
  }

  /* Flytt forhåndsvis litt inn fra venstrekanten */
  .openSong{
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-left: 36px !important;   /* 👈 juster 6–16px som du vil */
    white-space: nowrap !important;
  }

  /* Tving at selve SVG-ikonet faktisk vises og har riktig størrelse */
  .openSong .icon-svg{
    display: block !important;
    width: 56px !important;
    height: 56px !important;
  }

  /* Knappen skal alltid ligge helt til høyre */
  .cart-button{
    margin-left: auto !important;   /* 🔑 dette er nøkkelen */
    width: auto !important;
    white-space: nowrap !important;
  }

}
@media (max-width: 768px) {

  .fs-mobile-menu {
    position: fixed;
    top: 64px;              /* rett under header */
    left: 0;
    right: 0;
    bottom: 0;              /* 👈 VIKTIG */
    
    background: #ffffff;
    border-top: 1px solid #e3e6f2;
    padding: 12px 16px 24px;

    display: none;
    z-index: 9998;

    overflow-y: auto;       /* 👈 NØKKELEN */
    -webkit-overflow-scrolling: touch;
  }

  .fs-mobile-menu.open {
    display: block;
  }

}
.seo-cta-block {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 420px;
}

.seo-cta-block a {
    text-decoration: none;
}

.seo-cta-block a:hover,
.seo-cta-block a:focus {
    text-decoration: none;
}


.seo-cta-primary {
    background: #1f5fbf;
    color: #ffffff;        /* ← sørger for hvitt ikon + tekst */
    padding: 14px 18px;
    text-align: center;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}

.seo-cta-primary:hover {
    background: #184ea0;
    color: #ffffff;        /* ← viktig: holder ikonet hvitt på hover */
}

.seo-cta-secondary {
    text-align: center;
    font-size: 16px;
    text-decoration: underline;
    color: #1f5fbf;
}

.seo-cta-help {
    background: linear-gradient(#f7d35c, #e6b800);
    color: #000;
    padding: 12px 18px;
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
}
.faq-section {
  margin-bottom: 40px;
}

.faq-section h2 {
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.faq-section h3 {
  margin-top: 20px;
  font-size: 1.05rem;
}

.faq-section p {
  margin-top: 6px;
  line-height: 1.6;
}

.faq-toc {
  margin-bottom: 30px;
}

.faq-toc li {
  margin-bottom: 6px;
}

