:root {
    --green-dark: #123818;
    /* Accessible brand sage: normal text clears 4.5:1 on white and cream. */
    --green: #4f7548;
    --cream: #f7f0e5;
    --cream-light: #fffaf1;
    --cream-deep: #e8dec9;
    --text: #1f261e;
    --muted: #5f695d;
    --white: #ffffff;
}

/* Consent-led Email Updates invitations */
.email-updates-invite {
    width: min(1180px, calc(100% - 40px));
    margin: 38px auto 72px;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    box-sizing: border-box;
    padding: 28px 30px;
    border: 1px solid rgba(66, 108, 63, .2);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 250, 241, .96), rgba(229, 238, 222, .94));
    box-shadow: 0 16px 40px rgba(18, 56, 24, .07);
}

.home-editorial-page .email-updates-invite.home-section {
    width: min(1180px, calc(100% - 40px));
    margin: 38px auto 72px;
    padding: 28px 30px;
}

.email-updates-invite-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: #dce8d6;
    color: #426c3f;
}

.email-updates-invite-icon svg {
    width: 30px;
    height: 30px;
}

.email-updates-invite h2 {
    margin: 4px 0 7px;
    color: #123818;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(25px, 3vw, 36px);
    line-height: 1.08;
}

.email-updates-invite p {
    max-width: 760px;
    margin: 0;
    color: #687264;
    line-height: 1.6;
}

.care-email-updates-invite {
    margin-top: 46px;
}

@media (max-width: 780px) {
    .email-updates-invite {
        grid-template-columns: 52px minmax(0, 1fr);
        padding: 23px;
    }

    .email-updates-invite-icon {
        width: 52px;
        height: 52px;
        border-radius: 17px;
    }

    .email-updates-invite .button {
        grid-column: 1 / -1;
        justify-self: stretch;
        text-align: center;
    }

    .home-editorial-page .email-updates-invite.home-section {
        padding: 23px;
    }
}

@media (max-width: 520px) {
    .email-updates-invite {
        width: min(100% - 24px, 1180px);
        grid-template-columns: 1fr;
    }

    .home-editorial-page .email-updates-invite.home-section {
        width: min(100% - 24px, 1180px);
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--text);
    font-family: Poppins, Arial, sans-serif;
}

h1, h2, h3, .brand-name {
    font-family: Georgia, "Times New Roman", serif;
}

.header-shell {
    position: sticky;
    top: 0;
    z-index: 999;
}

.top-bar {
    height: 42px;
    background: var(--green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
}

/* The old slogan strip is retired across desktop and mobile. */
.header-shell > .top-bar, .header-shell > .announcement-bar {
    display: none !important;
}

.top-bar svg {
    width: 18px;
    height: 18px;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 28px 6%;
    background: rgba(247, 240, 229, 0.96);
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--green-dark);
    text-decoration: none;
}

.logo {
    width: 76px;
    height: 76px;
}

.brand-name {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.tagline {
    margin-top: 7px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    font-size: 16px;
    font-weight: 700;
}

.main-nav > a, .nav-item > a {
    position: relative;
    color: var(--text);
    text-decoration: none;
    padding: 12px 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.main-nav > a::after, .nav-item > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: width 0.25s ease;
}

.main-nav > a:hover::after, .main-nav > a.active::after, .nav-item:hover > a::after {
    width: 100%;
}

.main-nav > a:hover, .main-nav > a.active, .nav-item:hover > a {
    color: var(--green);
}

.nav-item {
    position: relative;
}

.nav-item > a svg {
    width: 15px;
    height: 15px;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    padding: 18px 0 12px 14px;
    background: var(--cream-light);
    border: 1px solid #ddd5c8;
    border-left: 4px solid var(--green);
    border-radius: 0 18px 18px 0;
    box-shadow: 0 18px 50px rgba(18, 56, 24, 0.16);
    display: none;
    z-index: 2500;
}

.submenu a {
    display: block;
    padding: 10px 14px;
    color: var(--text);
    text-decoration: none;
    white-space: nowrap;
    border-radius: 10px;
    line-height: 1.2;
}

.submenu a::after {
    display: none;
}

.submenu a:hover {
    background: var(--cream-deep);
    color: var(--green-dark);
}

.has-submenu:hover .submenu, .has-submenu:focus-within .submenu {
    display: block;
}

.search-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.search-button {
    width: 46px;
    height: 46px;
    border: 1px solid #d8cfbf;
    border-radius: 50%;
    background: #fffaf1;
    color: var(--green-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.search-button svg {
    width: 20px;
    height: 20px;
}

.search-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: 420px;
    padding: 18px;
    background: var(--cream-light);
    border: 1px solid #ddd5c8;
    border-radius: 20px;
    box-shadow: 0 18px 50px rgba(18, 56, 24, 0.18);
    display: none !important;
    z-index: 3000;
}

.search-dropdown.is-open {
    display: block !important;
}

.search-form {
    display: flex;
    gap: 10px;
}

.search-form input {
    flex: 1;
    min-width: 0;
    border: 1px solid #d8cfbf;
    border-radius: 999px;
    padding: 13px 16px;
    font: 15px Poppins, Arial, sans-serif;
}

.search-form button {
    border: 0;
    border-radius: 999px;
    padding: 13px 20px;
    background: var(--green);
    color: white;
    font-weight: 700;
    cursor: pointer;
}

/* Footer */
.site-footer {
    background: var(--green-dark);
    color: var(--cream-light);
    padding: 64px 8% 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 42px;
    align-items: start;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--cream-light);
    text-decoration: none;
    margin-bottom: 18px;
}

.footer-logo {
    width: 64px;
    height: 64px;
}

.footer-brand-name {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.footer-tagline {
    margin-top: 7px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-about {
    max-width: 360px;
    color: rgba(255, 250, 241, 0.78);
    font-size: 15px;
    line-height: 1.6;
}

.footer-column h3 {
    margin: 0 0 16px;
    color: var(--cream-light);
    font-size: 19px;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links a, .back-to-top {
    color: rgba(255, 250, 241, 0.78);
    text-decoration: none;
    font-size: 15px;
}

.footer-links a:hover, .back-to-top:hover {
    color: white;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 250, 241, 0.25);
    border-radius: 50%;
    color: var(--cream-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.25s ease;
}

.social-links a:hover {
    background: var(--green);
    border-color: var(--green);
    transform: translateY(-2px);
}

.social-links i {
    font-size: 20px;
}

.footer-bottom {
    margin-top: 48px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 250, 241, 0.18);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 250, 241, 0.65);
    font-size: 14px;
}

.etsy-button, .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.25s ease;
}

.etsy-button, .primary {
    background: var(--green);
    color: white;
}

.etsy-button svg {
    width: 17px;
    height: 17px;
}

.secondary {
    border: 2px solid var(--green);
    color: var(--green-dark);
}

.button.secondary {
    border-color: #6f8f60;
    background: #fffaf1;
    color: #123818;
    box-shadow: none;
}

.button.secondary:hover {
    border-color: #426c3f;
    background: #e8f0e2;
    color: #123818;
    box-shadow: none;
}

.shop-reset-button {
    gap: 8px;
    border-color: #6f8f60 !important;
    background: #fffaf1 !important;
    color: #123818 !important;
    box-shadow: none !important;
}

.shop-reset-button:hover {
    border-color: #426c3f !important;
    background: #e8f0e2 !important;
    color: #123818 !important;
}

.shop-reset-button svg {
    width: 17px;
    height: 17px;
}

.button:hover, .etsy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(18, 56, 24, 0.15);
}

.hero {
    position: relative;
    min-height: 640px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
    padding: 60px 8% 70px;
    background: var(--cream-light);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 72% 42%, rgba(124, 151, 111, 0.12), transparent 35%);
    pointer-events: none;
}

.hero-text, .hero-image {
    position: relative;
    z-index: 1;
}

.hero h1 {
    margin: 0 0 28px;
    color: var(--green-dark);
    font-size: clamp(46px, 6vw, 82px);
    line-height: 0.96;
}

.hero p {
    max-width: 590px;
    font-size: 22px;
    line-height: 1.55;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 36px;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
    margin-top: 42px;
    color: var(--green-dark);
    font-size: 17px;
}

.trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.trust-row svg {
    width: 25px;
    height: 25px;
    stroke-width: 1.8;
}

.hero-image {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    min-height: 560px;
}

.hero-plant {
    width: 690px;
    max-width: none;
    transform: translateX(60px);
}

.feature-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 44px 8%;
    background: white;
    border-top: 1px solid #ddd5c8;
}

.feature {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 0 28px;
    border-right: 1px solid #ddd5c8;
}

.feature:first-child {
    padding-left: 0;
}

.feature:last-child {
    border-right: 0;
    padding-right: 0;
}

.feature-icon {
    flex: 0 0 74px;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: var(--cream-deep);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 36px !important;
    height: 36px !important;
    color: var(--green-dark);
    stroke-width: 1.8;
}

.feature h3 {
    margin: 5px 0 8px;
    color: var(--green-dark);
    font-size: 18px;
}

.feature p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.5;
}

.home-about h2 {
    margin: 0 0 20px;
    color: var(--green-dark);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
}

.home-about p {
    max-width: 680px;
    font-size: 18px;
    line-height: 1.65;
    color: var(--muted);
}

.home-about .button {
    margin-top: 18px;
}

.home-about-card {
    background: var(--cream-light);
    border: 1px solid #ddd5c8;
    border-radius: 28px;
    padding: 34px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(18, 56, 24, 0.08);
}

.home-about-card .feature-icon {
    margin: 0 auto 22px;
}

.home-about-card h3 {
    margin: 0 0 12px;
    color: var(--green-dark);
    font-size: 24px;
}

.home-about-card p {
    margin: 0 auto;
    font-size: 16px;
}

.section-heading {
    max-width: 820px;
    margin-bottom: 34px;
}

.section-heading h2 {
    margin: 0 0 14px;
    color: var(--green-dark);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
}

.section-heading p {
    margin: 0;
    max-width: 760px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
}

.plant-card-grid {
    display: grid;
    gap: 26px;
}

.featured-grid {
    grid-template-columns: repeat(3, 1fr);
}

.new-arrivals-grid {
    grid-template-columns: repeat(4, 1fr);
}

.coming-soon-grid {
    grid-template-columns: repeat(3, 1fr);
}

.section-footer-action {
    margin-top: 34px;
    display: flex;
    justify-content: center;
}

.plant-card {
    overflow: hidden;
    background: var(--cream-light);
    border: 1px solid #ddd5c8;
    border-radius: 26px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.plant-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(18, 56, 24, .08);
}

.plant-card-image {
    aspect-ratio: 4 / 3;
    background: var(--cream-deep);
}

.placeholder-image {
    background:
    radial-gradient(circle at 50% 45%, rgba(111, 143, 96, .18), transparent 38%), var(--cream-deep);
}

.plant-card-body {
    padding: 24px;
}

.plant-card h3 {
    margin: 14px 0 10px;
    color: var(--green-dark);
    font-size: 22px;
}

.plant-card p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.6;
}

.plant-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.plant-card-actions .button {
    padding: 11px 20px;
    font-size: 14px;
}

.plant-badge {
    display: inline-flex;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}

.plant-badge.featured {
    background: #efe4c8;
    color: var(--green-dark);
}

.plant-badge.available {
    background: #dfead8;
    color: var(--green-dark);
}

.plant-badge.coming-soon {
    background: #e8dec9;
    color: var(--green-dark);
}

.plant-badge.preorder {
    background: #f1e7cf;
    color: var(--green-dark);
}

@media (max-width: 1100px) {
    .new-arrivals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 850px) {
    .featured-grid, .new-arrivals-grid, .coming-soon-grid {
        grid-template-columns: 1fr;
    }
}

.page-hero {
    padding: 90px 8% 70px;
    background: var(--cream-light);
}

.page-hero-inner {
    max-width: 980px;
}

.page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    font-weight: 700;
    margin-bottom: 18px;
}

.page-hero h1 {
    margin: 0 0 24px;
    color: var(--green-dark);
    font-size: clamp(44px, 6vw, 76px);
    line-height: 0.98;
}

.page-hero p {
    max-width: 760px;
    font-size: 21px;
    line-height: 1.6;
}

.page-section {
    padding: 80px 8%;
    background: var(--cream);
}

.page-section.alt {
    background: var(--white);
}

