/* ===================================================================
   G-SONIQUE V2 DARK THEME — shared theme + catalog / landing styles
   Used by: products_v2, vstinstruments_v2, creativeeffects_v2,
            mixeffects_v2, samplepacks_v2, onlinemasteringstudio_v2
   =================================================================== */
@import url("v2-tokens.css");

body {
    background:
        radial-gradient(circle at 20% 0%, rgba(var(--gs-accent-rgb), .08) 0%, transparent 40%),
        radial-gradient(circle at 80% 30%, rgba(var(--gs-accent-2-rgb), .06) 0%, transparent 50%),
        var(--gs-bg);
    color: var(--gs-text);
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    min-height: 100vh;
}
main { padding-top: 80px; padding-bottom: 4rem; }

a { color: var(--gs-accent); }
a:hover { color: #fff; }

/* Footer dark */
.footer { background: var(--gs-bg-2) !important; color: var(--gs-muted); }
.footer a, .footer .Footer-link__1U-So, .footer .Footer-subtitle__2tnzz { color: var(--gs-muted) !important; }
.footer a:hover { color: var(--gs-accent) !important; }
.footer .Copyright-root__xlnJK { color: var(--gs-muted); }

/* ---------- PAGE HEADER ---------- */
.page-head { text-align: center; margin-bottom: 2.75rem; }
.page-head .eyebrow {
    display: inline-block;
    color: var(--gs-accent);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .25em;
    margin-bottom: .65rem;
}
.page-head h1 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: .01em;
    margin-bottom: .6rem;
}
.page-head p {
    color: var(--gs-muted);
    font-size: .98rem;
    line-height: 1.6;
    max-width: 680px;
    margin: 0 auto;
}

/* ---------- SECTION HEADING ---------- */
.section-heading {
    display: flex;
    align-items: center;
    gap: .8rem;
    font-size: .85rem;
    color: var(--gs-muted);
    text-transform: uppercase;
    letter-spacing: .2em;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.section-heading::before {
    content: "";
    width: 3px;
    height: 24px;
    background: var(--gs-accent);
    box-shadow: 0 0 12px var(--gs-glow);
}

/* ---------- CATEGORY TILES (products landing) ---------- */
.cat-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--gs-surface);
    border: 1px solid var(--gs-border);
    border-radius: .9rem;
    text-decoration: none;
    overflow: hidden;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.cat-tile:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--gs-accent-rgb), .4);
    box-shadow: 0 14px 36px rgba(0,0,0,.45), 0 0 0 1px rgba(var(--gs-accent-rgb), .15);
}

