.seo-page {
    background: var(--color-cream);
}

.seo-page .feature-hero {
    min-height: 680px;
}

.seo-page .feature-hero-gradient {
    background:
        linear-gradient(90deg, rgba(17, 23, 21, 0.82) 0%, rgba(17, 23, 21, 0.58) 46%, rgba(17, 23, 21, 0.18) 78%, rgba(17, 23, 21, 0.42) 100%),
        url("/content/images/marketing/habit-of-living-warm-app-journal.webp") center right / cover no-repeat;
}

.seo-page .feature-hero-title,
.seo-page .feature-hero-description {
    color: #fffdf7;
}

.seo-page .feature-badge {
    gap: 0.6rem;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #fffdf7;
    box-shadow: none;
}

.seo-page .feature-badge::before {
    width: 2.2rem;
    height: 1px;
    background: #e0a08a;
    content: "";
}

.seo-page .feature-hero-title .highlight {
    background: none;
    color: #e0a08a;
    -webkit-text-fill-color: currentColor;
}

.seo-hero-card {
    width: min(100%, 430px);
    border: 1px solid rgba(255, 253, 247, 0.18);
    border-radius: 8px;
    padding: clamp(22px, 3vw, 34px);
    background: rgba(255, 253, 247, 0.92);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.seo-hero-card img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.seo-hero-card h2 {
    margin-top: 18px;
    font-size: 1.45rem;
}

.seo-hero-card p {
    margin-top: 8px;
}

.seo-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 24px 0;
    color: rgba(17, 23, 21, 0.66);
    font-size: 0.9rem;
}

.seo-breadcrumbs a {
    color: #9d4b31;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.seo-page.has-fh-public-header .seo-breadcrumbs {
    padding-top: calc(var(--fh-header-offset, 164px) + 18px);
}

.seo-section {
    padding: clamp(64px, 7vw, 104px) 0;
    background: #fffdf8;
}

.seo-section.alt {
    background: linear-gradient(180deg, #efe5d8 0%, #eadfce 100%);
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 26px);
}

.seo-card {
    border: 1px solid rgba(17, 23, 21, 0.1);
    border-radius: 8px;
    padding: clamp(22px, 2vw, 30px);
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(250, 246, 237, 0.88));
}

.seo-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.seo-card p,
.seo-card li {
    color: rgba(17, 23, 21, 0.72);
    line-height: 1.68;
}

.seo-card ul,
.seo-richtext ul {
    list-style: disc;
    padding-left: 1.25rem;
}

.seo-richtext {
    max-width: 880px;
    margin: 0 auto;
    color: rgba(17, 23, 21, 0.72);
    font-size: 1.06rem;
    line-height: 1.82;
}

.seo-richtext h2,
.seo-richtext h3 {
    margin: 34px 0 12px;
    color: #111715;
}

.seo-richtext p,
.seo-richtext li {
    margin-bottom: 12px;
}

.seo-richtext a {
    color: #9d4b31;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.seo-callout {
    border-left: 3px solid #bd6042;
    padding: 20px 22px;
    margin: 28px 0;
    background: rgba(189, 96, 66, 0.08);
}

.seo-index-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.seo-index-list a {
    display: block;
    min-height: 100%;
    border: 1px solid rgba(17, 23, 21, 0.1);
    border-radius: 8px;
    padding: 22px;
    background: rgba(255, 253, 248, 0.88);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.seo-index-list a:hover {
    border-color: rgba(189, 96, 66, 0.34);
    box-shadow: 0 18px 48px rgba(17, 23, 21, 0.08);
    transform: translateY(-2px);
}

.seo-index-list strong {
    display: block;
    margin-bottom: 8px;
    color: #111715;
    font-family: var(--font-heading);
    font-size: 1.18rem;
}

.seo-index-list span {
    color: rgba(17, 23, 21, 0.68);
}

.seo-footer {
    border-top: 1px solid rgba(255, 253, 247, 0.12);
    padding: 48px 0;
    background: #111715;
    color: #fffdf7;
}

.seo-footer a {
    color: rgba(255, 253, 247, 0.72);
}

.seo-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.8fr));
    gap: 28px;
}