.two-column {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.logo-feature {
    max-width: 280px;
    width: 100%;
    display: block;
    margin: 0 auto;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.faq-item.faq-with-icon {
    display: flex;
    align-items: center;
    gap: 24px;
}

.faq-item.faq-with-icon .feature-icon {
    flex: 0 0 74px;
    margin: 0;
}

.faq-item.faq-with-icon > div:last-child {
    flex: 1;
}

@media (max-width: 650px) {
    .faq-item.faq-with-icon {
        align-items: flex-start;
    }
}

.info-card, .faq-item, .contact-card {
    background: var(--cream-light);
    border: 1px solid #ddd5c8;
    border-radius: 24px;
    padding: 28px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.info-card:hover, .contact-card:hover, .faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(18, 56, 24, .08);
}

.info-card h3, .faq-item h3, .contact-card h3 {
    margin-top: 0;
    color: var(--green-dark);
}

.info-card .feature-icon {
    margin: 0 auto 22px;
}

.info-card .feature-icon svg {
    width: 34px !important;
    height: 34px !important;
}

.info-card h3 {
    margin: 0 0 12px;
    text-align: center;
}

.info-card p {
    margin: 0;
    line-height: 1.6;
    text-align: center;
}

.faq-list {
    display: grid;
    gap: 18px;
}

.search-results .faq-item h3 a {
    color: var(--green-dark);
    text-decoration: none;
}

.search-results .faq-item h3 a:hover {
    color: var(--green);
    text-decoration: underline;
}

.search-results .page-kicker {
    margin-bottom: 10px;
    font-size: 13px;
}

.search-results .faq-item p {
    margin: 0;
    line-height: 1.6;
    color: var(--muted);
}

@media (max-width: 650px) {
    .page-section > .search-form {
        flex-direction: column;
        max-width: 100% !important;
    }

    .page-section > .search-form button {
        width: 100%;
    }

    .search-results .faq-item {
        padding: 24px;
    }
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.contact-card.contact-card-with-icon {
    display: flex;
    align-items: center;
    gap: 24px;
}

.contact-card.contact-card-with-icon .feature-icon {
    flex: 0 0 74px;
    margin: 0;
}

.contact-card.contact-card-with-icon > div:last-child {
    flex: 1;
}

.contact-card.contact-card-with-icon h3 {
    margin: 0 0 8px;
}

.contact-card.contact-card-with-icon p {
    margin: 0;
    line-height: 1.6;
}

.contact-card.contact-card-with-icon .button {
    margin-top: 16px;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 34px;
    align-items: start;
}

.shop-sidebar {
    position: sticky;
    top: 180px;
    background: var(--cream-light);
    border: 1px solid #ddd5c8;
    border-radius: 24px;
    padding: 24px;
}

.shop-sidebar h2, .shop-results-header h2 {
    margin: 0 0 18px;
    color: var(--green-dark);
}

.shop-sidebar label {
    display: block;
    margin: 18px 0 8px;
    font-weight: 700;
    color: var(--green-dark);
}

.shop-sidebar input, .shop-sidebar select {
    width: 100%;
    border: 1px solid #d8cfbf;
    border-radius: 999px;
    padding: 13px 16px;
    background: var(--white);
    font: 15px Poppins, Arial, sans-serif;
}

.shop-sidebar .button {
    width: 100%;
    margin-top: 22px;
}

.shop-results-header {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 34px;
}

.shop-results-header p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.shop-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.basket-toggle span {
    min-width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.basket-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(420px, 100%);
    height: 100vh;
    background: var(--cream-light);
    z-index: 5000;
    padding: 24px;
    box-shadow: -18px 0 50px rgba(18, 56, 24, .18);
    transform: translateX(100%);
    transition: transform .25s ease;
    display: flex;
    flex-direction: column;
}

.basket-drawer.is-open {
    transform: translateX(0);
}

.basket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #ddd5c8;
    padding-bottom: 18px;
}

.basket-header h2 {
    margin: 0;
    color: var(--green-dark);
}

.basket-header button {
    border: 0;
    background: transparent;
    font-size: 34px;
    cursor: pointer;
    color: var(--green-dark);
}

.basket-items {
    flex: 1;
    overflow: auto;
    padding: 22px 0;
}

.basket-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 40px;
    gap: 12px;
    align-items: start;
    border-bottom: 1px solid #ddd5c8;
    padding: 14px 0;
}

.basket-item h3 {
    margin: 0 0 6px;
    color: var(--green-dark);
    font-size: 18px;
}

.basket-item p {
    margin: 0;
    color: var(--muted);
}

.basket-remove-button {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid #6f8f60;
    border-radius: 50%;
    background: #fffaf1;
    color: #123818;
    cursor: pointer;
    transition: .2s ease;
}

.basket-remove-button:hover {
    border-color: #426c3f;
    background: #e8f0e2;
    color: #123818;
    transform: translateY(-1px);
}

.basket-remove-button svg {
    width: 17px;
    height: 17px;
}

.basket-summary {
    border-top: 1px solid #ddd5c8;
    padding-top: 18px;
}

.basket-summary p {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.basket-summary .button {
    width: 100%;
}

.basket-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(18, 56, 24, .28);
    z-index: 4999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

.basket-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

/* Individual plant page */
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px;
    color: var(--muted);
    font-size: 15px;
}

.breadcrumbs a {
    color: var(--green-dark);
    font-weight: 700;
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--green);
    text-decoration: underline;
}

.plant-detail-loading {
    background: var(--cream-light);
    border: 1px solid #ddd5c8;
    border-radius: 28px;
    padding: 34px;
}

.plant-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
    gap: 54px;
    align-items: start;
}

.plant-main-image {
    aspect-ratio: 1 / 1;
    border-radius: 30px;
    border: 1px solid #ddd5c8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-weight: 700;
    overflow: hidden;
}

.plant-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 16px;
}

.plant-thumb {
    aspect-ratio: 1 / 1;
    border: 1px solid #ddd5c8;
    border-radius: 18px;
    cursor: pointer;
}

.plant-summary {
    background: var(--cream-light);
    border: 1px solid #ddd5c8;
    border-radius: 30px;
    padding: 34px;
    position: sticky;
    top: 150px;
}

.plant-summary h1 {
    margin: 18px 0 16px;
    color: var(--green-dark);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.02;
}

.plant-detail-intro {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
}

.plant-detail-price {
    margin: 24px 0;
    color: var(--green-dark);
    font-size: 30px;
    font-weight: 800;
}

.plant-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.plant-detail-panel {
    display: grid;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid #ddd5c8;
}

.plant-detail-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(221, 213, 200, 0.7);
    color: var(--muted);
}

.plant-detail-row strong {
    color: var(--green-dark);
    text-align: right;
}

.plant-content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    margin-top: 34px;
}

.plant-info-card {
    background: var(--cream-light);
    border: 1px solid #ddd5c8;
    border-radius: 28px;
    padding: 30px;
    margin-top: 34px;
}

.plant-content-grid .plant-info-card {
    margin-top: 0;
}

.plant-info-card h2 {
    margin: 0 0 18px;
    color: var(--green-dark);
    font-size: 30px;
}

.plant-info-card p {
    color: var(--muted);
    line-height: 1.65;
}

.care-badge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.care-badge-card {
    background: var(--white);
    border: 1px solid #ddd5c8;
    border-radius: 22px;
    padding: 22px;
}

.care-badge-card svg {
    width: 28px;
    height: 28px;
    color: var(--green-dark);
    margin-bottom: 12px;
}

.care-badge-card span {
    display: block;
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 6px;
}

.care-badge-card strong {
    color: var(--green-dark);
}

.plant-badge.sold {
    background: #ddd5c8;
    color: var(--green-dark);
}

@media (max-width: 1000px) {
    .plant-detail-layout, .plant-content-grid {
        grid-template-columns: 1fr;
    }

    .plant-summary {
        position: static;
    }
}

@media (max-width: 650px) {
    .plant-detail-page {
        padding: 56px 6%;
    }

    .plant-summary, .plant-info-card, .plant-detail-loading {
        padding: 24px;
    }

    .care-badge-grid {
        grid-template-columns: 1fr;
    }

    .plant-detail-row {
        flex-direction: column;
        gap: 4px;
    }

    .plant-detail-row strong {
        text-align: left;
    }

    .plant-thumbnails {
        gap: 10px;
    }
}

.plant-gallery {
    display: grid;
    gap: 18px;
}

.plant-main-image {
    aspect-ratio: 4 / 3;
    border-radius: 28px;
    overflow: hidden;
    background: var(--cream-deep);
    border: 1px solid #ddd5c8;
}

.plant-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.plant-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.plant-thumbnail {
    aspect-ratio: 1 / 1;
    border: 2px solid transparent;
    border-radius: 16px;
    overflow: hidden;
    background: var(--cream-deep);
    cursor: pointer;
    padding: 0;
}

.plant-thumbnail.is-active {
    border-color: var(--green);
}

.plant-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1100px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: static;
    }

    .shop-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .shop-results-header {
        flex-direction: column;
    }

    .basket-toggle {
        width: 100%;
    }

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

@media (max-width: 650px) {
    .contact-card.contact-card-with-icon {
        align-items: flex-start;
    }
}

@media (max-width: 850px) {
    .two-column, .card-grid, .contact-options {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1200px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
    }

    .hero p {
        margin-inline: auto;
    }

    .hero-buttons, .trust-row {
        justify-content: center;
    }

    .hero-image {
        min-height: auto;
        justify-content: center;
    }

    .hero-plant {
        width: min(520px, 100%);
        max-width: 100%;
        transform: none;
    }

    .feature-strip {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .feature {
        border-right: 0;
        padding: 0;
    }
}

@media (max-width: 650px) {
    .top-bar {
        height: auto;
        padding: 9px 14px;
        font-size: 13px;
    }

    .site-header {
        padding: 16px 6%;
    }

    .logo {
        width: 50px;
        height: 50px;
    }

    .brand-name {
        font-size: 25px;
    }

    .tagline {
        font-size: 10px;
    }

    .hero {
        padding: 38px 6% 52px;
    }

    .hero h1 {
        font-size: clamp(34px, 8vw, 44px);
    }

    .hero p {
        font-size: 17px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .trust-row {
        gap: 18px;
        font-size: 15px;
    }

    .feature-strip {
        grid-template-columns: 1fr;
    }

    .feature {
        border-bottom: 1px solid #ddd5c8;
        padding-bottom: 24px;
    }

    .feature:last-child {
        border-bottom: 0;
    }

    .site-footer {
        padding: 48px 6% 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .social-links a {
        width: 42px;
        height: 42px;
    }
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.mobile-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid #d8cfbf;
    border-radius: 50%;
    background: var(--cream-light);
    color: var(--green-dark);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav-link {
    position: relative;
    border: 0;
    background: transparent;
    color: var(--text);
    font: inherit;
    font-weight: 700;
    padding: 12px 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: width 0.25s ease;
}

.nav-item:hover .nav-link::after, .nav-item.is-open .nav-link::after {
    width: 100%;
}

.nav-item:hover .nav-link, .nav-item.is-open .nav-link {
    color: var(--green);
}

button:focus-visible, a:focus-visible, input:focus-visible {
    outline: 3px solid rgba(111, 143, 96, 0.45);
    outline-offset: 4px;
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 34px;
    align-items: start;
}

.checkout-form, .checkout-summary {
    background: var(--cream-light);
    border: 1px solid #ddd5c8;
    border-radius: 28px;
    padding: 30px;
}

.checkout-form {
    display: grid;
    gap: 14px;
}

.checkout-form h2, .checkout-summary h2 {
    margin: 0 0 12px;
    color: var(--green-dark);
}

.checkout-form input[type="text"], .checkout-form input[type="email"], .checkout-form textarea {
    width: 100%;
    border: 1px solid #d8cfbf;
    border-radius: 16px;
    padding: 13px 15px;
    font: 15px Poppins, Arial, sans-serif;
    background: white;
}

.checkout-payment-options {
    display: grid;
    gap: 12px;
}

.checkout-radio {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
    padding: 16px;
    background: var(--white);
    border: 1px solid #d8cfbf;
    border-radius: 16px;
    cursor: pointer;
}

.checkout-radio:has(input:checked) {
    border-color: var(--green);
    box-shadow: 0 0 0 2px rgba(111, 143, 96, 0.15);
}

.checkout-radio input[type="radio"] {
    width: 18px;
    height: 18px;
    margin: 3px 0 0;
    flex: 0 0 auto;
    accent-color: var(--green);
}

.checkout-payment-option {
    display: grid;
    gap: 3px;
}

.checkout-payment-option strong {
    color: var(--green-dark);
}

.checkout-payment-option small {
    color: var(--muted);
    line-height: 1.5;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid #ddd5c8;
}

.checkout-item h3 {
    margin: 0 0 8px;
    color: var(--green-dark);
}

.checkout-item p {
    margin: 0 0 5px;
    color: var(--muted);
}

.checkout-total {
    margin-top: 20px;
}

.checkout-total p {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.checkout-empty .button {
    margin-top: 16px;
}

.checkout-message {
    margin-top: 20px;
}

.checkout-alert {
    border-radius: 22px;
    padding: 22px;
    line-height: 1.6;
}

.checkout-alert h3 {
    margin: 0 0 12px;
    color: var(--green-dark);
}

.checkout-alert-error {
    background: #fff1ec;
    border: 1px solid #e5b8a8;
}

.checkout-alert-success {
    background: #f4f0df;
    border: 1px solid #d8cfbf;
}

.checkout-alert ul {
    margin: 0;
    padding-left: 20px;
}

.checkout-alert textarea {
    width: 100%;
    margin: 10px 0 16px;
    border: 1px solid #d8cfbf;
    border-radius: 16px;
    padding: 14px;
    font: 14px Poppins, Arial, sans-serif;
    background: white;
}

.checkout-payment-note {
    margin: 4px 0 0;
    color: #9c3b27;
    font-size: 13px;
    line-height: 1.5;
}

.checkout-checkbox {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    margin-top: 12px;
    background: var(--white);
    border: 1px solid #ddd5c8;
    border-radius: 18px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.5;
}

.checkout-checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--green);
}

.checkout-checkbox a {
    color: var(--green-dark);
    font-weight: 800;
}

.qr-payment-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 30px;
    align-items: center;
    margin-top: 22px;
}

.qr-payment-code {
    padding: 14px;
    background: white;
    border: 1px solid #ddd5c8;
    border-radius: 22px;
}

.qr-payment-code img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.qr-payment-details p {
    margin: 0 0 16px;
    line-height: 1.6;
}

.qr-payment-details .button {
    margin: 4px 0 20px;
}

.payment-reference {
    padding-top: 18px;
    border-top: 1px solid #ddd5c8;
}

@media (max-width: 650px) {
    .qr-payment-layout {
        grid-template-columns: 1fr;
    }

    .qr-payment-code {
        width: min(280px, 100%);
        margin-inline: auto;
    }

    .qr-payment-details .button {
        width: 100%;
    }
}

@media (max-width: 850px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1100px) {
    .site-header {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 18px;
        padding: 20px 6%;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .main-nav {
        display: none;
        grid-column: 1 / -1;
        width: 100%;
        padding: 18px;
        background: var(--cream-light);
        border: 1px solid #ddd5c8;
        border-radius: 24px;
    }

    .main-nav.is-open {
        display: grid;
        gap: 6px;
    }

    .main-nav > a, .nav-link {
        width: 100%;
        justify-content: space-between;
        padding: 12px 0;
    }

    .nav-item {
        width: 100%;
    }

    .submenu {
        position: static;
        min-width: 0;
        width: 100%;
        margin-top: 6px;
        padding: 8px 0 8px 14px;
        box-shadow: none;
        border-radius: 0 14px 14px 0;
        display: none;
    }

    .nav-item.is-open .submenu {
        display: block;
    }

    .has-submenu:hover .submenu {
        display: none;
    }

    .nav-item.is-open:hover .submenu {
        display: block;
    }

    .header-actions {
        grid-column: 1 / -1;
        width: 100%;
        justify-content: space-between;
    }

    .search-dropdown {
        left: 0;
        right: auto;
        width: min(420px, calc(100vw - 32px));
    }
}

@media (max-width: 650px) {
    .header-actions {
        align-items: center;
    }

    .search-wrap {
        width: auto;
    }

    .search-dropdown {
        position: fixed;
        top: 120px;
        left: 16px;
        right: 16px;
        width: auto;
    }

    .search-form {
        flex-direction: column;
    }

    .etsy-button {
        flex: 1;
        padding-inline: 18px;
    }
}

@media (max-height: 500px) and(orientation: landscape) {
    .header-shell {
        position: relative;
    }

    .top-bar {
        display: none;
    }

    .site-header {
        padding: 10px 5%;
        gap: 12px;
    }

    .logo {
        width: 44px;
        height: 44px;
    }

    .brand-name {
        font-size: 22px;
    }

    .tagline {
        font-size: 9px;
    }

    .mobile-menu-toggle, .search-button {
        width: 40px;
        height: 40px;
    }

    .etsy-button {
        padding: 11px 18px;
        font-size: 14px;
    }

    .hero {
        padding: 28px 6%;
        min-height: auto;
    }

    .hero h1 {
        font-size: clamp(34px, 6vw, 52px);
    }

    .hero p {
        font-size: 16px;
        line-height: 1.45;
    }

    .hero-buttons {
        margin-top: 22px;
    }

    .trust-row {
        margin-top: 22px;
    }

    .hero-plant {
        width: min(320px, 80%);
    }
}

.care-badge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 18px;
    width: 100%;
}

.care-badge-card {
    min-width: 0;
    overflow-wrap: anywhere;
}

.plant-detail-row {
    gap: 18px;
}

.plant-detail-row span {
    flex: 0 0 170px;
}

.plant-detail-row strong {
    flex: 1;
    min-width: 0;
    text-align: right;
    overflow-wrap: anywhere;
}

.plant-care-text-block {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #ddd5c8;
}

.plant-care-text-block h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    color: var(--green-dark);
}

.plant-care-text-block p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

@media (max-width: 650px) {
    .plant-detail-row span, .plant-detail-row strong {
        flex: none;
    }

    .plant-detail-row strong {
        text-align: left;
    }
}

.plant-detail-panel {
    padding-top: 0;
    border-top: 0;
}

.plant-detail-row {
    display: grid;
    grid-template-columns: minmax(150px, 0.55fr) minmax(0, 1fr);
    align-items: start;
    gap: 24px;
    padding: 8px 0 10px;
    border-bottom: 1px solid rgba(221, 213, 200, 0.85);
    color: var(--muted);
}

.plant-detail-row span {
    min-width: 0;
    line-height: 1.45;
}

.plant-detail-row strong {
    min-width: 0;
    color: var(--green-dark);
    text-align: right;
    line-height: 1.45;
    overflow-wrap: break-word;
}

.plant-care-divider, .plant-summary-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--green);
}