/* --- visual header: custom SVG artwork per category --- */
.cat-visual {
    position: relative;
    height: 158px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--gs-border);
    background:
        radial-gradient(120% 120% at 50% 120%, rgba(var(--gs-accent-rgb), .16) 0%, transparent 60%),
        linear-gradient(160deg, #12171c 0%, #0c1013 100%);
}
/* faint dot-grid texture behind the artwork */
.cat-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1.4px);
    background-size: 16px 16px;
    opacity: .6;
    pointer-events: none;
}
/* accent glow sweep on hover */
.cat-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(80% 60% at 50% 100%, rgba(var(--gs-accent-rgb), .25) 0%, transparent 70%);
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}
.cat-tile:hover .cat-visual::after { opacity: 1; }
.cat-art {
    position: relative;
    z-index: 1;
    width: 76%;
    max-width: 240px;
    height: auto;
    color: var(--gs-accent);
    filter: drop-shadow(0 6px 14px rgba(0,0,0,.5));
    transition: transform .4s ease;
}
.cat-tile:hover .cat-art { transform: translateY(-4px) scale(1.03); }
/* colours shared by the artwork */
.cat-art .ca-panel   { fill: #191f25; stroke: rgba(255,255,255,.10); }
.cat-art .ca-line    { stroke: rgba(255,255,255,.16); }
.cat-art .ca-metal   { fill: #2a323a; stroke: rgba(255,255,255,.10); }
.cat-art .ca-key     { fill: #e9edf1; }
.cat-art .ca-keydark { fill: #10151a; }
.cat-art .ca-accent      { fill: var(--gs-accent); }
.cat-art .ca-accent-st   { stroke: var(--gs-accent); fill: none; }
.cat-art .ca-muted   { fill: #4a555f; }
.cat-art .ca-glow    { filter: drop-shadow(0 0 4px var(--gs-glow)); }

/* per-part hover motion */
.cat-art .ca-fader { transition: transform .45s cubic-bezier(.4,1.4,.5,1); }
.cat-tile:hover .cat-art .ca-fader--a { transform: translateY(-14px); }
.cat-tile:hover .cat-art .ca-fader--b { transform: translateY(9px); }
.cat-tile:hover .cat-art .ca-fader--c { transform: translateY(-7px); }
.cat-tile:hover .cat-art .ca-fader--d { transform: translateY(12px); }
.cat-art .ca-litkey { fill: #10151a; transition: fill .3s ease; }
.cat-tile:hover .cat-art .ca-litkey { fill: var(--gs-accent); }
.cat-art .ca-pad { transition: fill .3s ease, opacity .3s ease; }
.cat-art .ca-pad--on { fill: var(--gs-accent); opacity: .4; }
.cat-tile:hover .cat-art .ca-pad--on { fill: var(--gs-accent); opacity: 1; }
.cat-art .ca-knob-ind { transform-box: fill-box; transform-origin: center; transition: transform .5s ease; }
.cat-tile:hover .cat-art .ca-knob-ind { transform: rotate(140deg); }
.cat-art .ca-wave { transition: transform .4s ease; }
.cat-tile:hover .cat-art .ca-wave { transform: scaleY(1.35); transform-box: fill-box; transform-origin: center; }

.cat-visual .cat-arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,0,0,.35);
    border: 1px solid var(--gs-border-strong);
    color: rgba(var(--gs-accent-rgb), .7);
    font-size: .9rem;
    transition: transform .3s ease, color .3s ease, background .3s ease, border-color .3s ease;
}
.cat-tile:hover .cat-visual .cat-arrow {
    color: #0b0d10;
    background: var(--gs-accent);
    border-color: transparent;
    transform: translate(2px,-2px);
    box-shadow: 0 0 14px var(--gs-glow);
}

.cat-visual .cat-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    font-size: .62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    padding: .3rem .55rem;
    border-radius: .3rem;
    color: var(--gs-accent);
    background: rgba(var(--gs-accent-rgb), .12);
    border: 1px solid rgba(var(--gs-accent-rgb), .35);
}

.cat-body { padding: 1.35rem 1.6rem 1.6rem; }
.cat-tile h3 {
    color: #fff;
    font-size: 1.14rem;
    font-weight: 700;
    margin-bottom: .45rem;
}
.cat-tile p {
    color: var(--gs-muted);
    font-size: .87rem;
    line-height: 1.5;
    margin: 0;
}

@media (prefers-reduced-motion: reduce) {
    .cat-art, .cat-art * { transition: none !important; }
}

/* ---------- PRODUCT CATALOG CARD ---------- */
.pcard {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--gs-surface);
    border: 1px solid var(--gs-border);
    border-radius: .75rem;
    overflow: hidden;
    text-decoration: none;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.pcard:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--gs-accent-rgb), .4);
    box-shadow: 0 12px 30px rgba(0,0,0,.5), 0 0 0 1px rgba(var(--gs-accent-rgb), .12);
}
.pcard-img {
    position: relative;
    background: var(--gs-bg);
    line-height: 0;
    border-bottom: 1px solid var(--gs-border);
}
/* stacked badge column over the product image (NEW + best-seller badges) */
.gs-badges {
    position: absolute;
    top: .6rem;
    left: .6rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .35rem;
    max-width: calc(100% - 1.2rem);
    pointer-events: none;
}
.gs-badge {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .66rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: .34rem .55rem;
    border-radius: .3rem;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,.3);
    box-shadow: 0 2px 10px rgba(0,0,0,.4);
    white-space: nowrap;
}
.gs-badge i { font-size: .85em; }
.gs-badge--new {
    background: linear-gradient(135deg, #ff3d5a 0%, #ff8a3d 100%);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .14em;
    padding: .38rem .62rem;
    box-shadow: 0 2px 12px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.15) inset;
    animation: gsNewPulse 1.8s ease-in-out infinite;
}
.gs-badge--all   { background: linear-gradient(135deg, #ffd24a 0%, #ff9d00 100%); color: #3a2600; text-shadow: none; }
.gs-badge--year  { background: linear-gradient(135deg, #1db3c5 0%, #0f8296 100%); }
.gs-badge--month { background: linear-gradient(135deg, #3ddc84 0%, #12a05f 100%); }
@keyframes gsNewPulse {
    0%, 100% { box-shadow: 0 2px 12px rgba(0,0,0,.45), 0 0 0 0 rgba(255,61,90,.55); transform: scale(1); }
    50%      { box-shadow: 0 2px 12px rgba(0,0,0,.45), 0 0 0 7px rgba(255,61,90,0);   transform: scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
    .gs-badge--new { animation: none; }
}
.pcard-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .35s ease;
}
.pcard:hover .pcard-img img { transform: scale(1.03); }
.pcard-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1rem 1.1rem 1.1rem;
}
.pcard-body h3 {
    color: #fff;
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: .4rem;
}
.pcard-body p {
    color: var(--gs-muted);
    font-size: .84rem;
    line-height: 1.45;
    margin-bottom: .9rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pcard-body .formats {
    margin-top: auto;
    border-top: 1px solid var(--gs-border);
    padding-top: .7rem;
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    align-items: center;
}
.pcard-body .formats img {
    height: 20px;
    width: auto;
    opacity: .8;
    transition: opacity .2s ease, transform .15s ease;
}
.pcard:hover .formats img { opacity: 1; }

/* ---------- INFO / FEATURE CARD (mastering page) ---------- */
.info-card {
    background: var(--gs-surface);
    border: 1px solid var(--gs-border);
    border-radius: .75rem;
    padding: 1.5rem;
    height: 100%;
}
.info-card .info-icon {
    font-size: 1.5rem;
    color: var(--gs-accent);
    margin-bottom: .65rem;
    filter: drop-shadow(0 0 8px var(--gs-glow));
}
.info-card h3 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: .5rem;
}
.info-card p {
    color: var(--gs-muted);
    font-size: .9rem;
    line-height: 1.55;
    margin: 0;
}

/* ---------- MEDIA FRAME (photos / banners) ---------- */
.media-frame {
    display: block;
    border: 1px solid var(--gs-border);
    border-radius: .9rem;
    overflow: hidden;
    line-height: 0;
    background: var(--gs-bg);
    transition: border-color .3s ease, box-shadow .3s ease;
}
.media-frame img { width: 100%; height: auto; display: block; }
a.media-frame:hover {
    border-color: rgba(var(--gs-accent-rgb), .4);
    box-shadow: 0 12px 30px rgba(0,0,0,.45);
}

/* ---------- PILL SUB-NAV ---------- */
.pill-nav {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.pill-nav a {
    background: var(--gs-surface-2);
    border: 1px solid var(--gs-border);
    color: var(--gs-text);
    border-radius: 2rem;
    padding: .45rem 1rem;
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.pill-nav a:hover {
    color: #0b0d10;
    background: var(--gs-accent);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 0 16px var(--gs-glow);
}
.pill-nav a.is-cta {
    background: rgba(var(--gs-accent-rgb), .12);
    border-color: rgba(var(--gs-accent-rgb), .4);
    color: var(--gs-accent);
}
.pill-nav a.is-active {
    background: var(--gs-accent);
    border-color: transparent;
    color: #0b0d10;
}

/* ---------- ENGINEER QUOTE ---------- */
.quote-card {
    position: relative;
    overflow: hidden;
    text-align: center;
    max-width: 820px;
    margin: 0 auto 2.75rem;
    padding: 2.5rem 2rem 2rem;
    background: linear-gradient(135deg, rgba(var(--gs-accent-rgb), .1) 0%, rgba(var(--gs-accent-2-rgb), .04) 100%);
    border: 1px solid rgba(var(--gs-accent-rgb), .22);
    border-radius: 1rem;
}
.quote-card::before {
    content: "\201C";
    position: absolute;
    top: -.18em;
    left: .12em;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 9rem;
    line-height: 1;
    color: var(--gs-accent);
    opacity: .12;
    pointer-events: none;
}
.quote-card .quote-portrait {
    display: block;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(var(--gs-accent-rgb), .45);
    box-shadow: 0 0 20px var(--gs-glow);
    margin: 0 auto 1.25rem;
    position: relative;
}
.quote-card blockquote {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
    color: #fff;
    font-size: clamp(1.35rem, 2.6vw, 2rem);
    line-height: 1.4;
    font-style: italic;
    font-weight: 600;
    letter-spacing: .005em;
}
.quote-card .quote-author {
    display: block;
    margin-top: 1.1rem;
    color: var(--gs-accent);
    font-size: .9rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.quote-card .quote-author small {
    display: block;
    color: var(--gs-muted);
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    margin-top: .2rem;
    font-size: .82rem;
}
.quote-signature {
    display: block;
    height: 44px;
    width: auto;
    margin: 1rem auto 0;
    filter: invert(1) brightness(1.5);
    mix-blend-mode: screen;
    opacity: .9;
}

/* ---------- ARTICLE / CONTENT BLOCKS ---------- */
.lead-statement {
    background: linear-gradient(135deg, rgba(var(--gs-accent-rgb), .1) 0%, rgba(var(--gs-accent-2-rgb), .05) 100%);
    border: 1px solid rgba(var(--gs-accent-rgb), .22);
    border-radius: .9rem;
    padding: 1.6rem 1.75rem;
    color: var(--gs-text);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}
.lead-statement strong { color: var(--gs-accent); }
.note-box {
    background: var(--gs-surface);
    border: 1px solid var(--gs-border);
    border-left: 3px solid var(--gs-accent);
    border-radius: .5rem;
    padding: 1rem 1.25rem;
    color: var(--gs-muted);
    font-size: .9rem;
    line-height: 1.6;
}
.note-box b, .note-box strong { color: var(--gs-text); }
.license-note {
    color: var(--gs-muted);
    font-size: .82rem;
    line-height: 1.6;
    text-align: center;
    max-width: 760px;
    margin: 2.5rem auto 0;
}
.media-frame.is-photo { border-radius: .9rem; }

/* equipment / spec list */
.spec-card { height: 100%; }
.spec-card h3 i { margin-right: .4rem; }
.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.spec-list li {
    color: var(--gs-muted);
    font-size: .88rem;
    line-height: 1.45;
    padding: .4rem 0 .4rem 1.1rem;
    position: relative;
    border-bottom: 1px solid var(--gs-border);
}
.spec-list li:last-child { border-bottom: 0; }
.spec-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .95rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gs-accent);
}
.spec-list li b { color: var(--gs-text); font-weight: 600; }

/* pricing */
.price-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: .85rem 0;
    border-bottom: 1px solid var(--gs-border);
}
.price-row:last-child { border-bottom: 0; }
.price-row .pr-label { color: var(--gs-text); font-size: .95rem; }
.price-row .pr-value {
    color: var(--gs-accent);
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
}

/* ---------- TESTIMONIAL CARD (artists) ---------- */
.tcard {
    background: var(--gs-surface);
    border: 1px solid var(--gs-border);
    border-radius: .75rem;
    padding: 1.4rem;
    height: 100%;
    transition: border-color .25s ease, transform .2s ease, box-shadow .25s ease;
}
.tcard:hover {
    border-color: rgba(var(--gs-accent-rgb), .3);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,.45);
}
.tcard .t-head {
    display: flex;
    gap: 1.15rem;
    align-items: center;
    margin-bottom: 1rem;
}
.tcard .t-photo {
    width: 104px;
    height: 104px;
    border-radius: .6rem;               /* square (rounded) — matches how the source photos were shot */
    object-fit: cover;
    border: 2px solid rgba(var(--gs-accent-rgb), .4);
    box-shadow: 0 6px 18px rgba(0,0,0,.4);
    flex: 0 0 auto;
    background: var(--gs-bg);
}
.tcard .t-name {
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    line-height: 1.25;
    letter-spacing: .005em;
}
.tcard .t-label {
    color: var(--gs-text);              /* brighter than muted — the label/publisher stands out */
    font-size: .92rem;
    font-weight: 600;
    line-height: 1.4;
    margin-top: .3rem;
}
@media (max-width: 400px) {
    .tcard .t-photo { width: 88px; height: 88px; }
}
.tcard .t-product {
    display: inline-block;
    background: rgba(var(--gs-accent-rgb), .12);
    border: 1px solid rgba(var(--gs-accent-rgb), .3);
    color: var(--gs-accent);
    font-size: .68rem;
    font-weight: 700;
    padding: .12rem .55rem;
    border-radius: 1rem;
    margin-bottom: .6rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.tcard blockquote {
    color: var(--gs-muted);
    font-size: .86rem;
    line-height: 1.55;
    margin: 0;
    font-style: italic;
}

/* ---------- DARK FORM ---------- */
.form-dark label { color: var(--gs-text); font-size: .85rem; font-weight: 600; margin-bottom: .3rem; }
.form-dark .form-control,
.form-dark .form-select {
    background: var(--gs-bg);
    border: 1px solid var(--gs-border-strong);
    color: var(--gs-text);
    border-radius: .4rem;
}
.form-dark .form-control:focus,
.form-dark .form-select:focus {
    background: var(--gs-bg);
    border-color: var(--gs-accent);
    box-shadow: 0 0 0 3px var(--gs-glow);
    color: var(--gs-text);
}
.form-dark .form-control::placeholder { color: var(--gs-muted); }

/* contact info chip */
.contact-mail {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: var(--gs-surface);
    border: 1px solid rgba(var(--gs-accent-rgb), .3);
    border-radius: 2rem;
    padding: .55rem 1.1rem;
    color: var(--gs-accent);
    font-weight: 700;
    text-decoration: none;
    transition: background .2s ease, transform .15s ease;
}
.contact-mail:hover { background: var(--gs-surface-2); color: #fff; transform: translateY(-2px); }

/* about: Europe map callout (faithful to original, on light panel) */
.map-card {
    max-width: 660px;
    margin: 1.5rem auto;
    background: #f1f3f6;
    border: 1px solid var(--gs-border);
    border-radius: .9rem;
    padding: 1.5rem 1.5rem 1rem;
}
.map-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 605 / 357;
}
.map-stage img { position: absolute; display: block; }
.map-stage .map-img { left: 0; top: 0; width: 51.2%; }
.map-stage .map-connector { left: 29.4%; top: 49%; width: 11.9%; }
.map-stage .map-underline { left: 41.2%; top: 49%; width: 55.5%; height: 1px; }
.map-stage .map-label {
    position: absolute;
    left: 41.8%;
    top: 38%;
    width: 57%;
    font-size: clamp(.7rem, 1.7vw, .92rem);
    line-height: 1.3;
    color: #555;
}
.map-stage .map-label strong { color: #1a1a1a; font-weight: 700; }

/* about readable column */
.prose {
    max-width: 820px;
    margin: 0 auto;
    color: var(--gs-muted);
    font-size: .96rem;
    line-height: 1.7;
}
.prose p { margin-bottom: 1.1rem; }
.prose strong { color: var(--gs-text); }

/* download list (samples) */
.dl-btn {
    display: flex;
    align-items: center;
    gap: .65rem;
    background: var(--gs-surface);
    border: 1px solid var(--gs-border);
    border-radius: .55rem;
    padding: .8rem 1rem;
    color: var(--gs-text);
    text-decoration: none;
    font-weight: 600;
    font-size: .92rem;
    transition: background .2s ease, border-color .2s ease, transform .15s ease, color .2s ease;
    height: 100%;
}
.dl-btn i { color: var(--gs-accent); font-size: 1.2rem; transition: color .2s ease; }
.dl-btn:hover {
    background: var(--gs-surface-2);
    border-color: rgba(var(--gs-accent-rgb), .4);
    color: #fff;
    transform: translateY(-2px);
}
.dl-btn:hover i { color: var(--gs-accent); }
.dl-btn .dl-sub { display: block; font-size: .72rem; color: var(--gs-muted); font-weight: 400; }

/* ---------- CTA BAND ---------- */
.cta-band {
    background: linear-gradient(135deg, rgba(var(--gs-accent-rgb), .12) 0%, rgba(var(--gs-accent-2-rgb), .06) 100%);
    border: 1px solid rgba(var(--gs-accent-rgb), .25);
    border-radius: 1rem;
    padding: 2.25rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -30%;
    width: 160%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--gs-accent-rgb), .08) 0%, transparent 50%);
    pointer-events: none;
}
.cta-band h2 {
    color: #fff;
    font-weight: 800;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin-bottom: .6rem;
    position: relative;
}
.cta-band p {
    color: var(--gs-muted);
    margin-bottom: 1.4rem;
    position: relative;
}
.btn-gs {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--gs-accent);
    color: #0b0d10;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-size: .85rem;
    padding: .7rem 1.5rem;
    border-radius: .4rem;
    text-decoration: none;
    border: 0;
    box-shadow: 0 0 18px var(--gs-glow);
    transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
    position: relative;
}
.btn-gs:hover {
    background: #fff;
    color: #0b0d10;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--gs-glow);
}

@media (max-width: 767px) {
    main { padding-top: 70px; }
}

/* ===================================================================
   PRODUCT DETAIL PAGE (inc/product_v2_view.php)
   =================================================================== */
.product-hero {
    position: relative;
    background: linear-gradient(135deg, #0d1014 0%, #1a2026 100%);
    border: 1px solid rgba(var(--gs-accent-rgb), .15);
    border-radius: 1rem;
    overflow: hidden;
    padding: 2rem;
    margin-bottom: 2rem;
}
.product-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(var(--gs-accent-rgb), .1) 0%, transparent 40%);
    pointer-events: none;
}
.product-hero .category-tag {
    display: inline-block;
    background: rgba(var(--gs-accent-rgb), .1);
    color: var(--gs-accent);
    border: 1px solid rgba(var(--gs-accent-rgb), .3);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
    padding: .3rem .7rem;
    border-radius: .25rem;
    margin-bottom: 1rem;
}
.product-hero h1 {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: .5rem;
    background: linear-gradient(135deg, #fff 0%, #9aa0a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}
.product-hero .tagline { font-size: 1rem; color: var(--gs-accent); font-weight: 600; margin-bottom: .25rem; position: relative; }
.product-hero .subtagline { font-size: .95rem; color: var(--gs-muted); position: relative; }
/* Main product image: native resolution on a full-width band with a blurred
   backdrop of the same image (never upscaled / blurred by stretching). */
.product-hero-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 1.5rem;
    border-radius: .5rem;
    background: #0a0e13;
}
.product-hero-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    filter: blur(30px) brightness(.45);
    transform: scale(1.12);
}
.product-hero-img {
    position: relative;
    display: block;
    width: auto;
    max-width: 100%;   /* native width — no blurry upscaling */
    height: auto;
}

.product-card {
    background: var(--gs-surface);
    border: 1px solid var(--gs-border);
    border-radius: .75rem;
    padding: 1.75rem 2rem;
    margin-bottom: 1.5rem;
}
@media (max-width: 575px) { .product-card { padding: 1.25rem; } }

.product-desc { color: var(--gs-text); font-size: .95rem; line-height: 1.65; }
.product-desc p { margin-bottom: 1rem; color: #c5c9cc; }
.product-desc img { max-width: 100%; height: auto; border-radius: .5rem; margin: 1.25rem 0; border: 1px solid var(--gs-border); }

.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
    padding: .65rem 0 .65rem 2rem;
    position: relative;
    border-bottom: 1px solid var(--gs-border);
    color: #c5c9cc;
    font-size: .93rem;
}
.feature-list li:last-child { border-bottom: 0; }
.feature-list li::before {
    content: "";
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gs-accent);
    box-shadow: 0 0 8px var(--gs-glow);
    position: absolute;
    left: .5rem; top: 1.05rem;
}

