/* ===== アユルアー入門 LP — モダン×ポップ ===== */
:root {
    --bg: #fffde4;
    --bg-alt: #e0f2fe;
    --surface: #ffffff;
    --text: #000;
    --text-muted: #475569;
    --accent: #0ea5e9;
    --accent-hot: #f97316;
    --accent-pop: #ec4899;
    --accent-violet: #8b5cf6;
    --gradient-hero: linear-gradient(135deg, #0ea5e9 0%, #3ec500 55%, #e2da00 75%);
    --shadow-sm: 0 4px 14px rgba(14, 165, 233, 0.12);
    --shadow-pop: 0 12px 40px rgba(99, 102, 241, 0.18);
    --radius: 20px;
    --radius-sm: 12px;
    --font: "Zen Kaku Gothic New", system-ui, sans-serif;
    --font-display: "Outfit", var(--font);
    --header-h: 64px;
    --toc-w: 260px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 12px);
}

.layout img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border-radius: var(--radius-sm);
}

.layout a {
    color: var(--accent);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.2s, opacity 0.2s;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 10000;
    padding: 0.75rem 1rem;
    background: var(--text);
    color: #fff;
    border-radius: var(--radius-sm);
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
}

/* ----- Header ----- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 990;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(14, 165, 233, 0.15);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    margin: 0 auto;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    color: var(--text);
    text-decoration: none;
    white-space: nowrap;
}

.logo span {
    color: var(--accent-hot);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 8px;
}

.nav-toggle-bar {
    width: 24px;
    height: 3px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.site-nav .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
    align-items: center;
    justify-content: flex-end;
}

.site-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.35rem 0.5rem;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

.site-nav a:hover {
    color: var(--accent);
    background: rgba(14, 165, 233, 0.1);
}

/* ----- Layout ----- */
.layout {
    margin: 0 auto;
    gap: 0;
    min-height: 60vh;
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

.content-section {
    max-width: 900px;
    margin: 0 auto!important;
}

.toc-sidebar {
    position: relative;
    border-right: 1px solid rgba(14, 165, 233, 0.12);
    background: linear-gradient(180deg, #f8fafc 0%, #f0f9ff 100%);
}

.toc-sticky {
    position: sticky;
    top: var(--header-h);
    padding: 1.25rem 1rem 2rem;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
}

.toc-title {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 1rem;
}

.toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.toc-list li {
    margin-bottom: 0.35rem;
}

.toc-list a {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding: 0.45rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.toc-list a:hover {
    background: rgba(14, 165, 233, 0.12);
    color: var(--text);
}

.toc-list a.is-active {
    background: linear-gradient(90deg, rgba(14, 165, 233, 0.2), transparent);
    color: var(--text);
    font-weight: 700;
}

.toc-num {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-pop);
    opacity: 0.85;
    flex-shrink: 0;
}

.back-to-top {
    display: inline-block;
    margin-top: 1.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent-violet);
    text-decoration: none;
}

.back-to-top:hover {
    text-decoration: underline;
}

.main-content {
    padding: 0 1.5rem 4rem;
}

/* ----- Hero ----- */
.hero {
    position: relative;
    padding: 2.5rem 0 3rem;
    margin: 0 -1.5rem 2rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    opacity: 0.08;
    border-radius: 0 0 32px 32px;
    animation: hero-bg-pulse 8s ease-in-out infinite;
}

@keyframes hero-bg-pulse {

    0%,
    100% {
        opacity: 0.08;
        transform: scale(1);
    }

    50% {
        opacity: 0.14;
        transform: scale(1.02);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 2rem;
}

.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 0.75rem;
    animation: float-y 3s ease-in-out infinite;
}

@keyframes float-y {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.hero-title {
    margin: 0 0 1rem;
    line-height: 1.1;
}

.hero-title-line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    font-weight: 900;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: title-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    opacity: 0;
}

.hero-title-sub {
    display: block;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--text);
    margin-top: 0.25rem;
    animation: title-in 0.9s 0.12s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    opacity: 0;
}

@keyframes title-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-lead {
    max-width: 28em;
    margin: 0 auto 1.5rem;
    font-size: 1.05rem;
    text-align: center;
}

.hero-meta-link {
    margin: 1rem 0 0;
    font-size: 0.85rem;
}

.hero-meta-link a {
    color: var(--text-muted);
    font-weight: 600;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    background: var(--gradient-hero);
    color: #fff !important;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: var(--shadow-pop);
    transition: transform 0.25s, box-shadow 0.25s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 16px 48px rgba(236, 72, 153, 0.35);
}

.btn-primary svg {
    animation: bounce-d 1.5s ease-in-out infinite;
}

@keyframes bounce-d {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(4px);
    }
}

