.tnh-storefront-page .entry-header { display: none; }

.tnh-storefront {
    --tnh-ink: #12211b;
    --tnh-muted: #5d6b64;
    --tnh-green: #176b4a;
    --tnh-green-dark: #0f4d35;
    --tnh-mint: #eff8f3;
    --tnh-line: #d5e2da;
    width: min(1180px, calc(100vw - 32px));
    margin: 0 auto;
    padding: clamp(36px, 6vw, 84px) 0;
    color: var(--tnh-ink);
    font-family: inherit;
}

.tnh-storefront *,
.tnh-storefront *::before,
.tnh-storefront *::after {
    box-sizing: border-box;
}

.tnh-storefront__hero {
    max-width: 800px;
    margin: 0 auto clamp(32px, 5vw, 56px);
    text-align: center;
}

.tnh-storefront__eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--tnh-green);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.tnh-storefront__hero h1 {
    margin: 0;
    color: var(--tnh-ink);
    font-size: clamp(2.15rem, 5vw, 4.25rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.tnh-storefront__hero p {
    max-width: 700px;
    margin: 22px auto 0;
    color: var(--tnh-muted);
    font-size: clamp(1rem, 2vw, 1.18rem);
    line-height: 1.7;
}

.tnh-plans {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.tnh-plan {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid var(--tnh-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(18, 33, 27, 0.08);
}

.tnh-plan--recommended {
    border: 2px solid var(--tnh-green);
    background: linear-gradient(180deg, var(--tnh-mint) 0%, #fff 32%);
    transform: translateY(-10px);
}

.tnh-plan__badge {
    align-self: flex-start;
    margin: -48px 0 18px;
    padding: 7px 13px;
    border-radius: 999px;
    background: var(--tnh-green);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.tnh-plan h2 {
    margin: 0;
    color: var(--tnh-ink);
    font-size: 1.65rem;
    line-height: 1.2;
}

.tnh-plan__summary {
    min-height: 5.2em;
    margin: 13px 0 20px;
    color: var(--tnh-muted);
    font-size: 0.96rem;
    line-height: 1.6;
}

.tnh-plan__price {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin: 0 0 20px;
}

.tnh-plan__price > span {
    color: var(--tnh-ink);
    font-size: 2.55rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
}

.tnh-plan__price small {
    color: var(--tnh-muted);
    font-size: 0.9rem;
}

.tnh-plan__resources {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.tnh-plan__resources li {
    padding: 9px 10px;
    border-radius: 8px;
    background: #f4f7f5;
    color: #33463d;
    font-size: 0.82rem;
    font-weight: 700;
    text-align: center;
}

.tnh-plan__features {
    display: grid;
    gap: 11px;
    margin: 0 0 28px;
    padding: 0;
    color: #34463e;
    font-size: 0.9rem;
    line-height: 1.45;
    list-style: none;
}

.tnh-plan__features li {
    position: relative;
    padding-left: 26px;
}

.tnh-plan__features li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--tnh-green);
    content: "✓";
    font-weight: 900;
}

.tnh-plan__button {
    display: block;
    margin-top: auto;
    padding: 14px 18px;
    border: 2px solid var(--tnh-green);
    border-radius: 10px;
    background: var(--tnh-green);
    color: #fff !important;
    font-size: 0.92rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none !important;
    transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.tnh-plan__button:hover,
.tnh-plan__button:focus-visible {
    border-color: var(--tnh-green-dark);
    background: var(--tnh-green-dark);
    transform: translateY(-1px);
}

.tnh-plan__button--disabled {
    border-color: #aeb9b2;
    background: #aeb9b2;
}

.tnh-theme-showcase {
    margin-top: clamp(48px, 8vw, 92px);
}

.tnh-theme-showcase__header {
    max-width: 760px;
    margin: 0 auto clamp(26px, 4vw, 42px);
    text-align: center;
}

.tnh-theme-showcase__header h2 {
    margin: 0;
    color: var(--tnh-ink);
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.tnh-theme-showcase__header p {
    margin: 18px auto 0;
    color: var(--tnh-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.tnh-theme-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.tnh-theme-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--tnh-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(18, 33, 27, 0.08);
}

.tnh-theme-card__preview {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border-bottom: 1px solid var(--tnh-line);
    background: #eef3f0;
}

.tnh-theme-card__preview img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 220ms ease;
}

.tnh-theme-card__preview:hover img,
.tnh-theme-card__preview:focus-visible img {
    transform: scale(1.018);
}

.tnh-theme-card__preview:focus-visible,
.tnh-theme-card__link:focus-visible {
    outline: 3px solid rgba(23, 107, 74, 0.35);
    outline-offset: 3px;
}

.tnh-theme-card__body {
    display: flex;
    min-height: 184px;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 21px 22px;
}

.tnh-theme-card h3 {
    margin: 0;
    color: var(--tnh-ink);
    font-size: 1.18rem;
    line-height: 1.25;
}

.tnh-theme-card p {
    margin: 9px 0 0;
    color: var(--tnh-muted);
    font-size: 0.88rem;
    line-height: 1.55;
}

.tnh-theme-card__link {
    align-self: flex-start;
    color: var(--tnh-green-dark) !important;
    font-size: 0.84rem;
    font-weight: 800;
    text-decoration: none !important;
}

.tnh-theme-card__link:hover {
    text-decoration: underline !important;
}

.tnh-theme-showcase__note {
    max-width: 760px;
    margin: 22px auto 0;
    color: var(--tnh-muted);
    font-size: 0.82rem;
    line-height: 1.5;
    text-align: center;
}

.tnh-storefront__steps {
    margin-top: clamp(38px, 7vw, 78px);
    padding: clamp(24px, 4vw, 42px);
    border-radius: 20px;
    background: var(--tnh-ink);
    color: #fff;
}

.tnh-storefront__steps h2 {
    margin: 0 0 26px;
    color: #fff;
    font-size: clamp(1.45rem, 3vw, 2rem);
}

.tnh-storefront__steps ol {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0;
    padding: 0;
    counter-reset: tnh-step;
    list-style: none;
}

.tnh-storefront__steps li {
    position: relative;
    padding-left: 48px;
    counter-increment: tnh-step;
}

.tnh-storefront__steps li::before {
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: var(--tnh-green-dark);
    content: counter(tnh-step);
    font-size: 0.85rem;
    font-weight: 900;
}

.tnh-storefront__steps strong,
.tnh-storefront__steps span {
    display: block;
}

.tnh-storefront__steps span {
    margin-top: 7px;
    color: #c7d5cd;
    font-size: 0.9rem;
    line-height: 1.5;
}

.tnh-storefront__billing-note {
    max-width: 820px;
    margin: 24px auto 0;
    color: var(--tnh-muted);
    font-size: 0.82rem;
    line-height: 1.5;
    text-align: center;
}

.tnh-storefront__email-note {
    margin: 2rem 0 0;
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 1px solid rgba(20, 83, 45, .18);
    border-radius: 1rem;
    background: linear-gradient(145deg, #f0fdf4 0%, #ffffff 100%);
    color: #183b2a;
}

.tnh-storefront__email-note h2 {
    margin: 0 0 .65rem;
    color: #14532d;
    font-size: clamp(1.25rem, 2.4vw, 1.65rem);
}

.tnh-storefront__email-note p {
    margin: 0;
    max-width: 72ch;
}

@media (max-width: 900px) {
    .tnh-plans {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .tnh-plan--recommended {
        transform: none;
    }

    .tnh-plan__badge {
        margin-top: -43px;
    }

    .tnh-plan__summary {
        min-height: 0;
    }

    .tnh-theme-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .tnh-storefront {
        width: min(100% - 22px, 1180px);
    }

    .tnh-storefront__steps ol {
        grid-template-columns: 1fr;
    }

    .tnh-theme-grid {
        grid-template-columns: 1fr;
    }

    .tnh-theme-card__body {
        min-height: 0;
    }
}