.seo-footer h2,
.seo-footer h3,
.seo-footer p {
    color: #fffdf7;
}

.seo-footer ul {
    display: grid;
    gap: 8px;
}

@media (max-width: 900px) {
    .seo-grid,
    .seo-index-list,
    .seo-footer-grid {
        grid-template-columns: 1fr;
    }

    .seo-page .feature-hero {
        min-height: auto;
    }

    .seo-page.has-fh-public-header .seo-breadcrumbs {
        padding-top: 132px;
    }
}

/* Public gift-box store */
.gift-store-page {
    --gift-ink: #101614;
    --gift-muted: #5d6863;
    --gift-line: rgba(16, 22, 20, 0.12);
    --gift-paper: #fbfaf5;
    --gift-cloud: #eef3ee;
    --gift-blue: #dceaf3;
    --gift-rose: #f3e3dd;
    background:
        linear-gradient(180deg, #fbfaf5 0%, #f7f3ea 42%, #eef3ee 100%);
    color: var(--gift-ink);
}

.gift-store-page .seo-breadcrumbs {
    display: none;
}

.gift-store-page .container {
    width: min(1180px, calc(100% - 40px));
}

.gift-store-hero {
    padding: clamp(90px, 7.5vw, 130px) 0 clamp(26px, 4vw, 44px);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(251, 250, 245, 0.92)),
        linear-gradient(90deg, rgba(220, 234, 243, 0.78), rgba(238, 243, 238, 0.7));
    border-bottom: 1px solid var(--gift-line);
}

.gift-store-page.has-fh-public-header .gift-store-hero {
    padding-top: calc(var(--fh-header-offset, 164px) + clamp(34px, 4vw, 64px));
}

.gift-store-hero .container {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.62fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: end;
}

.gift-store-hero-copy {
    max-width: 940px;
}

.gift-store-kicker {
    margin: 0 0 14px;
    color: #48635a;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.gift-store-hero .gift-store-kicker {
    display: none;
}

.gift-store-hero h1 {
    max-width: 960px;
    margin: 0;
    color: var(--gift-ink);
    font-family: var(--font-heading);
    font-size: var(--fh-hero-h1);
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: 0;
}

.gift-store-lede {
    max-width: 760px;
    margin: clamp(16px, 2vw, 24px) 0 0;
    color: var(--gift-muted);
    font-size: clamp(1.08rem, 1.7vw, 1.36rem);
    line-height: 1.65;
}

.gift-store-actions,
.gift-product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.gift-store-actions {
    margin-top: 22px;
}

.gift-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 0 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.gift-button.primary {
    background: #101614;
    color: #fff;
}

.gift-button.secondary {
    border-color: rgba(16, 22, 20, 0.22);
    background: rgba(255, 255, 255, 0.72);
    color: #101614;
}

.gift-button:hover {
    transform: translateY(-1px);
}

.gift-button:disabled {
    cursor: progress;
    opacity: 0.72;
    transform: none;
}

.gift-store-terms {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.gift-store-terms span {
    border: 1px solid rgba(72, 99, 90, 0.22);
    border-radius: 6px;
    padding: 7px 10px;
    background: rgba(255, 255, 255, 0.58);
    color: #48635a;
    font-size: 0.86rem;
    font-weight: 700;
}

.gift-store-hero-products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    align-items: end;
}

