/*
 * Components CSS — styling for nyere features.
 * Loadet etter butikk.css så cascade vinner.
 *
 * #6  Sammenlign-side
 * #7  Landing-page-template
 * #8  FAQ-section
 * #9  Genre-sider (auto-generert)
 * #10 Print-stylesheet
 */

/* ═══ AKTIVERINGSGUIDER — kategori-seksjoner ═══ */
.sk-shop .sk-guide-category {
    margin: 0 auto 36px;
    max-width: var(--max, 1240px);
    padding: 0 var(--px, 16px);
}
.sk-shop .sk-guide-cat-header {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 18px 0;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border, #DDDDE4);
}
.sk-shop .sk-guide-cat-icon {
    width: 44px; height: 44px;
    background: var(--accent-l, #E4F4F1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent-d, #095C52);
    flex-shrink: 0;
}
.sk-shop .sk-guide-cat-icon svg {
    width: 22px; height: 22px;
}
.sk-shop .sk-guide-cat-header h2 {
    font-family: var(--fh, 'Outfit', sans-serif);
    font-size: 20px; font-weight: 800;
    color: var(--ink, #14141E);
    margin: 0 0 4px;
    display: inline-flex; align-items: center; gap: 10px;
}
.sk-shop .sk-guide-cat-count {
    font-size: 12px; font-weight: 700;
    background: var(--soft, #ECEDF0);
    color: var(--ink2, #3D3D50);
    padding: 2px 9px;
    border-radius: 50px;
    letter-spacing: 0.02em;
}
.sk-shop .sk-guide-cat-header p {
    font-size: 13.5px;
    color: var(--ink3, #6B6B82);
    margin: 0;
    line-height: 1.5;
}

/* ═══ #6 SAMMENLIGN-SIDE ═══ */
.sk-shop .sk-compare {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--px) 60px;
}
.sk-shop .sk-cmp-grid {
    display: grid;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    margin: 24px 0;
}
.sk-shop .sk-cmp-cell {
    background: #fff;
    padding: 14px 16px;
    font-size: 13px;
    color: var(--ink2);
}
.sk-shop .sk-cmp-label {
    font-family: var(--fh);
    font-weight: 700;
    color: var(--ink);
    background: var(--soft);
}
.sk-shop .sk-cmp-product {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; gap: 8px;
}
.sk-shop .sk-cmp-product img {
    width: 80px; height: 80px;
    object-fit: contain;
    border-radius: 6px;
}
.sk-shop .sk-cmp-product strong {
    font-family: var(--fh); font-size: 13px;
    color: var(--ink);
    line-height: 1.3;
}
.sk-shop .sk-cmp-product a {
    text-decoration: none; color: inherit;
}
.sk-shop .sk-cmp-remove {
    background: transparent; border: 1px solid var(--border);
    color: var(--ink3);
    padding: 4px 10px; border-radius: 4px;
    font-size: 11px; cursor: pointer;
}
.sk-shop .sk-cmp-remove:hover {
    border-color: var(--vipps); color: var(--vipps);
}

/* Sticky compare-bar */
.sk-shop .sk-cmp-bar {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--ink);
    color: #fff;
    padding: 12px 16px;
    display: flex; align-items: center; justify-content: center;
    gap: 14px;
    z-index: 999;
    font-family: var(--fb); font-size: 14px;
}
.sk-shop .sk-cmp-bar-cta {
    background: var(--accent); color: #fff;
    padding: 8px 18px; border-radius: 6px;
    text-decoration: none; font-weight: 700;
}
.sk-shop .sk-cmp-bar-cta:hover { background: var(--accent-d); color: #fff; }
.sk-shop .sk-cmp-bar-clear {
    background: transparent; border: 0; color: rgba(255,255,255,0.6);
    cursor: pointer; font-size: 18px;
}

/* ═══ #7 LANDING-PAGE-TEMPLATE ═══ */
.sk-landing { max-width: 960px; margin: 0 auto; padding: 0 var(--px); }
.sk-landing-hero {
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(135deg, var(--accent-l) 0%, #fff 100%);
    border-radius: 14px;
    margin: 24px 0;
}
.sk-landing-hero h1 {
    font-family: var(--fh);
    font-size: 36px; font-weight: 800;
    color: var(--ink);
    margin: 0 0 12px;
}
.sk-landing-tagline {
    font-size: 18px; color: var(--ink2);
    margin: 0 0 24px;
}
.sk-landing-cta {
    display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
}
.sk-landing-price {
    font-family: var(--fh); font-size: 28px; font-weight: 800;
    color: var(--ink);
}
.sk-landing-features {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    margin: 24px 0;
}
.sk-landing-features h2 {
    font-family: var(--fh); font-size: 20px; margin: 0 0 16px;
}
.sk-landing-features ul {
    list-style: none; padding: 0; margin: 0;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}
.sk-landing-features li {
    padding: 10px 14px;
    background: var(--soft);
    border-radius: 6px;
    font-size: 14px;
}
.sk-landing-features li::before {
    content: '✓ ';
    color: var(--accent-d);
    font-weight: 700;
}

/* ═══ #8 FAQ-SECTION ═══ */
.sk-shop .sk-faq {
    max-width: 760px; margin: 32px auto;
    padding: 0 var(--px);
}
.sk-shop .sk-faq h2 {
    font-family: var(--fh); font-size: 22px; font-weight: 700;
    margin: 0 0 20px;
}
.sk-shop .sk-faq-item {
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}
.sk-shop .sk-faq-q {
    font-family: var(--fh); font-size: 15px; font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    padding-right: 8px;
}
.sk-shop .sk-faq-q::after {
    content: '+';
    font-size: 20px; font-weight: 400;
    color: var(--accent);
    transition: transform 0.2s;
}
.sk-shop .sk-faq-item[open] .sk-faq-q::after { transform: rotate(45deg); }
.sk-shop .sk-faq-a {
    margin-top: 10px;
    font-size: 14px; line-height: 1.6; color: var(--ink2);
}

/* ═══ #9 GENRE-SIDER (utvider page-styling) ═══ */
.sk-shop .sk-page article h2 {
    font-family: var(--fh); font-size: 22px;
    margin: 32px 0 14px;
    border-bottom: 2px solid var(--accent-l);
    padding-bottom: 8px;
}
.sk-shop .sk-page article ul li {
    padding: 6px 0 6px 22px;
    position: relative;
}
.sk-shop .sk-page article ul li::before {
    content: '✓';
    position: absolute; left: 0;
    color: var(--accent-d);
    font-weight: 700;
}

/* ═══ GLOSSAR ═══ */
.sk-shop .sk-glossary dt {
    font-family: var(--fh); font-size: 16px; font-weight: 700;
    color: var(--ink);
    margin-top: 18px;
    border-left: 3px solid var(--accent);
    padding-left: 12px;
}
.sk-shop .sk-glossary dd {
    margin: 6px 0 0 15px;
    font-size: 14px; color: var(--ink2);
    line-height: 1.55;
}

/* ═══ PRIS-ALARM-KNAPP (på produktside, under buy-card) ═══
   Permanent subtle accent-tone — mer åpenbart at den er klikkbar,
   uten å konkurrere med Vipps-CTA om hovedfokus. */
.sk-shop .p-price-alert-btn {
    display: inline-flex; align-items: center; gap: 8px;
    width: 100%;
    margin-top: 12px; padding: 10px 12px;
    background: var(--accent-l, #E4F4F1);
    border: 1px dashed color-mix(in srgb, var(--accent, #0D7C6E) 45%, transparent);
    border-radius: 7px;
    font-family: var(--fb, 'DM Sans', sans-serif);
    font-size: 12.5px; font-weight: 600;
    color: var(--accent-d, #095C52);
    cursor: pointer;
    transition: all 0.15s;
    justify-content: center;
}
.sk-shop .p-price-alert-btn:hover {
    border-style: solid;
    border-color: var(--accent, #0D7C6E);
    background: color-mix(in srgb, var(--accent-l, #E4F4F1) 70%, var(--accent, #0D7C6E));
    transform: translateY(-1px);
}
.sk-shop .p-price-alert-btn svg {
    width: 14px; height: 14px;
    color: var(--accent, #0D7C6E);
    flex-shrink: 0;
}

/* Pris-alarm-skjema inni modal */
.sk-shop #sk-price-alert-form label {
    display: block;
    font-family: var(--fb);
    font-size: 13px; font-weight: 600;
    color: var(--ink2, #3D3D50);
    margin-bottom: 10px;
}
.sk-shop #sk-price-alert-form label span {
    display: block;
    margin-bottom: 4px;
}
.sk-shop #sk-price-alert-form input[type="email"],
.sk-shop #sk-price-alert-form input[type="number"] {
    width: 100%;
    padding: 10px 12px;
    background: #fff;
    border: 1.5px solid var(--border, #DDDDE4);
    border-radius: 7px;
    font-family: var(--fb);
    font-size: 14px;
    color: var(--ink);
    box-sizing: border-box;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.sk-shop #sk-price-alert-form input:focus {
    outline: 0;
    border-color: var(--accent, #0D7C6E);
    box-shadow: 0 0 0 3px var(--accent-l, #E4F4F1);
}
.sk-shop .sk-modal-status {
    margin-top: 10px;
    font-size: 13px;
    text-align: center;
    min-height: 18px;
}

/* ═══ TOAST-STACK — generelle notifikasjoner (success/error/info) ═══════
   Container ligger fixed bottom-right. Stack vokser oppover.
   Skjules paa skjermer < 480px ved aa flytte til top center.
   Hver toast: 360px max, varierte farger per type. */

.sk-toast-stack {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column-reverse; /* nyeste nederst */
    gap: 10px;
    z-index: 100000;
    pointer-events: none;
    max-width: calc(100vw - 40px);
}
@media (max-width: 480px) {
    .sk-toast-stack {
        bottom: auto;
        top: 16px;
        left: 16px;
        right: 16px;
        flex-direction: column; /* nyeste oeverst paa mobile */
        max-width: none;
    }
}

.sk-stack-toast {
    pointer-events: auto;
    width: 360px;
    max-width: 100%;
    /* Glassmorphism — translucent bg + blur for moderne iOS-feel */
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    box-shadow:
        0 20px 40px -12px rgba(0, 0, 0, 0.18),
        0 4px 12px rgba(0, 0, 0, 0.06),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    padding: 14px 14px 14px 16px;
    display: grid;
    grid-template-columns: 32px 1fr 24px;
    gap: 12px;
    align-items: start;
    /* Spring-entry: scale fra 0.7, translateY + slight rotateX -> settle */
    transform: translateY(40px) scale(0.85) rotateX(-12deg);
    transform-origin: bottom center;
    opacity: 0;
    transition:
        transform 0.42s cubic-bezier(0.34, 1.65, 0.5, 1),
        opacity 0.25s ease-out,
        backdrop-filter 0.4s ease;
    position: relative;
    overflow: hidden;
    perspective: 600px;
}
.sk-stack-toast.is-open {
    transform: translateY(0) scale(1) rotateX(0);
    opacity: 1;
}
.sk-stack-toast.is-closing {
    transform: translateY(0) scale(0.92);
    opacity: 0;
    transition: transform 0.25s cubic-bezier(0.4, 0, 1, 1), opacity 0.2s ease-in;
}

/* Subtle hover: lift + sterkere shadow */
.sk-stack-toast:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow:
        0 24px 48px -12px rgba(0, 0, 0, 0.22),
        0 6px 16px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.18s cubic-bezier(0.34, 1.4, 0.64, 1),
        box-shadow 0.18s ease-out;
}

/* Progress-bar nederst — krymper auto-dismiss-tid (5s default, 7.5s error).
   Settes via inline style fra JS for timing-presisjon. */
.sk-stack-toast::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background: var(--accent, #0D7C6E);
    transform-origin: left center;
    animation: sk-toast-progress var(--ttl, 5000ms) linear forwards;
    border-radius: 0 0 14px 14px;
    opacity: 0.5;
}
.sk-stack-toast.is-closing::after,
.sk-stack-toast:hover::after {
    animation-play-state: paused;
}
@keyframes sk-toast-progress {
    from { transform: scaleX(1); }
    to   { transform: scaleX(0); }
}

/* Icon — pulser + breathe-effect */
.sk-stack-toast-icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    position: relative;
    /* Subtle breathe-pulse */
    animation: sk-toast-icon-in 0.6s cubic-bezier(0.34, 1.65, 0.5, 1);
}
.sk-stack-toast-icon::after {
    /* Halo-ring som pulser ut */
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid currentColor;
    opacity: 0;
    animation: sk-toast-halo 1.4s ease-out 0.1s;
}
@keyframes sk-toast-icon-in {
    0%   { transform: scale(0) rotate(-90deg); opacity: 0; }
    60%  { transform: scale(1.15) rotate(8deg); opacity: 1; }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}
@keyframes sk-toast-halo {
    0%   { transform: scale(0.7); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}
.sk-stack-toast-icon svg {
    width: 18px; height: 18px;
    /* SVG-stroke draw-on animation */
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    animation: sk-toast-icon-draw 0.5s ease-out 0.2s forwards;
}
@keyframes sk-toast-icon-draw {
    to { stroke-dashoffset: 0; }
}

.sk-stack-toast-msg {
    font-family: var(--fb, 'DM Sans', sans-serif);
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.45;
    color: var(--ink, #14141E);
    align-self: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    min-width: 0;
    /* Tekst-fade-in delayet etter ikon-anim */
    animation: sk-toast-msg-in 0.4s ease-out 0.15s both;
}
@keyframes sk-toast-msg-in {
    from { opacity: 0; transform: translateX(-6px); }
    to   { opacity: 1; transform: translateX(0); }
}

.sk-stack-toast-close {
    width: 24px; height: 24px;
    background: transparent;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    color: var(--ink3, #6B6B82);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s, color 0.18s, transform 0.15s;
    margin-top: -1px;
    opacity: 0.6;
}
.sk-stack-toast:hover .sk-stack-toast-close {
    opacity: 1;
}
.sk-stack-toast-close:hover {
    background: rgba(0, 0, 0, 0.08);
    color: var(--ink, #14141E);
    transform: rotate(90deg);
}
.sk-stack-toast-close svg {
    width: 12px; height: 12px;
}

/* Type-spesifikke farger med subtil tonal-bg */
.sk-stack-toast-success {
    background: rgba(232, 250, 244, 0.85);
}
.sk-stack-toast-success::after { background: var(--accent, #0D7C6E); }
.sk-stack-toast-success .sk-stack-toast-icon {
    background: linear-gradient(135deg, rgba(13, 124, 110, 0.18), rgba(13, 124, 110, 0.08));
    color: var(--accent, #0D7C6E);
    box-shadow: 0 2px 8px rgba(13, 124, 110, 0.20);
}

.sk-stack-toast-error {
    background: rgba(254, 240, 244, 0.85);
}
.sk-stack-toast-error::after { background: #E11D48; }
.sk-stack-toast-error .sk-stack-toast-icon {
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.18), rgba(225, 29, 72, 0.08));
    color: #E11D48;
    box-shadow: 0 2px 8px rgba(225, 29, 72, 0.20);
    /* Error: liten shake-effect */
    animation: sk-toast-icon-in 0.6s cubic-bezier(0.34, 1.65, 0.5, 1), sk-toast-shake 0.4s ease-in-out 0.6s;
}
.sk-stack-toast-error .sk-stack-toast-msg {
    color: #5A0E20;
}
@keyframes sk-toast-shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-3px); }
    40% { transform: translateX(3px); }
    60% { transform: translateX(-2px); }
    80% { transform: translateX(2px); }
}

.sk-stack-toast-info {
    background: rgba(238, 239, 254, 0.85);
}
.sk-stack-toast-info::after { background: #6366F1; }
.sk-stack-toast-info .sk-stack-toast-icon {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.18), rgba(99, 102, 241, 0.08));
    color: #6366F1;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.20);
}

@media (prefers-reduced-motion: reduce) {
    .sk-stack-toast {
        transition: opacity 0.15s;
        transform: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: #fff;
    }
    .sk-stack-toast.is-open,
    .sk-stack-toast.is-closing,
    .sk-stack-toast:hover {
        transform: none;
    }
    .sk-stack-toast-icon,
    .sk-stack-toast-icon::after,
    .sk-stack-toast-icon svg,
    .sk-stack-toast-msg,
    .sk-stack-toast::after {
        animation: none !important;
    }
    .sk-stack-toast-icon svg {
        stroke-dashoffset: 0;
    }
}

/* Skjul WC default-notices som matt slipper igjennom override-systemet
   (f.eks. via fragment-rendering eller direkte do_action). Toasten haandterer dem. */
.woocommerce-notices-wrapper:empty,
.woocommerce-NoticeGroup:empty {
    display: none;
}

/* ═══ MINI-CART TOAST — moderne glassmorphism + spring-animasjon ═══
   Cart-toast HTML rendres alltid via wp_footer — også på sider uten WC-CSS */
.sk-shop .sk-toast {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 380px; max-width: calc(100vw - 32px);
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.6) inset,
        0 12px 32px -8px rgba(13, 124, 110, 0.18),
        0 24px 48px -12px rgba(0, 0, 0, 0.16);
    padding: 16px 14px 14px 16px;
    display: grid;
    grid-template-columns: 40px 1fr auto;
    gap: 12px;
    align-items: start;
    z-index: 10000;
    transform: translateY(40px) scale(0.85) rotateX(-12deg);
    opacity: 0;
    pointer-events: none;
    transform-origin: bottom right;
    transition:
        transform 0.5s cubic-bezier(0.34, 1.56, 0.5, 1),
        opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        backdrop-filter 0.4s ease;
    overflow: hidden;
}
.sk-shop .sk-toast::after {
    /* Progress-bar som krymper over 5s */
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, var(--accent, #0D7C6E), var(--accent-d, #095C52));
    transform-origin: left;
    transform: scaleX(1);
    border-radius: 0 0 14px 14px;
    opacity: 0.85;
}
.sk-shop .sk-toast.is-open::after {
    animation: sk-cart-toast-progress 5000ms linear forwards;
}
.sk-shop .sk-toast:hover::after {
    animation-play-state: paused;
}
@keyframes sk-cart-toast-progress {
    from { transform: scaleX(1); }
    to   { transform: scaleX(0); }
}
.sk-shop .sk-toast.is-open {
    transform: translateY(0) scale(1) rotateX(0);
    opacity: 1;
    pointer-events: auto;
}
.sk-shop .sk-toast-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, rgba(13, 124, 110, 0.18), rgba(9, 92, 82, 0.08));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    position: relative;
    animation: sk-cart-toast-icon-in 0.6s cubic-bezier(0.34, 1.65, 0.5, 1);
}
.sk-shop .sk-toast-icon::before {
    /* Halo-pulse rundt ikonet */
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid var(--accent, #0D7C6E);
    opacity: 0;
    animation: sk-cart-toast-icon-halo 1.4s ease-out 0.1s;
}
.sk-shop .sk-toast-icon svg {
    width: 20px; height: 20px;
    color: var(--accent-d, #095C52);
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    animation: sk-cart-toast-icon-draw 0.5s ease-out 0.2s forwards;
}
@keyframes sk-cart-toast-icon-in {
    0%   { transform: scale(0) rotate(-180deg); }
    60%  { transform: scale(1.15) rotate(10deg); }
    100% { transform: scale(1) rotate(0); }
}
@keyframes sk-cart-toast-icon-halo {
    0%   { transform: scale(0.6); opacity: 0.7; }
    100% { transform: scale(1.6); opacity: 0; }
}
@keyframes sk-cart-toast-icon-draw {
    to { stroke-dashoffset: 0; }
}
.sk-shop .sk-toast-body {
    grid-column: 2; min-width: 0;
    animation: sk-cart-toast-body-in 0.4s ease-out 0.15s both;
}
.sk-shop .sk-toast-title {
    font-family: var(--fh); font-size: 14.5px; font-weight: 800;
    color: var(--ink, #14141E); line-height: 1.2;
    letter-spacing: -0.01em;
}
.sk-shop .sk-toast-product {
    font-size: 13px; color: var(--ink3, #6B6B82);
    margin-top: 3px; line-height: 1.35;
    overflow: hidden; text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.sk-shop .sk-toast-qty { font-weight: 600; color: var(--ink2, #3D3D50); margin-left: 4px; }
@keyframes sk-cart-toast-body-in {
    from { opacity: 0; transform: translateX(-6px); }
    to   { opacity: 1; transform: translateX(0); }
}
.sk-shop .sk-toast-actions {
    grid-column: 1 / -1;
    display: flex; gap: 8px;
    margin-top: 4px;
}
.sk-shop .sk-toast-cta {
    flex: 1;
    padding: 9px 12px;
    border-radius: 8px;
    font-family: var(--fb); font-size: 12.5px; font-weight: 700;
    text-decoration: none; text-align: center;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s;
    animation: sk-cart-toast-body-in 0.4s ease-out 0.25s both;
}
.sk-shop .sk-toast-cta-primary {
    background: linear-gradient(135deg, var(--accent, #0D7C6E), var(--accent-d, #095C52));
    color: #fff;
    box-shadow: 0 2px 6px rgba(13, 124, 110, 0.25);
}
.sk-shop .sk-toast-cta-primary:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 124, 110, 0.35);
}
.sk-shop .sk-toast-cta-secondary {
    background: rgba(0, 0, 0, 0.04);
    color: var(--ink, #14141E);
    border: 1px solid rgba(0, 0, 0, 0.06);
}
.sk-shop .sk-toast-cta-secondary:hover {
    background: rgba(0, 0, 0, 0.07);
    transform: translateY(-1px);
}
.sk-shop .sk-toast-close {
    grid-column: 3; grid-row: 1;
    width: 24px; height: 24px;
    background: transparent; border: 0;
    border-radius: 4px;
    color: var(--ink4, #9898AE);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all 0.15s;
}
.sk-shop .sk-toast-close:hover { background: var(--soft, #ECEDF0); color: var(--ink, #14141E); }
.sk-shop .sk-toast-close svg { width: 14px; height: 14px; }

@media (max-width: 480px) {
    .sk-shop .sk-toast {
        bottom: 16px; right: 16px; left: 16px;
        width: auto;
    }
}
@media (prefers-reduced-motion: reduce) {
    .sk-shop .sk-toast {
        transition: opacity 0.15s ease;
        transform: none;
    }
    .sk-shop .sk-toast.is-open { transform: none; }
    .sk-shop .sk-toast::after,
    .sk-shop .sk-toast-icon,
    .sk-shop .sk-toast-icon::before,
    .sk-shop .sk-toast-icon svg,
    .sk-shop .sk-toast-body,
    .sk-shop .sk-toast-cta { animation: none; }
    .sk-shop .sk-toast-icon svg { stroke-dashoffset: 0; }
}

/* ═══ #10 PRINT-STYLESHEET ═══ */
@media print {
    /* Skjul alt unødvendig */
    .sk-shop .nav, .sk-shop .cat-bar, .sk-shop .sk-promo-banner,
    .sk-shop .sk-sticky-buy, .sk-shop .sk-toast, .sk-shop .sk-modal,
    .sk-shop .ft, .sk-shop .signup-cta, .sk-shop .sk-cmp-bar,
    .sk-shop .sk-geo-banner, .sk-shop #sk-spinner,
    .sk-shop .sk-currency-notice, .sk-shop .sk-wl-btn,
    .sk-shop .nav-search, .sk-shop .nav-search-mobile {
        display: none !important;
    }
    /* Print-vennlig background */
    body, .sk-shop {
        background: #fff !important;
        color: #000 !important;
    }
    /* Vis URL etter lenker */
    a::after {
        content: " (" attr(href) ")";
        font-size: 10px; color: #666;
    }
    /* Avoid page-break inni viktige seksjoner */
    .woocommerce-order-details, .p-buy-card, .sk-faq-item {
        page-break-inside: avoid;
    }
    /* Optimaliser font for print */
    body { font-size: 11pt; line-height: 1.4; }
    h1 { font-size: 20pt; }
    h2 { font-size: 16pt; }
    h3 { font-size: 13pt; }
    /* Footer-linje på hver side */
    @page { margin: 2cm; }
}