.plant-care-divider {
    margin: 22px 0 8px;
}

.plant-summary-divider {
    margin: 4px 0 22px;
}

.plant-care-divider::before, .plant-care-divider::after, .plant-summary-divider::before, .plant-summary-divider::after {
    content: "";
    height: 1px;
    flex: 1;
    background: #ddd5c8;
}

.plant-care-divider svg, .plant-summary-divider svg {
    width: 18px;
    height: 18px;
    color: var(--green);
}

.plant-care-text-block {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 16px;
    align-items: center;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #ddd5c8;
}

.plant-care-text-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e8dec9;
    color: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.plant-care-text-icon svg {
    width: 18px;
    height: 18px;
}

.plant-care-text-block h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    color: var(--green-dark);
}

.plant-care-text-block p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.plant-care-divider + .plant-care-text-block {
    border-top: 0;
    padding-top: 0;
}

.plant-detail-row:has( + .plant-care-divider) {
    border-bottom: 0;
}

.common-problems-section, .plant-service-section {
    overflow: hidden;
}

.common-problems-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.common-problem-card, .plant-service-card {
    border: 1px solid rgba(20, 71, 39, 0.12);
    background: rgba(255, 255, 255, 0.42);
}

.common-problem-card {
    padding: 1.5rem;
    border-radius: 1.25rem;
}

.common-problem-heading {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

.common-problem-heading h3 {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.2;
}

.common-problem-icon, .plant-service-icon {
    border-radius: 50%;
    background: rgba(126, 189, 172, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
}

.common-problem-icon {
    width: 2.75rem;
    height: 2.75rem;
    flex: 0 0 2.75rem;
}

.common-problem-icon svg {
    width: 1.3rem;
    height: 1.3rem;
}

.common-problem-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.common-problem-detail p {
    margin: 0.35rem 0 0;
    line-height: 1.65;
}

.common-problem-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.65;
}

.common-problem-fix {
    padding: 1rem;
    border-radius: 0.9rem;
    background: rgba(126, 189, 172, 0.1);
}

.common-problems-empty {
    margin-bottom: 0;
}

.plant-service-card {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    align-items: start;
    padding: 18px;
    border-radius: 18px;
}

.plant-service-card + .plant-service-card {
    margin-top: 16px;
}

.plant-service-icon {
    width: 44px;
    height: 44px;
}

.plant-service-icon svg {
    width: 21px;
    height: 21px;
}

.plant-service-card h3 {
    margin: 0 0 8px;
    font-size: 1.15rem;
    color: var(--green-dark);
}

.plant-service-card p {
    margin: 0;
    line-height: 1.65;
}

@media (max-width: 900px) {
    .common-problems-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .plant-detail-row {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .plant-detail-row strong {
        text-align: left;
    }
}

/* Coming soon plant cards */
.plant-card-image {
    position: relative;
    overflow: hidden;
}

.plant-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coming-soon-card-details {
    display: grid;
    gap: 7px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #ddd5c8;
}

.coming-soon-card-details p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

.coming-soon-card-details strong {
    color: var(--green-dark);
}

/* Preorder and production information */
.preorder-summary-card {
    margin: 0 0 24px;
    padding: 20px;
    border: 1px solid rgba(20, 71, 39, 0.18);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.58);
}

.preorder-summary-heading {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
    color: var(--green-dark);
}

.preorder-summary-heading svg {
    width: 26px;
    height: 26px;
}

.preorder-summary-heading span, .preorder-summary-heading strong {
    display: block;
}

.preorder-summary-heading span {
    color: var(--muted);
    font-size: 0.9rem;
}

.preorder-price-grid .plant-detail-row {
    grid-template-columns: minmax(150px, 1fr) auto;
}

.preorder-small-print, .production-disclaimer, .basket-item-note {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--muted);
}

.preorder-small-print {
    margin: 16px 0 0;
}

.production-status-card {
    border-color: rgba(20, 71, 39, 0.2);
}

.production-guidance {
    margin: 20px 0 8px;
    color: var(--green-dark) !important;
    font-weight: 650;
}

.production-disclaimer {
    margin-bottom: 0;
}

.coming-soon-card-details.compact {
    margin-top: 14px;
    padding-top: 13px;
}

.coming-soon-preorder-summary {
    display: grid;
    gap: 7px;
    margin: 14px 0 0;
    padding: 14px;
    border: 1px solid rgba(20, 71, 39, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.48);
}

.coming-soon-preorder-summary p {
    margin: 0;
    line-height: 1.4;
}

.coming-soon-preorder-price {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    color: var(--green-dark);
}

.coming-soon-preorder-price span {
    font-weight: 700;
}

.coming-soon-preorder-price strong {
    font-size: 1.15rem;
}

.coming-soon-preorder-summary .preorder-saving {
    color: var(--green-dark);
    font-size: 0.9rem;
    font-weight: 750;
}

.preorder-reserve-line {
    color: var(--green-dark) !important;
}

.preorder-balance-line {
    font-size: 0.9rem;
}

@media (max-width: 650px) {
    .preorder-price-grid .plant-detail-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .preorder-price-grid .plant-detail-row strong {
        text-align: left;
    }
}

.plant-faq-list {
    display: grid;
    gap: 12px;
}

.plant-faq-item {
    border: 1px solid #ddd5c8;
    border-radius: 16px;
    background: #fff;
    padding: 16px 18px;
}

.plant-faq-item h3 {
    margin: 0 0 7px;
    color: #123818;
    font-size: 1rem;
}

.plant-faq-item p {
    margin: 0;
}

/* Contact page */
.contact-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, .75fr);
    gap: 30px;
    align-items:start
}

.contact-form-card {
    background: var(--cream-light);
    border: 1px solid #ddd5c8;
    border-radius: 24px;
    padding:30px
}

.contact-form-card h2 {
    margin: 0 0 10px;
    color:var(--green-dark)
}

.contact-form-intro {
    margin: 0 0 22px;
    color: var(--muted);
    line-height:1.6
}

.contact-form {
    display: grid;
    gap:18px
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:18px
}

.contact-form label {
    display: grid;
    gap: 8px;
    font-weight: 700;
    color:var(--green-dark)
}

.contact-form input, .contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #cfc5b7;
    border-radius: 14px;
    background: #fff;
    padding: 13px 14px;
    font: inherit;
    color: var(--text);
    transition:border-color .2s ease, box-shadow .2s ease
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow:0 0 0 3px rgba(111, 143, 96, .16)
}

.contact-form textarea {
    resize: vertical;
    min-height:180px
}

.contact-form .button {
    justify-self:start
}

.contact-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px;
    height: 1px;
    overflow:hidden
}

.contact-form-message {
    border-radius: 16px;
    padding: 14px 16px;
    margin: 0 0 20px;
    font-weight: 700;
    line-height:1.5
}

.contact-form-message.success {
    background: #e8f1e4;
    border: 1px solid #b8cdb0;
    color:#123818
}

.contact-form-message.error {
    background: #f8e7e3;
    border: 1px solid #dfb7ad;
    color:#742c1f
}

.contact-sidebar {
    display: grid;
    gap:20px
}

.contact-sidebar .contact-card {
    text-align:left
}

.contact-sidebar .feature-icon {
    margin:0 0 18px
}

.contact-sidebar .contact-card p {
    margin-bottom: 0;
    line-height:1.6
}

.contact-social-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top:18px
}

.contact-social-actions .button {
    padding: 10px 16px
}

@media (max-width: 850px) {
    .contact-page-grid {
        grid-template-columns:1fr
    }

    .contact-sidebar {
        grid-template-columns:repeat(3, 1fr)
    }
}

@media (max-width: 700px) {
    .contact-form-row, .contact-sidebar {
        grid-template-columns:1fr
    }

    .contact-form-card {
        padding:24px
    }

    .contact-form .button {
        width: 100%;
        justify-content: center
    }
}

/* Plant Library genus and category landing pages */
.plant-library-landing-hero .page-hero-inner {
    max-width: 900px;
}

.plant-library-landing-section .section-heading {
    margin-bottom: 26px;
}

.plant-library-landing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.plant-library-landing-grid > p {
    grid-column: 1 / -1;
    margin: 0;
    padding: 28px;
    background: var(--cream-light);
    border: 1px solid #ddd5c8;
    border-radius: 24px;
    color: var(--muted);
    line-height: 1.6;
}

.plant-library-landing-grid > p a {
    color: var(--green-dark);
    font-weight: 700;
}

.plant-library-landing-grid .plant-card {
    display: flex;
    min-width: 0;
}

.plant-library-landing-grid .plant-card-body {
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
}

.plant-library-landing-grid .plant-card h3, .plant-library-landing-grid .plant-card p {
    overflow-wrap: anywhere;
}

.plant-library-landing-grid .plant-card-actions {
    margin-top: auto;
    padding-top: 18px;
}

.plant-library-landing-grid .plant-card-actions .button {
    width: 100%;
}

@media (max-width: 1000px) {
    .plant-library-landing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .plant-library-landing-hero {
        padding: 56px 6% 44px;
    }

    .plant-library-landing-section {
        padding: 54px 6%;
    }

    .plant-library-landing-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
    }

    .plant-library-landing-grid .plant-card-body, .plant-library-landing-grid > p {
        padding: 22px;
    }
}

/* Main Plant Library page */
.plant-library-hero {
    padding-bottom: 58px;
}

.plant-library-hero > * {
    max-width: 900px;
}

.plant-library-section {
    padding-top: 60px;
}

.plant-library-page .shop-layout {
    grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
    gap: 34px;
}

.plant-library-page .shop-results {
    min-width: 0;
}

.plant-library-page .shop-results-header {
    margin-bottom: 28px;
}

.plant-library-page .shop-results-header h2 {
    margin-bottom: 10px;
    font-size: clamp(28px, 3vw, 38px);
}

.plant-library-page .shop-sidebar {
    top: 170px;
}

.plant-library-page .shop-sidebar h2 {
    font-size: 26px;
}

.plant-library-page .shop-sidebar input, .plant-library-page .shop-sidebar select {
    min-height: 46px;
}

.plant-library-page .shop-sidebar select {
    cursor: pointer;
}

