:root {
    --primary-color: #1c6b42;
    --primary-light: #77a956;
    --primary-dark: #112d22;
    --secondary-color: #d45731;
    --accent-color: #e1aa2c;
    --ink-blue: #245f86;
    --success-color: #2f7c58;
    --warning-color: #b8771c;
    --error-color: #c53d36;
    --text-primary: #13231b;
    --text-secondary: #51645a;
    --bg-primary: #fbfcf7;
    --bg-secondary: #edf3e5;
    --bg-muted: #e2e9d9;
    --paper: #fffef8;
    --border-color: #cbd8c1;
    --line-dark: #183628;
    --shadow-sm: 4px 4px 0 rgba(17, 45, 34, 0.12);
    --shadow-md: 8px 8px 0 rgba(17, 45, 34, 0.14);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    color: var(--text-primary);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
    background-color: var(--bg-primary);
    background-image:
        linear-gradient(rgba(36, 95, 134, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(36, 95, 134, 0.06) 1px, transparent 1px);
    background-size: 32px 32px;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

.seed-shell,
.container {
    width: min(1240px, calc(100% - 36px));
    margin: 0 auto;
}

.btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border: 2px solid var(--line-dark);
    border-radius: 6px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 3px 3px 0 rgba(17, 45, 34, 0.18);
    transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.btn:hover {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0 rgba(17, 45, 34, 0.18);
}

.btn-primary,
.btn-shadow {
    background: var(--primary-color);
    color: #fff;
}

.btn-outline {
    background: var(--paper);
    color: var(--primary-dark);
}

.seed-overline,
.section-eyebrow,
.product-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    margin-bottom: 10px;
    padding: 3px 9px;
    border: 1px solid var(--line-dark);
    border-radius: 999px;
    background: #fff;
    color: var(--ink-blue);
    font-size: 0.82rem;
    font-weight: 800;
}

.seed-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--paper);
    border-bottom: 2px solid var(--line-dark);
}

.seed-header-strip {
    background: var(--primary-dark);
    color: #fff;
}

.seed-header-strip-inner {
    min-height: 32px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 16px;
    font-size: 0.82rem;
    white-space: nowrap;
}

.seed-header-strip a {
    color: #fff;
    text-decoration: none;
    font-weight: 800;
}

.seed-header-main-inner {
    min-height: 78px;
    display: grid;
    grid-template-columns: minmax(240px, auto) 1fr auto;
    align-items: stretch;
    gap: 0;
}

.seed-brand {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px 10px 0;
    border-right: 2px solid var(--line-dark);
    text-decoration: none;
}

.seed-brand-mark,
.seed-footer-brand img {
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    border: 2px solid var(--line-dark);
    border-radius: 6px;
    object-fit: cover;
    background: #fff;
}

.seed-brand-copy {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.seed-brand-copy strong {
    color: var(--primary-dark);
    font-size: 1.08rem;
    line-height: 1.15;
    overflow-wrap: anywhere;
}

.seed-brand-copy small {
    color: var(--text-secondary);
    font-size: 0.78rem;
    line-height: 1.2;
}

.seed-nav {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: stretch;
}

.seed-nav a {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-right: 1px solid var(--border-color);
    color: var(--text-primary);
    text-align: center;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 800;
}

.seed-nav a:hover {
    background: var(--bg-secondary);
    color: var(--primary-dark);
}

.seed-header-actions {
    display: grid;
    grid-template-columns: auto auto;
    align-items: stretch;
    border-left: 2px solid var(--line-dark);
}

.seed-phone,
.seed-cart {
    min-height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border: 0;
    border-right: 1px solid var(--border-color);
    background: var(--paper);
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
}

.seed-cart {
    border-right: 0;
    background: var(--primary-color);
    color: #fff;
}

.seed-cart .cart-count {
    min-width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--accent-color);
    color: var(--text-primary);
    font-size: 0.78rem;
}

.seed-ledger-page {
    background: rgba(251, 252, 247, 0.68);
}

.seed-workbench {
    padding: 34px 0 38px;
}

.seed-workbench-grid {
    display: grid;
    grid-template-columns: 138px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.seed-index-rail {
    position: sticky;
    top: 118px;
    display: grid;
    border: 2px solid var(--line-dark);
    background: var(--paper);
    box-shadow: var(--shadow-sm);
}

.seed-rail-code {
    display: block;
    padding: 16px 12px;
    border-bottom: 2px solid var(--line-dark);
    background: var(--secondary-color);
    color: #fff;
    font-weight: 900;
    text-align: center;
}

.seed-index-rail a {
    padding: 14px 12px;
    border-bottom: 1px solid var(--border-color);
    text-decoration: none;
    font-weight: 800;
}

.seed-index-rail a:last-child {
    border-bottom: 0;
}

.seed-index-rail a:hover {
    background: var(--bg-secondary);
}

.seed-ledger-main {
    border: 2px solid var(--line-dark);
    background: var(--paper);
    box-shadow: var(--shadow-md);
}

.seed-photo-strip {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-bottom: 2px solid var(--line-dark);
    background: var(--bg-muted);
}

.seed-photo-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seed-photo-strip span {
    position: absolute;
    left: 18px;
    bottom: 16px;
    padding: 5px 10px;
    border: 2px solid var(--line-dark);
    border-radius: 999px;
    background: var(--accent-color);
    color: var(--text-primary);
    font-weight: 900;
}

.seed-ledger-head {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
    gap: 22px;
    padding: 26px;
    border-bottom: 2px solid var(--line-dark);
}

.seed-ledger-head h1 {
    max-width: 760px;
    font-size: 42px;
    line-height: 1.08;
}

.seed-ledger-head > p {
    align-self: end;
    padding-left: 18px;
    border-left: 4px solid var(--accent-color);
    color: var(--text-secondary);
    font-size: 1.02rem;
}

.seed-action-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 18px 26px;
    border-bottom: 2px solid var(--line-dark);
    background: #f3f7ed;
}

.seed-action-note {
    margin-left: auto;
    color: var(--ink-blue);
    font-weight: 800;
}

.seed-matrix {
    display: grid;
}