.hero-figure {
    position: relative;
    z-index: 1;
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-pop);
    animation: card-rise 0.8s 0.2s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

@keyframes card-rise {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-figure img {
    display: block;
    width: 100%;
    border-radius: var(--radius);
}

.img-link {
    display: block;
    line-height: 0;
}

.img-caption {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    text-align: center;
}

/* ----- Sections ----- */
.content-section {
    padding: 2.5rem 0;
    scroll-margin-top: calc(var(--header-h) + 8px);
}

.section-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.section-num {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    background: var(--gradient-hero);
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
}

.content-section h2 {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 1.85rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.content-section h3 {
    font-size: 1.3rem;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text);
    font-weight: 600;
}

.content-section p {
    margin: 0.75rem 0;
}

.h3-inline {
    margin-top: 0;
}

.prose {
    
}

.prose.large {
    font-size: 1.125rem;
}

.lead-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text);
}

.alt-band {
    margin: 0 -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    background: linear-gradient(180deg, var(--bg-alt) 0%, transparent 100%);
    border-radius: var(--radius);
}

.highlight-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--surface);
    border-radius: var(--radius);
    border: 3px solid #00ea2a;
    box-shadow: var(--shadow-sm);
}

.content-figure {
    margin: 1.5rem 0;
}

.content-figure.narrow {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.content-figure iframe.youtubeshort {
    max-width: 300px;
    margin: 10px auto;
    display: block;
    aspect-ratio: 9 / 16;
}

/* Cards */
.card-pop {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
}

.card-pop:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-pop);
}

.card-pop p {
    margin: 0.75rem 0;
}

.grid-two {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.grid-two p {
    margin: 0.75rem 0;
}

.card-tackle h3 {
    margin-top: 0;
    font-size: 1.1rem;
}

.card-tackle figure {
    margin: 0.75rem 0;
}

.subsection {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed rgba(14, 165, 233, 0.25);
}

.img-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.img-row figure {
    margin: 0;
}

.img-row figcaption {
    color: var(--text-muted);
    margin-top: 0.35rem;
}

.product-list {
    padding-left: 1.25rem;
}

.product-list.compact {
    font-size: 0.9rem;
}

.product-list a {
    font-weight: 600;
}

.product-list-aligned {
    list-style: none;
    padding-left: 0;
    margin: 0.75rem 0;
}

.product-list-aligned li {
    display: grid;
    grid-template-columns: 9em 1fr;
    gap: 0.5rem;
    align-items: start;
    margin-bottom: 0.35rem;
}

.product-list-aligned .product-label::after {
    content: "：";
}

.product-list-aligned .product-label {
    font-weight: 700;
    color: var(--text);
}

.product-list-aligned .product-items {
    min-width: 0;
}

.product-inline {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0;
}

.product-inline li {
    margin-bottom: 0.35rem;
}

.product-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.mini-product h4 {
    margin: 0.75rem 0 0.35rem;
    font-size: 1rem;
}

.mini-product p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0 0 0.75rem;
}

.btn-ghost {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border: 2px solid var(--accent);
    border-radius: 999px;
    color: var(--accent);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.btn-ghost:hover {
    background: var(--accent);
    color: #fff;
}

.gear-block {
    margin-bottom: 2rem;
}

.gear-block h3 {
    margin-top: 0;
}

.warning-box {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fff7ed 100%);
    border-radius: var(--radius);
    border: 1px solid rgba(245, 158, 11, 0.35);
}

.warning-box h3 {
    margin-top: 0;
    color: #b45309;
}

.warning-box p {
    margin: 0.75rem 0
}

.alert-important {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fef9c3 0%, #ffedd5 100%);
    border-radius: var(--radius);
    border: 2px solid var(--accent-hot);
}

.alert-important h3 {
    margin-top: 0;
    color: #c2410c;
}

.diagram-fan h3 {
    margin-top: 0;
}

.diagram-fan span {
    font-weight: normal;
    display: block;
    font-size: 95%;
}

.technique-key {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(244, 63, 94, 0.08), transparent);
    border-radius: var(--radius);
}

.closing-section {
    padding-bottom: 1rem;
}

.closing-card {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(145deg, #e0f2fe 0%, #fdf4ff 50%, #fff 100%);
}

.closing-card h2 {
    margin-top: 0;
    font-size: 1.5rem;
}

/* ----- Article meta（公開・更新・監修） ----- */
.article-meta {
    margin: 0 0 2rem;
    padding: 1.25rem 1.5rem;
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid rgba(14, 165, 233, 0.2);
    box-shadow: var(--shadow-sm);
    scroll-margin-top: calc(var(--header-h) + 12px);
}

.article-meta-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.article-meta-row {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.article-meta-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
}

.article-meta-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
}

