/* ============================================================
   SEEDHUB HOME
   COLOR SYSTEM + UNIFIED TYPOGRAPHY
============================================================ */

:root {
    --gold: #c6a715;
    --gold-light: #f5edb9;
    --gold-soft: #faf7df;
    --green: #24733b;
    --green-dark: #123b20;
    --green-deep: #0b2413;
    --green-light: #e9f2e5;
    --black: #111511;
    --text: #333a35;
    --muted: #737b75;
    --white: #ffffff;
    --cream: #f8f7f1;
    --border: #e5e7e1;
    --shadow: 0 18px 55px rgba(12, 35, 18, .10);
    --transition: .3s ease;

    /* ONE style for all sections */
    --font-sans: "Inter", Arial, sans-serif;
    --font-serif: "Playfair Display", Georgia, serif;
    --heading-color: #174d1c;
    --body-size: 14px;
    --body-line: 1.7;
    --h2-size: 32px;
    --h3-size: 15px;
    --small-size: 13px;
}


/* ============================================================
   RESET
============================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--black);
    font-family: var(--font-sans);
    font-size: var(--body-size);
    line-height: var(--body-line);
}

img {
    max-width: 100%;
    display: block;
}

button,
a {
    font-family: inherit;
}

a {
    text-decoration: none;
}

button {
    cursor: pointer;
}


/* ============================================================
   CONTAINER
============================================================ */

.seedhub-container {
    width: min(1240px, calc(100% - 40px));
    margin: auto;
}


/* ============================================================
   GLOBAL HEADING / TEXT RULES (all sections share these)
============================================================ */

/* Section titles (h2) — same everywhere */
.seedhub-section-title h2,
.seedhub-picks-title h2,
.seedhub-crop-header h2,
.seedhub-section-heading h2,
.seedhub-best-header h2,
.seedhub-offer-banners-header h2,
.seedhub-brands-header h2 {
    color: var(--heading-color);
    font-family: var(--font-serif);
    font-size: var(--h2-size);
    font-weight: 700;
    line-height: 1.15;
}

/* Section subtitles (p) — same everywhere */
.seedhub-section-title p,
.seedhub-picks-title p,
.seedhub-crop-header p,
.seedhub-section-heading p,
.seedhub-best-header p,
.seedhub-offer-banners-header p,
.seedhub-brands-header p {
    color: var(--muted);
    font-family: var(--font-sans);
    font-size: var(--body-size);
    font-weight: 400;
    line-height: var(--body-line);
}

/* Card / item titles (h3) — same everywhere */
.seedhub-pick-card h3,
.seedhub-crop-card h3,
.seedhub-category-card h3,
.seedhub-seed-card h3,
.seedhub-offer-banner-content h3 {
    font-family: var(--font-sans);
    font-weight: 700;
}

/* Small text / spans */
.seedhub-category-item span,
.seedhub-crop-card p,
.seedhub-category-card span,
.seedhub-brand,
.seedhub-brand-name {
    font-family: var(--font-sans);
}


/* ============================================================
   HERO
============================================================ */

.seedhub-hero {
    position: relative;
    height: 590px;
    overflow: hidden;
    background: var(--green-dark);
}

.seedhub-hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.seedhub-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease, visibility .8s ease;
}

.seedhub-hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.seedhub-hero-image {
    position: absolute;
    inset: 0;
}

.seedhub-hero-image picture {
    display: block;
    width: 100%;
    height: 100%;
}

.seedhub-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  
}

.seedhub-hero-slide.active .seedhub-hero-image img {
    transform: scale(1);
}

.seedhub-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(5, 20, 10, .92) 0%,
        rgba(5, 20, 10, .72) 42%,
        rgba(5, 20, 10, .18) 100%
    );
}

.seedhub-hero-content {
    position: relative;
    z-index: 2;
    width: 620px;
    padding-top: 175px;
    color: white;
}

.seedhub-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 13px;
    border: 1px solid rgba(198, 167, 21, .45);
    color: var(--gold);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    background: rgba(0, 0, 0, .18);
}

.seedhub-hero-content h1 {
    margin-top: 23px;
    font-family: var(--font-serif);
    font-size: clamp(52px, 6vw, 78px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2px;
    color: var(--white);
}

.seedhub-hero-content h1 span {
    display: block;
    color: var(--gold);
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.seedhub-hero-content p {
    max-width: 530px;
    margin-top: 25px;
    color: rgba(255, 255, 255, .76);
    font-family: var(--font-sans);
    font-size: var(--body-size);
    line-height: 1.8;
}

.seedhub-hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.seedhub-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 21px;
    border: none;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 800;
    transition: var(--transition);
}

.seedhub-btn-gold {
    color: var(--black);
    background: var(--gold);
}

.seedhub-btn-gold:hover {
    background: #dfc42a;
    transform: translateY(-2px);
}

.seedhub-btn-outline {
    color: white;
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .05);
}

.seedhub-btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.seedhub-slider-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(0, 0, 0, .22);
    transform: translateY(-50%);
    transition: var(--transition);
}

.seedhub-slider-arrow:hover {
    color: var(--black);
    border-color: var(--gold);
    background: var(--gold);
}

.seedhub-slider-arrow.prev { left: 25px; }
.seedhub-slider-arrow.next { right: 25px; }

.seedhub-slider-dots {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 30px;
    display: flex;
    gap: 7px;
    transform: translateX(-50%);
}

.seedhub-slider-dot {
    width: 28px;
    height: 3px;
    padding: 0;
    border: none;
    background: rgba(255, 255, 255, .35);
}

.seedhub-slider-dot.active {
    background: var(--gold);
}

/* ============================================================
   HERO - MOBILE RESPONSIVE
============================================================ */
@media (max-width: 992px) {
    .seedhub-hero {
        height: 560px;
    }
    
    .seedhub-hero-content {
        width: 80%;
        padding-top: 130px;
    }
    
    .seedhub-hero-content h1 {
        font-size: clamp(40px, 5vw, 52px);
    }
}

@media (max-width: 768px) {
    .seedhub-hero {
        height: 480px;
    }
    
    .seedhub-hero-content {
        width: 90%;
        padding-top: 100px;
    }
    
    .seedhub-hero-content h1 {
        font-size: clamp(32px, 4.5vw, 40px);
        letter-spacing: -1px;
    }
    
    .seedhub-hero-content p {
        font-size: 13px;
        margin-top: 16px;
        max-width: 100%;
    }
    
    .seedhub-hero-buttons {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }
    
    .seedhub-hero-buttons .seedhub-btn {
        width: 100%;
        justify-content: center;
    }
    
    .seedhub-slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .seedhub-slider-arrow.prev { left: 10px; }
    .seedhub-slider-arrow.next { right: 10px; }
    
    .seedhub-slider-dots {
        bottom: 15px;
    }
    
    .seedhub-slider-dot {
        width: 20px;
        height: 2px;
    }
}