.seed-matrix-row {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1.35fr 120px;
    min-height: 58px;
    border-bottom: 1px solid var(--border-color);
}

.seed-matrix-row:last-child {
    border-bottom: 0;
}

.seed-matrix-row > * {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-right: 1px solid var(--border-color);
    overflow-wrap: anywhere;
}

.seed-matrix-row > *:last-child {
    border-right: 0;
}

.seed-matrix-head {
    min-height: 42px;
    background: var(--primary-dark);
    color: #fff;
    font-size: 0.84rem;
    font-weight: 900;
    text-transform: uppercase;
}

.seed-matrix-row strong {
    color: var(--primary-dark);
}

.seed-matrix-row a {
    color: var(--ink-blue);
    font-weight: 900;
    text-decoration: none;
}

.seed-calendar {
    padding: 54px 0;
    background: #f4f7ee;
    border-top: 2px solid var(--line-dark);
    border-bottom: 2px solid var(--line-dark);
}

.seed-calendar-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 34px;
    align-items: start;
}

.seed-calendar-title h2,
.seed-catalog-head h2,
.seed-contact-grid h2,
.content-page h1 {
    font-size: 34px;
    line-height: 1.14;
    margin-bottom: 12px;
}

.seed-calendar-title p,
.seed-catalog-head p,
.seed-contact-grid p,
.page-lead {
    color: var(--text-secondary);
}

.seed-month-lines {
    list-style: none;
    counter-reset: month;
    border-top: 2px solid var(--line-dark);
    background: var(--paper);
}

.seed-month-lines li {
    counter-increment: month;
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 18px;
    padding: 18px 0;
    border-bottom: 2px solid var(--line-dark);
}

.seed-month-lines li::before {
    content: counter(month, decimal-leading-zero);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 14px;
    width: 38px;
    height: 38px;
    border: 2px solid var(--line-dark);
    background: var(--accent-color);
    font-weight: 900;
}

.seed-month-lines span {
    display: flex;
    align-items: center;
    color: var(--secondary-color);
    font-weight: 900;
}

.seed-month-lines p {
    display: flex;
    align-items: center;
    padding-right: 18px;
    color: var(--text-secondary);
}

.seed-ledger-catalog {
    padding: 62px 0;
}

.seed-catalog-head {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.5fr);
    gap: 24px;
    margin-bottom: 22px;
    align-items: end;
}

.catalog-ledger {
    border: 2px solid var(--line-dark);
    background: var(--paper);
    box-shadow: var(--shadow-sm);
}

.catalog-ledger-row {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr) 170px 130px 128px;
    align-items: center;
    min-height: 92px;
    border-bottom: 1px solid var(--border-color);
}

.catalog-ledger-row:last-child {
    border-bottom: 0;
}

.catalog-ledger-row > * {
    min-height: 100%;
    display: flex;
    align-items: center;
    padding: 12px;
    border-right: 1px solid var(--border-color);
}

.catalog-ledger-row > *:last-child {
    border-right: 0;
}

.catalog-thumb {
    padding: 8px;
    background: var(--bg-secondary);
}

.catalog-thumb img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border: 1px solid var(--line-dark);
}

.catalog-title-cell {
    color: var(--text-primary);
    font-weight: 900;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.catalog-title-cell:hover {
    color: var(--primary-color);
}

.catalog-type {
    color: var(--ink-blue);
    font-weight: 800;
}

.catalog-price {
    color: var(--secondary-color);
    font-size: 1.06rem;
}

.catalog-cart,
.btn-add-cart,
.product-btn,
.cart-button {
    min-height: 40px;
    justify-content: center;
    border: 0;
    background: var(--primary-color);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

.seed-request-sheet {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) minmax(260px, 0.8fr) auto;
    gap: 18px;
    align-items: center;
    padding: 20px;
    border: 2px dashed var(--line-dark);
    background: var(--paper);
    box-shadow: var(--shadow-sm);
}

.request-sheet-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 88px;
    border: 2px solid var(--line-dark);
    background: var(--secondary-color);
    color: #fff;
    text-align: center;
    font-weight: 900;
}

.seed-request-sheet h3 {
    margin-bottom: 8px;
    color: var(--primary-dark);
    font-size: 1.35rem;
}

.seed-request-sheet p {
    color: var(--text-secondary);
}

.seed-request-sheet dl {
    display: grid;
    gap: 8px;
}

.seed-request-sheet dl div {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
}

.seed-request-sheet dt {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid var(--line-dark);
    background: var(--accent-color);
    font-weight: 900;
}

.seed-request-sheet dd {
    color: var(--text-secondary);
}

.seed-contact-strip {
    padding: 42px 0;
    border-top: 2px solid var(--line-dark);
    border-bottom: 2px solid var(--line-dark);
    background: var(--primary-dark);
    color: #fff;
}

.seed-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.8fr) auto;
    gap: 24px;
    align-items: center;
}

.seed-contact-grid .seed-overline {
    background: var(--accent-color);
    color: var(--text-primary);
}

.seed-contact-grid p {
    color: rgba(255, 255, 255, 0.8);
}

.seed-contact-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.seed-contact-strip .btn-outline {
    background: #fff;
}

.section-header {
    max-width: 780px;
    margin: 0 auto 28px;
    text-align: center;
}

.section-header-left {
    margin-left: 0;
    text-align: left;
}

.section-header h2 {
    font-size: 34px;
    line-height: 1.14;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-secondary);
}

.content-page {
    padding: 48px 0 64px;
}

.page-lead {
    max-width: 860px;
    margin-bottom: 24px;
    font-size: 1.02rem;
}

.info-grid,
.contact-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.info-section {
    padding: 22px;
    border: 2px solid var(--line-dark);
    border-radius: 6px;
    background: var(--paper);
    box-shadow: var(--shadow-sm);
}

.info-section + .info-section,
.map-section,
.text-container .info-section {
    margin-top: 16px;
}

.info-section h2 {
    margin-bottom: 10px;
    color: var(--primary-dark);
    line-height: 1.2;
}

.info-section p,
.contact-list,
.copy-list {
    color: var(--text-secondary);
}

.copy-list,
.contact-list {
    margin-top: 10px;
    padding-left: 20px;
}