.plant-library-page .shop-sidebar .button {
    padding-inline: 18px;
}

.plant-library-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.plant-library-grid .plant-card {
    display: flex;
    min-width: 0;
}

.plant-library-grid .plant-card-body {
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
}

.plant-library-grid .plant-card h3 {
    margin-top: 16px;
    overflow-wrap: anywhere;
}

.plant-library-grid .plant-card > .plant-card-body > p {
    margin-bottom: 0;
}

.plant-library-grid .plant-card-actions {
    margin-top: auto;
    padding-top: 20px;
}

.plant-library-grid .plant-card-actions .button {
    width: 100%;
}

.plant-library-taxonomy {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    margin: 0 0 4px;
}

.plant-library-taxonomy-link {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    border: 1px solid rgba(111, 143, 96, 0.32);
    border-radius: 999px;
    padding: 6px 10px;
    background: rgba(111, 143, 96, 0.08);
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
    text-decoration: none;
    overflow-wrap: anywhere;
    transition:
    background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.plant-library-taxonomy-link:hover {
    border-color: var(--green);
    background: var(--green);
    color: var(--white);
    transform: translateY(-1px);
}

.plant-library-taxonomy-link:focus-visible {
    outline: 3px solid rgba(111, 143, 96, 0.35);
    outline-offset: 3px;
}

.plant-library-taxonomy-separator {
    color: var(--green);
    font-weight: 800;
}

.plant-library-grid .empty-stock-card {
    grid-column: 1 / -1;
}

/* Plant Library tablet layout */
@media (max-width: 1100px) {
    .plant-library-page .shop-layout {
        grid-template-columns: 1fr;
    }

    .plant-library-page .shop-sidebar {
        position: static;
    }

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

/* Plant Library mobile layout */
@media (max-width: 650px) {
    .plant-library-hero {
        padding: 52px 6% 42px;
    }

    .plant-library-hero h1 {
        font-size: clamp(38px, 11vw, 52px);
    }

    .plant-library-hero p {
        font-size: 17px;
    }

    .plant-library-section {
        padding: 46px 6%;
    }

    .plant-library-page .shop-sidebar {
        padding: 22px;
    }

    .plant-library-page .shop-results-header {
        margin-bottom: 22px;
    }

    .plant-library-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
    }

    .plant-library-grid .plant-card-body {
        padding: 22px;
    }

    .plant-library-taxonomy {
        gap: 6px;
    }

    .plant-library-taxonomy-link {
        max-width: 100%;
    }

    .plant-library-taxonomy-separator {
        display: none;
    }
}
/* =========================================================
   Permanent plant care guide library and QR destinations
   ========================================================= */

.care-guide-sidebar-note {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.care-guide-index-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.care-guide-index-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    min-width: 0;
    overflow: hidden;
    border: 1px solid #ddd5c8;
    border-radius: 26px;
    background: var(--cream-light);
    box-shadow: 0 12px 35px rgba(20, 71, 39, 0.06);
}

.care-guide-card-image {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    background: linear-gradient(145deg, #efe4ce, #d9e5d6);
}

.care-guide-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.care-guide-card-placeholder {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
}

.care-guide-card-placeholder svg {
    width: 54px;
    height: 54px;
    opacity: 0.65;
}

.care-guide-card-image:not(:has(img)) .care-guide-card-placeholder, .care-guide-card-image.show-placeholder .care-guide-card-placeholder {
    display: flex;
}

.care-guide-index-card-body {
    padding: 24px;
}

.care-guide-index-card h2 {
    margin: 12px 0 5px;
    color: var(--green-dark);
    font-size: 1.35rem;
    line-height: 1.15;
}

.care-guide-index-card h2 a {
    color: inherit;
    text-decoration: none;
}

.care-guide-index-card h2 a:hover {
    text-decoration: underline;
}

.care-guide-card-botanical {
    margin: 0 0 14px;
    color: var(--green);
}

.care-guide-index-card-body > p:not(.care-guide-card-botanical) {
    color: var(--muted);
    line-height: 1.55;
}

.care-guide-card-meta {
    display: grid;
    gap: 9px;
    margin: 18px 0;
}

.care-guide-card-meta span {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 8px;
    color: var(--green-dark);
    font-size: 0.88rem;
    line-height: 1.4;
}

.care-guide-card-meta svg {
    width: 17px;
    height: 17px;
}

.care-guide-empty {
    grid-column: 1 / -1;
    padding: 30px;
    border: 1px dashed #cfc3b2;
    border-radius: 20px;
    text-align: center;
    color: var(--muted);
}

.care-guide-detail-shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 54px 0 80px;
}

.care-guide-sheet {
    overflow: hidden;
    border: 3px solid var(--green-dark);
    border-radius: 34px;
    background: #fbf2e4;
    box-shadow: 0 26px 70px rgba(20, 71, 39, 0.12);
}

.care-guide-sheet-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.75fr);
    min-height: 480px;
    border-bottom: 3px solid var(--green-dark);
}

.care-guide-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(34px, 6vw, 76px);
}

.care-guide-kicker {
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.care-guide-hero-copy h1 {
    max-width: 760px;
    margin: 14px 0 8px;
    color: var(--green-dark);
    font-size: clamp(2.6rem, 4.35vw, 4rem);
    line-height: 0.97;
    overflow-wrap: break-word;
    text-wrap: balance;
    text-transform: uppercase;
}

.care-guide-botanical {
    margin: 0 0 24px;
    color: var(--green-dark);
    font-family: Georgia, serif;
    font-size: clamp(1.3rem, 2.4vw, 2rem);
}

.care-guide-intro {
    max-width: 720px;
    margin: 0;
    color: #405448;
    font-size: 1.05rem;
    line-height: 1.7;
}

.care-guide-quick-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.care-guide-quick-badges span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border: 1px solid rgba(20, 71, 39, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    color: var(--green-dark);
    font-size: 0.82rem;
    font-weight: 700;
}

.care-guide-quick-badges svg {
    width: 15px;
    height: 15px;
}

.care-guide-hero-image-wrap, .care-guide-image-placeholder {
    min-height: 100%;
}

.care-guide-hero-image-wrap {
    position: relative;
    overflow: hidden;
    border-left: 3px solid var(--green-dark);
    background: linear-gradient(155deg, #e8dcc4, #c9dccb);
}

.care-guide-hero-image {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
}

.care-guide-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 40%, #eef3e7 0, #d4dfcb 55%, #c5d2be 100%);
    color: var(--green-dark);
}

.care-guide-image-placeholder svg {
    width: 110px;
    height: 110px;
    opacity: 0.48;
}

.is-hidden {
    display: none !important;
}

.care-guide-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-bottom: 3px solid var(--green-dark);
}

.care-guide-fact-card {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 18px;
    padding: 27px 34px;
    border-bottom: 1px solid rgba(20, 71, 39, 0.35);
}

.care-guide-fact-card:nth-child(odd) {
    border-right: 1px solid rgba(20, 71, 39, 0.35);
}

.care-guide-fact-card:nth-last-child(-n + 2) {
    border-bottom: 0;
}

.care-guide-fact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
}

.care-guide-fact-icon svg {
    width: 37px;
    height: 37px;
    stroke-width: 1.6;
}

.care-guide-fact-card h2 {
    margin: 0 0 7px;
    color: var(--green-dark);
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.care-guide-fact-card p {
    margin: 0;
    color: #30493b;
    line-height: 1.55;
}

.care-guide-section-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 24px;
    padding: 36px;
    border-bottom: 3px solid var(--green-dark);
}

.care-guide-info-panel, .care-guide-problems, .care-guide-faqs, .care-guide-history {
    border: 1px solid rgba(20, 71, 39, 0.18);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.38);
}

.care-guide-info-panel {
    padding: 28px;
}

.care-guide-info-panel > p {
    color: #405448;
    line-height: 1.65;
}

.care-guide-section-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--green-dark);
}

.care-guide-section-heading svg {
    width: 25px;
    height: 25px;
}

.care-guide-section-heading h2 {
    margin: 0;
    font-size: 1.4rem;
}

.care-guide-info-row + .care-guide-info-row {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(20, 71, 39, 0.16);
}

.care-guide-info-row h3 {
    margin: 0 0 6px;
    color: var(--green-dark);
    font-size: 0.95rem;
}

.care-guide-info-row p {
    margin: 0;
    color: #405448;
    line-height: 1.6;
}

.care-guide-problems, .care-guide-faqs, .care-guide-history {
    margin: 36px;
    padding: 30px;
}

.care-guide-problem-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 22px;
}

.care-guide-problem-card {
    padding: 22px;
    border: 1px solid rgba(20, 71, 39, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.45);
}

.care-guide-problem-card h3 {
    margin: 0 0 13px;
    color: var(--green-dark);
}

.care-guide-problem-card p, .care-guide-history p, .care-guide-faqs p {
    color: #405448;
    line-height: 1.62;
}

.care-guide-faqs details {
    border-top: 1px solid rgba(20, 71, 39, 0.18);
}

.care-guide-faqs details:last-child {
    border-bottom: 1px solid rgba(20, 71, 39, 0.18);
}

.care-guide-faqs summary {
    padding: 17px 4px;
    color: var(--green-dark);
    font-weight: 800;
    cursor: pointer;
}

.care-guide-faqs details p {
    margin: -3px 4px 18px;
}

.care-guide-sheet-footer {
    padding: 34px;
    border-top: 3px solid var(--green-dark);
    text-align: center;
}

.care-guide-sheet-footer > p {
    margin: 0 0 18px;
    color: var(--green-dark);
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 700;
}

.care-guide-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 22px;
}

.care-guide-footer-links a {
    color: var(--green-dark);
    font-weight: 800;
}

.care-guide-not-found {
    padding: 70px 30px;
    border: 1px solid #ddd5c8;
    border-radius: 28px;
    background: var(--cream-light);
    text-align: center;
}

.care-guide-not-found > svg {
    width: 62px;
    height: 62px;
    color: var(--green);
}

.care-guide-not-found h1 {
    color: var(--green-dark);
}

.care-guide-missing-slug {
    color: var(--muted);
}

@media (max-width: 1100px) {
    .care-guide-index-grid {
        grid-template-columns: 1fr;
    }

    .care-guide-sheet-hero {
        grid-template-columns: 1fr 0.8fr;
    }

    .care-guide-problem-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 780px) {
    .care-guide-detail-shell {
        width: min(100% - 22px, 1180px);
        padding-top: 28px;
    }

    .care-guide-sheet {
        border-width: 2px;
        border-radius: 24px;
    }

    .care-guide-sheet-hero {
        grid-template-columns: 1fr;
    }

    .care-guide-hero-image-wrap {
        min-height: 320px;
        border-top: 2px solid var(--green-dark);
        border-left: 0;
    }

    .care-guide-hero-image {
        min-height: 320px;
    }

    .care-guide-facts, .care-guide-section-grid {
        grid-template-columns: 1fr;
    }

    .care-guide-fact-card, .care-guide-fact-card:nth-child(odd), .care-guide-fact-card:nth-last-child(-n + 2) {
        border-right: 0;
        border-bottom: 1px solid rgba(20, 71, 39, 0.35);
    }

    .care-guide-fact-card:last-child {
        border-bottom: 0;
    }

    .care-guide-section-grid {
        padding: 22px;
    }

    .care-guide-tools, .care-guide-availability {
        margin: 22px;
        padding: 22px;
    }

    .care-guide-availability {
        grid-template-columns: 1fr;
    }

    .care-guide-availability-actions {
        grid-column: 1;
        grid-row: auto;
        margin-top: 18px;
        justify-content: flex-start;
    }

    .care-guide-problems, .care-guide-faqs, .care-guide-history {
        margin: 22px;
        padding: 22px;
    }

    .care-guide-problem-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .care-guide-index-card {
        grid-template-columns: 1fr;
    }

    .care-guide-card-image {
        min-height: 230px;
    }

    .care-guide-hero-copy {
        padding: 34px 24px;
    }

    .care-guide-hero-copy h1 {
        font-size: clamp(2.25rem, 13vw, 3.4rem);
    }

    .care-guide-fact-card {
        grid-template-columns: 42px 1fr;
        gap: 12px;
        padding: 23px 20px;
    }

    .care-guide-fact-icon, .care-guide-fact-icon svg {
        width: 34px;
        height: 34px;
    }

    .care-guide-footer-links {
        flex-direction: column;
    }
}