.instrument-columns { columns: 2; column-gap: 2.5rem; }
@media (min-width: 768px) { .instrument-columns { columns: 3; } }
.instrument-columns span {
    display: block;
    padding: .35rem 0;
    color: #c5c9cc;
    font-size: .9rem;
    border-bottom: 1px solid var(--gs-border);
    break-inside: avoid;
}

.testimonial-card {
    background: var(--gs-surface);
    border: 1px solid var(--gs-border);
    border-left: 3px solid var(--gs-accent);
    border-radius: .75rem;
    padding: 1.75rem 2rem;
    margin-bottom: 1.5rem;
}
.testimonial-card .t-quote { color: #c5c9cc; font-size: .98rem; line-height: 1.65; font-style: italic; }
.testimonial-card .t-author { margin-top: 1rem; color: var(--gs-accent); font-weight: 700; font-size: .9rem; }

/* ---------- TESTIMONIALS SLIDER (product page) ---------- */
.ts-heading { margin-top: .5rem; }
.ts-slider { position: relative; }
.ts-slider::before {
    content: "\201C";
    position: absolute;
    top: -.6rem;
    left: .75rem;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 5.5rem;
    line-height: 1;
    color: var(--gs-accent);
    opacity: .16;
    pointer-events: none;
    z-index: 0;
}
.ts-slider .ts-slides { position: relative; z-index: 1; padding-top: 1.1rem; }
.ts-slider .ts-slide { display: none; }
.ts-slider .ts-slide.is-active { display: block; animation: tsFade .45s ease; }
.ts-slider.is-multi .ts-slides { min-height: 4.5rem; }
@keyframes tsFade {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: none; }
}
.ts-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gs-border);
}
.ts-btn {
    width: 36px; height: 36px;
    flex: 0 0 auto;
    border-radius: 50%;
    border: 1px solid var(--gs-border-strong);
    background: var(--gs-surface-2);
    color: var(--gs-text);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.ts-btn:hover { border-color: var(--gs-accent); color: var(--gs-accent); }
.ts-dots { display: flex; gap: .45rem; }
.ts-dot {
    width: 9px; height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--gs-border-strong);
    cursor: pointer;
    transition: background .15s ease, transform .15s ease;
}
.ts-dot:hover { background: var(--gs-muted); }
.ts-dot.is-active { background: var(--gs-accent); transform: scale(1.25); }