.copy-list li,
.contact-list li {
    margin-bottom: 8px;
    overflow-wrap: anywhere;
}

.contact-list a {
    color: var(--ink-blue);
    font-weight: 900;
    text-decoration: none;
}

.text-container {
    max-width: 980px;
}

.map-section iframe {
    width: 100%;
    max-width: 100%;
    border: 0;
}

.item-detailed {
    padding: 52px 0 68px;
}

.detailed-container {
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 480px) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.carousel-main {
    overflow: hidden;
    border: 2px solid var(--line-dark);
    border-radius: 6px;
    background: var(--bg-secondary);
    box-shadow: var(--shadow-sm);
}

.carousel-main img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.product-info {
    min-width: 0;
    padding: 24px;
    border: 2px solid var(--line-dark);
    border-radius: 6px;
    background: var(--paper);
    box-shadow: var(--shadow-sm);
}

.product-title {
    margin-bottom: 18px;
    font-size: 34px;
    line-height: 1.14;
    overflow-wrap: anywhere;
}

.price-section {
    margin-bottom: 18px;
    padding: 16px;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.price-current {
    color: var(--secondary-color);
    font-size: 28px;
    font-weight: 900;
}

.short-description {
    margin-bottom: 22px;
    color: var(--text-secondary);
    font-size: 1.02rem;
}

.buttons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.buttons-row .btn-add-cart {
    min-width: 210px;
    padding: 10px 16px;
    border-radius: 6px;
}

.related-products {
    padding: 48px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}

.seed-product-card {
    overflow: hidden;
    border: 2px solid var(--line-dark);
    border-radius: 6px;
    background: var(--paper);
    box-shadow: var(--shadow-sm);
}

.seed-product-image {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--bg-secondary);
    text-decoration: none;
}

.seed-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seed-product-image span {
    position: absolute;
    left: 10px;
    top: 10px;
    max-width: calc(100% - 20px);
    padding: 4px 8px;
    border: 1px solid var(--line-dark);
    border-radius: 999px;
    background: var(--paper);
    color: var(--primary-dark);
    font-size: 0.82rem;
    font-weight: 800;
}

.seed-product-body {
    display: grid;
    gap: 12px;
    padding: 16px;
}

.seed-product-title {
    min-height: 48px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 900;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.seed-product-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.seed-product-row strong {
    color: var(--secondary-color);
}

.seed-product-cart {
    min-height: 40px;
    padding: 9px 12px;
    border-radius: 6px;
}

.seed-footer {
    background: #101f18;
    color: #fff;
}

.seed-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(210px, 0.8fr) minmax(220px, 0.8fr);
    gap: 28px;
    padding: 36px 0;
}

.seed-footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.seed-footer-brand h3 {
    margin-bottom: 8px;
}

.seed-footer-brand p,
.seed-footer-contact span {
    color: rgba(255, 255, 255, 0.72);
}

.seed-footer-links,
.seed-footer-contact {
    display: grid;
    align-content: start;
    gap: 8px;
}

.seed-footer-links a,
.seed-footer-contact a {
    color: #fff;
    text-decoration: none;
}

.seed-footer-links a:hover,
.seed-footer-contact a:hover {
    color: var(--accent-color);
}

.seed-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding: 14px 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
}

@media (max-width: 1100px) {
    .seed-header-main-inner {
        grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1fr);
    }

    .seed-header-actions {
        grid-column: 1 / -1;
        border-left: 0;
        border-top: 2px solid var(--line-dark);
        grid-template-columns: 1fr 1fr;
    }

    .seed-workbench-grid {
        grid-template-columns: 1fr;
    }

    .seed-index-rail {
        position: static;
        grid-template-columns: auto repeat(4, minmax(0, 1fr));
    }

    .seed-rail-code,
    .seed-index-rail a {
        border-bottom: 0;
        border-right: 1px solid var(--border-color);
    }

    .seed-ledger-head,
    .seed-calendar-grid,
    .seed-catalog-head,
    .seed-contact-grid {
        grid-template-columns: 1fr;
    }

    .seed-ledger-head > p {
        padding-left: 0;
        border-left: 0;
    }

    .seed-action-note {
        width: 100%;
        margin-left: 0;
    }

    .seed-request-sheet {
        grid-template-columns: 120px minmax(0, 1fr);
    }

    .seed-request-sheet dl,
    .seed-request-sheet .btn {
        grid-column: 1 / -1;
    }

    .catalog-ledger-row {
        grid-template-columns: 86px minmax(0, 1fr) 140px;
    }

    .catalog-type,
    .catalog-price,
    .catalog-cart {
        border-top: 1px solid var(--border-color);
    }

    .catalog-type {
        grid-column: 1 / 2;
    }

    .catalog-price {
        grid-column: 2 / 3;
    }

    .catalog-cart {
        grid-column: 3 / 4;
    }
}