@media (max-width: 480px) {
    .seedhub-hero {
        height: 400px;
    }
    
    .seedhub-hero-content {
        width: 92%;
        padding-top: 70px;
    }
    
    .seedhub-hero-content h1 {
        font-size: clamp(26px, 4vw, 32px);
        margin-top: 15px;
        letter-spacing: -0.5px;
    }
    
    .seedhub-hero-content p {
        font-size: 12px;
        margin-top: 12px;
        line-height: 1.6;
    }
    
    .seedhub-eyebrow {
        font-size: 9px;
        padding: 6px 10px;
        gap: 6px;
    }
    
    .seedhub-btn {
        min-height: 40px;
        font-size: 11px;
        padding: 0 16px;
    }
    
    .seedhub-slider-arrow {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .seedhub-slider-arrow.prev { left: 6px; }
    .seedhub-slider-arrow.next { right: 6px; }
}


/* ============================================================
   CATEGORIES (circle grid)
============================================================ */

.seedhub-categories {
    padding: 50px 0;
    background: #fff;
}

.seedhub-section-title {
    text-align: center;
    margin-bottom: 35px;
}

.seedhub-section-title h2 {
    margin: 0 0 7px;
}

.seedhub-section-title p {
    margin: 0;
}

.seedhub-category-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 25px;
    align-items: start;
}

.seedhub-category-item {
    text-decoration: none;
    color: var(--text);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.3s ease;
    font-family: var(--font-sans);
}

.seedhub-category-circle {
    width: 115px;
    height: 115px;
    border-radius: 50%;
    overflow: hidden;
    background: #f1f7f2;
    border: 3px solid #dcebdd;
    margin-bottom: 12px;
    transition: 0.3s ease;
}

.seedhub-category-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}

.seedhub-category-item span {
    font-size: var(--small-size);
    font-weight: 600;
    line-height: 1.3;
    color: inherit;
}

.seedhub-category-item:hover {
    transform: translateY(-5px);
    color: var(--green);
}

.seedhub-category-item:hover .seedhub-category-circle {
    border-color: #2e7d46;
    box-shadow: 0 10px 25px rgba(46, 125, 70, 0.20);
}

.seedhub-category-item:hover img {
    transform: scale(1.08);
}

@media (max-width: 992px) {
    .seedhub-category-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px 15px;
    }
}

@media (max-width: 576px) {
    .seedhub-categories {
        padding: 40px 15px;
    }

    .seedhub-section-title h2 {
        font-size: 26px;
    }

    .seedhub-category-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 22px 5px;
    }

    .seedhub-category-circle {
        width: 72px;
        height: 72px;
        border-width: 2px;
    }

    .seedhub-category-item span {
        font-size: 11px;
    }
}

/* ============================================================
   CATEGORIES (circle grid) - EXTRA MOBILE
============================================================ */
@media (max-width: 400px) {
    .seedhub-category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px 8px;
    }
    
    .seedhub-category-circle {
        width: 60px;
        height: 60px;
    }
    
    .seedhub-category-item span {
        font-size: 10px;
    }
}


/* ============================================================
   TOP PICKS
============================================================ */

.seedhub-top-picks {
    padding: 35px 0 45px;
    background: #fff;
    overflow: hidden;
}

.seedhub-picks-header {
    background: linear-gradient(90deg, #f4f8f4, #fbfdfb);
    padding: 20px 28px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}

.seedhub-picks-header::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 35%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(70, 130, 70, 0.08));
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.seedhub-picks-title {
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    z-index: 2;
}

.seedhub-trophy {
    width: 95px;
    font-size: 65px;
    text-align: center;
}

.seedhub-picks-title h2 {
    margin: 0;
}

.seedhub-picks-title p {
    margin: 8px 0 0;
}

.seedhub-picks-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.seedhub-picks-track {
    display: flex;
    gap: 16px;
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 2px 2px 10px;
}

.seedhub-picks-track::-webkit-scrollbar {
    display: none;
}

.seedhub-pick-card {
    flex: 0 0 218px;
    height: 330px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 17px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.10);
    padding: 8px 10px;
    overflow: hidden;
    transition: 0.25s ease;
}

.seedhub-pick-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}

.seedhub-pick-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 62px;
}

.seedhub-rank {
    width: 51px;
    height: 51px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 28px;
    font-weight: 800;
}