.gift-store-hero-products a {
    display: grid;
    gap: 10px;
    min-width: 0;
    border: 1px solid rgba(16, 22, 20, 0.12);
    border-radius: 8px;
    padding: 16px 14px 12px;
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--gift-accent) 14%, #fff 86%), rgba(255, 255, 255, 0.78));
    color: var(--gift-ink);
    text-align: center;
    text-decoration: none;
    box-shadow: 0 18px 48px rgba(16, 22, 20, 0.08);
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.gift-store-hero-products a:hover {
    border-color: color-mix(in srgb, var(--gift-accent) 52%, #fff);
    box-shadow: 0 22px 58px rgba(16, 22, 20, 0.12);
    transform: translateY(-2px);
}

.gift-store-hero-products img {
    width: 100%;
    height: clamp(118px, 12vw, 172px);
    object-fit: contain;
}

.gift-store-hero-products span {
    display: block;
    color: var(--gift-ink);
    font-size: 0.88rem;
    font-weight: 850;
    line-height: 1.2;
}

.gift-product-section {
    padding: clamp(26px, 4vw, 52px) 0;
    background: var(--gift-paper);
    scroll-margin-top: 230px;
}

.gift-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.55fr);
    gap: clamp(24px, 5vw, 72px);
    align-items: start;
    margin-bottom: clamp(28px, 4vw, 52px);
}

.gift-section-intro {
    max-width: 660px;
}

.gift-section-intro > p:not(.gift-store-kicker) {
    margin: clamp(28px, 3.5vw, 42px) 0 0;
}

.gift-section-heading h2,
.gift-platform-section h2,
.gift-thanks h1 {
    margin: 0;
    color: var(--gift-ink);
    font-family: var(--font-heading);
    font-size: var(--fh-h2);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: 0;
}

.gift-section-heading p,
.gift-platform-section p,
.gift-thanks p {
    color: var(--gift-muted);
    font-size: 1.04rem;
    line-height: 1.7;
}

.gift-product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.gift-product-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.92fr) minmax(0, 1fr);
    min-height: 100%;
    border: 1px solid var(--gift-line);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.gift-product-image {
    display: grid;
    place-items: center;
    min-height: clamp(280px, 28vw, 390px);
    padding: clamp(22px, 3vw, 34px);
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--gift-accent) 18%, #fff 82%), #f7f3ea);
}

.gift-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gift-product-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: clamp(22px, 2.5vw, 30px);
}

.gift-product-category {
    margin: 0 0 10px;
    color: color-mix(in srgb, var(--gift-accent) 72%, #101614 28%);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.gift-product-card h3 {
    margin: 0;
    color: var(--gift-ink);
    font-family: var(--font-heading);
    font-size: var(--fh-h4);
    font-weight: 300;
    line-height: 1;
}

.gift-product-card p {
    margin: 12px 0 0;
    color: var(--gift-muted);
    line-height: 1.6;
}

.gift-product-card ul {
    display: grid;
    gap: 8px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.gift-product-card li {
    position: relative;
    padding-left: 18px;
    color: #3f4945;
    font-size: 0.94rem;
    line-height: 1.4;
}

.gift-product-card li::before {
    content: "";
    position: absolute;
    top: 0.55em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: var(--gift-accent);
}

.gift-product-bottom {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 22px;
}

.gift-price {
    color: var(--gift-ink);
    font-size: 1.45rem;
    font-weight: 850;
}

.gift-shipping {
    color: var(--gift-muted);
    font-size: 0.82rem;
    font-weight: 750;
}

.gift-product-actions {
    margin-top: 16px;
}

.gift-product-actions .gift-button {
    flex: 1 1 150px;
}

.gift-text-link {
    color: #48635a;
    font-weight: 800;
    text-underline-offset: 4px;
}

.gift-checkout-status {
    min-height: 26px;
    margin: 22px 0 0;
    color: #48635a;
    font-weight: 750;
}

.gift-platform-section {
    padding: clamp(54px, 7vw, 96px) 0;
    border-top: 1px solid var(--gift-line);
    border-bottom: 1px solid var(--gift-line);
    background:
        linear-gradient(90deg, rgba(16, 22, 20, 0.92), rgba(16, 22, 20, 0.84)),
        url("/images/KitchenBoxNew.webp") center / cover no-repeat;
    color: #fff;
    scroll-margin-top: 230px;
}

.gift-platform-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
    gap: clamp(28px, 5vw, 70px);
    align-items: start;
}

.gift-platform-section .gift-store-kicker,
.gift-platform-section h2,
.gift-platform-section p {
    color: #fff;
}

.gift-platform-section p {
    color: rgba(255, 255, 255, 0.78);
}

.gift-platform-steps {
    display: grid;
    gap: 1px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.16);
}