@media (max-width: 760px) {
    .seed-shell,
    .container,
    .detailed-container {
        width: min(100% - 28px, 1240px);
    }

    .seed-header-strip-inner {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 6px 0;
        white-space: normal;
    }

    .seed-header-main-inner {
        grid-template-columns: 1fr;
    }

    .seed-brand {
        border-right: 0;
        border-bottom: 2px solid var(--line-dark);
        padding-right: 0;
    }

    .seed-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-bottom: 2px solid var(--line-dark);
    }

    .seed-nav a {
        min-height: 42px;
        border-bottom: 1px solid var(--border-color);
    }

    .seed-workbench {
        padding: 22px 0 30px;
    }

    .seed-index-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .seed-rail-code {
        grid-column: 1 / -1;
    }

    .seed-index-rail a {
        text-align: center;
    }

    .seed-photo-strip {
        height: 170px;
    }

    .seed-ledger-head {
        padding: 20px;
    }

    .seed-ledger-head h1 {
        font-size: 30px;
    }

    .seed-action-row {
        padding: 16px 20px;
    }

    .seed-action-row .btn {
        width: 100%;
    }

    .seed-matrix-head {
        display: none;
    }

    .seed-matrix-row {
        grid-template-columns: 1fr;
        padding: 12px 0;
    }

    .seed-matrix-row > * {
        min-height: 0;
        border-right: 0;
        padding: 5px 20px;
    }

    .seed-calendar,
    .seed-ledger-catalog {
        padding: 40px 0;
    }

    .seed-calendar-title h2,
    .seed-catalog-head h2,
    .seed-contact-grid h2,
    .content-page h1,
    .section-header h2,
    .product-title {
        font-size: 28px;
    }

    .seed-month-lines li {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 14px;
    }

    .seed-month-lines li::before {
        margin-left: 0;
    }

    .seed-month-lines p {
        padding-right: 0;
    }

    .seed-request-sheet,
    .info-grid,
    .contact-layout,
    .detailed-container,
    .seed-footer-grid {
        grid-template-columns: 1fr;
    }

    .request-sheet-mark {
        min-height: 56px;
    }

    .catalog-ledger-row {
        grid-template-columns: 76px minmax(0, 1fr);
    }

    .catalog-thumb {
        grid-row: span 4;
        align-self: stretch;
    }

    .catalog-thumb img {
        width: 58px;
        height: 58px;
    }

    .catalog-title-cell,
    .catalog-type,
    .catalog-price,
    .catalog-cart {
        grid-column: 2 / 3;
        border-top: 1px solid var(--border-color);
    }

    .catalog-title-cell {
        border-top: 0;
    }

    .catalog-cart {
        width: 100%;
    }

    .seed-contact-actions {
        justify-content: stretch;
    }

    .seed-contact-actions .btn,
    .buttons-row .btn,
    .buttons-row .btn-add-cart,
    .seed-product-cart {
        width: 100%;
    }

    .seed-footer-brand {
        flex-direction: column;
    }
}

@media (max-width: 420px) {
    .seed-brand-copy strong {
        font-size: 1rem;
    }

    .seed-brand-copy small {
        font-size: 0.76rem;
    }

    .seed-header-actions {
        grid-template-columns: 1fr;
    }
}

/* Storefront refresh for seedsadmag.ru */
:root {
    --primary-color: #236747;
    --primary-light: #dfeedd;
    --primary-dark: #173628;
    --secondary-color: #b95b36;
    --accent-color: #e9b93f;
    --ink-blue: #245f86;
    --success-color: #2f7c58;
    --warning-color: #b8771c;
    --error-color: #c53d36;
    --text-primary: #16251d;
    --text-secondary: #5f6f66;
    --bg-primary: #f7faf1;
    --bg-secondary: #eef5e8;
    --bg-muted: #e4edda;
    --paper: #ffffff;
    --border-color: #dce6d4;
    --line-dark: #173628;
    --shadow-sm: 0 10px 28px rgba(23, 54, 40, 0.08);
    --shadow-md: 0 18px 42px rgba(23, 54, 40, 0.12);
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.seed-shell,
.container {
    width: min(1220px, calc(100% - 40px));
}

.btn,
.btn-add-cart,
.catalog-cart,
.product-btn,
.cart-button,
.packet-cart,
.seed-product-cart,
.clear-cart,
.order-btn,
.close-btn {
    min-height: 42px;
    border: 0;
    border-radius: 8px;
    box-shadow: none;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease, color 0.16s ease;
}

.btn:hover,
.btn-add-cart:hover,
.catalog-cart:hover,
.product-btn:hover,
.cart-button:hover,
.packet-cart:hover,
.seed-product-cart:hover,
.clear-cart:hover,
.order-btn:hover,
.close-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(23, 54, 40, 0.14);
}

.btn-primary,
.btn-shadow,
.btn-add-cart,
.catalog-cart,
.product-btn,
.cart-button,
.packet-cart,
.seed-product-cart,
.order-btn {
    background: var(--primary-color);
    color: #fff;
}

.btn-primary:hover,
.btn-shadow:hover,
.btn-add-cart:hover,
.catalog-cart:hover,
.product-btn:hover,
.cart-button:hover,
.packet-cart:hover,
.seed-product-cart:hover,
.order-btn:hover {
    background: #1d573c;
}

.btn-outline,
.clear-cart,
.close-btn {
    border: 1px solid rgba(35, 103, 71, 0.2);
    background: #fff;
    color: var(--primary-dark);
}

.seed-header {
    border-bottom: 1px solid rgba(23, 54, 40, 0.12);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 30px rgba(23, 54, 40, 0.08);
    backdrop-filter: blur(16px);
}

.seed-header-strip {
    background: var(--primary-dark);
}

.seed-header-strip-inner {
    min-height: 34px;
    font-size: 0.83rem;
}

.seed-header-strip span,
.seed-header-strip a {
    overflow: hidden;
    text-overflow: ellipsis;
}

.seed-header-main-inner {
    min-height: 74px;
    grid-template-columns: minmax(230px, auto) minmax(420px, 1fr) auto;
    gap: 18px;
    align-items: center;
}

.seed-brand {
    gap: 12px;
    padding: 9px 0;
    border-right: 0;
}

.seed-brand-mark,
.seed-footer-brand img {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(23, 54, 40, 0.12);
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(23, 54, 40, 0.08);
}

.seed-brand-copy strong {
    font-size: 1.08rem;
}

.seed-brand-copy small {
    color: var(--text-secondary);
}

.seed-nav {
    display: flex;
    min-width: 0;
    justify-content: center;
    gap: 6px;
}

.seed-nav a {
    min-height: 40px;
    padding: 9px 12px;
    border: 0;
    border-radius: 8px;
    color: #2f4437;
    font-size: 0.92rem;
}

.seed-nav a:hover {
    background: var(--bg-secondary);
    color: var(--primary-dark);
}

.seed-header-actions {
    display: flex;
    gap: 8px;
    border-left: 0;
}

.seed-phone,
.seed-cart {
    min-height: 42px;
    padding: 10px 14px;
    border: 0;
    border-radius: 8px;
}

.seed-phone {
    background: var(--bg-secondary);
}

.seed-cart {
    background: var(--primary-color);
    color: #fff;
}

.seed-cart .cart-count {
    background: var(--accent-color);
    color: var(--primary-dark);
}