/* Keyboard, zoom and motion safeguards shared by every customer page. */
.skip-link {
    position: fixed;
    z-index: 100000;
    top: 12px;
    left: 12px;
    max-width: calc(100vw - 24px);
    padding: 12px 18px;
    border: 2px solid #fff;
    border-radius: 12px;
    background: var(--green, #123818);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    transform: translateY(-180%);
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
    outline: 2px solid var(--cream-light);
    outline-offset: 2px;
    box-shadow: 0 0 0 5px var(--green-dark);
}

.home-editorial-plant picture {
    display: block;
    width: 100%;
    height: auto;
}

.home-editorial-plant picture img {
    display: block;
    height: auto;
}

@media (min-width: 1121px) and(max-width: 1400px) {
    .home-editorial-plant picture img {
        right: -58px;
        bottom: -36px;
        width: min(450px, 38vw);
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (max-width: 640px) {
    .search-dropdown.is-open {
        width: min(92vw, 420px);
        max-width: calc(100vw - 24px);
    }
}

/* Care-guide index primary action */
.care-guide-index-card .text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    margin-top: 4px;
    padding: 10px 16px;
    border: 1px solid var(--green-dark);
    border-radius: 999px;
    background: var(--green-dark);
    color: #fff;
    font-weight: 800;
    line-height: 1.1;
    text-decoration: none;
    transition:
    transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.care-guide-index-card .text-link svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
}

.care-guide-index-card .text-link:hover, .care-guide-index-card .text-link:focus-visible {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(20, 71, 39, 0.18);
    text-decoration: none;
}

.care-guide-index-card .text-link:focus-visible {
    outline: 3px solid rgba(126, 189, 172, 0.5);
    outline-offset: 3px;
}

/* Care detail buttons */
.care-guide-toolbar {
    width: min(100%, 1180px);
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px
}

.care-guide-toolbar-link, .care-guide-print-button, .care-guide-inline-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 16px;
    border: 1px solid var(--green-dark);
    border-radius: 999px;
    background: var(--green-dark);
    color: #fff;
    font: inherit;
    font-weight: 800;
    line-height: 1.15;
    text-decoration: none;
    cursor: pointer;
    transition: .18s ease
}

.care-guide-toolbar-link {
    background: transparent;
    color: var(--green-dark)
}

.care-guide-toolbar-link svg, .care-guide-print-button svg, .care-guide-inline-action svg {
    width: 17px;
    height: 17px
}

.care-guide-toolbar-link:hover, .care-guide-toolbar-link:focus-visible, .care-guide-print-button:hover, .care-guide-print-button:focus-visible, .care-guide-inline-action:hover, .care-guide-inline-action:focus-visible {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(20, 71, 39, .18)
}

.care-guide-info-panel .care-guide-inline-action, .care-guide-problems .care-guide-inline-action {
    margin-top: 14px
}

/* Care guide engagement and exact public availability */
.care-guide-tools, .care-guide-availability {
    margin: 28px 36px 0;
    padding: 26px 28px;
    border: 1px solid rgba(20, 71, 39, .18);
    border-radius: 22px;
    background: #eef3e7;
}

.care-guide-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: var(--green);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .15em;
    text-transform: uppercase
}

.care-guide-tools h2, .care-guide-availability h2 {
    margin: 0 0 8px;
    color: var(--green-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    line-height: 1.15
}

.care-guide-tools > p, .care-guide-availability > p {
    margin: 0;
    color: #405448;
    line-height: 1.6
}

.care-guide-tools-actions, .care-guide-availability-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    align-items: center
}

.care-guide-tools .personal-plant-actions {
    display: contents
}

.care-guide-tools .personal-plant-button, .care-guide-tool-link, .care-guide-availability-action, .care-guide-availability-alert .restock-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 15px;
    border: 1px solid rgba(20, 71, 39, .28);
    border-radius: 14px;
    background: #fff;
    color: var(--green-dark);
    font: inherit;
    font-size: .9rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none
}

.care-guide-tool-link:hover, .care-guide-tool-link:focus-visible, .care-guide-availability-action:hover, .care-guide-availability-action:focus-visible {
    background: #f7fbf3;
    color: var(--green-dark);
    text-decoration: none
}

.care-guide-tools .personal-plant-button:focus-visible, .care-guide-tool-link:focus-visible, .care-guide-availability-action:focus-visible, .care-guide-availability-alert .restock-button:focus-visible {
    outline: 3px solid rgba(126, 189, 172, .72);
    outline-offset: 3px
}

.care-guide-availability {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 24px;
    align-items: center;
    margin-top: 36px;
    margin-bottom: 36px;
    background: #eaf0e5;
}

.care-guide-availability > .care-guide-eyebrow, .care-guide-availability > h2, .care-guide-availability > p {
    grid-column: 1
}

.care-guide-availability-actions {
    grid-column: 2;
    grid-row: 1 / span 3;
    margin-top: 0;
    justify-content: flex-end
}

.care-guide-availability-action.primary, .care-guide-availability-alert .restock-button {
    border-color: var(--green-dark);
    background: var(--green-dark);
    color: #fff
}

.care-guide-availability-action.primary:hover, .care-guide-availability-action.primary:focus-visible, .care-guide-availability-alert .restock-button:hover, .care-guide-availability-alert .restock-button:focus-visible {
    background: var(--green);
    border-color: var(--green);
    color: #fff
}

.care-guide-availability-action.secondary {
    background: transparent;
    border-color: var(--green-dark)
}

/* Professional guide libraries */
.guide-library-page {
    background: radial-gradient(circle at 8% 4%, rgba(126, 189, 172, .12), transparent 24rem), var(--cream)
}

.guide-library-hero {
    padding: 68px 24px 52px
}

.guide-library-hero-inner {
    width: min(100%, 1180px);
    margin: 0 auto;
    padding: 42px 46px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    border: 2px solid var(--green-dark);
    border-radius: 30px;
    background: rgba(255, 252, 245, .9);
    box-shadow: 0 22px 55px rgba(20, 71, 39, .1)
}

.guide-library-hero h1 {
    max-width: 900px;
    margin: 10px 0 14px;
    color: var(--green-dark);
    font-family: Georgia, serif;
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    line-height: .98
}

.guide-library-hero p {
    max-width: 820px;
    margin: 0;
    color: #405448;
    font-size: 1.08rem;
    line-height: 1.7
}

.guide-library-hero-mark {
    width: 118px;
    height: 118px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green-dark);
    color: var(--cream-light)
}

.guide-library-hero-mark svg {
    width: 54px;
    height: 54px
}

.guide-library-section, .guide-library-sources {
    width: min(100% - 40px, 1180px);
    margin: 0 auto;
    padding: 48px 0
}

.guide-library-alt {
    width: 100%;
    max-width: none;
    padding-inline: max(20px, calc((100vw - 1180px) /2));
    background: rgba(126, 189, 172, .09);
    border-block: 1px solid rgba(20, 71, 39, .12)
}

.guide-library-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 28px
}

.guide-library-heading h2, .guide-library-sources h2 {
    margin: 6px 0 0;
    color: var(--green-dark);
    font-family: Georgia, serif;
    font-size: clamp(1.9rem, 4vw, 3rem)
}

.guide-library-heading > p {
    max-width: 520px;
    margin: 0;
    color: #526359;
    line-height: 1.65
}

.guide-eyebrow {
    color: var(--green);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase
}

.guide-library-intro-grid, .guide-dossier-grid, .guide-method-grid, .guide-component-grid, .guide-comparison-grid {
    display: grid;
    gap: 18px
}

.guide-library-intro-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

.guide-feature-card, .guide-dossier-card, .guide-method-card, .guide-component-grid article, .guide-comparison-grid article {
    border: 1px solid rgba(20, 71, 39, .18);
    border-radius: 22px;
    background: rgba(255, 252, 245, .93);
    box-shadow: 0 12px 30px rgba(20, 71, 39, .06)
}

.guide-feature-card {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 15px;
    padding: 24px
}

.guide-feature-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(126, 189, 172, .22);
    color: var(--green-dark)
}

.guide-feature-card h2, .guide-dossier-card h3, .guide-method-card h3, .guide-component-grid h3, .guide-comparison-grid h3 {
    margin: 0 0 9px;
    color: var(--green-dark);
    font-family: Georgia, serif
}

.guide-feature-card p, .guide-dossier-card p, .guide-dossier-card dd, .guide-method-card p, .guide-method-card li, .guide-component-grid p, .guide-comparison-grid p {
    color: #405448;
    line-height: 1.65
}

.guide-dossier-grid, .guide-method-grid, .guide-comparison-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
}

.guide-dossier-card, .guide-method-card, .guide-component-grid article, .guide-comparison-grid article {
    padding: 26px
}

.guide-dossier-title {
    display: flex;
    align-items: center;
    gap: 12px
}

.guide-dossier-title svg {
    width: 25px;
    height: 25px;
    color: var(--green)
}

.guide-applies {
    padding: 11px 13px;
    border-radius: 12px;
    background: rgba(126, 189, 172, .14)
}

.guide-scope-note {
    margin: 0 0 28px;
    padding: 16px 18px;
    border: 1px solid rgba(20, 71, 39, .16);
    border-radius: 16px;
    background: rgba(255, 252, 245, .84);
    color: #405448;
    line-height: 1.65
}

.guide-scope-note strong {
    color: var(--green-dark)
}

.guide-dossier-card dl {
    margin: 18px 0 0
}

.guide-dossier-card dl > div {
    padding: 13px 0;
    border-top: 1px solid rgba(20, 71, 39, .13)
}

.guide-dossier-card dt {
    color: var(--green-dark);
    font-weight:900
}

.guide-dossier-card dd {
    margin: 5px 0 0
}

.guide-method-card {
    position: relative;
    overflow:hidden
}

.guide-method-number {
    position: absolute;
    top: 12px;
    right: 18px;
    color: rgba(20, 71, 39, .12);
    font-family: Georgia, serif;
    font-size: 3.5rem;
    font-weight: 900
}

.guide-method-card ul {
    margin: 18px 0 0;
    padding-left:20px
}

.guide-method-card li + li {
    margin-top: 8px
}

.guide-component-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

.guide-component-grid article > svg, .guide-comparison-grid article > svg {
    width: 30px;
    height: 30px;
    margin-bottom: 13px;
    color: var(--green)
}

.guide-step-list {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 13px;
    list-style: none
}

.guide-step-list li {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
    align-items: start;
    padding: 22px 24px;
    border: 1px solid rgba(20, 71, 39, .16);
    border-radius: 18px;
    background: var(--cream-light)
}

.guide-step-list li > span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green-dark);
    color: #fff;
    font-weight: 900
}

.guide-step-list h3 {
    margin: 0 0 6px;
    color:var(--green-dark)
}

.guide-step-list p {
    margin: 0;
    color: #405448;
    line-height: 1.6
}

.guide-library-sources {
    margin-bottom: 55px;
    padding: 32px;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 32px;
    border: 2px solid var(--green-dark);
    border-radius: 26px;
    background: var(--cream-light)
}

.guide-library-sources p {
    color: #526359;
    line-height:1.65
}

.guide-library-sources ul {
    margin: 0;
    padding-left:20px
}

.guide-library-sources li + li {
    margin-top:10px
}

.guide-library-sources a {
    color: var(--green-dark);
    font-weight: 800
}

.care-guide-print-sheet {
    display: none
}

@page {
    size: A4 portrait;
    margin: 8mm
}