.gift-platform-steps div {
    padding: 22px;
    background: rgba(255, 255, 255, 0.08);
}

.gift-platform-steps span {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.12em;
}

.gift-platform-steps strong {
    display: block;
    margin-top: 8px;
    color: #fff;
    font-size: 1.1rem;
}

.gift-platform-steps p {
    margin: 8px 0 0;
    font-size: 0.95rem;
}

.gift-research-section {
    background: #fff;
    scroll-margin-top: 230px;
}

.gift-cluster-section.alt {
    background:
        linear-gradient(180deg, rgba(220, 234, 243, 0.8), rgba(238, 243, 238, 0.94));
}

.gift-faq {
    background: #fbfaf5;
    scroll-margin-top: 230px;
}

.gift-thanks {
    padding: clamp(64px, 8vw, 120px) 20px;
    background: var(--gift-paper);
}

.gift-thanks-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(240px, 0.45fr);
    gap: 34px;
    align-items: center;
    max-width: 1040px;
    margin: 0 auto;
    border: 1px solid var(--gift-line);
    border-radius: 8px;
    padding: clamp(24px, 5vw, 54px);
    background: #fff;
}

.gift-thanks-panel img {
    width: 100%;
    max-height: 340px;
    object-fit: contain;
}

.gift-order-number {
    border: 1px solid var(--gift-line);
    border-radius: 6px;
    padding: 12px 14px;
    background: var(--gift-blue);
}

@media (max-width: 1120px) {
    .gift-product-grid {
        grid-template-columns: 1fr;
    }

    .gift-product-card {
        grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
    }
}

@media (max-width: 760px) {
    .gift-store-page .container {
        width: min(100% - 28px, 1180px);
    }

    .gift-store-page.has-fh-public-header .gift-store-hero,
    .gift-store-hero {
        padding-top: 144px;
    }

    .gift-store-hero .container {
        grid-template-columns: 1fr;
    }

    .gift-store-hero h1 {
        font-size: var(--fh-hero-h1);
        line-height: 0.9;
    }

    .gift-store-terms {
        display: none;
    }

    .gift-store-hero-products,
    .gift-section-heading,
    .gift-platform-grid,
    .gift-thanks-panel {
        grid-template-columns: 1fr;
    }

    .gift-store-hero-products {
        display: grid;
        gap: 10px;
        margin-top: 18px;
    }

    .gift-store-hero-products a {
        grid-template-columns: 92px minmax(0, 1fr);
        align-items: center;
        text-align: left;
    }

    .gift-store-hero-products img {
        height: 86px;
    }

    .gift-section-heading {
        display: block;
        margin-bottom: 14px;
    }

    .gift-section-heading .gift-store-kicker {
        margin-bottom: 8px;
    }

    .gift-section-heading h2 {
        font-size: var(--fh-h2);
        line-height: 0.95;
    }

    .gift-section-intro > p:not(.gift-store-kicker) {
        display: none;
    }

    .gift-product-grid {
        grid-template-columns: 1fr;
    }

    .gift-product-card {
        grid-template-columns: 1fr;
    }

    .gift-product-image {
        height: 260px;
        min-height: 260px;
    }

    .gift-product-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .gift-product-actions .gift-button,
    .gift-product-actions .gift-text-link,
    .gift-store-actions .gift-button {
        width: 100%;
    }
}