.orange { background: #ef7900; }
.yellow { background: #e5af00; }
.purple { background: #81247f; }
.green { background: #0c861c; }
.red { background: #fa3c00; }
.gold { background: #df9632; }
.blue { background: #0875b4; }
.pink { background: #c54888; }
.teal { background: #008f91; }
.dark-green { background: #286b35; }

.seedhub-badge {
    min-width: 112px;
    padding: 8px 10px;
    border-radius: 14px;
    font-family: var(--font-sans);
    font-size: var(--small-size);
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
}

.orange-bg { background: #fff0e6; color: #e66c1c; }
.yellow-bg { background: #fff9dc; color: #d9a800; }
.purple-bg { background: #f5e9f5; color: #782d79; }
.green-bg { background: #e7f6e9; color: #15812a; }
.red-bg { background: #fff0eb; color: #ef4c19; }
.gold-bg { background: #fff3e3; color: #db8b24; }
.blue-bg { background: #e8f4fb; color: #0875b4; }
.pink-bg { background: #f9eaf2; color: #c54888; }
.teal-bg { background: #e4f6f5; color: #008f91; }
.dark-green-bg { background: #e8f2e9; color: #286b35; }

.seedhub-product-image {
    height: 175px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
}

.seedhub-product-image img {
    width: 145px;
    height: 165px;
    object-fit: contain;
    transition: 0.3s ease;
}

.seedhub-pick-card:hover .seedhub-product-image img {
    transform: scale(1.05);
}

.seedhub-pick-card h3 {
    margin: 8px 0 0;
    color: var(--text);
    font-size: 16px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.seedhub-pick-price {
    margin: 6px 0 0;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
}

.seedhub-pick-price span {
    font-family: inherit;
    font-size: var(--small-size);
    font-weight: 500;
    color: var(--muted);
    text-decoration: line-through;
    margin-left: 6px;
}

.seedhub-pick-arrow {
    position: absolute;
    z-index: 5;
    width: 54px;
    height: 54px;
    border-radius: 9px;
    border: 1px solid #e1e5e1;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
    transition: 0.2s;
}

.seedhub-pick-arrow:hover {
    background: #f2f7f2;
    border-color: #2e7d46;
    color: #2e7d46;
}

.seedhub-pick-prev { left: -12px; }
.seedhub-pick-next { right: -12px; }

@media (max-width: 992px) {
    .seedhub-picks-title h2 { font-size: 28px; }
    .seedhub-pick-card { flex-basis: 210px; }
}

@media (max-width: 576px) {
    .seedhub-top-picks { padding: 25px 0 35px; }
    .seedhub-picks-header { padding: 15px; }
    .seedhub-trophy { width: 60px; font-size: 42px; }
    .seedhub-picks-title { gap: 8px; }
    .seedhub-picks-title h2 { font-size: 22px; }
    .seedhub-picks-title p { font-size: 13px; margin-top: 4px; }
    .seedhub-pick-card { flex: 0 0 180px; height: 290px; }
    .seedhub-pick-top { height: 55px; }
    .seedhub-rank { width: 43px; height: 43px; font-size: 23px; }
    .seedhub-badge { min-width: 90px; font-size: 11px; padding: 7px; }
    .seedhub-product-image { height: 155px; }
    .seedhub-product-image img { width: 125px; height: 145px; }
    .seedhub-pick-card h3 { font-size: 14px; }
    .seedhub-pick-price { font-size: 14px; }
    .seedhub-pick-price span { font-size: 12px; }
    .seedhub-pick-arrow { width: 42px; height: 42px; font-size: 18px; }
    .seedhub-pick-prev { left: -5px; }
    .seedhub-pick-next { right: -5px; }
}

/* ============================================================
   TOP PICKS - EXTRA MOBILE
============================================================ */
@media (max-width: 400px) {
    .seedhub-pick-card {
        flex: 0 0 150px;
        height: 250px;
        padding: 6px 8px;
        border-radius: 12px;
    }
    
    .seedhub-pick-top {
        height: 45px;
    }
    
    .seedhub-rank {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .seedhub-badge {
        min-width: 70px;
        font-size: 9px;
        padding: 5px 6px;
        border-radius: 10px;
    }
    
    .seedhub-product-image {
        height: 120px;
    }
    
    .seedhub-product-image img {
        width: 100px;
        height: 110px;
    }
    
    .seedhub-pick-card h3 {
        font-size: 12px;
        margin-top: 4px;
    }
    
    .seedhub-pick-price {
        font-size: 12px;
        margin-top: 3px;
    }
    
    .seedhub-pick-price span {
        font-size: 10px;
    }
}


/* ============================================================
   GENERIC SECTION + VIEW ALL
============================================================ */

.seedhub-section {
    padding: 30px 0;
}

.seedhub-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.seedhub-section-label {
    display: block;
    margin-bottom: 9px;
    color: var(--gold);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.8px;
}

.seedhub-section-heading h2 {
    max-width: 650px;
    margin: 0;
}

.seedhub-section-heading h2 span {
    color: var(--green);
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.seedhub-section-heading p {
    max-width: 570px;
    margin-top: 12px;
}

.seedhub-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 16px;
    flex-shrink: 0;
    color: var(--white);
    background: var(--green);
    border: 1px solid var(--green);
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: var(--small-size);
    font-weight: 800;
    text-decoration: none;
    transition: 0.2s ease;
}

.seedhub-view-all:hover {
    color: var(--black);
    background: var(--gold);
    border-color: var(--gold);
    gap: 11px;
}

/* ============================================================
   GENERIC SECTION - MOBILE RESPONSIVE
============================================================ */
@media (max-width: 768px) {
    .seedhub-section {
        padding: 50px 0;
    }
    
    .seedhub-section-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .seedhub-section-heading h2 {
        font-size: 28px;
        max-width: 100%;
    }
    
    .seedhub-section-heading p {
        font-size: 13px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .seedhub-section {
        padding: 35px 0;
    }
    
    .seedhub-section-heading h2 {
        font-size: 24px;
    }
    
    .seedhub-section-heading p {
        font-size: 12px;
    }
    
    .seedhub-view-all {
        font-size: 12px;
    }
}


/* ============================================================
   SHOP BY CROP
============================================================ */

.seedhub-shop-crop {
    padding: 45px 0 50px;
    background: #f8fbf8;
}

.seedhub-crop-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.seedhub-crop-header h2 {
    margin: 0;
}

.seedhub-crop-header p {
    margin: 6px 0 0;
}

.seedhub-crop-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 18px;
}

.seedhub-crop-card {
    text-decoration: none;
    text-align: center;
    background: #fff;
    padding: 14px 8px 16px;
    border-radius: 18px;
    border: 1px solid #e3ebe4;
    box-shadow: 0 3px 10px rgba(35, 80, 40, 0.06);
    transition: all 0.3s ease;
}

.seedhub-crop-card:hover {
    transform: translateY(-6px);
    border-color: #a9c9ae;
    box-shadow: 0 10px 25px rgba(35, 80, 40, 0.13);
}

.seedhub-crop-image {
    width: 105px;
    height: 105px;
    margin: 0 auto 12px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #edf5ee;
    background: #eef6ef;
}

.seedhub-crop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.seedhub-crop-card:hover .seedhub-crop-image img {
    transform: scale(1.1);
}

.seedhub-crop-card h3 {
    margin: 0;
    color: var(--heading-color);
    font-size: var(--h3-size);
}

.seedhub-crop-card p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .seedhub-crop-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }
    .seedhub-crop-image {
        width: 110px;
        height: 110px;
    }
}

@media (max-width: 576px) {
    .seedhub-shop-crop { padding: 35px 15px; }
    .seedhub-crop-header h2 { font-size: 26px; }
    .seedhub-crop-header p { font-size: 13px; }
    .seedhub-view-all { font-size: 12px; }
    .seedhub-crop-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    .seedhub-crop-card {
        padding: 8px 4px 10px;
        border-radius: 12px;
    }
    .seedhub-crop-image {
        width: 65px;
        height: 65px;
        border-width: 3px;
        margin-bottom: 8px;
    }
    .seedhub-crop-card h3 { font-size: 12px; }
    .seedhub-crop-card p { display: none; }
}

/* ============================================================
   SHOP BY CROP - EXTRA MOBILE
============================================================ */
@media (max-width: 400px) {
    .seedhub-crop-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .seedhub-crop-image {
        width: 55px;
        height: 55px;
        border-width: 2px;
    }
    
    .seedhub-crop-card h3 {
        font-size: 10px;
    }
}


/* ============================================================
   CATEGORIES (icon cards)
============================================================ */

.seedhub-categories.seedhub-section,
.seedhub-section.seedhub-categories {
    background: var(--white);
}

.seedhub-category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.seedhub-category-card {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    text-align: center;
    border: 1px solid var(--border);
    background: var(--white);
    transition: var(--transition);
}

.seedhub-category-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.seedhub-category-image {
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    background: var(--green-light);
    border-radius: 50%;
    transition: var(--transition);
}

.seedhub-category-card:hover .seedhub-category-image {
    color: var(--black);
    background: var(--gold);
}

.seedhub-category-image i {
    font-size: 27px;
}

.seedhub-category-card h3 {
    margin-top: 16px;
    color: var(--heading-color);
    font-size: var(--h3-size);
}

.seedhub-category-card span {
    margin-top: 6px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
}

/* ============================================================
   CATEGORIES (icon cards) - MOBILE RESPONSIVE
============================================================ */
@media (max-width: 992px) {
    .seedhub-category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .seedhub-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .seedhub-category-card {
        min-height: 150px;
        padding: 15px 8px;
        border-radius: 12px;
    }
    
    .seedhub-category-image {
        width: 60px;
        height: 60px;
    }
    
    .seedhub-category-image i {
        font-size: 22px;
    }
    
    .seedhub-category-card h3 {
        font-size: 13px;
        margin-top: 12px;
    }
    
    .seedhub-category-card span {
        font-size: 10px;
        margin-top: 4px;
    }
}

@media (max-width: 380px) {
    .seedhub-category-card {
        min-height: 120px;
        padding: 10px 6px;
    }
    
    .seedhub-category-image {
        width: 50px;
        height: 50px;
    }
    
    .seedhub-category-image i {
        font-size: 18px;
    }
    
    .seedhub-category-card h3 {
        font-size: 11px;
        margin-top: 8px;
    }
}


/* ============================================================
   SECTION BAR
============================================================ */

.seedhub-section-bar {
    padding: 15px 0;
    background: var(--cream);
}

.seedhub-section-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.seedhub-section-bar-inner span {
    width: 80px;
    height: 1px;
    background: var(--gold);
}

.seedhub-section-bar-inner i {
    color: var(--green);
    font-size: 13px;
}

/* ============================================================
   SECTION BAR - MOBILE RESPONSIVE
============================================================ */
@media (max-width: 480px) {
    .seedhub-section-bar {
        padding: 10px 0;
    }
    
    .seedhub-section-bar-inner {
        gap: 10px;
    }
    
    .seedhub-section-bar-inner span {
        width: 40px;
    }
    
    .seedhub-section-bar-inner i {
        font-size: 11px;
    }
}


/* ============================================================
   BEST SELLING
============================================================ */

.seedhub-best-selling {
    padding: 30px 0;
    background: #ffffff;
}

.seedhub-best-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 20px;
}

.seedhub-best-header h2 {
    margin: 0;
}

.seedhub-best-header p {
    margin: 6px 0 0;
}

.seedhub-best-header a {
    color: #ffffff;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: var(--small-size);
    text-decoration: none;
    transition: all 0.28s cubic-bezier(.2, .8, .2, 1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.seedhub-best-header a:hover {
    color: #ffffff;
    gap: 10px;
}

.seedhub-best-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.seedhub-seed-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 18px 16px 20px;
    transition: all 0.28s cubic-bezier(.2, .8, .2, 1);
    display: flex;
    flex-direction: column;
}

.seedhub-seed-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.10);
    border-color: var(--gold);
}

.seedhub-discount {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
    z-index: 2;
    letter-spacing: 0.3px;
}

.seedhub-heart {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.28s cubic-bezier(.2, .8, .2, 1);
    z-index: 2;
    color: #2a2a2a;
}

.seedhub-heart:hover,
.seedhub-heart.active {
    background: #fee;
    border-color: #e74c3c;
    color: #e74c3c;
}

.seedhub-heart:hover {
    transform: scale(1.1);
}

.seedhub-seed-card .seedhub-product-image {
    width: 100%;
    height: 170px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #f8f6ee;
    position: relative;
}

.seedhub-seed-card .seedhub-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.28s cubic-bezier(.2, .8, .2, 1);
}

.seedhub-seed-card:hover .seedhub-product-image img {
    transform: scale(1.05);
}

.seedhub-rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f8f9fa;
    padding: 2px 10px;
    border-radius: 20px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    width: fit-content;
    margin-bottom: 6px;
}

.seedhub-stock-tag {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    color: #e67e22;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.seedhub-seed-card h3 {
    margin: 4px 0 4px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.3;
    min-height: 38px;
}

.seedhub-brand {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 6px;
}

.seedhub-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2px;
}

.seedhub-price-row strong {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 800;
    color: var(--gold);
}

.seedhub-price-row del {
    font-family: var(--font-sans);
    font-size: var(--small-size);
    color: #aaa;
}

.seedhub-save {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 10px;
}

.seedhub-size-box {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.seedhub-size-box label {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
}

.seedhub-size-box select {
    padding: 4px 8px;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    font-family: var(--font-sans);
    font-size: 12px;
    background: #ffffff;
    color: var(--text);
    cursor: pointer;
    outline: none;
    flex: 1;
}

.seedhub-size-box select:focus {
    border-color: var(--gold);
}

@media (max-width: 1100px) {
    .seedhub-best-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
    .seedhub-best-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .seedhub-best-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 700px) {
    .seedhub-best-selling { padding: 50px 0; }
    .seedhub-best-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .seedhub-seed-card { padding: 12px 12px 16px; }
    .seedhub-seed-card .seedhub-product-image { height: 130px; }
    .seedhub-seed-card h3 { font-size: 13px; min-height: 32px; }
    .seedhub-price-row strong { font-size: 15px; }
    .seedhub-price-row del { font-size: 12px; }
    .seedhub-discount {
        font-size: 10px;
        padding: 2px 8px;
        top: 8px;
        left: 8px;
    }
    .seedhub-heart {
        width: 28px;
        height: 28px;
        top: 8px;
        right: 8px;
        font-size: 12px;
    }
    .seedhub-rating-pill { font-size: 11px; padding: 1px 8px; }
    .seedhub-stock-tag { font-size: 9px; }
}

@media (max-width: 480px) {
    .seedhub-best-grid { gap: 10px; }
    .seedhub-seed-card {
        padding: 10px 10px 14px;
        border-radius: 12px;
    }
    .seedhub-seed-card .seedhub-product-image {
        height: 110px;
        border-radius: 8px;
    }
    .seedhub-seed-card h3 { font-size: 12px; min-height: 28px; }
    .seedhub-brand { font-size: 10px; }
    .seedhub-price-row strong { font-size: 14px; }
    .seedhub-price-row del { font-size: 11px; }
    .seedhub-save { font-size: 10px; }
    .seedhub-size-box label { font-size: 11px; }
    .seedhub-size-box select { font-size: 11px; padding: 2px 6px; }
    .seedhub-best-header h2 { font-size: 26px; }
    .seedhub-best-header p { font-size: 13px; }
}

@media (max-width: 380px) {
    .seedhub-best-grid { gap: 8px; }
    .seedhub-seed-card .seedhub-product-image { height: 90px; }
    .seedhub-seed-card { padding: 8px 8px 12px; }
    .seedhub-seed-card h3 { font-size: 11px; min-height: 24px; }
    .seedhub-price-row strong { font-size: 12px; }
    .seedhub-price-row del { font-size: 10px; }
    .seedhub-discount { font-size: 8px; padding: 2px 6px; top: 6px; left: 6px; }
    .seedhub-heart { width: 24px; height: 24px; top: 6px; right: 6px; font-size: 10px; }
}


/* ============================================================
   OFFER BANNERS
============================================================ */

.seedhub-offer-banners {
    padding: 80px 0 90px;
    background: #f8f7f4;
}

.seedhub-offer-banners-header {
    text-align: center;
    margin-bottom: 40px;
}

.seedhub-offer-banners-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #c6a715, #a88b10);
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.seedhub-offer-banners-tag i {
    font-size: 13px;
}

.seedhub-offer-banners-header h2 {
    margin: 0;
}

.seedhub-offer-banners-header h2 span {
    color: var(--gold);
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.seedhub-offer-banners-header p {
    margin: 8px 0 0;
}

.seedhub-offer-banners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.seedhub-offer-banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 420px;
    transition: all 0.4s cubic-bezier(.2, .8, .2, 1);
    border: 2px solid transparent;
}

.seedhub-offer-banner:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.seedhub-offer-banner--tomato:hover { border-color: #e74c3c; }
.seedhub-offer-banner--chilli:hover { border-color: #e67e22; }
.seedhub-offer-banner--maize:hover { border-color: #9b59b6; }
.seedhub-offer-banner--sunflower:hover { border-color: #2ecc71; }

.seedhub-offer-banner-bg {
    position: absolute;
    inset: 0;
}

.seedhub-offer-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.seedhub-offer-banner:hover .seedhub-offer-banner-bg img {
    transform: scale(1.08);
}

.seedhub-offer-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.7) 60%,
        rgba(0, 0, 0, 0.85) 100%
    );
}

.seedhub-offer-banner-content {
    position: relative;
    z-index: 2;
    padding: 24px 22px 28px;
    height: 100%;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.seedhub-offer-banner-badge {
    display: inline-block;
    background: #e74c3c;
    color: #ffffff;
    padding: 4px 14px;
    border-radius: 20px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 800;
    width: fit-content;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.seedhub-offer-banner-content h3 {
    margin: 0 0 4px;
    font-family: var(--font-serif);
    font-size: 20px;
    color: #ffffff;
    line-height: 1.2;
}

.seedhub-offer-banner-content p {
    margin: 0 0 12px;
    font-family: var(--font-sans);
    font-size: var(--small-size);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
}

.seedhub-offer-banner-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.seedhub-offer-banner-current {
    font-family: var(--font-sans);
    font-size: 24px;
    font-weight: 800;
    color: var(--gold);
}

.seedhub-offer-banner-old {
    font-family: var(--font-sans);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.seedhub-offer-banner-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 14px;
}

.seedhub-offer-banner-meta span {
    font-family: var(--font-sans);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.seedhub-offer-banner-meta i {
    color: var(--gold);
    margin-right: 4px;
}

.seedhub-offer-banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gold);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    width: fit-content;
    box-shadow: 0 4px 20px rgba(198, 167, 21, 0.3);
}

.seedhub-offer-banner-btn:hover {
    background: #a88b10;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(198, 167, 21, 0.4);
    gap: 12px;
}

.seedhub-offer-banner-btn i {
    font-size: 14px;
}

.seedhub-offer-banners-trust {
    display: flex;
    justify-content: center;
    gap: 40px 60px;
    flex-wrap: wrap;
    padding: 20px 30px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
}

.seedhub-offer-banners-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: var(--small-size);
    font-weight: 600;
    color: var(--text);
}

.seedhub-offer-banners-trust-item i {
    font-size: 20px;
    color: var(--gold);
}

@media (max-width: 1100px) {
    .seedhub-offer-banners-grid { grid-template-columns: repeat(2, 1fr); }
    .seedhub-offer-banner { min-height: 380px; }
    .seedhub-offer-banner-content { min-height: 380px; }
}

@media (max-width: 768px) {
    .seedhub-offer-banners { padding: 50px 0 60px; }
    .seedhub-offer-banners-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
    .seedhub-offer-banner { min-height: 350px; }
    .seedhub-offer-banner-content {
        min-height: 350px;
        padding: 20px 18px 24px;
    }
    .seedhub-offer-banner-content h3 { font-size: 18px; }
    .seedhub-offer-banner-current { font-size: 20px; }
    .seedhub-offer-banner-btn { font-size: 13px; padding: 10px 20px; }
    .seedhub-offer-banners-trust {
        gap: 16px 30px;
        padding: 16px 20px;
    }
    .seedhub-offer-banners-trust-item { font-size: 12px; }
    .seedhub-offer-banners-trust-item i { font-size: 16px; }
    .seedhub-offer-banners-header h2 { font-size: 28px; }
}

@media (max-width: 480px) {
    .seedhub-offer-banner { min-height: 320px; }
    .seedhub-offer-banner-content {
        min-height: 320px;
        padding: 16px 14px 20px;
    }
    .seedhub-offer-banner-content h3 { font-size: 16px; }
    .seedhub-offer-banner-badge { font-size: 11px; padding: 3px 12px; }
    .seedhub-offer-banner-content p { font-size: 12px; }
    .seedhub-offer-banner-current { font-size: 18px; }
    .seedhub-offer-banner-old { font-size: 13px; }
    .seedhub-offer-banner-meta span { font-size: 11px; }
    .seedhub-offer-banner-btn { font-size: 12px; padding: 8px 16px; }
    .seedhub-offer-banners-header h2 { font-size: 24px; }
    .seedhub-offer-banners-trust {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .seedhub-offer-banners-header p { font-size: 13px; }
}

@media (max-width: 360px) {
    .seedhub-offer-banner { min-height: 280px; }
    .seedhub-offer-banner-content {
        min-height: 280px;
        padding: 12px 10px 16px;
    }
    .seedhub-offer-banner-content h3 { font-size: 14px; }
    .seedhub-offer-banner-current { font-size: 16px; }
    .seedhub-offer-banner-btn { font-size: 11px; padding: 6px 14px; }
}


/* ============================================================
   BRANDS
============================================================ */

.seedhub-brands {
    padding: 80px 0 90px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.seedhub-brands::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(198, 167, 21, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.seedhub-brands::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(198, 167, 21, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.seedhub-brands .seedhub-container {
    position: relative;
    z-index: 2;
}

.seedhub-brands-header {
    text-align: center;
    margin-bottom: 45px;
}

.seedhub-brands-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(198, 167, 21, 0.10);
    color: var(--gold);
    padding: 6px 18px;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    border: 1px solid rgba(198, 167, 21, 0.12);
}

.seedhub-brands-tag i {
    font-size: 13px;
}

.seedhub-brands-header h2 {
    margin: 0;
}

.seedhub-brands-header h2 span {
    color: var(--gold);
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.seedhub-brands-header p {
    margin: 8px 0 0;
}

.seedhub-brands-marquee {
    position: relative;
    overflow: hidden;
    padding: 30px 0;
    background: #faf9f6;
    border-radius: 20px;
    border: 1px solid #e8e8e8;
    margin-bottom: 35px;
}

.seedhub-brands-marquee::before,
.seedhub-brands-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 3;
    pointer-events: none;
}

.seedhub-brands-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #faf9f6 0%, transparent 100%);
}

.seedhub-brands-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #faf9f6 0%, transparent 100%);
}

.seedhub-brands-track {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: seedhubBrandsScroll 40s linear infinite;
    width: max-content;
}

.seedhub-brands-track:hover {
    animation-play-state: paused;
}

@keyframes seedhubBrandsScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.seedhub-brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    background: #ffffff;
    border-radius: 16px;
    border: 2px solid #e8e8e8;
    transition: all 0.6s cubic-bezier(.25, .46, .45, .94);
    min-width: 180px;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
}

.seedhub-brand-item:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 10px 35px rgba(198, 167, 21, 0.12);
}

.seedhub-brand-logo-wrapper {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(.25, .46, .45, .94);
}

.seedhub-brand-item img {
    width: 85px;
    height: 85px;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.6s cubic-bezier(.25, .46, .45, .94);
}

.seedhub-brand-item:hover img {
    opacity: 1;
    transform: scale(1.08);
}

.seedhub-brand-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    text-align: center;
    transition: all 0.6s cubic-bezier(.25, .46, .45, .94);
    letter-spacing: 0.3px;
}

.seedhub-brand-item:hover .seedhub-brand-name {
    color: var(--gold);
}

.seedhub-brands-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.seedhub-brands-stat {
    text-align: center;
    padding: 24px 20px;
    background: #faf9f6;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
    transition: all 0.6s cubic-bezier(.25, .46, .45, .94);
}

.seedhub-brands-stat:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(198, 167, 21, 0.08);
}

.seedhub-brands-stat-number {
    display: block;
    font-family: var(--font-sans);
    font-size: 32px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2;
}

.seedhub-brands-stat-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--muted);
    margin-top: 4px;
    font-weight: 500;
}

@media (max-width: 1100px) {
    .seedhub-brand-item { min-width: 150px; padding: 14px 20px; }
    .seedhub-brand-logo-wrapper { width: 80px; height: 80px; }
    .seedhub-brand-item img { width: 70px; height: 70px; }
}

@media (max-width: 900px) {
    .seedhub-brands-stats { grid-template-columns: repeat(2, 1fr); }
    .seedhub-brand-item { min-width: 140px; padding: 12px 18px; }
    .seedhub-brand-logo-wrapper { width: 70px; height: 70px; }
    .seedhub-brand-item img { width: 60px; height: 60px; }
    .seedhub-brands-track { gap: 30px; }
}

@media (max-width: 768px) {
    .seedhub-brands { padding: 50px 0 60px; }
    .seedhub-brands-marquee { padding: 20px 0; border-radius: 14px; }
    .seedhub-brands-marquee::before,
    .seedhub-brands-marquee::after { width: 40px; }
    .seedhub-brand-item {
        min-width: 120px;
        padding: 10px 14px;
        border-radius: 12px;
    }
    .seedhub-brand-logo-wrapper { width: 60px; height: 60px; }
    .seedhub-brand-item img { width: 50px; height: 50px; }
    .seedhub-brand-name { font-size: 11px; }
    .seedhub-brands-track { gap: 20px; }
    .seedhub-brands-stat-number { font-size: 26px; }
    .seedhub-brands-stat-label { font-size: 13px; }
    .seedhub-brands-stat { padding: 18px 16px; }
    .seedhub-brands-header h2 { font-size: 28px; }
}

@media (max-width: 480px) {
    .seedhub-brands-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .seedhub-brands-stat {
        padding: 14px 12px;
        border-radius: 12px;
    }
    .seedhub-brands-stat-number { font-size: 22px; }
    .seedhub-brands-stat-label { font-size: 12px; }
    .seedhub-brand-item {
        min-width: 100px;
        padding: 8px 12px;
        border-radius: 10px;
    }
    .seedhub-brand-logo-wrapper { width: 50px; height: 50px; }
    .seedhub-brand-item img { width: 42px; height: 42px; }
    .seedhub-brand-name { font-size: 10px; }
    .seedhub-brands-track { gap: 16px; }
    .seedhub-brands-header h2 { font-size: 24px; }
    .seedhub-brands-header p { font-size: 13px; }
}

@media (max-width: 360px) {
    .seedhub-brands-stats {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .seedhub-brands-stat {
        padding: 10px 8px;
        border-radius: 10px;
    }
    .seedhub-brands-stat-number { font-size: 18px; }
    .seedhub-brands-stat-label { font-size: 10px; }
    .seedhub-brand-item {
        min-width: 80px;
        padding: 6px 8px;
        border-radius: 8px;
    }
    .seedhub-brand-logo-wrapper { width: 40px; height: 40px; }
    .seedhub-brand-item img { width: 34px; height: 34px; }
    .seedhub-brand-name { font-size: 8px; }
    .seedhub-brands-track { gap: 12px; }
}


/* ============================================================
   SEEDHUB - TRENDING PRODUCTS
============================================================ */

.seedhub-trending {
    width: 100%;
    padding: 70px 0;
    background: #f7f8f5;
}

/* ============================================================
   CONTAINER
============================================================ */

.seedhub-trending .seedhub-container {
    width: calc(100% - 160px);
    max-width: 1500px;
    margin: 0 auto;
}

/* ============================================================
   HEADER
============================================================ */

.seedhub-trending-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 30px;
}

.seedhub-trending-heading {
    display: flex;
    align-items: center;
    gap: 16px;
}

.seedhub-trending-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: var(--black);
    color: var(--gold);
    font-size: 24px;
    box-shadow: 0 7px 18px rgba(0, 0, 0, .12);
}

.seedhub-trending-small-title {
    display: block;
    margin-bottom: 5px;
    color: var(--gold);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.seedhub-trending-header h2 {
    margin: 0;
    color: var(--heading-color);
    font-family: var(--font-serif);
    font-size: var(--h2-size);
    font-weight: 700;
    line-height: 1.15;
}

.seedhub-trending-header p {
    margin: 7px 0 0;
    color: var(--muted);
    font-family: var(--font-sans);
    font-size: var(--body-size);
    font-weight: 400;
    line-height: var(--body-line);
}

/* ============================================================
   VIEW ALL
============================================================ */

.seedhub-trending-view {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 5px;
    color: var(--green);
    font-family: var(--font-sans);
    font-size: var(--small-size);
    font-weight: 800;
    text-decoration: none;
    border-bottom: 1px solid var(--green);
    transition: .25s ease;
}

.seedhub-trending-view:hover {
    color: var(--gold);
    border-color: var(--gold);
    gap: 12px;
}

/* ============================================================
   PRODUCT GRID
============================================================ */

.seedhub-trending-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

/* ============================================================
   PRODUCT CARD
============================================================ */

.seedhub-trending-card {
    position: relative;
    min-width: 0;
    padding: 13px;
    background: #ffffff;
    border: 1px solid #e2e2e2;
    border-radius: 17px;
    overflow: hidden;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.seedhub-trending-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .10);
}

/* ============================================================
   CARD TOP
============================================================ */

.seedhub-trending-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 32px;
}

/* ============================================================
   TRENDING BADGE
============================================================ */

.seedhub-trending-rank {
    display: inline-flex;
    align-items: center;
    padding: 6px 9px;
    border-radius: 7px;
    background: #edf7ef;
    color: var(--green);
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

/* ============================================================
   HEART
============================================================ */

.seedhub-trending-heart {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eeeeee;
    border-radius: 50%;
    background: #ffffff;
    color: #888888;
    font-size: 15px;
    cursor: pointer;
    transition: .2s ease;
}

.seedhub-trending-heart:hover {
    color: #d64545;
    border-color: #e7baba;
    transform: scale(1.08);
}

/* ============================================================
   IMAGE
============================================================ */

.seedhub-trending-image {
    width: 100%;
    height: 165px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafbf9;
    border-radius: 12px;
    overflow: hidden;
}

.seedhub-trending-image img {
    width: 100%;

    object-fit: contain;
    transition: transform .3s ease;
}

.seedhub-trending-card:hover .seedhub-trending-image img {
    transform: scale(1.06);
}

/* ============================================================
   RATING
============================================================ */

.seedhub-trending-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
    padding: 5px 8px;
    border-radius: 6px;
    background: var(--green);
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
}

.seedhub-trending-rating i {
    color: var(--gold);
}

.seedhub-trending-rating span {
    opacity: .85;
    font-weight: 500;
}

/* ============================================================
   PRODUCT NAME
============================================================ */

.seedhub-trending-card h3 {
    margin: 10px 0 0;
    min-height: 43px;
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================================
   CATEGORY
============================================================ */

.seedhub-trending-category {
    margin: 5px 0 0;
    color: var(--green);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
}

/* ============================================================
   PRICE
============================================================ */

.seedhub-trending-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 10px;
}

.seedhub-trending-price strong {
    color: var(--gold);
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 800;
}

.seedhub-trending-price del {
    color: #999999;
    font-family: var(--font-sans);
    font-size: var(--small-size);
}

.seedhub-trending-price span {
    padding: 4px 6px;
    border-radius: 5px;
    background: #fff4d1;
    color: #947800;
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 800;
}

/* ============================================================
   BUTTON
============================================================ */

.seedhub-trending-btn {
    width: 100%;
    height: 38px;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid var(--green);
    border-radius: 8px;
    background: var(--green);
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: .25s ease;
}

.seedhub-trending-btn:hover {
    background: var(--black);
    border-color: var(--black);
    gap: 11px;
}

/* ============================================================
   LARGE DESKTOP
============================================================ */

@media (min-width: 1500px) {
    .seedhub-trending .seedhub-container {
        width: calc(100% - 220px);
    }
}

/* ============================================================
   LAPTOP
============================================================ */

@media (max-width: 1300px) {
    .seedhub-trending .seedhub-container {
        width: calc(100% - 100px);
    }

    .seedhub-trending-grid {
        gap: 15px;
    }
}

/* ============================================================
   SMALL LAPTOP
============================================================ */

@media (max-width: 1150px) {
    .seedhub-trending .seedhub-container {
        width: calc(100% - 60px);
    }

    .seedhub-trending-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* ============================================================
   TABLET
============================================================ */

@media (max-width: 900px) {
    .seedhub-trending {
        padding: 55px 0;
    }

    .seedhub-trending .seedhub-container {
        width: calc(100% - 40px);
    }

    .seedhub-trending-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 13px;
    }

    .seedhub-trending-header h2 {
        font-size: 28px;
    }
}

/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 650px) {
    .seedhub-trending {
        padding: 45px 0;
    }

    .seedhub-trending .seedhub-container {
        width: calc(100% - 28px);
    }

    .seedhub-trending-header {
        align-items: flex-start;
        margin-bottom: 22px;
    }

    .seedhub-trending-heading {
        gap: 10px;
    }

    .seedhub-trending-icon {
        width: 43px;
        height: 43px;
        border-radius: 11px;
        font-size: 18px;
    }

    .seedhub-trending-small-title {
        font-size: 10px;
    }

    .seedhub-trending-header h2 {
        font-size: 24px;
    }

    .seedhub-trending-header p {
        font-size: 13px;
    }

    .seedhub-trending-view {
        font-size: 12px;
    }

    .seedhub-trending-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .seedhub-trending-card {
        padding: 9px;
        border-radius: 13px;
    }

    .seedhub-trending-image {
        height: 135px;
    }

    .seedhub-trending-image img {
        padding: 8px;
    }

    .seedhub-trending-card h3 {
        font-size: 14px;
        min-height: 36px;
    }

    .seedhub-trending-price strong {
        font-size: 16px;
    }

    .seedhub-trending-price del {
        font-size: 12px;
    }

    .seedhub-trending-btn {
        height: 35px;
        font-size: 11px;
    }
}

/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 400px) {
    .seedhub-trending .seedhub-container {
        width: calc(100% - 20px);
    }

    .seedhub-trending-grid {
        gap: 8px;
    }

    .seedhub-trending-card {
        padding: 8px;
    }

    .seedhub-trending-image {
        height: 120px;
    }

    .seedhub-trending-card h3 {
        font-size: 13px;
    }

    .seedhub-trending-price strong {
        font-size: 15px;
    }
}

/* ============================================================
   TRENDING - CONTAINER RESPONSIVE OVERRIDES
============================================================ */

.seedhub-trending .seedhub-container {
    width: calc(100% - 200px);
    max-width: 1500px;
    margin: 0 auto;
}

@media (min-width: 1500px) {
    .seedhub-trending .seedhub-container {
        width: calc(100% - 260px);
    }
}

@media (max-width: 1300px) {
    .seedhub-trending .seedhub-container {
        width: calc(100% - 120px);
    }
}

@media (max-width: 1150px) {
    .seedhub-trending .seedhub-container {
        width: calc(100% - 80px);
    }
}

@media (max-width: 900px) {
    .seedhub-trending .seedhub-container {
        width: calc(100% - 50px);
    }
}

@media (max-width: 650px) {
    .seedhub-trending .seedhub-container {
        width: calc(100% - 36px);
    }
}

@media (max-width: 400px) {
    .seedhub-trending .seedhub-container {
        width: calc(100% - 24px);
    }
}

/* ============================================================
   TRENDING - EXTRA SMALL MOBILE
============================================================ */
@media (max-width: 360px) {
    .seedhub-trending-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }
    
    .seedhub-trending-card {
        padding: 6px;
        border-radius: 10px;
    }
    
    .seedhub-trending-image {
        height: 100px;
    }
    
    .seedhub-trending-image img {
        padding: 6px;
    }
    
    .seedhub-trending-card h3 {
        font-size: 11px;
        min-height: 28px;
        margin-top: 6px;
    }
    
    .seedhub-trending-price strong {
        font-size: 13px;
    }
    
    .seedhub-trending-price del {
        font-size: 10px;
    }
    
    .seedhub-trending-btn {
        height: 30px;
        font-size: 10px;
        margin-top: 8px;
    }
    
    .seedhub-trending-rating {
        font-size: 9px;
        padding: 3px 6px;
        margin-top: 6px;
    }
    
    .seedhub-trending-top {
        min-height: 26px;
    }
    
    .seedhub-trending-rank {
        font-size: 8px;
        padding: 4px 6px;
    }
    
    .seedhub-trending-heart {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
}

/* ============================================================
   GLOBAL MOBILE OVERRIDES
============================================================ */

@media (max-width: 480px) {
    /* Reduce padding on all sections */
    .seedhub-section,
    .seedhub-best-selling,
    .seedhub-offer-banners,
    .seedhub-brands {
        padding-left: 0;
        padding-right: 0;
    }
    
    /* Make container narrower on very small screens */
    .seedhub-container {
        width: min(100%, calc(100% - 24px));
        padding: 0 8px;
    }
    
    /* Adjust font sizes globally */
    :root {
        --h2-size: 26px;
        --body-size: 13px;
        --small-size: 12px;
        --h3-size: 13px;
    }
}

@media (max-width: 360px) {
    .seedhub-container {
        width: min(100%, calc(100% - 16px));
        padding: 0 4px;
    }
    
    :root {
        --h2-size: 22px;
        --body-size: 12px;
        --small-size: 10px;
        --h3-size: 11px;
    }
}
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }

    .seedhub-trending-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .seedhub-trending-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .seedhub-trending-image {
        height: 145px;
    }
}

/* MOBILE */
@media (max-width: 650px) {
    .seedhub-trending {
        padding: 45px 0;
    }

    .seedhub-trending .seedhub-container {
        width: calc(100% - 28px);
    }

    .seedhub-trending-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .seedhub-trending-card {
        padding: 11px;
        border-radius: 14px;
    }

    .seedhub-trending-image {
        height: 130px;
    }

    .seedhub-trending-card h3 {
        font-size: 14px;
        min-height: 38px;
    }

    .seedhub-trending-header h2 {
        font-size: 26px;
    }
}

/* SMALL MOBILE */
@media (max-width: 450px) {
    .seedhub-trending-grid {
        gap: 10px;
    }

    .seedhub-trending-card {
        padding: 9px;
        border-radius: 12px;
    }

    .seedhub-trending-image {
        height: 115px;
    }

    .seedhub-trending-card h3 {
        font-size: 13px;
        min-height: 35px;
    }

    .seedhub-trending-price strong {
        font-size: 16px;
    }

    .seedhub-trending-btn {
        height: 34px;
        font-size: 11px;
    }
}


/* ============================================================
   FEATURES GRID
============================================================ */

.seedhub-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.seedhub-feature-card {
    text-align: center;
    padding: 35px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.seedhub-feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--shadow);
}

.seedhub-feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: var(--white);
    background: var(--green);
    border-radius: 50%;
    font-size: 28px;
    transition: var(--transition);
}

.seedhub-feature-card:hover .seedhub-feature-icon {
    background: var(--gold);
    color: var(--black);
}

.seedhub-feature-card h3 {
    margin: 0 0 10px;
    color: var(--heading-color);
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 700;
}

.seedhub-feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: var(--small-size);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .seedhub-feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .seedhub-feature-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .seedhub-feature-card {
        padding: 25px 15px;
    }
    
    .seedhub-feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .seedhub-feature-card h3 {
        font-size: 15px;
    }
    
    .seedhub-feature-card p {
        font-size: 12px;
    }
}


/* ============================================================
   LOADING STATES
============================================================ */

.seedhub-category-loading,
.seedhub-product-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 200px;
    color: var(--muted);
    font-size: 14px;
    grid-column: 1 / -1;
}

.seedhub-category-loading i,
.seedhub-product-loading i {
    font-size: 20px;
    color: var(--green);
}

.seedhub-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-height: 300px;
    padding: 40px 20px;
    text-align: center;
    grid-column: 1 / -1;
}

.seedhub-empty-state i {
    font-size: 48px;
    color: var(--muted);
    opacity: 0.5;
}

.seedhub-empty-state h3 {
    margin: 0;
    color: var(--heading-color);
    font-size: 20px;
}

.seedhub-empty-state p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}