@media print {
    html, body {
        width: 210mm !important;
        height: 297mm !important;
        margin: 0 !important;
        padding: 0 !important;
        background: #fff !important
    }

    body {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact
    }

    body * {
        visibility: hidden !important
    }

    .care-guide-print-sheet, .care-guide-print-sheet * {
        visibility: visible !important
    }

    .care-guide-print-sheet {
        position: fixed;
        inset: 0;
        display: grid !important;
        grid-template-rows: auto auto 1fr auto;
        width: 194mm;
        height: 281mm;
        margin: 0;
        padding: 7mm;
        overflow: hidden;
        box-sizing: border-box;
        border: 1.2mm solid #144727;
        border-radius: 3mm;
        background: #fbf2e4 !important;
        color: #173f28;
        font-family: Arial, Helvetica, sans-serif
    }

    .care-guide-print-header {
        display: grid;
        grid-template-columns: minmax(0, 1.45fr) 54mm;
        min-height: 54mm;
        border-bottom: .7mm solid #144727
    }

    .care-guide-print-title {
        padding: 4mm 5mm 4mm 2mm;
        border-right: .5mm solid #144727
    }

    .care-guide-print-title > span {
        display: block;
        margin-bottom: 2mm;
        color: #6b9b69;
        font-size: 6.7pt;
        font-weight: 800;
        letter-spacing: .14em;
        text-transform: uppercase
    }

    .care-guide-print-heading {
        margin: 0;
        color: #144727;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 23pt;
        font-weight: 800;
        line-height: .98;
        text-transform: uppercase
    }

    .care-guide-print-title > p {
        margin: 2mm 0 0;
        color: #245235;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 10pt
    }

    .care-guide-print-intro {
        display: -webkit-box;
        margin-top: 3mm;
        overflow: hidden;
        color: #3d5546;
        font-size: 7.4pt;
        line-height: 1.35;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3
    }

    .care-guide-print-image {
        min-width: 0;
        overflow: hidden;
        background: linear-gradient(145deg, #ede2cc, #d4dfcb) !important
    }

    .care-guide-print-image .care-guide-hero-image-wrap, .care-guide-print-image .care-guide-image-placeholder {
        width: 100%;
        height: 54mm !important;
        min-height: 54mm !important;
        border: 0 !important
    }

    .care-guide-print-image .care-guide-hero-image {
        width: 100%;
        height: 54mm !important;
        min-height: 54mm !important;
        object-fit: cover
    }

    .care-guide-print-image .care-guide-image-placeholder svg {
        width: 22mm;
        height: 22mm
    }

    .care-guide-print-facts {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-bottom: .7mm solid #144727
    }

    .care-guide-print-facts .care-guide-fact-card {
        display: grid;
        grid-template-columns: 10mm minmax(0, 1fr);
        gap: 2.5mm;
        min-height: 28mm;
        padding: 3.5mm 4mm;
        border-bottom: .25mm solid rgba(20, 71, 39, .45);
        box-sizing: border-box
    }

    .care-guide-print-facts .care-guide-fact-card:nth-child(odd) {
        border-right: .25mm solid rgba(20, 71, 39, .45)
    }

    .care-guide-print-facts .care-guide-fact-card:nth-last-child(-n + 2) {
        border-bottom: 0
    }

    .care-guide-print-facts .care-guide-fact-icon {
        width: 9mm;
        height: 9mm
    }

    .care-guide-print-facts .care-guide-fact-icon svg {
        width: 7mm;
        height: 7mm;
        stroke-width: 1.6
    }

    .care-guide-print-facts .care-guide-fact-card h2 {
        margin: 0 0 1mm;
        font-size: 7pt;
        line-height: 1.1
    }

    .care-guide-print-facts .care-guide-fact-card p {
        display: -webkit-box;
        margin: 0;
        overflow: hidden;
        font-size: 7.1pt;
        line-height: 1.3;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4
    }

    .care-guide-print-details {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-content: start;
        gap: 3mm;
        padding: 4mm 0;
        overflow: hidden
    }

    .care-guide-print-details article {
        min-height: 25mm;
        padding: 3mm;
        overflow: hidden;
        box-sizing: border-box;
        border: .25mm solid rgba(20, 71, 39, .25);
        border-radius: 2.5mm;
        background: rgba(255, 255, 255, .42) !important
    }

    .care-guide-print-details h2 {
        margin: 0 0 1.4mm;
        color: #144727;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 8pt
    }

    .care-guide-print-details p {
        display: -webkit-box;
        margin: 0;
        overflow: hidden;
        color: #3d5546;
        font-size: 6.8pt;
        line-height: 1.32;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 6
    }

    .care-guide-print-footer {
        padding-top: 2.5mm;
        border-top: .5mm solid #144727;
        text-align: center
    }

    .care-guide-print-footer p {
        margin: 0 0 1.2mm;
        color: #3d5546;
        font-size: 6.5pt;
        line-height: 1.3
    }

    .care-guide-print-footer span {
        color: #144727;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 7pt;
        font-style: italic;
        font-weight: 700
    }

    .header-shell, .site-footer, .breadcrumbs, .care-guide-toolbar, .care-guide-sheet, .care-guide-index-view, .care-guide-not-found {
        display: none !important
    }
}

@media (max-width: 900px) {
    .guide-library-intro-grid, .guide-component-grid {
        grid-template-columns:1fr 1fr
    }

    .guide-library-hero-inner, .guide-library-sources {
        grid-template-columns:1fr
    }

    .guide-library-hero-mark {
        display: none
    }
}

@media (max-width: 680px) {
    .care-guide-toolbar {
        align-items: stretch;
        flex-direction:column
    }

    .guide-library-hero {
        padding-inline:14px
    }

    .guide-library-hero-inner {
        padding:30px 24px
    }

    .guide-library-section, .guide-library-sources {
        width:min(100% - 24px, 1180px)
    }

    .guide-library-heading {
        align-items: start;
        flex-direction:column
    }

    .guide-library-intro-grid, .guide-dossier-grid, .guide-method-grid, .guide-component-grid, .guide-comparison-grid {
        grid-template-columns: 1fr
    }
}

/* ============================================================
   PLANT LIBRARY, ABOUT & FAQ EDITORIAL REDESIGN
   ============================================================ */
.collection-editorial-hero, .about-editorial-hero, .faq-editorial-hero {
    padding: 68px 5% 42px;
    background:
    radial-gradient(circle at 10% 0%, rgba(111, 143, 96, .18), transparent 28rem), var(--cream);
}

.collection-editorial-inner, .about-editorial-inner, .faq-editorial-inner {
    width: min(100%, 1180px);
    margin: 0 auto;
    padding: 46px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 34px;
    border: 2px solid var(--green-dark);
    border-radius: 32px;
    background: rgba(255, 250, 241, .92);
    box-shadow: 0 24px 58px rgba(18, 56, 24, .1);
}

.collection-editorial-copy h1, .about-editorial-copy h1, .faq-editorial-inner h1 {
    max-width: 900px;
    margin: 10px 0 16px;
    color: var(--green-dark);
    font-size: clamp(2.5rem, 5.8vw, 5rem);
    line-height: .98;
}

.collection-editorial-copy p, .about-editorial-copy p, .faq-editorial-inner p {
    max-width: 830px;
    margin: 0;
    color: #405448;
    font-size: 1.08rem;
    line-height: 1.72;
}

.collection-hero-actions, .about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.collection-editorial-mark, .about-hero-emblem, .faq-hero-mark {
    width: 150px;
    min-height: 180px;
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border-radius: 75px 75px 24px 24px;
    background: var(--green-dark);
    color: var(--cream-light);
    text-align: center;
}

.collection-editorial-mark svg, .about-hero-emblem svg, .faq-hero-mark svg {
    width: 54px;
    height: 54px;
}

.collection-editorial-mark span, .about-hero-emblem span {
    font-family: Georgia, serif;
    font-size: .9rem;
    line-height: 1.45;
}

.collection-principles {
    width: min(100%, 1080px);
    margin: -1px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid rgba(18, 56, 24, .22);
    border-top: 0;
    border-radius: 0 0 24px 24px;
    overflow: hidden;
    background: rgba(255, 250, 241, .82);
}

.collection-principles article {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 13px;
    padding: 22px;
    border-right: 1px solid rgba(18, 56, 24, .16);
}

.collection-principles article:last-child {
    border-right: 0;
}

.collection-principles svg {
    color: var(--green);
}

.collection-principles strong, .collection-principles span {
    display: block;
}

.collection-principles strong {
    color: var(--green-dark);
    margin-bottom: 4px;
}

.collection-principles span {
    color: var(--muted);
    font-size: .86rem;
    line-height: 1.45;
}

.collection-browser-section {
    background: rgba(255, 250, 241, .55);
}

.collection-filter-panel {
    border: 2px solid var(--green-dark);
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(18, 56, 24, .08);
}

.collection-filter-heading {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 24px;
}

.collection-filter-heading h2 {
    margin: 3px 0 0 !important;
}

.collection-filter-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(111, 143, 96, .16);
    color: var(--green-dark);
}

.collection-search-field {
    position: relative;
}

.collection-search-field svg {
    position: absolute;
    left: 14px;
    top: 50%;
    width: 18px;
    transform: translateY(-50%);
    color: var(--green);
    pointer-events: none;
}

.collection-search-field input {
    padding-left: 42px !important;
}

.collection-filter-panel .button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.collection-filter-note {
    display: flex;
    gap: 8px;
    margin: 18px 0 0;
    padding-top: 16px;
    border-top: 1px solid rgba(18, 56, 24, .13);
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.5;
}

.collection-filter-note svg {
    flex: 0 0 auto;
    width: 16px;
}

.collection-results-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    padding: 0 0 20px;
    border-bottom: 1px solid rgba(18, 56, 24, .16);
}

.collection-care-link {
    min-width: 260px;
    display: grid;
    grid-template-columns: 36px 1fr 20px;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border: 1px solid rgba(18, 56, 24, .22);
    border-radius: 18px;
    background: var(--cream-light);
    color: var(--green-dark);
    text-decoration: none;
    transition: .2s ease;
}

.collection-care-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(18, 56, 24, .1);
    border-color: var(--green);
}

.collection-care-link span, .collection-care-link strong, .collection-care-link small {
    display: block;
}

.collection-care-link small {
    margin-top: 3px;
    color: var(--muted);
}

.collection-plant-card {
    display: grid !important;
    grid-template-columns: 88px minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid rgba(18, 56, 24, .18);
    border-radius: 22px;
    background: var(--cream-light);
    box-shadow: 0 12px 30px rgba(18, 56, 24, .06);
}

.collection-card-mark {
    display: grid;
    place-items: center;
    background: linear-gradient(155deg, #ede5d3, #d7e0cf);
    color: var(--green);
    border-right: 1px solid rgba(18, 56, 24, .12);
}

.collection-card-mark svg {
    width: 34px;
    height: 34px;
}

.collection-plant-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(18, 56, 24, .11);
}

.collection-plant-card .plant-card-body {
    padding: 22px;
}

.collection-card-status > p {
    margin: 10px 0 0 !important;
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.5;
}

.collection-batch-note {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(111, 143, 96, .09);
    font-size: .84rem;
}

.about-story-section, .about-values-section, .about-process-section, .about-setup-section {
    width: min(100% - 40px, 1180px);
    margin: 0 auto;
    padding: 60px 0;
}

.about-story-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    align-items: start;
}

.about-story-heading h2, .about-section-heading h2, .about-setup-card h2, .about-closing-section h2 {
    margin: 7px 0 0;
    color: var(--green-dark);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.08;
}

.about-story-copy {
    padding-left: 34px;
    border-left: 2px solid var(--green);
}

.about-story-copy p {
    margin: 0 0 18px;
    color: #405448;
    font-size: 1.02rem;
    line-height: 1.78;
}

.about-values-section {
    width: 100%;
    max-width: none;
    padding-inline: max(20px, calc((100vw - 1180px) /2));
    background: rgba(111, 143, 96, .08);
    border-block: 1px solid rgba(18, 56, 24, .12);
}

.about-section-heading {
    max-width: 760px;
    margin-bottom: 30px;
}

.about-section-heading > p {
    color: var(--muted);
    line-height: 1.65;
}

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

.about-value-grid article {
    position: relative;
    padding: 28px;
    border: 1px solid rgba(18, 56, 24, .18);
    border-radius: 22px;
    background: rgba(255, 250, 241, .95);
    overflow: hidden;
}

.about-value-grid article > svg {
    width: 30px;
    height: 30px;
    color: var(--green);
    margin-bottom: 14px;
}

.about-value-grid h3 {
    margin: 0 0 9px;
    color: var(--green-dark);
    font-size: 1.35rem;
}

.about-value-grid p {
    margin: 0;
    color: #405448;
    line-height: 1.65;
}

.about-value-number {
    position: absolute;
    right: 16px;
    top: 8px;
    color: rgba(18, 56, 24, .1);
    font-family: Georgia, serif;
    font-size: 3.5rem;
    font-weight: 900;
}

.about-process-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    counter-reset: none;
}

.about-process-list li {
    padding: 24px;
    border: 1px solid rgba(18, 56, 24, .17);
    border-radius: 20px;
    background: var(--cream-light);
}

.about-process-list li > span {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--green-dark);
    color: white;
    font-weight: 900;
}

.about-process-list h3 {
    margin: 0 0 8px;
    color: var(--green-dark);
}

.about-process-list p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
    font-size: .92rem;
}

.about-setup-card {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 50px;
    padding: 42px;
    border: 2px solid var(--green-dark);
    border-radius: 28px;
    background: var(--cream-light);
}

.about-setup-card p {
    color: #405448;
    line-height: 1.72;
}

.about-setup-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-content: center;
}

.about-setup-points span {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 13px;
    border-radius: 14px;
    background: rgba(111, 143, 96, .11);
    color: var(--green-dark);
    font-weight: 700;
    font-size: .88rem;
}

.about-setup-points svg {
    width: 18px;
}

.about-closing-section {
    width: min(100% - 40px, 960px);
    margin: 10px auto 70px;
    padding: 48px;
    text-align: center;
    border-radius: 30px;
    background: var(--green-dark);
    color: white;
}

.about-closing-section > svg {
    width: 42px;
    height: 42px;
    color: #c9dfbf;
}

.about-closing-section h2 {
    color: white;
}

.about-closing-section p {
    max-width: 680px;
    margin: 14px auto 24px;
    color: rgba(255, 255, 255, .82);
    line-height: 1.7;
}

.about-closing-section > div {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.about-closing-section .button.secondary {
    border-color: white;
    background: transparent;
    color: white;
    box-shadow: none;
}

.about-closing-section .button.secondary:hover {
    border-color: white;
    background: rgba(255, 255, 255, .12);
    color: white;
}

.faq-category-nav {
    width: min(100%, 1060px);
    margin: -1px auto 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border: 1px solid rgba(18, 56, 24, .2);
    border-top: 0;
    border-radius: 0 0 22px 22px;
    overflow: hidden;
    background: var(--cream-light);
}

.faq-category-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 12px;
    border-right: 1px solid rgba(18, 56, 24, .13);
    color: var(--green-dark);
    font-weight: 800;
    text-decoration: none;
}

.faq-category-nav a:last-child {
    border-right: 0;
}

.faq-category-nav a:hover {
    background: rgba(111, 143, 96, .13);
}

.faq-category-nav svg {
    width: 18px;
}

.faq-editorial-section {
    width: min(100% - 40px, 980px);
    margin: 0 auto;
    padding: 56px 0;
    scroll-margin-top: 170px;
}

.faq-editorial-section.faq-alt {
    width: 100%;
    max-width: none;
    padding-inline: max(20px, calc((100vw - 980px) /2));
    background: rgba(111, 143, 96, .07);
    border-block: 1px solid rgba(18, 56, 24, .1);
}

.faq-section-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.faq-section-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--green-dark);
    color: white;
}

.faq-section-icon svg {
    width: 26px;
    height: 26px;
}

.faq-section-heading h2 {
    margin: 4px 0 0;
    color: var(--green-dark);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.faq-accordion-list {
    display: grid;
    gap: 12px;
}

.faq-accordion-list details {
    border: 1px solid rgba(18, 56, 24, .17);
    border-radius: 18px;
    background: var(--cream-light);
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(18, 56, 24, .04);
}

.faq-accordion-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    cursor: pointer;
    color: var(--green-dark);
    font-family: Georgia, serif;
    font-size: 1.08rem;
    font-weight: 800;
    list-style: none;
}

.faq-accordion-list summary::-webkit-details-marker {
    display: none;
}

.faq-accordion-list summary svg {
    width: 20px;
    transition: transform .2s ease;
}

.faq-accordion-list details[open] summary {
    background: rgba(111, 143, 96, .11);
}

.faq-accordion-list details[open] summary svg {
    transform: rotate(180deg);
}

.faq-accordion-list details > div {
    padding: 0 22px 22px;
    color: #405448;
    line-height: 1.7;
}

.faq-accordion-list details > div p {
    margin: 16px 0 0;
}

.faq-policy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    padding-top: 18px !important;
}

.faq-policy-links a {
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(111, 143, 96, .12);
    color: var(--green-dark);
    font-weight: 800;
    text-decoration: none;
}

.faq-contact-panel {
    width: min(100% - 40px, 980px);
    margin: 10px auto 70px;
    padding: 30px;
    display: grid;
    grid-template-columns: 58px 1fr auto;
    align-items: center;
    gap: 20px;
    border: 2px solid var(--green-dark);
    border-radius: 24px;
    background: var(--cream-light);
}

