/* ============================================================
   PLASTER SCENTED SACHETS — new collection landing page
   Uses design tokens from styles.css:
     --color-page-bg, --font-display, --font-body,
     --accent-gold, --accent-gold-soft, --section-gap-atelier
   ============================================================ */

.sachets-page {
    background-color: var(--color-page-bg);
}

/* ══════════════════════════════════════════════════════════════
   HERO — eyebrow + title + one main photo
══════════════════════════════════════════════════════════════ */
.sachets-hero {
    position: relative;
    padding: 88px 24px 64px;
    text-align: center;
    overflow: hidden;
}

.sachets-hero__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 90% 55% at 50% 6%,
        rgba(201, 162, 39, 0.14) 0%,
        transparent 68%
    );
    pointer-events: none;
}

.sachets-eyebrow {
    position: relative;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin: 0 0 18px;
}

.sachets-hero__title {
    position: relative;
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 3.6vw + 1rem, 3.8rem);
    font-weight: 400;
    line-height: 1.15;
    color: #4a3a12;
    letter-spacing: 0.01em;
    margin: 0 0 22px;
}

.sachets-hero__divider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 40px;
}

.sachets-hero__divider-gem {
    color: var(--accent-gold);
    font-size: 18px;
    opacity: 0.85;
}

.sachets-hero__frame {
    position: relative;
    max-width: 460px;
    margin: 0 auto;
    border-radius: 28px;
    overflow: hidden;
    box-shadow:
        0 30px 60px rgba(74, 58, 18, 0.22),
        0 4px 14px rgba(74, 58, 18, 0.12);
}

.sachets-hero__image {
    display: block;
    width: 100%;
    height: auto;
}

/* ══════════════════════════════════════════════════════════════
   STORY — description text with an elegant serif lead
══════════════════════════════════════════════════════════════ */
.sachets-story {
    padding: 0 24px;
    margin: var(--section-gap-atelier) auto 0;
    max-width: 1080px;
}

.sachets-story__inner {
    max-width: 700px;
    margin: 0 auto;
}

.sachets-lead {
    font-family: var(--font-display);
    font-size: clamp(20px, 1.4vw + 14px, 25px);
    font-weight: 400;
    font-style: italic;
    color: #8a6a1c;
    line-height: 1.5;
    margin-bottom: 28px;
}

.sachets-paragraph {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: #3d3228;
    margin-bottom: 22px;
}

.sachets-paragraph:last-child {
    margin-bottom: 0;
}

.sachets-accent-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 620px;
    margin: 48px auto 0;
}

.sachets-accent-item {
    margin: 0;
    aspect-ratio: 3 / 4;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 32px rgba(74, 58, 18, 0.14);
}

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

/* ══════════════════════════════════════════════════════════════
   PRODUCTS — pulled live from the admin-managed catalogue
══════════════════════════════════════════════════════════════ */
.sachets-products {
    padding: 0 24px;
    margin: var(--section-gap-atelier) auto 72px;
    max-width: 1120px;
}

.sachets-products__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(26px, 1.6vw + 18px, 34px);
    text-align: center;
    color: #4a3a12;
    margin: 0 0 36px;
}

/* .sachets-grid reuses .catalog-grid's responsive column counts
   (3 → 2 → 1) defined in catalog.css. */

@media (max-width: 767px) {
    .sachets-hero {
        padding: 64px 20px 48px;
    }

    .sachets-story {
        margin-top: calc(var(--section-gap-atelier) * 0.65);
    }

    .sachets-products {
        margin-top: calc(var(--section-gap-atelier) * 0.65);
        margin-bottom: 48px;
    }

    .sachets-accent-grid {
        max-width: 360px;
        gap: 14px;
    }
}
