:root {
    --bg-dark: #000000;
    --bg-card: #000000;
    --text-main: #f4f4f4;
    --text-muted: #a0a0a0;
    --accent: #ef1426; 
    --accent-hover: #ef1426;
    --top-banner-height: 2rem;
    
    --nav-clearance: 8.5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--top-banner-height) + var(--nav-clearance));
}

body {
    font-family: 'Instrument Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Epilogue', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s ease;
}

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

.top-banner {
    position: sticky;
    top: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: var(--top-banner-height);
    padding: 0.3rem 1rem;
    background-color: var(--accent);
    color: #ffffff;
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 600;
}

.top-banner p {
    margin: 0;
}

#navbar {
    position: fixed;
    top: var(--top-banner-height);
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #000000;
    border-bottom: 1px solid #1a1a1a;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.nav-left-logo {
    position: absolute;
    left: 3%;
    top: 0.9rem;
    line-height: 0;
    z-index: 1001;
    transition: none;
}

.nav-left-logo img {
    display: block;
    height: 34px;
    width: auto;
    transition: none;
}

#navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.98);
    border-bottom-color: #222;
}

.nav-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.25rem 5% 1rem;
    transition: padding 0.3s ease;
}

#navbar.scrolled .nav-inner {
    padding: 0.75rem 5% 0.65rem;
}

.nav-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px 30px;
    margin-top: 0.75rem;
}

.logo {
    display: block;
    line-height: 0;
    position: relative;
    overflow: hidden;
}

.logo img {
    display: block;
    height: 72px;
    width: auto;
    max-width: min(300px, 75vw);
    object-fit: contain;
    transition: height 0.3s ease;
    transform: translateZ(0);
    position: relative;
    z-index: 1;
}

.logo--glitch-ready::before,
.logo--glitch-ready::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--logo-glitch-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
}

@keyframes logo-glitch-base {
    0%, 100% { transform: none; filter: none; }
    12% { transform: translateX(-1px); filter: hue-rotate(6deg); }
    13% { transform: translateX(1px); filter: hue-rotate(-8deg); }
    14% { transform: none; filter: none; }
    48% { transform: translateX(1px); filter: hue-rotate(4deg); }
    49% { transform: translateX(-2px); filter: hue-rotate(-6deg); }
    50% { transform: none; filter: none; }
}

@keyframes logo-glitch-slice-a {
    0%, 100% { transform: translateX(0); clip-path: inset(0 0 100% 0); opacity: 0; }
    16% { transform: translateX(-5px); clip-path: inset(8% 0 70% 0); opacity: 0.65; }
    17% { transform: translateX(12px); clip-path: inset(34% 0 38% 0); opacity: 0.92; }
    18% { transform: translateX(-9px); clip-path: inset(72% 0 6% 0); opacity: 0.82; }
    19% { transform: translateX(0); clip-path: inset(0 0 100% 0); opacity: 0; }
    62% { transform: translateX(4px); clip-path: inset(20% 0 60% 0); opacity: 0.5; }
    63% { transform: translateX(-11px); clip-path: inset(52% 0 20% 0); opacity: 0.88; }
    64% { transform: translateX(0); clip-path: inset(0 0 100% 0); opacity: 0; }
}

@keyframes logo-glitch-slice-b {
    0%, 100% { transform: translateX(0); clip-path: inset(100% 0 0 0); opacity: 0; }
    24% { transform: translateX(10px); clip-path: inset(10% 0 64% 0); opacity: 0.78; }
    25% { transform: translateX(-13px); clip-path: inset(42% 0 30% 0); opacity: 0.95; }
    26% { transform: translateX(8px); clip-path: inset(74% 0 4% 0); opacity: 0.74; }
    27% { transform: translateX(0); clip-path: inset(100% 0 0 0); opacity: 0; }
    70% { transform: translateX(-10px); clip-path: inset(24% 0 52% 0); opacity: 0.82; }
    71% { transform: translateX(12px); clip-path: inset(60% 0 14% 0); opacity: 0.9; }
    72% { transform: translateX(0); clip-path: inset(100% 0 0 0); opacity: 0; }
}