.faq-contact-panel > svg {
    width: 42px;
    height: 42px;
    color: var(--green);
}

.faq-contact-panel h2 {
    margin: 4px 0 6px;
    color: var(--green-dark);
}

.faq-contact-panel p {
    margin: 0;
    color: var(--muted);
}

@media (max-width: 1000px) {
    .collection-editorial-inner, .about-editorial-inner, .faq-editorial-inner, .about-setup-card {
        grid-template-columns: 1fr
    }

    .collection-editorial-mark, .about-hero-emblem, .faq-hero-mark {
        display: none
    }

    .collection-principles {
        grid-template-columns: 1fr
    }

    .collection-principles article {
        border-right: 0;
        border-bottom: 1px solid rgba(18, 56, 24, .13)
    }

    .collection-principles article:last-child {
        border-bottom: 0
    }

    .about-process-list {
        grid-template-columns: 1fr 1fr
    }

    .faq-category-nav {
        grid-template-columns: 1fr 1fr 1fr
    }
}

@media (max-width: 720px) {
    .collection-editorial-hero, .about-editorial-hero, .faq-editorial-hero {
        padding: 42px 14px 30px
    }

    .collection-editorial-inner, .about-editorial-inner, .faq-editorial-inner {
        padding: 30px 24px;
        border-radius: 24px
    }

    .collection-editorial-copy h1, .about-editorial-copy h1, .faq-editorial-inner h1 {
        font-size: clamp(2.35rem, 12vw, 3.5rem)
    }

    .collection-results-header, .about-story-grid, .about-setup-card, .faq-contact-panel {
        grid-template-columns: 1fr;
        display: grid
    }

    .collection-care-link {
        min-width: 0
    }

    .collection-plant-card {
        grid-template-columns: 66px minmax(0, 1fr)
    }

    .about-story-section, .about-values-section, .about-process-section, .about-setup-section {
        width: min(100% - 24px, 1180px);
        padding: 42px 0
    }

    .about-values-section {
        width: 100%;
        padding-inline: 12px
    }

    .about-story-grid {
        gap: 26px
    }

    .about-story-copy {
        padding-left: 18px
    }

    .about-value-grid, .about-process-list, .about-setup-points {
        grid-template-columns: 1fr
    }

    .faq-category-nav {
        grid-template-columns: 1fr 1fr
    }

    .faq-category-nav a {
        border-bottom: 1px solid rgba(18, 56, 24, .12)
    }

    .faq-editorial-section {
        width: min(100% - 24px, 980px);
        padding: 42px 0
    }

    .faq-editorial-section.faq-alt {
        width: 100%;
        padding-inline: 12px
    }

    .faq-contact-panel {
        width: min(100% - 24px, 980px);
        text-align: center
    }

    .faq-contact-panel > svg {
        margin: auto
    }
}

/* FAQ inline policy links */
.faq-inline-link {
    color: var(--green-dark);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: var(--green);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    transition:
    color 0.18s ease, text-decoration-color 0.18s ease;
}

.faq-inline-link:hover, .faq-inline-link:focus-visible {
    color: var(--green);
    text-decoration-color: var(--green-dark);
}

.faq-inline-link:focus-visible {
    outline: 3px solid rgba(126, 189, 172, 0.45);
    outline-offset: 4px;
    border-radius: 3px;
}

/* ============================================================
   REFINED SITE HEADER
   ============================================================ */
.header-shell {
    position: sticky;
    top: 0;
    z-index: 999;
    isolation: isolate;
    box-shadow:
    0 1px 0 rgba(18, 56, 24, 0.08), 0 10px 30px rgba(18, 56, 24, 0.08);
}