/* ============================================================
   BRANDS GRID
============================================================ */

.seedhub-brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.seedhub-brand-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
    min-height: 140px;
    cursor: pointer;
    text-decoration: none;
}

.seedhub-brand-card:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

.seedhub-brand-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--shadow);
}

.seedhub-brand-card img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
   
    transition: var(--transition);
}

.seedhub-brand-card:hover img {
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 1100px) {
    .seedhub-brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .seedhub-brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .seedhub-brand-card {
        padding: 20px 15px;
        min-height: 120px;
    }
    
    .seedhub-brand-card img {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .seedhub-brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .seedhub-brand-card {
        padding: 15px 10px;
        min-height: 100px;
    }
    
    .seedhub-brand-card img {
        max-height: 50px;
    }
}


/* ============================================================
   PRODUCT CARD — ADD TO CART BUTTON
   (shared across best sellers / new arrivals)
============================================================ */

.seedhub-add-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    height: 38px;
    margin-top: auto;
    padding: 0 14px;
    border: 1px solid var(--green);
    border-radius: 9px;
    background: var(--green);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background .22s, border-color .22s, gap .2s;
}

.seedhub-add-btn:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    gap: 11px;
}

.seedhub-add-btn--disabled {
    background: #d9d9d9;
    border-color: #d9d9d9;
    color: #999;
    cursor: not-allowed;
}

