/**
 * Bookshop — Editorial Layer
 *
 * Quiet, literary aesthetic for the redesigned /store/ index and the seven
 * book product pages. Uses Crimson Text serif (loaded in the page <head>) for
 * headlines and pullquotes; Open Sans for body. Restrained accents from the
 * existing forest/earth/sage palette in suspra.css.
 *
 * Scope: every rule starts from `body.bookshop-editorial` so legacy bookstore
 * pages (membership-*.html) keep their existing styles untouched.
 */

body.bookshop-editorial {
    background: var(--background-cream, #FDFCF8);
    color: var(--text-dark, #2C3E50);
    background-image: none;
}

body.bookshop-editorial main {
    padding-top: 96px; /* clear the fixed site header */
}

/* ============================================================
   Shared editorial typography
   ============================================================ */

.bookshop-editorial .bookshop-eyebrow {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--earth-brown, #8B4513);
    margin: 0 0 0.85rem;
}

.bookshop-editorial .bookshop-eyebrow--small {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    margin-bottom: 0.35rem;
}

.bookshop-editorial .bookshop-headline {
    font-family: 'Crimson Text', 'Georgia', serif;
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.1;
    color: var(--forest-green-dark, #083A14);
    margin: 0 0 0.75rem;
    letter-spacing: -0.01em;
}

.bookshop-editorial .bookshop-headline--featured {
    font-size: clamp(2.4rem, 4.8vw, 3.75rem);
}

.bookshop-editorial .bookshop-subtitle {
    font-family: 'Crimson Text', 'Georgia', serif;
    font-style: italic;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    line-height: 1.4;
    color: var(--text-medium, #5D6D7E);
    margin: 0 0 1.25rem;
}

.bookshop-editorial .bookshop-edition-line {
    font-size: 0.9rem;
    color: var(--text-medium, #5D6D7E);
    margin: 0 0 1.5rem;
    letter-spacing: 0.02em;
}

.bookshop-editorial .bookshop-section-title {
    font-family: 'Crimson Text', 'Georgia', serif;
    font-weight: 600;
    font-size: 1.75rem;
    color: var(--forest-green-dark, #083A14);
    margin: 0 0 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(11, 73, 25, 0.12);
}

/* ============================================================
   Featured hero (index page)
   ============================================================ */

.bookshop-editorial .bookshop-featured {
    padding: 3.5rem 1.5rem 2.5rem;
    border-bottom: 1px solid rgba(11, 73, 25, 0.10);
}

.bookshop-editorial .bookshop-featured-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 280px) 1fr;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: center;
}

.bookshop-editorial .bookshop-featured-cover-link {
    display: block;
    text-decoration: none;
}

.bookshop-editorial .bookshop-featured-cover {
    margin: 0;
    aspect-ratio: 2 / 3;
    background: var(--background-white, #fff);
    border: 1px solid rgba(156, 175, 136, 0.45);
    box-shadow: 0 18px 36px -18px rgba(11, 73, 25, 0.35),
                0 4px 10px rgba(11, 73, 25, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.bookshop-editorial .bookshop-featured-cover-link:hover .bookshop-featured-cover,
.bookshop-editorial .bookshop-featured-cover-link:focus-visible .bookshop-featured-cover {
    transform: translateY(-4px);
    box-shadow: 0 24px 44px -16px rgba(11, 73, 25, 0.4),
                0 6px 14px rgba(11, 73, 25, 0.10);
}

.bookshop-editorial .bookshop-featured-cover img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.bookshop-editorial .bookshop-editor-note {
    font-family: 'Crimson Text', 'Georgia', serif;
    font-size: 1.15rem;
    line-height: 1.55;
    color: var(--text-dark, #2C3E50);
    max-width: 38rem;
    margin: 0 0 1.75rem;
}

.bookshop-editorial .bookshop-featured-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

@media (max-width: 720px) {
    .bookshop-editorial .bookshop-featured {
        padding: 2rem 1.25rem 1.75rem;
    }
    .bookshop-editorial .bookshop-featured-inner {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    .bookshop-editorial .bookshop-featured-cover {
        max-width: 220px;
        margin: 0 auto;
    }
    .bookshop-editorial .bookshop-featured-text {
        text-align: center;
    }
    .bookshop-editorial .bookshop-featured-actions {
        justify-content: center;
    }
}

/* ============================================================
   Pathway grid sections (index page)
   ============================================================ */

.bookshop-editorial .bookshop-catalog {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem 3rem;
}

.bookshop-editorial .bookshop-grid-section {
    padding: 2.75rem 0 1rem;
    border-top: 1px solid rgba(11, 73, 25, 0.10);
}

.bookshop-editorial .bookshop-grid-section:first-child {
    border-top: none;
    padding-top: 1.75rem;
}

.bookshop-editorial .bookshop-grid-header {
    margin-bottom: 1.75rem;
    max-width: 38rem;
}

.bookshop-editorial .bookshop-grid-note {
    font-family: 'Crimson Text', 'Georgia', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-medium, #5D6D7E);
    margin: 0;
    line-height: 1.5;
}

.bookshop-editorial .bookshop-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.bookshop-editorial .bookshop-grid-item {
    margin: 0;
}

.bookshop-editorial .bookshop-grid-link {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 1.25rem;
    align-items: start;
    text-decoration: none;
    color: inherit;
    padding: 0.5rem 0.25rem;
    border-radius: 6px;
    transition: background 0.25s ease, transform 0.25s ease;
}

.bookshop-editorial .bookshop-grid-link:hover,
.bookshop-editorial .bookshop-grid-link:focus-visible {
    background: rgba(156, 175, 136, 0.12);
    transform: translateY(-2px);
}

.bookshop-editorial .bookshop-grid-cover {
    margin: 0;
    aspect-ratio: 2 / 3;
    border: 1px solid rgba(156, 175, 136, 0.45);
    box-shadow: 0 8px 18px -10px rgba(11, 73, 25, 0.3);
    background: #fff;
    overflow: hidden;
}

.bookshop-editorial .bookshop-grid-cover img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.bookshop-editorial .bookshop-grid-text {
    min-width: 0;
}

.bookshop-editorial .bookshop-grid-title {
    font-family: 'Crimson Text', 'Georgia', serif;
    font-weight: 600;
    font-size: 1.3rem;
    line-height: 1.2;
    color: var(--forest-green-dark, #083A14);
    margin: 0 0 0.25rem;
}

.bookshop-editorial .bookshop-grid-subtitle {
    font-family: 'Crimson Text', 'Georgia', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--text-medium, #5D6D7E);
    margin: 0 0 0.6rem;
    line-height: 1.4;
}

.bookshop-editorial .bookshop-grid-meta {
    font-size: 0.85rem;
    color: var(--text-medium, #5D6D7E);
    margin: 0 0 0.6rem;
}

.bookshop-editorial .bookshop-grid-price {
    font-weight: 600;
    color: var(--forest-green, #0B4919);
}

.bookshop-editorial .bookshop-grid-divider {
    margin: 0 0.5rem;
    color: rgba(11, 73, 25, 0.35);
}

.bookshop-editorial .bookshop-grid-cta {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--forest-green, #0B4919);
    letter-spacing: 0.02em;
}

@media (max-width: 480px) {
    .bookshop-editorial .bookshop-grid-link {
        grid-template-columns: 90px 1fr;
        gap: 1rem;
    }
}

/* ============================================================
   Product page (BookProductComponent)
   ============================================================ */

.bookshop-editorial .bookshop-product {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 1rem;
}

.bookshop-editorial .bookshop-product-header {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 2.5rem;
}

.bookshop-editorial .bookshop-product-header .bookshop-eyebrow {
    text-align: center;
}

.bookshop-editorial .bookshop-product-grid {
    display: grid;
    grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}

.bookshop-editorial .bookshop-cover {
    margin: 0;
    aspect-ratio: 2 / 3;
    border: 1px solid rgba(156, 175, 136, 0.45);
    box-shadow: 0 18px 36px -18px rgba(11, 73, 25, 0.35),
                0 4px 10px rgba(11, 73, 25, 0.08);
    background: #fff;
    position: sticky;
    top: 110px;
}

.bookshop-editorial .bookshop-cover img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

@media (max-width: 720px) {
    .bookshop-editorial .bookshop-product-grid {
        grid-template-columns: 1fr;
    }
    .bookshop-editorial .bookshop-cover {
        position: static;
        max-width: 220px;
        margin: 0 auto;
    }
    .bookshop-editorial .bookshop-product-body {
        text-align: left;
    }
}

.bookshop-editorial .bookshop-description {
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0 0 1.75rem;
    color: var(--text-dark, #2C3E50);
}

/* ----- Pull-quote ----- */

.bookshop-editorial .bookshop-pullquote {
    margin: 2rem 0;
    padding: 1.5rem 1.75rem;
    border-top: 1px solid rgba(11, 73, 25, 0.18);
    border-bottom: 1px solid rgba(11, 73, 25, 0.18);
    background: rgba(156, 175, 136, 0.08);
}

.bookshop-editorial .bookshop-pullquote-eyebrow {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--earth-brown, #8B4513);
    margin: 0 0 0.75rem;
}

.bookshop-editorial .bookshop-pullquote-text {
    font-family: 'Crimson Text', 'Georgia', serif;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.55;
    color: var(--forest-green-dark, #083A14);
    margin: 0;
}

/* ----- Table of contents ----- */

.bookshop-editorial .bookshop-toc {
    margin: 2rem 0;
    border-top: 1px solid rgba(11, 73, 25, 0.12);
    border-bottom: 1px solid rgba(11, 73, 25, 0.12);
    padding: 0.5rem 0;
}

.bookshop-editorial .bookshop-toc-summary {
    list-style: none;
    cursor: pointer;
    padding: 0.75rem 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--earth-brown, #8B4513);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bookshop-editorial .bookshop-toc-summary::-webkit-details-marker { display: none; }

.bookshop-editorial .bookshop-toc-summary::after {
    content: '+';
    font-size: 1rem;
    color: var(--text-medium, #5D6D7E);
    transition: transform 0.2s ease;
}

.bookshop-editorial .bookshop-toc[open] .bookshop-toc-summary::after {
    content: '\2013'; /* en dash */
}

.bookshop-editorial .bookshop-toc-body {
    padding: 0.5rem 0 1rem;
}

.bookshop-editorial .bookshop-toc-part {
    margin: 0 0 1.5rem;
}

.bookshop-editorial .bookshop-toc-part:last-child {
    margin-bottom: 0;
}

.bookshop-editorial .bookshop-toc-part-title {
    font-family: 'Crimson Text', 'Georgia', serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--forest-green-dark, #083A14);
    margin: 0 0 0.5rem;
}

.bookshop-editorial .bookshop-toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    columns: 2;
    column-gap: 2rem;
}

.bookshop-editorial .bookshop-toc-flat {
    columns: 1;
}

.bookshop-editorial .bookshop-toc-list li {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-medium, #5D6D7E);
    padding: 0.2rem 0;
    break-inside: avoid;
}

@media (max-width: 600px) {
    .bookshop-editorial .bookshop-toc-list {
        columns: 1;
    }
}

/* ----- Metadata + retailers ----- */

.bookshop-editorial .bookshop-meta {
    margin: 1.75rem 0;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(11, 73, 25, 0.12);
    background: rgba(255, 255, 255, 0.6);
    border-radius: 4px;
}

.bookshop-editorial .bookshop-meta-row {
    display: grid;
    grid-template-columns: minmax(7rem, 1fr) 3fr;
    gap: 1rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(11, 73, 25, 0.06);
}

.bookshop-editorial .bookshop-meta-row:last-child {
    border-bottom: none;
}

.bookshop-editorial .bookshop-meta-row dt {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--earth-brown, #8B4513);
    align-self: center;
    margin: 0;
}

.bookshop-editorial .bookshop-meta-row dd {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-dark, #2C3E50);
    align-self: center;
}

.bookshop-editorial .bookshop-retailers {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0 0.5rem;
}

.bookshop-editorial .bookshop-retailers .btn {
    min-height: 44px;
}

.bookshop-editorial .bookshop-sample {
    margin: 1rem 0 0;
    font-size: 0.95rem;
}

.bookshop-editorial .bookshop-sample a {
    color: var(--forest-green, #0B4919);
    font-weight: 600;
}

.bookshop-editorial .bookshop-edition-history {
    margin: 1.75rem 0 0.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(11, 73, 25, 0.12);
    font-size: 0.9rem;
    color: var(--text-medium, #5D6D7E);
}

.bookshop-editorial .bookshop-edition-history-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--earth-brown, #8B4513);
    margin-right: 0.75rem;
}

.bookshop-editorial .bookshop-edition-history-link {
    color: var(--forest-green, #0B4919);
    margin-right: 0.75rem;
    text-decoration: underline;
}

.bookshop-editorial .bookshop-back {
    margin: 1.25rem 0 0;
    font-size: 0.9rem;
}

.bookshop-editorial .bookshop-back a {
    color: var(--forest-green, #0B4919);
    font-weight: 600;
    text-decoration: none;
}

.bookshop-editorial .bookshop-back a:hover {
    text-decoration: underline;
}

/* ============================================================
   Related practice
   ============================================================ */

.bookshop-editorial .bookshop-related {
    max-width: 1000px;
    margin: 3.5rem auto 0;
    padding: 0 1.5rem;
}

.bookshop-editorial .bookshop-related-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.bookshop-editorial .bookshop-related-item { margin: 0; }

.bookshop-editorial .bookshop-related-link {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1rem;
    align-items: start;
    text-decoration: none;
    color: inherit;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background 0.25s ease;
}

.bookshop-editorial .bookshop-related-link:hover,
.bookshop-editorial .bookshop-related-link:focus-visible {
    background: rgba(156, 175, 136, 0.14);
}

.bookshop-editorial .bookshop-related-cover {
    width: 80px;
    aspect-ratio: 2 / 3;
    object-fit: contain;
    border: 1px solid rgba(156, 175, 136, 0.45);
    box-shadow: 0 6px 12px -6px rgba(11, 73, 25, 0.3);
}

.bookshop-editorial .bookshop-related-title {
    font-family: 'Crimson Text', 'Georgia', serif;
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.2;
    color: var(--forest-green-dark, #083A14);
    margin: 0 0 0.2rem;
}

.bookshop-editorial .bookshop-related-subtitle {
    font-family: 'Crimson Text', 'Georgia', serif;
    font-style: italic;
    font-size: 0.9rem;
    line-height: 1.35;
    color: var(--text-medium, #5D6D7E);
    margin: 0;
}

/* ============================================================
   Membership band
   ============================================================ */

.bookshop-editorial .bookshop-membership {
    margin: 4rem auto 0;
    padding: 3rem 1.5rem;
    background: linear-gradient(180deg, rgba(156, 175, 136, 0.10) 0%, rgba(156, 175, 136, 0.18) 100%);
    border-top: 1px solid rgba(11, 73, 25, 0.12);
    border-bottom: 1px solid rgba(11, 73, 25, 0.12);
}

.bookshop-editorial .bookshop-membership-inner {
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
}

.bookshop-editorial .bookshop-membership-headline {
    font-family: 'Crimson Text', 'Georgia', serif;
    font-weight: 600;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.2;
    color: var(--forest-green-dark, #083A14);
    margin: 0 0 1rem;
}

.bookshop-editorial .bookshop-membership-body {
    font-family: 'Crimson Text', 'Georgia', serif;
    font-size: 1.1rem;
    line-height: 1.55;
    color: var(--text-dark, #2C3E50);
    margin: 0 0 1.75rem;
}

.bookshop-editorial .bookshop-membership-cta {
    margin: 0;
}

/* ============================================================
   Store hub (index.html)
   ============================================================ */

.bookshop-editorial .store-hub {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1.5rem 1.5rem;
}

.bookshop-editorial .store-hub-intro {
    text-align: center;
    max-width: 44rem;
    margin: 0 auto 2.75rem;
}

.bookshop-editorial .store-hub-intro .bookshop-eyebrow {
    text-align: center;
}

.bookshop-editorial .store-hub-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 720px) {
    .bookshop-editorial .store-hub-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bookshop-editorial .store-hub-card {
    background: var(--background-white, #fff);
    border: 1px solid rgba(11, 73, 25, 0.12);
    border-radius: 6px;
    padding: 2rem 1.75rem 1.75rem;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.bookshop-editorial .store-hub-card:hover,
.bookshop-editorial .store-hub-card:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(11, 73, 25, 0.4);
    box-shadow: 0 18px 32px -18px rgba(11, 73, 25, 0.35),
                0 4px 10px rgba(11, 73, 25, 0.08);
}

.bookshop-editorial .store-hub-card-icon {
    width: 44px;
    height: 44px;
    margin: 0 0 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(156, 175, 136, 0.18);
    border-radius: 50%;
}

.bookshop-editorial .store-hub-card-icon img {
    width: 24px;
    height: 24px;
    display: block;
}

.bookshop-editorial .store-hub-card-eyebrow {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--earth-brown, #8B4513);
    margin: 0 0 0.45rem;
}

.bookshop-editorial .store-hub-card-title {
    font-family: 'Crimson Text', 'Georgia', serif;
    font-weight: 600;
    font-size: 1.7rem;
    line-height: 1.15;
    color: var(--forest-green-dark, #083A14);
    margin: 0 0 0.75rem;
}

.bookshop-editorial .store-hub-card-body {
    font-family: 'Crimson Text', 'Georgia', serif;
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--text-dark, #2C3E50);
    margin: 0 0 1.25rem;
    flex: 1;
}

.bookshop-editorial .store-hub-card-list {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    font-size: 0.93rem;
    color: var(--text-medium, #5D6D7E);
}

.bookshop-editorial .store-hub-card-list li {
    padding: 0.18rem 0 0.18rem 1.1rem;
    position: relative;
    line-height: 1.45;
}

.bookshop-editorial .store-hub-card-list li::before {
    content: '\2014'; /* em dash */
    position: absolute;
    left: 0;
    color: var(--sage-green, #9CAF88);
}

.bookshop-editorial .store-hub-card-cta {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--forest-green, #0B4919);
    letter-spacing: 0.02em;
}

.bookshop-editorial .store-hub-card-cta::after {
    content: ' \2192'; /* arrow */
    transition: transform 0.2s ease;
    display: inline-block;
}

.bookshop-editorial .store-hub-card:hover .store-hub-card-cta::after {
    transform: translateX(3px);
}

/* ============================================================
   Memberships store page (sales-focused)
   ============================================================ */

.bookshop-editorial .store-memberships {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 1rem;
}

.bookshop-editorial .store-memberships-hero {
    text-align: center;
    max-width: 44rem;
    margin: 0 auto 2.5rem;
}

.bookshop-editorial .store-memberships-hero .bookshop-eyebrow {
    text-align: center;
}

.bookshop-editorial .store-memberships-lede {
    font-family: 'Crimson Text', 'Georgia', serif;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--text-medium, #5D6D7E);
    margin: 0 0 1.5rem;
}

/* Gift toggle (segmented control) */
.bookshop-editorial .gift-toggle {
    display: inline-flex;
    background: rgba(156, 175, 136, 0.14);
    border: 1px solid rgba(11, 73, 25, 0.12);
    border-radius: 999px;
    padding: 4px;
    margin: 0 auto 0.5rem;
}

.bookshop-editorial .gift-toggle-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.bookshop-editorial .gift-toggle-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.4rem;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-medium, #5D6D7E);
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    user-select: none;
}

.bookshop-editorial .gift-toggle-input:checked + .gift-toggle-label {
    background: var(--forest-green, #0B4919);
    color: #fff;
    box-shadow: 0 4px 10px -4px rgba(11, 73, 25, 0.4);
}

.bookshop-editorial .gift-toggle-input:focus-visible + .gift-toggle-label {
    outline: 2px solid var(--forest-green, #0B4919);
    outline-offset: 2px;
}

.bookshop-editorial .gift-toggle-helper {
    font-family: 'Crimson Text', 'Georgia', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--text-medium, #5D6D7E);
    margin: 0.5rem 0 1.75rem;
    text-align: center;
    min-height: 1.5em;
}

/* Tier grid */
.bookshop-editorial .tier-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 0 0 3rem;
    align-items: stretch;
}

@media (min-width: 820px) {
    .bookshop-editorial .tier-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bookshop-editorial .tier-card-store {
    background: var(--background-white, #fff);
    border: 1px solid rgba(11, 73, 25, 0.14);
    border-radius: 6px;
    padding: 2rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bookshop-editorial .tier-card-store:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 32px -18px rgba(11, 73, 25, 0.3);
}

.bookshop-editorial .tier-card-store--featured {
    border-color: var(--forest-green, #0B4919);
    border-width: 2px;
    background: linear-gradient(180deg, #fff 0%, rgba(156, 175, 136, 0.06) 100%);
    box-shadow: 0 16px 32px -18px rgba(11, 73, 25, 0.3);
}

@media (min-width: 820px) {
    .bookshop-editorial .tier-card-store--featured {
        transform: translateY(-8px);
    }
    .bookshop-editorial .tier-card-store--featured:hover {
        transform: translateY(-11px);
    }
}

.bookshop-editorial .tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--earth-brown, #8B4513);
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    white-space: nowrap;
}

.bookshop-editorial .tier-name {
    font-family: 'Crimson Text', 'Georgia', serif;
    font-weight: 600;
    font-size: 1.85rem;
    line-height: 1.1;
    color: var(--forest-green-dark, #083A14);
    margin: 0 0 0.4rem;
}

.bookshop-editorial .tier-tagline {
    font-family: 'Crimson Text', 'Georgia', serif;
    font-style: italic;
    font-size: 1.02rem;
    line-height: 1.4;
    color: var(--text-medium, #5D6D7E);
    margin: 0 0 1.25rem;
    min-height: 2.6em;
}

.bookshop-editorial .tier-price-large {
    font-family: 'Crimson Text', 'Georgia', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--forest-green-dark, #083A14);
    line-height: 1;
    margin: 0 0 0.2rem;
}

.bookshop-editorial .tier-price-suffix {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-medium, #5D6D7E);
    margin-left: 0.25rem;
    letter-spacing: 0;
    font-style: italic;
}

.bookshop-editorial .tier-price-note {
    font-size: 0.85rem;
    color: var(--text-medium, #5D6D7E);
    margin: 0 0 1.5rem;
}

.bookshop-editorial .tier-features {
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
    flex: 1;
    border-top: 1px solid rgba(11, 73, 25, 0.10);
    padding-top: 1.25rem;
}

.bookshop-editorial .tier-features li {
    padding: 0.5rem 0 0.5rem 1.6rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-dark, #2C3E50);
    border-bottom: 1px solid rgba(11, 73, 25, 0.06);
}

.bookshop-editorial .tier-features li:last-child {
    border-bottom: none;
}

.bookshop-editorial .tier-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 14px;
    height: 8px;
    border-left: 2px solid var(--forest-green, #0B4919);
    border-bottom: 2px solid var(--forest-green, #0B4919);
    transform: rotate(-45deg);
}

.bookshop-editorial .tier-features li.tier-feature--muted {
    color: var(--text-light, #85929E);
}

.bookshop-editorial .tier-features li.tier-feature--muted::before {
    border-color: rgba(11, 73, 25, 0.25);
}

.bookshop-editorial .tier-cta {
    margin: 0;
}

.bookshop-editorial .tier-cta .btn {
    width: 100%;
    text-align: center;
}

.bookshop-editorial .tier-card-detail-link {
    margin: 0.75rem 0 0;
    text-align: center;
    font-size: 0.85rem;
}

.bookshop-editorial .tier-card-detail-link a {
    color: var(--text-medium, #5D6D7E);
    text-decoration: underline;
}

/* Why join strip */
.bookshop-editorial .why-join {
    margin: 0 auto 3rem;
    max-width: 1100px;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(11, 73, 25, 0.12);
    border-bottom: 1px solid rgba(11, 73, 25, 0.12);
}

.bookshop-editorial .why-join-title {
    font-family: 'Crimson Text', 'Georgia', serif;
    font-weight: 600;
    font-size: 1.75rem;
    color: var(--forest-green-dark, #083A14);
    margin: 0 0 1.75rem;
    text-align: center;
}

.bookshop-editorial .why-join-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

@media (min-width: 720px) {
    .bookshop-editorial .why-join-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bookshop-editorial .why-join-item {
    margin: 0;
    text-align: center;
    padding: 0 0.5rem;
}

.bookshop-editorial .why-join-item-title {
    font-family: 'Crimson Text', 'Georgia', serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--forest-green-dark, #083A14);
    margin: 0 0 0.5rem;
}

.bookshop-editorial .why-join-item-body {
    font-size: 0.97rem;
    line-height: 1.55;
    color: var(--text-dark, #2C3E50);
    margin: 0;
}

/* Gift callout */
.bookshop-editorial .gift-callout {
    background: linear-gradient(135deg, rgba(156, 175, 136, 0.18) 0%, rgba(156, 175, 136, 0.08) 100%);
    border: 1px solid rgba(11, 73, 25, 0.14);
    border-radius: 6px;
    padding: 2rem 1.75rem;
    margin: 0 auto 2.5rem;
    max-width: 44rem;
    text-align: center;
}

.bookshop-editorial .gift-callout-title {
    font-family: 'Crimson Text', 'Georgia', serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--forest-green-dark, #083A14);
    margin: 0 0 0.6rem;
}

.bookshop-editorial .gift-callout-body {
    font-family: 'Crimson Text', 'Georgia', serif;
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--text-dark, #2C3E50);
    margin: 0;
}

/* Body in gift mode: subtle visual cue at the top of the page */
.bookshop-editorial.gift-mode .gift-toggle {
    box-shadow: 0 0 0 4px rgba(156, 175, 136, 0.25);
}

/* ============================================================
   Seminars store page
   ============================================================ */

.bookshop-editorial .store-seminars {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 1rem;
}

.bookshop-editorial .store-seminars-hero {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 2.5rem;
}

.bookshop-editorial .store-seminars-hero .bookshop-eyebrow {
    text-align: center;
}

.bookshop-editorial .seminars-empty {
    background: var(--background-white, #fff);
    border: 1px dashed rgba(11, 73, 25, 0.25);
    border-radius: 6px;
    padding: 2.5rem 1.75rem;
    text-align: center;
    margin: 0 0 2.5rem;
}

.bookshop-editorial .seminars-empty-title {
    font-family: 'Crimson Text', 'Georgia', serif;
    font-style: italic;
    font-size: 1.35rem;
    color: var(--forest-green-dark, #083A14);
    margin: 0 0 0.6rem;
}

.bookshop-editorial .seminars-empty-body {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-medium, #5D6D7E);
    max-width: 32rem;
    margin: 0 auto 1.25rem;
}

.bookshop-editorial .seminar-pricing {
    margin: 0 0 3rem;
}

.bookshop-editorial .seminar-pricing-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 720px) {
    .bookshop-editorial .seminar-pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.bookshop-editorial .seminar-pricing-card {
    background: var(--background-white, #fff);
    border: 1px solid rgba(11, 73, 25, 0.12);
    border-radius: 6px;
    padding: 1.5rem 1.25rem;
    text-align: center;
}

.bookshop-editorial .seminar-pricing-card--included {
    background: linear-gradient(180deg, #fff 0%, rgba(156, 175, 136, 0.10) 100%);
    border-color: rgba(11, 73, 25, 0.22);
}

.bookshop-editorial .seminar-pricing-tier {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--earth-brown, #8B4513);
    margin: 0 0 0.6rem;
}

.bookshop-editorial .seminar-pricing-amount {
    font-family: 'Crimson Text', 'Georgia', serif;
    font-weight: 600;
    font-size: 1.85rem;
    color: var(--forest-green-dark, #083A14);
    margin: 0 0 0.25rem;
    line-height: 1.1;
}

.bookshop-editorial .seminar-pricing-amount em {
    font-style: italic;
    font-weight: 400;
    color: var(--forest-green, #0B4919);
}

.bookshop-editorial .seminar-pricing-note {
    font-size: 0.88rem;
    color: var(--text-medium, #5D6D7E);
    margin: 0;
    line-height: 1.45;
}