.site-header {
    position: relative;
    padding-block: 22px;
    border-bottom: 1px solid rgba(18, 56, 24, 0.08);
    background: rgba(247, 240, 229, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* Logo refinement */
.logo-wrap {
    flex: 0 0 auto;
    transition:
    transform 0.2s ease, opacity 0.2s ease;
}

.logo-wrap:hover {
    transform: translateY(-1px);
}

.logo-wrap:focus-visible {
    border-radius: 12px;
}

.brand-name {
    letter-spacing: -0.025em;
}

.tagline {
    color: var(--green);
}

/* Main navigation */
.main-nav {
    justify-content: center;
}

.main-nav > a, .nav-item > a, .nav-link {
    white-space: nowrap;
}

.main-nav > a::after, .nav-item > a::after, .nav-link::after {
    height: 2px;
    border-radius: 999px;
}

/* Navigation active states */
.main-nav > a.active, .nav-item > a.active, .submenu a.active {
    color: var(--green);
}

/* Dropdown panels */
.submenu {
    min-width: 270px;
    padding: 12px;
    border: 1px solid rgba(18, 56, 24, 0.14);
    border-left: 4px solid var(--green);
    border-radius: 0 20px 20px 0;
    background: rgba(255, 250, 241, 0.99);
    box-shadow:
    0 22px 55px rgba(18, 56, 24, 0.16), 0 2px 8px rgba(18, 56, 24, 0.06);
}

.submenu > a {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 12px;
}

.submenu > a > svg {
    width: 18px;
    height: 18px;
    color: var(--green);
}

.submenu > a:hover, .submenu > a:focus-visible {
    background: rgba(111, 143, 96, 0.13);
    color: var(--green-dark);
    text-decoration: none;
}

.submenu-divider {
    height: 1px;
    margin: 9px 8px;
    background: rgba(18, 56, 24, 0.14);
}

/* Etsy link now lives inside the Plants submenu */
.submenu .submenu-external {
    grid-template-columns: 22px minmax(0, 1fr) 17px;
    margin-top: 3px;
    border: 1px solid rgba(18, 56, 24, 0.13);
    background: rgba(111, 143, 96, 0.07);
}

.submenu-external span, .submenu-external strong, .submenu-external small {
    display: block;
    min-width: 0;
}

.submenu-external strong {
    color: var(--green-dark);
    font-size: 0.88rem;
    line-height: 1.3;
}

.submenu-external small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.7rem;
    line-height: 1.35;
}

.submenu-external > svg:last-child {
    width: 15px;
    height: 15px;
    color: var(--muted);
}

/* Header actions */
.header-actions {
    flex: 0 0 auto;
    gap: 12px;
}

.search-button {
    transition:
    transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.search-button:hover, .search-button:focus-visible {
    border-color: var(--green);
    background: white;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(18, 56, 24, 0.1);
}

/* Primary website shopping action */
.shop-button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 23px;
    border: 1px solid var(--green);
    border-radius: 999px;
    background: var(--green);
    color: white;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(18, 56, 24, 0.1);
    transition:
    transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.shop-button svg {
    width: 18px;
    height: 18px;
}

.shop-button:hover, .shop-button:focus-visible {
    border-color: var(--green-dark);
    background: var(--green-dark);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(18, 56, 24, 0.17);
}

/* Prevent the old Etsy CTA rules affecting the new button */
.header-actions .shop-button {
    width: auto;
}

/* Tablet and mobile navigation */
@media (max-width: 1100px) {
    .site-header {
        padding-block: 18px;
    }

    .main-nav {
        padding: 14px 18px;
        box-shadow: 0 16px 38px rgba(18, 56, 24, 0.1);
    }

    .submenu {
        padding: 8px 0 8px 12px;
        border-right: 0;
        border-top: 0;
        border-bottom: 0;
        background: rgba(232, 222, 201, 0.32);
    }

    .submenu > a {
        width: 100%;
        padding-inline: 12px;
    }

    .submenu .submenu-external {
        margin-right: 8px;
        background: rgba(255, 250, 241, 0.75);
    }

    .header-actions {
        justify-content: flex-end;
    }
}

@media (max-width: 650px) {
    .site-header {
        padding-block: 14px;
    }

    .header-actions {
        display: grid;
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 10px;
    }

    .shop-button {
        width: 100%;
        padding-inline: 17px;
    }

    .search-wrap {
        width: 46px;
    }
}

@media (max-width: 390px) {
    .shop-button span {
        font-size: 0.82rem;
    }

    .shop-button {
        padding-inline: 13px;
    }
}
/* ============================================================
   RESPONSIVE HEADER CORRECTION â€” TABLET AND MOBILE
   Keeps all compact-header controls on one row and prevents the
   header consuming excessive vertical space on smaller screens.
   ============================================================ */

@media (max-width: 1400px) {
    .site-header {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto auto;
        grid-template-rows: auto auto;
        align-items: center;
        column-gap: 10px;
        row-gap: 12px;
        padding: 14px 4%;
    }

    .logo-wrap {
        grid-column: 1;
        grid-row: 1;
        min-width: 0;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        grid-column: 3;
        grid-row: 1;
        align-self: center;
        justify-self: end;
    }

    .header-actions {
        display: inline-flex;
        grid-column: 2;
        grid-row: 1;
        width: auto;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
    }

    .header-actions .shop-button {
        display: none;
    }

    .header-account-link, .search-button, .mobile-menu-toggle {
        flex: 0 0 auto;
    }

    .search-wrap {
        width: auto;
    }

    .main-nav {
        display: none;
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        padding: 14px 18px;
        background: var(--cream-light);
        border: 1px solid #ddd5c8;
        border-radius: 22px;
        box-shadow: 0 16px 38px rgba(18, 56, 24, 0.1);
    }

    .main-nav.is-open {
        display: grid;
        gap: 6px;
    }

    .main-nav > a, .nav-link {
        width: 100%;
        justify-content: space-between;
        padding: 12px 0;
    }

    .nav-item {
        width: 100%;
    }

    .submenu {
        position: static;
        min-width: 0;
        width: 100%;
        margin-top: 6px;
        padding: 8px 0 8px 12px;
        border-right: 0;
        border-top: 0;
        border-bottom: 0;
        border-radius: 0 14px 14px 0;
        background: rgba(232, 222, 201, 0.32);
        box-shadow: none;
        display: none;
    }

    .nav-item.is-open .submenu, .nav-item.is-open:hover .submenu {
        display: block;
    }

    .has-submenu:hover .submenu {
        display: none;
    }

    .search-dropdown {
        right: 0;
        left: auto;
        width: min(420px, calc(100vw - 32px));
    }
}

@media (max-width: 850px) {
    .site-header {
        padding: 12px 4%;
        column-gap: 8px;
        row-gap: 10px;
    }

    .logo {
        width: 54px;
        height: 54px;
    }

    .logo-wrap {
        gap: 10px;
    }

    .brand-name {
        font-size: 26px;
    }

    .tagline {
        margin-top: 5px;
        font-size: 9px;
        letter-spacing: 1.55px;
    }

    .header-account-link, .search-button, .mobile-menu-toggle {
        width: 42px;
        height: 42px;
    }

    .header-actions {
        gap: 7px;
    }
}

@media (max-width: 560px) {
    .top-bar {
        min-height: 38px;
        padding: 8px 12px;
        font-size: 12px;
        line-height: 1.25;
    }

    .top-bar svg {
        width: 15px;
        height: 15px;
    }

    .site-header {
        grid-template-columns: minmax(0, 1fr) auto auto;
        padding: 11px 14px;
        column-gap: 6px;
    }

    .logo {
        width: 46px;
        height: 46px;
    }

    .logo-wrap {
        gap: 8px;
        overflow: hidden;
    }

    .logo-wrap > div {
        min-width: 0;
    }

    .brand-name {
        font-size: 21px;
        white-space: nowrap;
    }

    .tagline {
        font-size: 7.5px;
        letter-spacing: 1.25px;
        white-space: nowrap;
    }

    .header-account-link, .search-button, .mobile-menu-toggle {
        width: 38px;
        height: 38px;
    }

    .header-account-link svg, .search-button svg, .mobile-menu-toggle svg {
        width: 19px;
        height: 19px;
    }

    .header-actions {
        display: inline-flex;
        grid-template-columns: none;
        gap: 5px;
    }

    .search-dropdown {
        position: fixed;
        top: 104px;
        left: 12px;
        right: 12px;
        width: auto;
    }
}

@media (max-width: 390px) {
    .site-header {
        padding-inline: 10px;
        column-gap: 5px;
    }

    .logo {
        width: 42px;
        height: 42px;
    }

    .brand-name {
        font-size: 18.5px;
    }

    .tagline {
        font-size: 6.8px;
        letter-spacing: 1px;
    }

    .header-account-link, .search-button, .mobile-menu-toggle {
        width: 36px;
        height: 36px;
    }
}

@media (max-height: 500px) and(orientation: landscape) and(max-width: 1240px) {
    .header-shell {
        position: sticky;
    }

    .top-bar {
        display: none;
    }

    .site-header {
        grid-template-columns: minmax(0, 1fr) auto auto;
        grid-template-rows: auto auto;
        padding: 7px 3%;
        column-gap: 6px;
        row-gap: 7px;
    }

    .logo {
        width: 38px;
        height: 38px;
    }

    .logo-wrap {
        gap: 7px;
    }

    .brand-name {
        font-size: 19px;
    }

    .tagline {
        margin-top: 3px;
        font-size: 7px;
        letter-spacing: 1px;
    }

    .header-account-link, .search-button, .mobile-menu-toggle {
        width: 36px;
        height: 36px;
    }

    .header-actions {
        grid-column: 2;
        grid-row: 1;
        width: auto;
        gap: 5px;
    }

    .mobile-menu-toggle {
        grid-column: 3;
        grid-row: 1;
    }

    .main-nav {
        grid-column: 1 / -1;
        grid-row: 2;
        max-height: calc(100vh - 62px);
        overflow-y: auto;
        padding: 9px 14px;
        border-radius: 16px;
    }

    .search-dropdown {
        top: 58px;
    }
}
/* Customer-facing details exported from the Mac stock record. */

.shop-sale-details {
    display: grid;
    gap: 7px;
    margin-top: 12px;
    padding: 12px 14px;
    border: 1px solid var(--border-color, #d8dfce);
    border-radius: 14px;
    background: #f3f6ed;
    color: #315b35;
    font-size: 0.86rem;
    font-weight: 700;
}

.shop-sale-details span, .shop-listing-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.shop-sale-details svg, .shop-listing-note svg {
    width: 16px;
    min-width: 16px;
    margin-top: 1px;
}

.shop-listing-note {
    margin: 10px 0 0;
    padding: 11px 13px;
    border-left: 3px solid #c49a4a;
    border-radius: 0 12px 12px 0;
    background: #fff8e9;
    color: #5d470d;
    font-size: 0.86rem;
    line-height: 1.45;
}

.shop-listing-note span {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.plant-sale-details-card {
    background: linear-gradient(135deg, #f3f6ed, #fffaf1);
}

.plant-sale-details-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.plant-sale-details-heading > span {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 14px;
    background: #426c3f;
    color: #fff;
}

.plant-sale-details-heading svg {
    width: 22px;
}

.plant-sale-details-heading span + div > span {
    color: #6f9666;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.plant-sale-details-heading h2 {
    margin: 3px 0 0;
}

.plant-sale-details-grid {
    max-width: 720px;
}

.plant-accessory-recommendations {
    overflow: hidden;
}

.plant-accessory-heading {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 22px;
}

.plant-accessory-heading > span {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--green-dark);
    background: #e4eddf;
    flex: 0 0 auto;
}

.plant-accessory-heading svg {
    width: 22px;
    height: 22px;
}

.plant-accessory-heading small {
    color: var(--green);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.plant-accessory-heading h2 {
    margin: 3px 0 6px;
}

.plant-accessory-heading p {
    margin: 0;
    color: var(--muted);
}

.plant-accessory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
    gap: 14px;
}

.plant-accessory-card {
    border: 1px solid rgba(18, 56, 24, .14);
    background: rgba(255, 255, 255, .42);
    border-radius: 18px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.plant-accessory-type {
    color: var(--green);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.plant-accessory-card h3, .plant-accessory-card p {
    margin: 0;
}

.plant-accessory-card dl {
    margin: 2px 0;
    display: grid;
    gap: 6px;
}

.plant-accessory-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.plant-accessory-card dt {
    color: var(--muted);
}

.plant-accessory-card dd {
    margin: 0;
    font-weight: 700;
    color: var(--green-dark);
}

.plant-accessory-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 6px;
}

@media (max-width: 620px) {
    .plant-accessory-action {
        align-items: stretch;
        flex-direction:column
    }

    .plant-accessory-action .button {
        width: 100%
    }
}

.coming-accessory-note {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.45;
}

.plant-sale-listing-note {
    margin-top: 18px;
    padding: 16px 18px;
    border: 1px solid #ead28a;
    border-radius: 14px;
    background: #fff8e9;
    color: #5d470d;
}

.plant-sale-listing-note p {
    margin: 6px 0 0;
    line-height: 1.6;
}

.checkout-fulfilment-note {
    display: grid;
    gap: 0.35rem;
    margin: 0 0 1rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(111, 143, 96, 0.3);
    border-radius: 16px;
    background: rgba(232, 222, 201, 0.38);
    color: var(--ink, #1f261e);
}

.checkout-fulfilment-note strong {
    color: var(--forest, #123818);
}

/* ============================================================
   AUTHORITATIVE CUSTOMER SHELL
   Shared by every ordinary customer-facing page through app.js.
   ============================================================ */
.site-header .nav-link.active {
    color: var(--green);
}

.site-header .nav-link.active::after {
    width: 100%;
}

.header-basket-link {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 15px;
    border: 1px solid var(--green);
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(18, 56, 24, 0.1);
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.header-basket-link:hover, .header-basket-link:focus-visible {
    color: #fff;
    background: var(--green-dark);
    transform: translateY(-1px);
    box-shadow: 0 11px 22px rgba(18, 56, 24, 0.16);
}

.header-basket-link svg {
    width: 18px;
    height: 18px;
}

.header-basket-count {
    min-width: 22px;
    min-height: 22px;
    display: inline-grid;
    place-items: center;
    padding: 2px 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--green-dark);
    font-size: 0.72rem;
    line-height: 1;
}

.header-account-link.active {
    border-color: var(--green);
    background: rgba(111, 143, 96, 0.14);
}

.site-footer .footer-grid {
    grid-template-columns: minmax(250px, 1.45fr) repeat(4, minmax(120px, 0.8fr));
    gap: clamp(26px, 3vw, 50px);
}

.site-footer .social-links {
    margin-top: 20px;
}

.site-footer .social-links svg {
    width: 20px;
    height: 20px;
}

.site-footer .footer-etsy-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
    color: rgba(255, 250, 241, 0.72);
    font-size: 0.86rem;
    font-weight: 650;
    text-decoration: none;
}

.site-footer .footer-etsy-link i, .site-footer .footer-etsy-link svg {
    width: 15px;
    height: 15px;
    font-size: 0.95rem;
}

.site-footer .footer-etsy-link:hover, .site-footer .footer-etsy-link:focus-visible {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.site-footer .footer-bottom a {
    color: rgba(255, 250, 241, 0.78);
    text-decoration: none;
    font-weight: 700;
}

.site-footer .footer-bottom a:hover, .site-footer .footer-bottom a:focus-visible {
    color: #fff;
}

@media (max-width: 1180px) {
    .site-footer .footer-grid {
        grid-template-columns: minmax(260px, 1.3fr) repeat(2, 1fr);
    }

    .site-footer .footer-brand-column {
        grid-row: span 2;
    }
}

@media (max-width: 1240px) {
    .header-basket-link {
        min-height: 42px;
        padding: 8px 12px;
    }
}

@media (max-width: 720px) {
    .site-footer .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer .footer-brand-column {
        grid-column: 1 / -1;
        grid-row: auto;
    }
}

@media (max-width: 560px) {
    .header-basket-link {
        width: 38px;
        height: 38px;
        min-height: 38px;
        padding: 0;
        position: relative;
    }

    .header-basket-text {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    .header-basket-count {
        position: absolute;
        top: -7px;
        right: -6px;
        min-width: 18px;
        min-height: 18px;
        padding: 2px 4px;
        border: 1px solid var(--cream-light);
        font-size: 0.62rem;
    }
}

@media (max-width: 480px) {
    .site-footer .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Static, dependency-light error pages. Their HTML includes the complete
   customer shell so they remain useful even when scripts or PHP fail. */
.error-editorial-page {
    min-height: 66vh;
    display: grid;
    place-items: center;
    padding: clamp(64px, 9vw, 128px) 24px;
    background:
    radial-gradient(circle at 12% 18%, rgba(143, 176, 128, 0.2), transparent 34%), linear-gradient(145deg, #f9f3e7 0%, #f4eedf 100%);
}

.error-editorial-card {
    width: min(820px, 100%);
    padding: clamp(34px, 6vw, 72px);
    border: 1px solid rgba(18, 56, 24, 0.16);
    border-radius: 30px;
    background: rgba(255, 251, 243, 0.94);
    box-shadow: 0 24px 60px rgba(18, 56, 24, 0.1);
    text-align: center;
}

.error-editorial-code {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--green);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.error-editorial-card h1 {
    max-width: 700px;
    margin: 0 auto 16px;
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 0.98;
}

.error-editorial-card > p {
    max-width: 610px;
    margin: 0 auto;
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.18rem);
    line-height: 1.7;
}

.error-editorial-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.error-search-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    max-width: 590px;
    margin: 30px auto 0;
    padding: 8px;
    border: 1px solid rgba(18, 56, 24, 0.16);
    border-radius: 16px;
    background: #fff;
}

.error-search-form input {
    min-width: 0;
    border: 0;
    background: transparent;
    padding: 10px 12px;
}

.error-search-form button {
    white-space: nowrap;
}

@media (max-width: 560px) {
    .error-search-form {
        grid-template-columns: 1fr;
    }

    .error-search-form button {
        width: 100%;
    }

    .error-editorial-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .error-editorial-actions .button {
        width: 100%;
    }
}

/* Shared presentation for the deliberately limited safe plain-text formatter.
   Stored content remains plain text; only semantic output is styled here. */
:is(.safe-formatted-text, .accessory-rich-copy, .plant-description-copy, .care-guide-print-intro, .care-guide-print-details article, .care-guide-intro, .care-guide-info-panel, .care-guide-problem-card > div, .care-guide-faqs details > div, .care-guide-history) {
    color: inherit;
    line-height: 1.7
}

:is(.safe-formatted-text, .accessory-rich-copy, .plant-description-copy, .care-guide-print-intro, .care-guide-print-details article, .care-guide-intro, .care-guide-info-panel, .care-guide-problem-card > div, .care-guide-faqs details > div, .care-guide-history) > :first-child {
    margin-top: 0
}

:is(.safe-formatted-text, .accessory-rich-copy, .plant-description-copy, .care-guide-print-intro, .care-guide-print-details article, .care-guide-intro, .care-guide-info-panel, .care-guide-problem-card > div, .care-guide-faqs details > div, .care-guide-history) > :last-child {
    margin-bottom: 0
}

:is(.safe-formatted-text, .accessory-rich-copy, .plant-description-copy, .care-guide-print-intro, .care-guide-print-details article, .care-guide-intro, .care-guide-info-panel, .care-guide-problem-card > div, .care-guide-faqs details > div, .care-guide-history) p {
    margin: .75rem 0 1rem;
    line-height: 1.7
}

:is(.safe-formatted-text, .accessory-rich-copy, .plant-description-copy, .care-guide-print-intro, .care-guide-print-details article, .care-guide-intro, .care-guide-info-panel, .care-guide-problem-card > div, .care-guide-faqs details > div, .care-guide-history) h2 {
    margin: 1.55rem 0 .65rem;
    color: var(--green-dark);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.28rem, 2vw, 1.55rem);
    font-weight: 750;
    line-height: 1.2
}

:is(.safe-formatted-text, .accessory-rich-copy, .plant-description-copy, .care-guide-print-intro, .care-guide-print-details article, .care-guide-intro, .care-guide-info-panel, .care-guide-problem-card > div, .care-guide-faqs details > div, .care-guide-history) h3 {
    margin: 1.25rem 0 .55rem;
    color: var(--green-dark);
    font-size: clamp(1.05rem, 1.6vw, 1.18rem);
    font-weight: 800;
    line-height: 1.3
}

:is(.safe-formatted-text, .accessory-rich-copy, .plant-description-copy, .care-guide-print-intro, .care-guide-print-details article, .care-guide-intro, .care-guide-info-panel, .care-guide-problem-card > div, .care-guide-faqs details > div, .care-guide-history) ul {
    margin: .8rem 0 1.15rem;
    padding-left: 1.45rem
}

:is(.safe-formatted-text, .accessory-rich-copy, .plant-description-copy, .care-guide-print-intro, .care-guide-print-details article, .care-guide-intro, .care-guide-info-panel, .care-guide-problem-card > div, .care-guide-faqs details > div, .care-guide-history) li {
    margin: .38rem 0;
    padding-left: .15rem;
    line-height: 1.6
}

:is(.safe-formatted-text, .accessory-rich-copy, .plant-description-copy, .care-guide-print-intro, .care-guide-print-details article, .care-guide-intro, .care-guide-info-panel, .care-guide-problem-card > div, .care-guide-faqs details > div, .care-guide-history) li::marker {
    color: var(--green);
    font-size: 1.05em
}

:is(.safe-formatted-text, .accessory-rich-copy, .plant-description-copy, .care-guide-print-intro, .care-guide-print-details article, .care-guide-intro, .care-guide-info-panel, .care-guide-problem-card > div, .care-guide-faqs details > div, .care-guide-history) strong {
    color: var(--text);
    font-weight: 800
}

:is(.safe-formatted-text, .accessory-rich-copy, .plant-description-copy, .care-guide-print-intro, .care-guide-print-details article, .care-guide-intro, .care-guide-info-panel, .care-guide-problem-card > div, .care-guide-faqs details > div, .care-guide-history) a:not(.care-guide-inline-action) {
    color: var(--green-dark);
    font-weight: 750;
    text-decoration-line: underline;
    text-decoration-thickness: .12em;
    text-underline-offset: .2em
}

:is(.safe-formatted-text, .accessory-rich-copy, .plant-description-copy, .care-guide-print-intro, .care-guide-print-details article, .care-guide-intro, .care-guide-info-panel, .care-guide-problem-card > div, .care-guide-faqs details > div, .care-guide-history) a:not(.care-guide-inline-action):hover {
    text-decoration-thickness: .18em
}

:is(.safe-formatted-text, .accessory-rich-copy, .plant-description-copy, .care-guide-print-intro, .care-guide-print-details article, .care-guide-intro, .care-guide-info-panel, .care-guide-problem-card > div, .care-guide-faqs details > div, .care-guide-history) a:not(.care-guide-inline-action):focus-visible {
    outline: 3px solid var(--green-dark);
    outline-offset: 3px;
    border-radius: 3px
}

.plant-faq-list details > div :is(h2, h3) {
    color: var(--green-dark);
    line-height:1.25
}

.plant-faq-list details > div h2 {
    font-size:1.35rem
}

.plant-faq-list details > div h3 {
    font-size:1.12rem
}

.plant-faq-list details > div p {
    line-height:1.7
}

.plant-faq-list details > div ul {
    padding-left:1.45rem
}

.plant-faq-list details > div li {
    margin: .38rem 0;
    line-height:1.6
}

.plant-faq-list details > div li::marker {
    color:var(--green)
}

.plant-faq-list details > div strong {
    color:var(--text)
}

.plant-faq-list details > div a {
    color: var(--green-dark);
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset:.2em
}

.plant-faq-list details > div a:focus-visible {
    outline: 3px solid var(--green-dark);
    outline-offset: 3px
}