.article-meta-note {
    margin: 1rem 0 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.internal-link-hint {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    background: rgba(14, 165, 233, 0.08);
    border-radius: var(--radius-sm);
    border: 3px solid var(--accent);
}

/* ----- Checklist ----- */
.checklist {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
}

.checklist-item {
    margin-bottom: 0.65rem;
    padding: 0.65rem 0.85rem;
    background: var(--surface);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(14, 165, 233, 0.15);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.checklist-item:hover {
    border-color: rgba(14, 165, 233, 0.35);
    box-shadow: var(--shadow-sm);
}

.checklist-label {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.6;
}

.checklist-input {
    margin-top: 0.35rem;
    width: 1.15rem;
    height: 1.15rem;
    accent-color: var(--accent);
    flex-shrink: 0;
}

/* ----- Glossary ----- */
.glossary {
    margin: 1.5rem 0 0;
}

.glossary-row {
    display: grid;
    grid-template-columns: minmax(8em, 12em) 1fr;
    gap: 1rem 1.25rem;
    padding: 1rem 1.15rem;
    margin-bottom: 0.65rem;
    background: var(--surface);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(99, 102, 241, 0.12);
    scroll-margin-top: calc(var(--header-h) + 12px);
    transition: box-shadow 0.25s;
}

.glossary-row:hover {
    box-shadow: var(--shadow-sm);
}

.glossary-row dt {
    margin: 0;
    font-weight: 800;
    color: var(--accent-violet);
    font-size: 0.95rem;
}

.glossary-row dd {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

@media (max-width: 560px) {
    .glossary-row {
        grid-template-columns: 1fr;
    }
}

/* ----- FAQ ----- */
.faq-list {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.faq-summary {
    padding: 1rem 1.15rem;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    list-style: none;
    background: linear-gradient(90deg, rgba(14, 165, 233, 0.06), transparent);
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-summary::after {
    content: "+";
    float: right;
    font-weight: 900;
    color: var(--accent);
    transition: transform 0.25s;
}

.faq-item[open] .faq-summary::after {
    content: "−";
}

.faq-answer {
    padding: 0 1.15rem 1.15rem;
    border-top: 1px dashed rgba(14, 165, 233, 0.2);
}

.faq-answer p {
    margin: 0.75rem 0 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ----- Related articles ----- */
.related-grid {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}

.related-card {
    padding: 1.15rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.related-card-link {
    font-weight: 800;
    font-size: 1rem;
    color: var(--text);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.2s;
}

.related-card-link:hover {
    color: var(--accent);
}

.related-card-desc {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ----- Scroll reveal ----- */
.section-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero.section-reveal {
    opacity: 1;
    transform: none;
}

/* ----- Footer ----- */
.site-footer {
    padding: 2rem 1.5rem;
    background: var(--gradient-hero);
    color: #94a3b8;
    font-size: 0.875rem;
}

.footer-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    font-family: var(--font-display);
    font-weight: 700;
    color: #e2e8f0;
    margin: 0 0 0.5rem;
}

.footer-note {
    margin: 0 0 1rem;
    font-size: 0.8rem;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
}

.footer-nav a:hover {
    text-decoration: underline;
}

/* ----- Responsive ----- */
@media (max-width: 1100px) {
    .layout {
        grid-template-columns: 1fr;
    }

    .toc-sidebar {
        display: none;
    }

    .toc-sticky {
        position: relative;
        top: 0;
        max-height: none;
        padding: 1rem 1rem 0.75rem;
    }

    .toc-list {
        display: flex;
        flex-wrap: wrap;
        gap: 0.35rem;
    }

    .toc-list li {
        margin-bottom: 0;
    }

    .toc-list a {
        font-size: 0.75rem;
        padding: 0.35rem 0.6rem;
        background: rgba(255, 255, 255, 0.8);
        border: 1px solid rgba(14, 165, 233, 0.2);
        border-radius: 999px;
    }

    .back-to-top {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .site-nav {
        position: fixed;
        inset: var(--header-h) 0 auto 0;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(12px);
        padding: 1rem;
        border-bottom: 1px solid rgba(14, 165, 233, 0.15);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s, visibility 0.25s;
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
    }

    .site-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .site-nav .nav-list {
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav a {
        padding: 0.65rem 0.75rem;
        font-size: 1rem;
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .main-content {
        padding: 0 1rem 3rem;
    }

    .hero {
        margin-left: -1rem;
        margin-right: -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .alt-band {
        margin-left: -1rem;
        margin-right: -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .product-list-aligned li {
        grid-template-columns: 1fr;
        gap: 0.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .section-reveal {
        opacity: 1;
        transform: none;
    }
}