.seedhub-add-btn--added {
    background: #1a7a36;
    border-color: #1a7a36;
}

.seedhub-view-options {
    background: var(--gold);
    border-color: var(--gold);
    color: #ffffff;
}

.seedhub-view-options:hover {
    background: #a88b10;
    border-color: #a88b10;
    color: #fff;
}

/* card name link */
.seedhub-card-name-link,
.seedhub-pick-img-link {
    text-decoration: none;
    color: inherit;
}

.seedhub-card-name-link:hover {
    color: var(--green);
}

/* pick card heart overlay */
.seedhub-heart--pick {
    position: absolute;
    top: 10px;
    right: 10px;
}

/* ============================================================
   NEW ARRIVALS SECTION
   Re-uses seedhub-best-selling styles but with teal accent
============================================================ */

.seedhub-new-arrivals {
    padding: 30px 0;
    background: #f4f8f5;
}

.seedhub-new-arrivals-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 20px;
}

.seedhub-new-arrivals-header h2 {
    margin: 0;
    color: var(--heading-color);
    font-family: var(--font-serif);
    font-size: var(--h2-size);
    font-weight: 700;
    line-height: 1.15;
}

.seedhub-new-arrivals-header p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: var(--body-size);
}

.seedhub-new-arrivals-header a {
    color: #ffffff;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: var(--small-size);
    text-decoration: none;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.seedhub-new-arrivals-header a:hover {
    color: #ffffff;
    gap: 10px;
}

.seedhub-new-arrivals-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--green);
    color: #fff;
    padding: 5px 14px;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .4px;
    margin-bottom: 10px;
}