.packet-page {
    overflow: hidden;
    background:
        linear-gradient(180deg, #f7faf1 0%, #ffffff 45%, #f3f8ed 100%);
}

.packet-hero {
    position: relative;
    padding: 56px 0 44px;
    background:
        linear-gradient(120deg, rgba(223, 238, 221, 0.72), rgba(255, 255, 255, 0.78) 52%, rgba(233, 185, 63, 0.16));
}

.packet-hero::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 1px;
    background: rgba(23, 54, 40, 0.1);
}

.packet-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    gap: 34px;
    align-items: center;
}

.packet-copy {
    min-width: 0;
    max-width: 640px;
}

.packet-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-bottom: 16px;
    padding: 6px 11px;
    border: 1px solid rgba(35, 103, 71, 0.16);
    border-radius: 999px;
    background: #fff;
    color: var(--secondary-color);
    font-size: 0.86rem;
    font-weight: 900;
}

.packet-copy h1 {
    max-width: 660px;
    margin: 0 0 18px;
    color: var(--primary-dark);
    font-size: 3.35rem;
    line-height: 1.04;
}

.packet-copy > p:not(.packet-kicker) {
    max-width: 560px;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.packet-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.packet-photo-card {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    border: 1px solid rgba(23, 54, 40, 0.14);
    border-radius: 8px;
    background: #dde9d1;
    box-shadow: var(--shadow-md);
}

.packet-photo-card img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
}

.packet-photo-card::after {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 6px;
    pointer-events: none;
}

.packet-photo-note {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 1;
    display: grid;
    min-width: 150px;
    gap: 2px;
    padding: 14px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 34px rgba(23, 54, 40, 0.18);
}

.packet-photo-note strong {
    color: var(--primary-color);
    font-size: 2rem;
    line-height: 1;
}

.packet-photo-note span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 700;
}

.packet-shop {
    padding: 62px 0 70px;
    background: #fff;
}

.packet-shop-grid {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.packet-filter {
    position: sticky;
    top: 126px;
    display: grid;
    gap: 20px;
    padding: 18px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #f8fbf4;
    box-shadow: var(--shadow-sm);
}

.packet-filter h2,
.packet-calendar h3 {
    color: var(--primary-dark);
    font-size: 1.08rem;
    line-height: 1.2;
}

.packet-filter-list {
    display: grid;
    gap: 8px;
}

.packet-filter-list a {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid rgba(35, 103, 71, 0.13);
    border-radius: 8px;
    background: #fff;
    color: var(--text-primary);
    text-decoration: none;
}

.packet-filter-list a:hover {
    border-color: rgba(35, 103, 71, 0.34);
    box-shadow: 0 10px 22px rgba(23, 54, 40, 0.08);
}

.packet-filter-list span {
    min-width: 0;
    overflow-wrap: anywhere;
    font-weight: 800;
}

.packet-filter-list strong {
    min-width: 30px;
    padding: 3px 7px;
    border-radius: 999px;
    background: var(--primary-light);
    color: var(--primary-dark);
    text-align: center;
    font-size: 0.82rem;
}

.packet-calendar {
    display: grid;
    gap: 10px;
    padding-top: 18px;
    border-top: 1px solid var(--border-color);
}

.packet-calendar p {
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.packet-calendar b {
    color: var(--secondary-color);
}

.packet-products {
    min-width: 0;
}

.packet-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
    gap: 24px;
    align-items: end;
    margin-bottom: 22px;
}

.packet-toolbar h2 {
    color: var(--primary-dark);
    font-size: 2.15rem;
    line-height: 1.12;
}

.packet-toolbar > p {
    color: var(--text-secondary);
}

.packet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(208px, 1fr));
    gap: 16px;
}

.seed-packet-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(23, 54, 40, 0.07);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.seed-packet-card:hover {
    transform: translateY(-3px);
    border-color: rgba(35, 103, 71, 0.32);
    box-shadow: 0 18px 34px rgba(23, 54, 40, 0.12);
}

.seed-packet-image {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 5;
    padding: 12px;
    background:
        linear-gradient(180deg, #f6faf1, #edf4e4);
    text-decoration: none;
}

.seed-packet-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 14px rgba(23, 54, 40, 0.14));
}

.seed-packet-label {
    display: grid;
    gap: 8px;
    padding: 14px 14px 12px;
}

.seed-packet-label span {
    width: fit-content;
    max-width: 100%;
    padding: 4px 8px;
    overflow-wrap: anywhere;
    border-radius: 999px;
    background: #edf4e4;
    color: var(--primary-dark);
    font-size: 0.78rem;
    font-weight: 900;
}

.seed-packet-label a {
    min-height: 48px;
    color: var(--text-primary);
    font-size: 0.98rem;
    font-weight: 900;
    line-height: 1.25;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.seed-packet-label a:hover {
    color: var(--primary-color);
}

.seed-packet-bottom {
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(94px, auto);
    gap: 10px;
    align-items: center;
    margin-top: auto;
    padding: 0 14px 14px;
}

.seed-packet-bottom strong {
    color: var(--secondary-color);
    font-size: 1.08rem;
    white-space: nowrap;
}

.packet-cart {
    min-height: 38px;
    padding: 8px 11px;
    cursor: pointer;
}

.packet-empty {
    display: grid;
    gap: 12px;
    max-width: 760px;
    padding: 28px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #f8fbf4;
}

.packet-help {
    padding: 46px 0;
    background: var(--primary-dark);
    color: #fff;
}

.packet-help-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(260px, 0.65fr) auto;
    gap: 26px;
    align-items: center;
}

.packet-help .packet-kicker {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.12);
    color: var(--accent-color);
}

.packet-help h2 {
    font-size: 2rem;
    line-height: 1.14;
}

.packet-help p {
    color: rgba(255, 255, 255, 0.78);
}

.packet-help-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.packet-help .btn-outline {
    background: #fff;
}

.seed-footer {
    background: #12261c;
}

.seed-footer-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.75fr) minmax(230px, 0.8fr);
    gap: 30px;
    padding: 38px 0;
}

.seed-footer-links a,
.seed-footer-contact a {
    width: fit-content;
}