body.is-scrolling .logo img {
    animation: logo-glitch-base 320ms steps(2, end) infinite;
    will-change: transform, filter;
}

body.is-scrolling .logo--glitch-ready::before {
    animation: logo-glitch-slice-a 360ms steps(2, end) infinite;
    filter: hue-rotate(20deg) saturate(1.35);
    mix-blend-mode: screen;
}

body.is-scrolling .logo--glitch-ready::after {
    animation: logo-glitch-slice-b 380ms steps(2, end) infinite;
    filter: hue-rotate(-26deg) saturate(1.4);
    mix-blend-mode: lighten;
}

#navbar.scrolled .logo img {
    height: 52px;
}

body:not(.page-home) #navbar {
    background-color: rgba(0, 0, 0, 0.98);
    border-bottom-color: #222;
}

body:not(.page-home) #navbar .nav-inner {
    padding: 0.75rem 5% 0.65rem;
}

body:not(.page-home) #navbar .logo img {
    height: 52px;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 28px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nav-links a {
    position: relative;
    padding: 0.25rem 0;
}

.nav-links a[aria-current="page"] {
    color: #ffffff;
}

.nav-links a[aria-current="page"]::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    background-color: var(--accent);
}

.nav-icons {
    display: flex;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.nav-cart {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0;
    border: none;
    background: none;
    color: inherit;
    font: inherit;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
}

.nav-cart:hover {
    color: var(--accent);
}

.nav-cart__icon {
    flex-shrink: 0;
}

.nav-cart__count {
    min-width: 1.75rem;
}

.shopify-buy-frame--toggle,
.shopify-buy__cart-toggle {
    display: none !important;
}

.shopify-buy-frame--cart.is-active.is-visible {
    visibility: visible !important;
    transform: translateX(0) !important;
}

.hero {
    position: relative;
    min-height: 110vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 11rem 20px 4rem;
    overflow: hidden;
    background: linear-gradient(rgba(10, 10, 10, 0.1), rgba(10, 10, 10, 0.1)), url('media/v2_donnie-rosie-taO2fC7sxDU-unsplash.png') 50% 20%/cover;
}

.hero-product-link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56%;
    height: 56%;
    z-index: 1;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hero-product-link:hover {
    transform: translate(-50%, -50%) scale(1.06);
}

.hero-product-link picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-product-display {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: calc(4 * 1.2rem * 1.6);
    pointer-events: none;
}

.hero-content a {
    pointer-events: auto;
}

.hero p {
    font-size: 1.2rem;
    color: #ffffff;
    max-width: 600px;
    margin-top: calc(4rem * 1.2 * 2 + 20px + 1.2rem * 1.6 * 5);
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Epilogue', sans-serif;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 20, 38, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 2px solid var(--text-main);
    margin-left: 15px;
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 900;
}

.section-title span {
    color: var(--accent);
}

.products {
    padding: 100px 5%;
    background-color: var(--bg-dark);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-grid--catalog {
    max-width: 1100px;
    margin: 0 auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    justify-items: stretch;
}

.product-grid--catalog > .product-card--catalog:only-child {
    width: 100%;
    max-width: min(100%, calc((1100px - 2 * 32px) / 3));
}

.product-card--catalog {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.product-card--catalog:hover {
    transform: none;
    border-color: transparent;
}

.product-card__visual {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 0;
}

.product-card__save-badge {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.9rem;
    background-color: var(--accent);
    color: #000;
    font-family: 'Epilogue', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
}

.product-card--catalog .product-image {
    width: 100%;
    height: auto;
    background-color: transparent;
    margin: 0;
    position: relative;
}

.product-card--catalog .product-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    overflow: clip;
    transition: filter 0.35s ease;
}

.product-card__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 1;
}

.product-card--catalog:hover .product-card__visual::after {
    opacity: 1;
}

.product-card--catalog:hover .product-image img {
    filter: none;
}

.product-card__footer {
    position: relative;
    margin-top: -1.15rem;
    z-index: 2;
}

.product-card__overlay-buy {
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    
    bottom: calc(1.75rem + 0.35rem - 0.7rem);
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    height: fit-content;
    padding: 0 1rem;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    pointer-events: none;
}

.product-card--catalog:hover .product-card__overlay-buy {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.product-card--catalog.product-card--suppress-hover .product-card__visual::after,
.product-card--catalog.product-card--suppress-hover:hover .product-card__visual::after {
    opacity: 0 !important;
}

.product-card--catalog.product-card--suppress-hover .product-image img,
.product-card--catalog.product-card--suppress-hover:hover .product-image img {
    filter: none !important;
}

.product-card--catalog.product-card--suppress-hover .product-card__overlay-buy,
.product-card--catalog.product-card--suppress-hover:hover .product-card__overlay-buy {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

@media (hover: none) {
    .product-card--catalog .product-card__visual::after {
        opacity: 0;
    }
}

.product-card__meta {
    margin-top: 0;
    padding: 0.4rem 0 1.75rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.product-card__meta .product-card__pricing {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0;
}

.product-card__meta .product-card__pricing .price,
.product-card__meta .product-card__pricing .price-was {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Epilogue', sans-serif;
    line-height: 1.2;
}

.product-card__meta .product-card__pricing .price-was {
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-card__meta .product-card__pricing .price {
    margin-left: 0.2rem;
}

.product-card__overlay-buy .shopify-buy-mount {
    width: auto !important;
    max-width: none !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    display: block;
}

.product-card__overlay-buy .shopify-buy-frame,
.product-card__overlay-buy .shopify-buy-mount iframe {
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    display: block !important;
}

.product-card__overlay-buy .shopify-buy__product {
    max-width: none !important;
    margin: 0 auto !important;
}

.product-card__overlay-buy .shopify-buy__btn,
.product-card__overlay-buy button {
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    padding: 0.75rem 1.5rem !important;
    font-size: 1.125rem !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
}

.product-card__buy-native {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0.15rem 0.35rem;
    font-family: 'Epilogue', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.2;
    box-sizing: border-box;
    color: #000;
    background-color: #ef1426;
    border: none;
    border-radius: 0;
    white-space: nowrap;
    cursor: pointer;
    flex: 0 0 auto;
}

.product-card__buy-native:hover,
.product-card__buy-native:focus {
    background-color: #d71222;
    color: #000;
}

.product-card__buy-native:disabled {
    opacity: 0.65;
    cursor: wait;
}

@media (hover: none), (max-width: 768px) {
    .product-card--catalog .product-card__footer {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 0.55rem;
        margin-top: 0.25rem;
        padding: 0 0.65rem 0.85rem;
    }

    .product-card--catalog .product-card__overlay-buy {
        position: static;
        display: block;
        flex: 0 0 auto;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        height: auto;
        padding: 0;
        overflow: visible;
    }

    .product-card--catalog .product-card__buy-native {
        display: inline-flex;
        padding: 0.15rem 0.35rem;
        transform: scale(0.88);
        transform-origin: left center;
        font-size: calc(0.875rem / 0.88);
    }

    .product-card--catalog .product-card__overlay-buy .shopify-buy-mount {
        display: none !important;
    }

    .product-card--catalog .product-card__meta {
        flex: 0 1 auto;
        margin: 0;
        padding: 0 !important;
        min-width: 0;
        text-align: left;
    }

    .product-card--catalog .product-card__meta .product-card__pricing {
        justify-content: flex-start;
        flex-wrap: nowrap;
    }

    .product-card--catalog.product-card--suppress-hover .product-card__overlay-buy,
    .product-card--catalog.product-card--suppress-hover:hover .product-card__overlay-buy {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
}

.product-card {
    background-color: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #222;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: #333;
}

.product-image {
    width: 100%;
    height: 300px;
    background-color: #222;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.genre-tag {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 5px;
    display: block;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
}

.features {
    background-color: #111;
    padding: 80px 5%;
    display: flex;
    justify-content: center;
    gap: 50px;
    text-align: center;
    flex-wrap: wrap;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.feature-box {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.feature-box h3 {
    margin-bottom: 10px;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

footer {
    background-color: #050505;
    padding: 50px 5% 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-legal {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-legal a {
    font-size: 0.9rem;
}

.footer-socials {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-socials a:hover {
    transform: translateY(-1px);
    opacity: 0.85;
}

.footer-socials img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid #222;
    padding-top: 20px;
}

.page-main {
    padding-top: var(--nav-clearance);
}

.page-hero {
    text-align: center;
    padding: 3.5rem 5%;
    background: linear-gradient(180deg, #0a0a0a 0%, var(--bg-dark) 100%);
    border-bottom: 1px solid #222;
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.page-hero h1 span {
    color: var(--accent);
}

.page-hero .lead {
    max-width: 720px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.page-hero .lead + .lead {
    margin-top: 1.1rem;
}

.page-hero--about {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)),
        url("media/yassine-khalfalli-I3ZzOkiAbTI-unsplash.png");
    background-size: cover;
    background-position: center;
}

.page-hero--about .about-text-box {
    max-width: 760px;
    margin: 1.5rem auto 0;
    padding: 1.1rem 1.25rem;
    text-align: center;
}

.page-hero--about .about-text-box .lead {
    color: #ffffff;
}

.page-main--faq {
    background-color: var(--bg-dark);
}

.page-hero--faq {
    background: var(--bg-dark);
    border-bottom: 1px solid #222;
}

.faq-section {
    background-color: var(--bg-dark);
    padding: 3rem 5% 4rem;
}

.faq-page {
    max-width: 460px;
    margin: 0 auto;
}

.faq-box {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 1.75rem 2rem;
    text-align: left;
}

.faq-accordion .faq-item {
    border-bottom: 1px solid #333;
}

.faq-accordion .faq-item:last-child {
    border-bottom: none;
}

.faq-item__trigger {
    width: 100%;
    border: none;
    background: none;
    cursor: pointer;
    font-family: 'Epilogue', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.5;
    text-transform: uppercase;
    color: #ffffff;
    padding: 1.35rem 0;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.faq-item__trigger::after {
    content: '+';
    flex-shrink: 0;
    color: var(--accent);
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1;
    margin-top: 0.15em;
    transition: transform 0.35s ease;
}

.faq-item.is-open .faq-item__trigger::after {
    transform: rotate(45deg);
}

.faq-item__content {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

.faq-item__content-inner {
    padding-bottom: 1.25rem;
}

.faq-item__answer {
    margin: 0;
    padding-right: 1.5rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.65;
}

.legal-content {
    max-width: 720px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.legal-content h2 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
    color: var(--text-main);
}

.legal-content h2:first-of-type {
    margin-top: 1.5rem;
}

.legal-content p + p,
.legal-content ul + p,
.legal-content p + ul {
    margin-top: 1.25rem;
}

.legal-content ul {
    margin: 0.75rem 0 0;
    padding-left: 1.35rem;
}

.legal-content li + li {
    margin-top: 0.5rem;
}

.legal-content__copyright {
    margin-top: 2.5rem;
    font-size: 0.95rem;
}

.legal-content__updated {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.page-section {
    padding: 80px 5%;
}

.page-section--alt {
    background-color: #111;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    max-width: 760px;
    margin: 0 auto;
    justify-items: center;
}

.contact-details {
    text-align: center;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.35rem;
    font-size: 0.9rem;
}

.contact-form {
    width: 100%;
    max-width: 640px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 1.25rem;
    border: 1px solid #333;
    background: #000;
    color: #fff;
    font-family: inherit;
    border-radius: 4px;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-details p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.price-was {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 0.95rem;
    margin-right: 0.5rem;
}

.cta-row {
    text-align: center;
    margin-top: 2.5rem;
}

.product-detail__back {
    max-width: 1100px;
    margin: 0 auto 1.5rem;
    padding: 0 5%;
    font-size: 0.9rem;
}

.product-detail__hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5% 3rem;
}

.product-detail__image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.product-detail__info h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.1;
    margin: 0.5rem 0 1rem;
}

.product-detail__info h1 span {
    color: var(--accent);
}

.product-detail__lead {
    color: var(--text-muted);
    margin-bottom: 1.75rem;
    max-width: 36rem;
}

.product-detail__lead ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    list-style: none;
    padding: 0;
}

.product-detail__lead p {
    margin-bottom: 10px;
}

.product-detail__lead p + p {
    margin-top: 16px;
    margin-bottom: 0;
}

.product-detail__pricing {
    display: flex;
    align-items: baseline;
    gap: 0.55rem;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.product-detail__pricing .price,
.product-detail__pricing .price-was {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: 'Epilogue', sans-serif;
}

.product-detail__pricing .price-was {
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-detail__save {
    color: var(--accent);
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Epilogue', sans-serif;
    letter-spacing: 0.04em;
}

.product-detail__buy .shopify-buy-mount {
    display: inline-block;
}

.product-detail__buy .shopify-buy__btn,
.product-detail__buy button {
    padding: 0.75rem 1.5rem !important;
    font-size: 1.125rem !important;
    white-space: nowrap !important;
}

.product-detail__previews {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 56px;
    padding-bottom: 56px;
}

.product-detail__previews .section-title {
    margin-bottom: 1.5rem;
}

.product-feature-strip {
    background-color: #111;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    padding: 80px 5%;
    margin-top: 32px;
}

.product-feature-strip--compact {
    padding-top: 40px;
    padding-bottom: 40px;
}

.product-feature-strip--photo-bg {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.42)),
        url('media/v2_donnie-rosie-taO2fC7sxDU-unsplash.png');
    background-size: 120%;
    background-position: center 40%;
    background-repeat: no-repeat;
}

.product-feature-strip__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.product-feature-strip__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 2.5rem;
}

.product-feature-strip__content--wide-gap {
    gap: 4rem;
}

.product-feature-strip__content--image-priority {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 2.8rem;
}

.product-feature-strip__content--image-priority .product-feature-strip__image {
    transform: translateX(-72px);
}

.product-feature-strip__content--image-priority .product-feature-strip__image--large img {
    width: 105%;
}

.product-feature-strip__content--image-priority .product-feature-strip__text-box {
    justify-self: start;
    max-width: 460px;
    width: 100%;
}

.product-feature-strip__image {
    margin: 0;
}

.product-feature-strip__image img {
    width: 100%;
    max-width: 560px;
    height: auto;
    display: block;
}

.product-feature-strip__image--large img {
    max-width: 780px;
    width: 115%;
}

.product-feature-strip__text h3 {
    margin-bottom: 0.75rem;
}

.product-feature-strip__text p {
    color: var(--text-muted);
}

.product-feature-strip__text-box {
    background: #080808;
    border: 1px solid #222;
    padding: 1.25rem 1.5rem 1.25rem 2.25rem;
    max-width: 360px;
    width: 100%;
    justify-self: center;
    text-align: left;
}

.faq-page .product-feature-strip__text-box.faq-box {
    max-width: none;
    width: 100%;
}

.product-feature-strip__text-box ul {
    display: inline-flex !important;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    text-align: left;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.product-fyi-strip {
    margin-top: 0;
}

.product-feature-strip--fyi-bg {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.42)),
        url('media/dylan-mcleod-VRdZBLqnoMU-unsplash.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.product-fyi-strip__inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.product-fyi-strip__box {
    max-width: min(100%, 720px);
    width: 100%;
    margin: 0 auto;
    text-align: left;
}

.product-fyi-strip__box h3 {
    margin-bottom: 0.75rem;
}

.product-fyi-strip__box ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding-left: 1.25rem;
}

.product-bundle-cta {
    background-color: #111;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    margin-top: 0;
    padding: 28px 5%;
}

.product-bundle-cta__inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 2.5rem;
}

.product-bundle-cta__text h3 {
    margin-bottom: 1rem;
    font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.product-bundle-cta__media {
    margin: 0;
    display: flex;
    justify-content: flex-end;
}

.product-bundle-cta__media img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
}

@media (max-width: 900px) {
    .product-feature-strip--photo-bg {
        background-color: #000000;
        background-size: 280%;
        background-position: center -85%;
    }

    .product-feature-strip__content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-feature-strip--serum.product-feature-strip--photo-bg {
        background-position: center -160px;
    }

    .product-feature-strip--serum.product-feature-strip--compact {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }

    .product-feature-strip--serum .product-feature-strip__content {
        gap: 0.25rem;
    }

    .product-feature-strip--serum .product-feature-strip__image {
        display: flex;
        justify-content: center;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .product-feature-strip--serum .product-feature-strip__image--large img {
        width: 92%;
        max-width: 400px;
        margin: 0 auto;
    }

    .product-feature-strip--bundle.product-feature-strip--photo-bg {
        background-position: center -160px;
    }

    .product-feature-strip--bundle .product-feature-strip__content--image-priority .product-feature-strip__image {
        transform: none;
        display: flex;
        justify-content: center;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .product-feature-strip--bundle .product-feature-strip__content--image-priority .product-feature-strip__image--large img {
        width: 100%;
        max-width: 440px;
        margin: 0 auto;
    }

    .product-feature-strip--bundle .product-feature-strip__content--image-priority .product-feature-strip__text-box {
        justify-self: center;
        max-width: 360px;
    }

    .product-bundle-cta__inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-bundle-cta__media {
        justify-content: flex-start;
    }
}

.product-card__link {
    display: block;
    color: inherit;
}

.product-card__link:hover {
    color: inherit;
}

.audio-preview-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.audio-preview-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border: 1px solid #222;
    background: #0a0a0a;
}

.audio-preview-subheading {
    margin: 1.6rem 0 0.8rem;
    font-family: 'Epilogue', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.audio-preview-item--demo {
    align-items: flex-start;
}

.audio-preview-play {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background-color: var(--accent);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.audio-preview-play:hover {
    background-color: #d71222;
    transform: scale(1.05);
}

.audio-preview-play.is-playing {
    background-color: #fff;
}

.audio-preview-play__icon {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 0 9px 14px;
    border-color: transparent transparent transparent #000;
    margin-left: 3px;
}

.audio-preview-play.is-playing .audio-preview-play__icon {
    width: 14px;
    height: 16px;
    margin-left: 0;
    border: none;
    position: relative;
}

.audio-preview-play.is-playing .audio-preview-play__icon::before,
.audio-preview-play.is-playing .audio-preview-play__icon::after {
    content: '';
    position: absolute;
    top: 0;
    width: 4px;
    height: 16px;
    background-color: #000;
}

.audio-preview-play.is-playing .audio-preview-play__icon::before {
    left: 0;
}

.audio-preview-play.is-playing .audio-preview-play__icon::after {
    right: 0;
}

.audio-preview-item__text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    text-align: left;
    flex: 1;
    min-width: 0;
}

.audio-preview-item__title {
    font-family: 'Epilogue', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
}

.audio-preview-item__title--demo {
    text-transform: none;
}

.audio-preview-progress {
    width: 100%;
    height: 12px;
    margin-top: 0.55rem;
    border: 1px solid #242424;
    background: #060606;
    cursor: pointer;
    position: relative;
}

.audio-preview-progress__fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #ef1426 0%, #ff5a68 100%);
    transition: width 0.08s linear;
}

.audio-preview-time {
    width: 100%;
    margin-top: 0.35rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .product-grid--catalog {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-grid--catalog > .product-card--catalog:only-child {
        max-width: min(100%, calc((100% - 32px) / 2));
    }
}

@media (max-width: 520px) {
    .product-grid--catalog {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .product-grid--catalog > .product-card--catalog:only-child {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-clearance: 10rem;
    }

    .nav-inner {
        padding: 1rem 5% 0.75rem;
    }

    .logo img {
        height: 56px;
    }

    #navbar.scrolled .logo img,
    body:not(.page-home) #navbar .logo img {
        height: 44px;
    }

    .nav-row {
        gap: 14px 18px;
        margin-top: 0.5rem;
    }

    .nav-links {
        gap: 14px 18px;
        font-size: 0.78rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 2.25rem 5%;
    }

    .product-detail__hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-bottom: 2rem;
    }

    .hero {
        min-height: 105vh;
        padding-top: 9.5rem;
    }

    .hero-product-link {
        width: 96%;
        height: 78%;
        top: 46%;
    }

    .hero-content {
        margin-top: calc(4 * 1.2rem * 1.6);
    }

    .hero p {
        margin-top: calc(2.5rem * 1.2 * 2 + 20px + 1.2rem * 1.6 * 5);
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }
}