.seedhub-new-arrivals-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media (max-width: 1100px) {
    .seedhub-new-arrivals-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
    .seedhub-new-arrivals {
        padding: 50px 0;
    }
    .seedhub-new-arrivals-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .seedhub-new-arrivals-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 700px) {
    .seedhub-new-arrivals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .seedhub-new-arrivals { padding: 35px 0; }
    .seedhub-new-arrivals-header h2 { font-size: 26px; }
    .seedhub-new-arrivals-header p  { font-size: 13px; }
    .seedhub-new-arrivals-grid      { gap: 10px; }
}

/* ============================================================
   BRAND CARD — name label
============================================================ */

.seedhub-brand-card {
    flex-direction: column;
    gap: 8px;
}

.seedhub-brand-card-name {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    text-align: center;
    transition: color .2s;
}

.seedhub-brand-card:hover .seedhub-brand-card-name {
    color: var(--green);
}

/* ============================================================
   OUT OF STOCK TAG
============================================================ */

.seedhub-stock-tag.seedhub-oos {
    color: #c0392b;
}

/* ============================================================
   ERROR STATE
============================================================ */

.seedhub-error-state {
    border: 1px dashed #e5a0a0;
    background: #fff8f8;
    border-radius: 12px;
    padding: 30px 20px;
}