.item-detailed {
    padding: 52px 0 72px;
    background: linear-gradient(180deg, #f7faf1, #fff);
}

.carousel-main,
.product-info,
.seed-product-card,
.info-section {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.carousel-main img {
    object-fit: contain;
    padding: 18px;
    background: #f6faf1;
}

.price-section {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #f8fbf4;
}

.price-current {
    color: var(--secondary-color);
}

.modal {
    background: rgba(14, 29, 21, 0.48);
}

.cart-content {
    border: 0;
    border-radius: 8px;
    box-shadow: 0 24px 80px rgba(14, 29, 21, 0.28);
}

@media (max-width: 1120px) {
    .seed-header-main-inner {
        grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1fr);
        gap: 10px 16px;
        padding: 10px 0;
    }

    .seed-nav {
        justify-content: flex-end;
    }

    .seed-header-actions {
        grid-column: 1 / -1;
        justify-content: stretch;
    }

    .seed-phone,
    .seed-cart {
        flex: 1 1 0;
    }

    .packet-hero-grid {
        grid-template-columns: 1fr;
    }

    .packet-copy {
        max-width: 780px;
    }

    .packet-photo-card {
        min-height: 330px;
    }

    .packet-photo-card img {
        min-height: 330px;
    }

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

    .packet-filter {
        position: static;
        grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
    }

    .packet-filter h2 {
        grid-column: 1 / -1;
    }

    .packet-calendar {
        padding-top: 0;
        padding-left: 18px;
        border-top: 0;
        border-left: 1px solid var(--border-color);
    }

    .packet-help-grid {
        grid-template-columns: 1fr;
    }

    .packet-help-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .seed-shell,
    .container,
    .detailed-container {
        width: min(100% - 28px, 1220px);
    }

    .seed-header {
        position: relative;
    }

    .seed-header-strip-inner {
        grid-template-columns: 1fr;
        min-height: 0;
        gap: 3px;
        padding: 7px 0;
        white-space: normal;
    }

    .seed-header-main-inner {
        grid-template-columns: 1fr;
        gap: 10px;
        min-height: 0;
    }

    .seed-brand {
        padding: 8px 0 2px;
        border-bottom: 0;
    }

    .seed-nav {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
        border-bottom: 0;
    }

    .seed-nav a {
        min-height: 38px;
        padding: 8px 6px;
        background: var(--bg-secondary);
        font-size: 0.82rem;
    }

    .seed-header-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-top: 0;
    }

    .packet-hero {
        padding: 32px 0 30px;
    }

    .packet-copy h1 {
        font-size: 2.28rem;
    }

    .packet-copy > p:not(.packet-kicker) {
        font-size: 1rem;
    }

    .packet-hero-actions .btn {
        flex: 1 1 160px;
        padding: 9px 9px;
        font-size: 0.94rem;
    }

    .packet-photo-card,
    .packet-photo-card img {
        min-height: 250px;
    }

    .packet-photo-note {
        left: 14px;
        right: 14px;
        bottom: 14px;
        min-width: 0;
        grid-template-columns: auto 1fr;
        align-items: end;
    }

    .packet-shop {
        padding: 38px 0 48px;
    }

    .packet-filter {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 14px;
    }

    .packet-calendar {
        padding-left: 0;
        padding-top: 16px;
        border-left: 0;
        border-top: 1px solid var(--border-color);
    }

    .packet-toolbar {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .packet-toolbar h2 {
        font-size: 1.72rem;
    }

    .packet-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .seed-packet-image {
        padding: 8px;
    }

    .seed-packet-label {
        padding: 11px 10px 9px;
    }

    .seed-packet-label a {
        min-height: 58px;
        font-size: 0.88rem;
    }

    .seed-packet-bottom {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 0 10px 11px;
    }

    .packet-cart {
        width: 100%;
        min-height: 36px;
        font-size: 0.88rem;
    }

    .packet-help {
        padding: 36px 0;
    }

    .packet-help h2 {
        font-size: 1.55rem;
    }

    .packet-help-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

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

@media (max-width: 430px) {
    .seed-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .seed-header-actions {
        grid-template-columns: 1fr;
    }

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

    .seed-packet-bottom strong {
        font-size: 1rem;
    }
}

@media (min-width: 901px) and (max-width: 1120px) {
    .packet-hero-grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1fr);
    }

    .packet-copy h1 {
        font-size: 2.85rem;
    }

    .packet-photo-card,
    .packet-photo-card img {
        min-height: 330px;
    }
}

@media (min-width: 761px) and (max-width: 900px) {
    .packet-hero {
        padding: 34px 0 32px;
    }

    .packet-hero-grid {
        gap: 24px;
    }

    .packet-copy h1 {
        font-size: 2.55rem;
    }

    .packet-copy > p:not(.packet-kicker) {
        max-width: 650px;
        font-size: 1rem;
    }

    .packet-hero-actions {
        margin-top: 22px;
    }

    .packet-photo-card,
    .packet-photo-card img {
        min-height: 260px;
    }
}

@media (max-width: 760px) {
    .seed-header-strip-inner {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 34px;
        padding: 5px 0;
    }

    .seed-header-strip-inner > span {
        display: none;
    }

    .seed-header-main-inner {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px 10px;
        padding: 10px 0;
    }

    .seed-brand {
        grid-column: 1 / 2;
        grid-row: 1;
        min-width: 0;
        padding: 0;
    }

    .seed-brand-mark {
        width: 48px;
        height: 48px;
    }

    .seed-header-actions {
        grid-column: 2 / 3;
        grid-row: 1;
        display: flex;
        align-self: center;
    }

    .seed-phone {
        display: none;
    }

    .seed-cart {
        min-width: 118px;
        min-height: 44px;
        padding: 9px 11px;
    }

    .seed-nav {
        grid-column: 1 / -1;
        grid-row: 2;
        display: flex;
        gap: 6px;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: none;
    }

    .seed-nav::-webkit-scrollbar {
        display: none;
    }

    .seed-nav a {
        flex: 0 0 auto;
        min-width: 86px;
        min-height: 36px;
        padding: 8px 10px;
        white-space: nowrap;
    }

    .packet-hero {
        padding: 28px 0 28px;
    }

    .packet-copy h1 {
        font-size: 2.05rem;
    }

    .packet-hero-actions {
        margin-top: 22px;
    }

    .packet-photo-card,
    .packet-photo-card img {
        min-height: 210px;
    }
}