.video-grid { display: grid; gap: 1rem; }
@media (min-width: 768px) { .video-grid { grid-template-columns: 1fr 1fr; } }
.video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: .5rem;
    background: #000;
    border: 1px solid var(--gs-border);
}
.video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* ---------- MP3 demosongs player ---------- */
.mm-player { background: var(--gs-surface); border: 1px solid var(--gs-border); border-radius: 14px; padding: 1.5rem; }
.mm-now { display: flex; align-items: center; gap: 1rem; padding-bottom: 1.25rem; margin-bottom: 1rem; border-bottom: 1px solid var(--gs-border); }
.mm-now .mm-art {
    flex: 0 0 64px; width: 64px; height: 64px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--gs-accent), var(--gs-accent-2));
    color: #001318; font-size: 1.8rem;
}
.mm-now .mm-meta { min-width: 0; }
.mm-now .mm-product { color: var(--gs-muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }
.mm-now .mm-title { color: var(--gs-text); font-weight: 600; font-size: 1.1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mm-controls { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.mm-btn {
    border: 1px solid var(--gs-border-strong); background: var(--gs-surface-2);
    color: var(--gs-text); width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    font-size: 1.1rem; transition: all .15s ease;
}
.mm-btn:hover { border-color: var(--gs-accent); color: var(--gs-accent); }
.mm-btn.mm-play { width: 56px; height: 56px; font-size: 1.5rem; background: var(--gs-accent); color: #001318; border-color: var(--gs-accent); }
.mm-btn.mm-play:hover { background: #fff; color: #001318; }
.mm-progress { flex: 1 1 auto; min-width: 0; display: flex; align-items: center; gap: .75rem; }
.mm-progress input[type=range] { flex: 1 1 auto; min-width: 0; accent-color: var(--gs-accent); cursor: pointer; }
.mm-time { font-variant-numeric: tabular-nums; color: var(--gs-muted); font-size: .85rem; min-width: 42px; text-align: center; }
.mm-list { max-height: 460px; overflow-y: auto; }
.mm-track {
    display: flex; align-items: center; gap: .75rem; width: 100%;
    padding: .6rem .75rem; border: 0; border-radius: 8px;
    background: transparent; color: var(--gs-text); text-align: left; cursor: pointer;
    transition: background .12s ease;
}
.mm-track:hover { background: var(--gs-surface-2); }
.mm-track.active { background: var(--gs-surface-2); color: var(--gs-accent); }
.mm-track .bi { font-size: 1rem; flex: 0 0 auto; opacity: .85; }
.mm-track .mm-track-name { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: .95rem; }

/* small screens: keep the player from overflowing its container */
@media (max-width: 575px) {
    .mm-player { padding: 1.15rem; }
    .mm-controls { flex-wrap: wrap; column-gap: .75rem; row-gap: .85rem; justify-content: center; }
    .mm-progress { flex: 1 1 100%; order: 1; }
}

.teaser-wrap { max-width: 400px; margin: 0 auto; }
.teaser-wrap iframe {
    width: 100%;
    aspect-ratio: 9 / 16;
    border: 0;
    border-radius: .5rem;
    background: #000;
    overflow: hidden;
}

.purchase-box {
    position: relative;
    background: linear-gradient(135deg, rgba(var(--gs-accent-rgb), .12) 0%, rgba(var(--gs-accent-2-rgb), .06) 100%);
    border: 1px solid rgba(var(--gs-accent-rgb), .3);
    border-radius: .75rem;
    padding: 1.75rem 2rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
}
.purchase-box::before {
    content: "";
    position: absolute;
    top: -50%; right: -30%;
    width: 80%; height: 200%;
    background: radial-gradient(circle, rgba(var(--gs-accent-rgb), .1) 0%, transparent 50%);
    pointer-events: none;
}
.purchase-box h3 { color: #fff; font-weight: 700; font-size: 1.1rem; margin-bottom: 1rem; position: relative; }
.purchase-box ul { list-style: none; padding: 0; margin: 0; position: relative; }
.purchase-box li { padding: .5rem 0 .5rem 2rem; position: relative; color: #c5c9cc; font-size: .95rem; }
.purchase-box li::before {
    content: "\F26B";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0; top: .5rem;
    color: var(--gs-accent);
}

.lead-desc { text-align: center; color: var(--gs-muted); font-size: .95rem; max-width: 720px; margin: 0 auto 2rem; line-height: 1.6; }
.gallery-img { width: 100%; height: auto; display: block; border-radius: .5rem; margin-bottom: 1rem; border: 1px solid var(--gs-border); }

.demo-card {
    background: var(--gs-surface-2);
    border: 1px solid var(--gs-border);
    border-left: 3px solid var(--gs-accent);
    border-radius: .5rem;
    padding: 1.25rem 1.5rem;
}
.demo-card .demo-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .15em; color: var(--gs-accent); font-weight: 700; margin-bottom: .5rem; }
.demo-card .demo-name { font-weight: 700; color: #fff; font-size: 1.05rem; margin-bottom: .25rem; }
.demo-card .demo-size { color: var(--gs-muted); font-size: .85rem; margin-left: .4rem; font-weight: 400; }
.demo-card .demo-limit { color: #ff6b6b; font-size: .88rem; margin-top: .6rem; }
.demo-card .demo-limit strong { color: #ff8a8a; }
.demo-download-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(var(--gs-accent-rgb), .12);
    color: var(--gs-accent);
    border: 1px solid rgba(var(--gs-accent-rgb), .4);
    font-weight: 600;
    padding: .6rem 1.2rem;
    border-radius: .35rem;
    text-decoration: none;
    margin-top: .85rem;
    transition: all .2s ease;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-size: .82rem;
}
.demo-download-btn:hover { background: var(--gs-accent); color: #0b0d10; box-shadow: 0 0 16px var(--gs-glow); }

.buy-section {
    position: relative;
    background: var(--gs-surface);
    border: 1px solid var(--gs-border);
    border-radius: .75rem;
    padding: 1.75rem 2rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
}
.buy-section::before {
    content: "";
    position: absolute;
    top: -1px; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gs-accent), transparent);
    opacity: .5;
}
.buy-headline { font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: .4rem; }
.buy-sub { color: var(--gs-muted); font-size: .92rem; margin-bottom: 1.25rem; }
.buy-big-cta {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: var(--gs-accent);
    color: #0b0d10;
    font-weight: 800;
    padding: 1rem 2rem;
    border-radius: .4rem;
    text-decoration: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    box-shadow: 0 0 24px var(--gs-glow);
    transition: all .2s ease;
}
.buy-big-cta:hover { background: #fff; color: #0b0d10; transform: translateY(-2px); box-shadow: 0 8px 32px var(--gs-glow); }
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: .55rem .85rem;
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}
.payment-methods li { color: #c5c9cc; font-size: .88rem; padding-left: 1.5rem; position: relative; }
.payment-methods li::before {
    content: "";
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--gs-accent);
    box-shadow: 0 0 6px var(--gs-glow);
    position: absolute;
    left: .35rem; top: .55rem;
}
.serial-note {
    background: rgba(var(--gs-accent-rgb), .06);
    border: 1px solid rgba(var(--gs-accent-rgb), .2);
    border-radius: .4rem;
    padding: .95rem 1.1rem;
    color: #c5c9cc;
    font-size: .88rem;
    margin-top: 1.25rem;
}
.serial-note strong { color: var(--gs-accent); }

.free-sample { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; margin-top: 1rem; }
.free-sample input[type=email] {
    flex: 1; min-width: 220px;
    background: var(--gs-surface-2);
    border: 1px solid var(--gs-border-strong);
    color: var(--gs-text);
    padding: .6rem .9rem;
    border-radius: .35rem;
}
.free-sample .fs-consent { flex-basis: 100%; color: var(--gs-muted); font-size: .85rem; display: flex; gap: .5rem; align-items: flex-start; }
.free-sample button {
    background: var(--gs-accent);
    color: #0b0d10;
    font-weight: 700;
    border: 0;
    padding: .6rem 1.4rem;
    border-radius: .35rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-size: .82rem;
}
.free-sample button:disabled { opacity: .4; cursor: not-allowed; }

/* ===================================================================
   PRODUCT BUY BLOCK — price, trust, best-seller, countdown, sticky bar
   =================================================================== */
.buy-bestsellers { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.buy-bs {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: .34rem .62rem;
    border-radius: .3rem;
}
.buy-bs i { font-size: .9em; }
.buy-bs--all   { background: linear-gradient(135deg, #ffd24a 0%, #ff9d00 100%); color: #3a2600; }
.buy-bs--year  { background: linear-gradient(135deg, #1db3c5 0%, #0f8296 100%); color: #fff; }
.buy-bs--month { background: linear-gradient(135deg, #3ddc84 0%, #12a05f 100%); color: #fff; }

.buy-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: .6rem;
    margin-bottom: 1.1rem;
}
.buy-price-now { font-size: 2rem; font-weight: 800; color: #fff; line-height: 1; }
.buy-price-old { font-size: 1.15rem; color: var(--gs-muted); text-decoration: line-through; }
.buy-price-off {
    background: rgba(255, 61, 90, .15);
    color: #ff8a8a;
    border: 1px solid rgba(255, 61, 90, .4);
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: .28rem .55rem;
    border-radius: .3rem;
    align-self: center;
}

.buy-form { margin: 0 0 .5rem; }
.buy-form .buy-big-cta { border: 0; cursor: pointer; font-family: inherit; width: 100%; justify-content: center; }
@media (min-width: 576px) { .buy-form .buy-big-cta { width: auto; } }

.buy-demo-cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-left: .75rem;
    color: var(--gs-accent);
    border: 1px solid rgba(var(--gs-accent-rgb), .4);
    background: rgba(var(--gs-accent-rgb), .08);
    font-weight: 700;
    font-size: .85rem;
    padding: .8rem 1.2rem;
    border-radius: .4rem;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, transform .15s ease;
}
.buy-demo-cta:hover { background: var(--gs-accent); color: #0b0d10; transform: translateY(-2px); }
@media (max-width: 575px) {
    .buy-demo-cta { margin-left: 0; margin-top: .6rem; width: 100%; justify-content: center; }
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1.4rem;
    list-style: none;
    padding: 0;
    margin: 1.4rem 0 0;
}
.trust-row li {
    display: flex;
    align-items: center;
    gap: .45rem;
    color: var(--gs-text);
    font-size: .85rem;
}
.trust-row li i { color: var(--gs-accent); font-size: 1rem; }

.buy-view-shop { margin-top: 1.1rem; font-size: .85rem; }
.buy-view-shop a { color: var(--gs-muted); text-decoration: none; }
.buy-view-shop a:hover { color: var(--gs-accent); }

/* ---- Sale countdown band ---- */
.gs-countdown {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem .9rem;
    background: linear-gradient(135deg, rgba(255,61,90,.12), rgba(255,138,61,.08));
    border: 1px solid rgba(255, 61, 90, .35);
    border-radius: .5rem;
    padding: .7rem 1rem;
    margin-bottom: 1.1rem;
}
.gs-countdown-label {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: #ff8a8a;
    font-weight: 800;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.gs-countdown-clock { display: inline-flex; align-items: flex-end; gap: .45rem; }
.gs-cd-unit { display: inline-flex; flex-direction: column; align-items: center; min-width: 2.4rem; }
.gs-cd-unit b {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.gs-cd-unit i { font-style: normal; font-size: .6rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gs-muted); margin-top: .2rem; }
.gs-cd-sep { color: var(--gs-muted); font-size: 1.2rem; font-weight: 700; align-self: center; }

/* ---- Sticky mobile buy bar ---- */
.buy-bar-mobile {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 1030;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .6rem 1rem;
    background: rgba(19, 23, 27, .96);
    border-top: 1px solid var(--gs-border-strong);
    backdrop-filter: blur(8px);
    box-shadow: 0 -6px 20px rgba(0,0,0,.5);
}
.buy-bar-mobile .bbm-price { display: flex; align-items: baseline; gap: .5rem; }
.buy-bar-mobile .bbm-now { font-size: 1.3rem; font-weight: 800; color: #fff; }
.buy-bar-mobile .bbm-old { font-size: .9rem; color: var(--gs-muted); text-decoration: line-through; }
.buy-bar-mobile .bbm-cta {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: var(--gs-accent);
    color: #0b0d10;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: .85rem;
    padding: .65rem 1.3rem;
    border-radius: .4rem;
    text-decoration: none;
    box-shadow: 0 0 16px var(--gs-glow);
}
@media (max-width: 767px) { main { padding-bottom: 5rem; } }

/* dim the page behind the cart popup */
main.dim { filter: blur(2px) brightness(.55); pointer-events: none; transition: filter .2s ease; }