.seedhub-error-state i {
    color: #c0392b;
    opacity: .6;
}

/* ============================================================
   TOAST NOTIFICATIONS
============================================================ */

#sh-toast-container {
    position: fixed;
    bottom: 28px;
    right: 22px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.sh-toast {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 10px;
    background: #1a1a1a;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 6px 24px rgba(0,0,0,.18);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .3s ease, transform .3s ease;
    max-width: 320px;
    pointer-events: auto;
}

.sh-toast--show {
    opacity: 1;
    transform: translateY(0);
}

.sh-toast--success { background: #1a7a36; }
.sh-toast--error   { background: #c0392b; }
.sh-toast--info    { background: #0875b4; }

.sh-toast i { font-size: 16px; flex-shrink: 0; }

@media (max-width: 480px) {
    #sh-toast-container {
        bottom: 16px;
        right: 12px;
        left: 12px;
    }

    .sh-toast {
        max-width: 100%;
        font-size: 12px;
        padding: 10px 14px;
    }
}

/* ============================================================
   FEATURE SECTION — padding fix
============================================================ */

.seedhub-features-bar {
    padding: 28px 0;
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* ============================================================
   SECTION OOS VISIBILITY — hide section if container hides
============================================================ */

.seedhub-section--hidden {
    display: none;
}


/* ============================================================
   TRUST GRID
============================================================ */

.seedhub-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.seedhub-trust-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 30px 24px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: var(--transition);
}

.seedhub-trust-item:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,.07);
    transform: translateY(-4px);
}

.seedhub-trust-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--green-light);
    color: var(--green);
    font-size: 24px;
    transition: var(--transition);
}

.seedhub-trust-item:hover .seedhub-trust-icon {
    background: var(--gold);
    color: var(--black);
}

.seedhub-trust-item h3 {
    margin: 0;
    color: var(--heading-color);
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 700;
}

.seedhub-trust-item p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

@media (max-width: 992px) {
    .seedhub-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 576px) {
    .seedhub-trust-grid { grid-template-columns: 1fr; gap: 14px; }
    .seedhub-trust-item { padding: 22px 18px; gap: 10px; }
    .seedhub-trust-icon { width: 44px; height: 44px; font-size: 20px; }
    .seedhub-trust-item h3 { font-size: 14px; }
    .seedhub-trust-item p  { font-size: 12px; }
}