@media (max-width: 380px) {
    .seed-brand-copy strong {
        font-size: 0.96rem;
    }

    .seed-brand-copy small {
        font-size: 0.72rem;
    }

    .seed-cart {
        min-width: 108px;
    }

    .packet-copy h1 {
        font-size: 1.94rem;
    }
}

@media (max-width: 760px) {
    .seed-nav {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        overflow: visible;
        padding-bottom: 0;
    }

    .seed-nav a {
        min-width: 0;
        white-space: normal;
    }
}

@media (max-width: 380px) {
    .seed-nav {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 340px) {
    .seed-shell,
    .container,
    .detailed-container {
        width: min(100% - 22px, 1220px);
    }

    .seed-brand-mark {
        width: 44px;
        height: 44px;
    }

    .seed-cart {
        min-width: 98px;
        padding: 8px 9px;
    }

    .packet-hero {
        padding: 22px 0 22px;
    }

    .packet-kicker {
        margin-bottom: 12px;
    }

    .packet-copy h1 {
        font-size: 1.76rem;
    }

    .packet-copy > p:not(.packet-kicker) {
        font-size: 0.94rem;
    }

    .packet-hero-actions {
        gap: 8px;
        margin-top: 18px;
    }

    .packet-hero-actions .btn {
        min-height: 46px;
        padding: 9px 10px;
    }

    .packet-photo-card,
    .packet-photo-card img {
        min-height: 168px;
    }

    .packet-photo-note {
        padding: 10px 12px;
    }
}

/* Less boxed, more garden-store storefront */
body {
    background:
        linear-gradient(180deg, #fbfcf5 0%, #fff 42%, #f5f8ed 100%);
}

.seed-header {
    border-bottom: 1px solid rgba(23, 54, 40, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 24px rgba(23, 54, 40, 0.06);
}

.seed-brand-mark,
.seed-footer-brand img {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

.seed-nav {
    gap: 18px;
}

.seed-nav a {
    min-height: 34px;
    padding: 6px 0;
    border-radius: 0;
    background: transparent;
    box-shadow: inset 0 -2px 0 transparent;
}

.seed-nav a:hover {
    background: transparent;
    box-shadow: inset 0 -2px 0 var(--primary-color);
}

.seed-phone {
    background: transparent;
    color: var(--primary-dark);
}

.seed-cart,
.btn-primary,
.packet-cart,
.btn-add-cart,
.seed-product-cart,
.order-btn {
    border-radius: 4px;
}

.packet-page {
    background: #fff;
}

.packet-hero {
    min-height: 530px;
    display: grid;
    align-items: center;
    padding: 58px 0 52px;
    background:
        linear-gradient(90deg, rgba(250, 252, 244, 0.96) 0%, rgba(250, 252, 244, 0.9) 41%, rgba(250, 252, 244, 0.34) 62%, rgba(250, 252, 244, 0.1) 100%),
        url("../images/hero-seed-table.png") right center / auto 100% no-repeat,
        #f7faf1;
}

.packet-hero-grid {
    grid-template-columns: minmax(0, 680px);
    gap: 0;
}

.packet-copy {
    max-width: 680px;
}

.packet-copy h1 {
    max-width: 650px;
    font-size: 3.65rem;
    letter-spacing: 0;
}

.packet-copy > p:not(.packet-kicker) {
    max-width: 540px;
}

.packet-kicker {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: inset 0 -8px 0 rgba(233, 185, 63, 0.24);
    color: var(--secondary-color);
    padding: 2px 0;
}

.packet-photo-card {
    position: absolute;
    right: max(20px, calc((100vw - 1220px) / 2));
    bottom: 42px;
    min-height: 0;
    width: 210px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.packet-photo-card img,
.packet-photo-card::after {
    display: none;
}

.packet-photo-note {
    position: static;
    min-width: 0;
    padding: 0 0 0 18px;
    border-left: 4px solid var(--accent-color);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.packet-photo-note strong {
    font-size: 2.5rem;
}

.packet-photo-note span {
    color: var(--primary-dark);
}

.packet-shop {
    padding: 58px 0 74px;
    background: #fff;
}

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

.packet-filter {
    position: static;
    display: grid;
    grid-template-columns: minmax(170px, auto) minmax(0, 1fr);
    gap: 16px 26px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.packet-filter h2 {
    align-self: center;
    font-size: 1.2rem;
}

.packet-filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    align-items: center;
}

.packet-filter-list a {
    min-height: 0;
    padding: 0 0 7px;
    border: 0;
    border-bottom: 1px solid rgba(35, 103, 71, 0.22);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.packet-filter-list a:hover {
    border-color: var(--primary-color);
    box-shadow: none;
}

.packet-filter-list strong {
    background: transparent;
    color: var(--secondary-color);
}

.packet-calendar {
    grid-column: 1 / -1;
    grid-template-columns: auto repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 18px;
    padding: 18px 0 0;
    border-top: 1px solid rgba(35, 103, 71, 0.14);
}

.packet-calendar h3 {
    max-width: 170px;
}

.packet-toolbar {
    margin-bottom: 28px;
}

.packet-grid {
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 26px 22px;
}

.seed-packet-card {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.seed-packet-card:hover {
    border-color: transparent;
    box-shadow: none;
}

.seed-packet-image {
    aspect-ratio: 3 / 4;
    padding: 0;
    border-radius: 0;
    background:
        linear-gradient(180deg, rgba(238, 245, 232, 0.72), rgba(255, 255, 255, 0) 82%);
}

.seed-packet-image img {
    width: 92%;
    height: 92%;
    filter: drop-shadow(0 16px 18px rgba(23, 54, 40, 0.16));
    transition: transform 0.18s ease, filter 0.18s ease;
}

.seed-packet-card:nth-child(4n+1) .seed-packet-image img {
    transform: rotate(-1.1deg);
}

.seed-packet-card:nth-child(4n+2) .seed-packet-image img {
    transform: rotate(0.7deg);
}

.seed-packet-card:nth-child(4n+3) .seed-packet-image img {
    transform: rotate(-0.4deg);
}

.seed-packet-card:hover .seed-packet-image img {
    transform: translateY(-4px) rotate(0deg);
    filter: drop-shadow(0 22px 24px rgba(23, 54, 40, 0.2));
}

.seed-packet-label {
    padding: 12px 0 9px;
}

.seed-packet-label span {
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--secondary-color);
    font-size: 0.76rem;
}

.seed-packet-label a {
    min-height: 54px;
    font-size: 0.96rem;
}

.seed-packet-bottom {
    padding: 0;
    border-top: 1px solid rgba(35, 103, 71, 0.13);
    padding-top: 10px;
}

.packet-help {
    background:
        linear-gradient(90deg, rgba(18, 38, 28, 0.95), rgba(18, 38, 28, 0.82)),
        url("../images/hero-seed-table.png") center / cover no-repeat;
}

@media (min-width: 901px) and (max-width: 1120px) {
    .packet-hero {
        min-height: 500px;
        background:
            linear-gradient(90deg, rgba(250, 252, 244, 0.97) 0%, rgba(250, 252, 244, 0.92) 48%, rgba(250, 252, 244, 0.2) 100%),
            url("../images/hero-seed-table.png") right center / auto 100% no-repeat,
            #f7faf1;
    }

    .packet-hero-grid {
        grid-template-columns: minmax(0, 610px);
    }
}

@media (max-width: 900px) {
    .packet-hero {
        min-height: 0;
        background:
            linear-gradient(180deg, rgba(250, 252, 244, 0.96), rgba(250, 252, 244, 0.84)),
            url("../images/hero-seed-table.png") center bottom / 100% auto no-repeat,
            #f7faf1;
        padding-bottom: 260px;
    }

    .packet-photo-card {
        left: 20px;
        right: auto;
        bottom: 30px;
        width: 190px;
    }

    .packet-filter,
    .packet-calendar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .seed-nav {
        gap: 6px;
    }

    .seed-nav a {
        min-height: 34px;
        padding: 7px 8px;
        border-bottom: 1px solid rgba(35, 103, 71, 0.12);
        background: transparent;
        box-shadow: none;
    }

    .seed-nav a:hover {
        box-shadow: none;
    }

    .packet-hero {
        padding-bottom: 220px;
    }

    .packet-copy h1 {
        font-size: 2.22rem;
    }

    .packet-photo-card {
        position: static;
        width: fit-content;
        margin-top: 18px;
    }

    .packet-photo-note {
        padding: 0 0 0 14px;
    }
}

@media (min-width: 431px) and (max-width: 760px) {
    .packet-photo-card {
        width: 180px;
    }
}

@media (max-width: 760px) {
    .packet-grid {
        gap: 24px 16px;
    }

    .seed-packet-bottom {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 430px) {
    .packet-hero {
        padding-bottom: 190px;
        background-size: auto 235px;
    }

    .packet-copy h1 {
        font-size: 2rem;
    }

    .packet-photo-card {
        bottom: 22px;
        width: 170px;
    }
}

@media (max-width: 340px) {
    .packet-hero {
        padding-bottom: 170px;
        background-size: auto 210px;
    }

    .packet-copy h1 {
        font-size: 1.78rem;
    }
}

@media (max-width: 900px) {
    .packet-photo-card {
        position: static;
        width: fit-content;
        margin-top: 18px;
    }

    .packet-photo-note {
        padding: 0 0 0 14px;
    }
}

@media (max-width: 430px) {
    .packet-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .seed-packet-label a {
        min-height: 64px;
        font-size: 0.88rem;
    }
}

/* Top bar: light garden line instead of a hard rectangular slab */
.seed-header-strip {
    position: relative;
    background:
        linear-gradient(90deg, rgba(246, 250, 239, 0.92), rgba(255, 255, 255, 0.96) 42%, rgba(250, 246, 229, 0.74));
    color: var(--primary-dark);
}

.seed-header-strip::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(35, 103, 71, 0.18), transparent);
}

.seed-header-strip-inner {
    min-height: 36px;
    display: flex;
    grid-template-columns: none;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    color: var(--primary-dark);
    font-size: 0.84rem;
    white-space: nowrap;
}

.seed-header-strip-inner > span:first-child {
    position: relative;
    padding-left: 42px;
    color: #385143;
    font-weight: 800;
}

.seed-header-strip-inner > span:first-child::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent-color);
    box-shadow:
        14px -4px 0 rgba(35, 103, 71, 0.24),
        28px 3px 0 rgba(185, 91, 54, 0.34);
    transform: translateY(-50%);
}

.seed-header-strip-inner > a,
.seed-header-strip-inner > span:last-child {
    position: relative;
}

.seed-header-strip-inner > a::before,
.seed-header-strip-inner > span:last-child::before {
    content: "";
    position: absolute;
    left: -14px;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: rgba(35, 103, 71, 0.36);
    transform: translateY(-50%);
}

.seed-header-strip a {
    color: var(--primary-dark);
    font-weight: 900;
    text-decoration: none;
    text-decoration-line: underline;
    text-decoration-color: rgba(233, 185, 63, 0.72);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    box-shadow: none;
}

.seed-header-strip a:hover {
    text-decoration-color: var(--accent-color);
    box-shadow: none;
}

.seed-header-strip-inner > span:last-child {
    max-width: 42vw;
    overflow: hidden;
    color: #486255;
    text-overflow: ellipsis;
}

@media (max-width: 760px) {
    .seed-header-strip {
        background: linear-gradient(180deg, #f6faef, #fff);
    }

    .seed-header-strip::after {
        display: none;
    }

    .seed-header-strip-inner {
        width: fit-content;
        min-height: 0;
        margin: 0 auto;
        padding: 5px 16px 7px;
        border-radius: 0;
        background: var(--primary-dark);
        color: #fff;
        clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
        box-shadow: 0 10px 20px rgba(23, 54, 40, 0.12);
        font-size: 0.84rem;
    }

    .seed-header-strip-inner > span {
        display: none;
    }

    .seed-header-strip-inner > a::before {
        display: none;
    }

    .seed-header-strip a {
        color: #fff;
        text-decoration: none;
        box-shadow: none;
    }
}
