/* ============================================================
   Hydro Bloom - Template 20 Stylesheet
   水培种植主题 - 浅色清爽型
   字体: Quicksand + Nunito Sans
   配色: 嫩绿 / 薄荷 / 水蓝 / 阳光黄
   ============================================================ */

:root {
    --hb20-bg: #FAFCFA;
    --hb20-bg-soft: #F0F7F2;
    --hb20-bg-mint: #E8F5E9;
    --hb20-surface: #FFFFFF;
    --hb20-surface-alt: #F7FBF8;
    --hb20-leaf: #2E8B57;
    --hb20-leaf-deep: #1B5E3F;
    --hb20-sprout: #4CAF50;
    --hb20-sprout-light: #8BC34A;
    --hb20-water: #00BCD4;
    --hb20-water-deep: #00838F;
    --hb20-water-soft: #B2EBF2;
    --hb20-sun: #FDD835;
    --hb20-sun-soft: #FFF9C4;
    --hb20-bloom: #66BB6A;
    --hb20-text: #1A3A2A;
    --hb20-text-soft: #5A7C6A;
    --hb20-text-muted: #8FA89A;
    --hb20-border: #E0EDE4;
    --hb20-border-soft: #EEF5F0;
    --hb20-shadow-sm: 0 2px 8px rgba(46, 139, 87, 0.06);
    --hb20-shadow-md: 0 8px 24px rgba(46, 139, 87, 0.10);
    --hb20-shadow-lg: 0 16px 48px rgba(46, 139, 87, 0.14);
    --hb20-radius: 14px;
    --hb20-radius-lg: 22px;
    --hb20-radius-pill: 999px;
    --hb20-gradient-leaf: linear-gradient(135deg, #4CAF50 0%, #2E8B57 100%);
    --hb20-gradient-water: linear-gradient(135deg, #4DD0E1 0%, #00838F 100%);
    --hb20-gradient-fresh: linear-gradient(135deg, #8BC34A 0%, #4CAF50 50%, #00BCD4 100%);
    --hb20-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --hb20-font-display: 'Quicksand', 'Nunito Sans', system-ui, sans-serif;
    --hb20-font-body: 'Nunito Sans', 'Quicksand', system-ui, sans-serif;
}

/* ========== Base Reset ========== */
* {
    box-sizing: border-box;
}

.hb20-wrapper {
    background-color: var(--hb20-bg);
    color: var(--hb20-text);
    font-family: var(--hb20-font-body);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

.hb20-wrapper *,
.hb20-wrapper *::before,
.hb20-wrapper *::after {
    box-sizing: border-box;
}

.hb20-wrapper h1,
.hb20-wrapper h2,
.hb20-wrapper h3,
.hb20-wrapper h4,
.hb20-wrapper h5 {
    font-family: var(--hb20-font-display);
    color: var(--hb20-text);
    line-height: 1.25;
    margin: 0;
    text-transform: none;
}

.hb20-wrapper a {
    color: var(--hb20-leaf);
    text-decoration: none;
    transition: color var(--hb20-transition);
}

.hb20-wrapper a:hover {
    color: var(--hb20-leaf-deep);
}

.hb20-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
}

.hb20-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px;
}

@media (max-width: 768px) {
    .hb20-container { padding: 0 18px; }
}

@media (max-width: 480px) {
    .hb20-container { padding: 0 14px; }
}

.hb20-main {
    min-height: 50vh;
}

/* ========== Announcement Bar ========== */
.hb20-topbar {
    background: var(--hb20-gradient-leaf);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 0;
    overflow: hidden;
}

.hb20-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    text-transform: none;
    letter-spacing: 0.2px;
}

.hb20-topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hb20-topbar-item i {
    font-size: 12px;
    opacity: 0.95;
}

.hb20-topbar-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .hb20-topbar-hide-mobile { display: none; }
    .hb20-topbar-dot.hb20-topbar-hide-mobile { display: none; }
}

/* ========== Header ========== */
.hb20-header {
    background: var(--hb20-surface);
    border-bottom: 1px solid var(--hb20-border);
    position: sticky;
    top: 0;
    z-index: 500;
    box-shadow: var(--hb20-shadow-sm);
}

.hb20-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 0;
}

.hb20-header-left,
.hb20-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.hb20-header-right {
    justify-content: flex-end;
}

.hb20-header-center {
    flex: 0 0 auto;
}

.hb20-icon-btn {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: var(--hb20-text-soft);
    cursor: pointer;
    border-radius: 50%;
    transition: all var(--hb20-transition);
    font-size: 17px;
    position: relative;
}

.hb20-icon-btn:hover {
    background: var(--hb20-bg-mint);
    color: var(--hb20-leaf);
}

/* 桌面端隐藏汉堡菜单按钮（仅在移动端显示） */
.hb20-mobile-trigger {
    display: none;
}

/* ========== Logo ========== */
.hb20-logo {
    display: flex;
    align-items: center;
}

.hb20-logo a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.hb20-logo-mark {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--hb20-gradient-leaf);
    color: #fff;
    border-radius: 14px;
    font-size: 20px;
    box-shadow: var(--hb20-shadow-sm);
    transform: rotate(-4deg);
    transition: transform var(--hb20-transition);
}

.hb20-logo a:hover .hb20-logo-mark {
    transform: rotate(4deg) scale(1.05);
}

.hb20-logo-name {
    font-family: var(--hb20-font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--hb20-leaf-deep);
    letter-spacing: -0.3px;
    text-transform: none;
}

.hb20-logo-name span {
    color: var(--hb20-sprout);
}

/* ========== Cart Button ========== */
.hb20-cart-btn .hb20-cart-count {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    background: var(--hb20-water);
    color: #fff;
    border-radius: var(--hb20-radius-pill);
    font-size: 11px;
    font-weight: 700;
    display: none;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--hb20-surface);
    line-height: 1;
}

.hb20-cart-btn .hb20-cart-count.show {
    display: inline-flex;
}

/* ========== Search Box ========== */
.hb20-search-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--hb20-surface);
    border-bottom: 1px solid var(--hb20-border);
}

.hb20-search-panel.open {
    max-height: 90px;
}

.hb20-search-form {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 0;
    max-width: 720px;
    margin: 0 auto;
}

.hb20-search-form i {
    color: var(--hb20-text-muted);
    font-size: 18px;
}

.hb20-search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 16px;
    color: var(--hb20-text);
    outline: none;
    font-family: var(--hb20-font-body);
    padding: 8px 0;
}

.hb20-search-input::placeholder {
    color: var(--hb20-text-muted);
}

.hb20-search-close {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--hb20-bg-mint);
    color: var(--hb20-leaf);
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    transition: all var(--hb20-transition);
}

.hb20-search-close:hover {
    background: var(--hb20-sprout);
    color: #fff;
}

/* ========== Navigation ========== */
.hb20-nav {
    background: var(--hb20-surface);
    border-bottom: 1px solid var(--hb20-border-soft);
}

.hb20-nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 8px 0;
    flex-wrap: wrap;
}

.hb20-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: var(--hb20-radius-pill);
    font-size: 14px;
    font-weight: 600;
    color: var(--hb20-text-soft);
    transition: all var(--hb20-transition);
    text-transform: none;
    position: relative;
}

.hb20-nav-link:hover,
.hb20-nav-item.current .hb20-nav-link {
    background: var(--hb20-bg-mint);
    color: var(--hb20-leaf-deep);
}

.hb20-nav-link i {
    font-size: 13px;
}

.hb20-nav-arrow {
    font-size: 10px;
    transition: transform var(--hb20-transition);
}

.hb20-nav-item.has-children:hover .hb20-nav-arrow {
    transform: rotate(180deg);
}

/* 移动端：隐藏横向导航条，显示汉堡按钮（配合侧滑抽屉菜单） */
@media (max-width: 900px) {
    .hb20-nav {
        display: none;
    }

    .hb20-mobile-trigger {
        display: inline-flex;
    }
}

/* ========== Dropdown ========== */
.hb20-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--hb20-surface);
    border: 1px solid var(--hb20-border);
    border-radius: var(--hb20-radius-lg);
    box-shadow: var(--hb20-shadow-lg);
    padding: 20px;
    min-width: 480px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--hb20-transition);
    z-index: 600;
}

.hb20-nav-item.has-children {
    position: relative;
}

.hb20-nav-item.has-children:hover .hb20-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hb20-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.hb20-dropdown-grid.has-mixed {
    grid-template-columns: repeat(2, 1fr);
}

.hb20-dropdown-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--hb20-leaf);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--hb20-bg-mint);
    text-transform: none;
    letter-spacing: 0.3px;
}

.hb20-dropdown-sub {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hb20-dropdown-sub li a {
    display: block;
    padding: 7px 10px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--hb20-text-soft);
    transition: all var(--hb20-transition);
}

.hb20-dropdown-sub li a:hover {
    background: var(--hb20-bg-mint);
    color: var(--hb20-leaf-deep);
    transform: translateX(3px);
}

/* ========== Mobile Menu ========== */
.hb20-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 58, 42, 0.4);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 900;
}

.hb20-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hb20-mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 340px;
    max-width: 88vw;
    background: var(--hb20-surface);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: var(--hb20-shadow-lg);
}

.hb20-mobile-drawer.active {
    transform: translateX(0);
}

.hb20-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: var(--hb20-gradient-leaf);
    color: #fff;
}

.hb20-mobile-brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--hb20-font-display);
    font-weight: 700;
    font-size: 18px;
}

.hb20-mobile-brand i {
    font-size: 18px;
}

.hb20-mobile-close {
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
}

.hb20-mobile-search {
    padding: 16px 20px;
    border-bottom: 1px solid var(--hb20-border-soft);
}

.hb20-mobile-search-form {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--hb20-bg-soft);
    padding: 10px 14px;
    border-radius: var(--hb20-radius-pill);
}

.hb20-mobile-search-form i {
    color: var(--hb20-text-muted);
}

.hb20-mobile-search-form input {
    border: none;
    background: transparent;
    outline: none;
    flex: 1;
    font-size: 14px;
    font-family: var(--hb20-font-body);
    color: var(--hb20-text);
}

.hb20-mobile-list {
    list-style: none;
    margin: 0;
    padding: 12px;
    overflow-y: auto;
    flex: 1;
}

.hb20-mobile-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--hb20-text);
    font-weight: 600;
    font-size: 14px;
    transition: all var(--hb20-transition);
    text-transform: none;
}

.hb20-mobile-link:hover,
.hb20-mobile-link-text:hover {
    background: var(--hb20-bg-mint);
    color: var(--hb20-leaf-deep);
}

.hb20-mobile-link i {
    width: 22px;
    text-align: center;
    color: var(--hb20-sprout);
}

.hb20-mobile-parent {
    display: flex;
    align-items: center;
    padding: 0;
}

.hb20-mobile-link-text {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--hb20-text);
    font-weight: 600;
    font-size: 14px;
    transition: all var(--hb20-transition);
}

.hb20-mobile-toggle {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: var(--hb20-text-muted);
    cursor: pointer;
    font-size: 13px;
    transition: transform var(--hb20-transition);
}

.hb20-mobile-toggle.open {
    transform: rotate(180deg);
    color: var(--hb20-leaf);
}

.hb20-mobile-sub {
    list-style: none;
    margin: 0;
    padding: 0 0 4px 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.hb20-mobile-sub.active {
    max-height: 800px;
}

.hb20-mobile-sub a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    color: var(--hb20-text-soft);
    transition: all var(--hb20-transition);
}

.hb20-mobile-sub a:hover {
    background: var(--hb20-bg-mint);
    color: var(--hb20-leaf-deep);
}

.hb20-mobile-cart-count {
    margin-left: auto;
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    background: var(--hb20-water);
    color: #fff;
    border-radius: var(--hb20-radius-pill);
    font-size: 12px;
    font-weight: 700;
    display: none;
    align-items: center;
    justify-content: center;
}

.hb20-mobile-cart-count.show {
    display: inline-flex;
}

.hb20-mobile-promo {
    padding: 16px 20px;
    background: var(--hb20-bg-mint);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--hb20-leaf-deep);
    font-size: 13px;
    font-weight: 600;
}

/* ========== Buttons ========== */
.hb20-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 26px;
    border: none;
    border-radius: var(--hb20-radius-pill);
    font-family: var(--hb20-font-display);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--hb20-transition);
    text-decoration: none;
    text-transform: none;
    line-height: 1.2;
}

.hb20-btn-leaf {
    background: var(--hb20-gradient-leaf);
    color: #fff;
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.28);
}

.hb20-btn-leaf:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(76, 175, 80, 0.38);
}

.hb20-btn-outline {
    background: transparent;
    color: var(--hb20-leaf-deep);
    border: 2px solid var(--hb20-sprout);
}

.hb20-btn-outline:hover {
    background: var(--hb20-sprout);
    color: #fff;
    transform: translateY(-2px);
}

.hb20-btn-soft {
    background: var(--hb20-bg-mint);
    color: var(--hb20-leaf-deep);
}

.hb20-btn-soft:hover {
    background: var(--hb20-sprout-light);
    color: #fff;
}

.hb20-btn-sm {
    padding: 9px 18px;
    font-size: 13px;
}

.hb20-btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

/* ========== Hero Section ========== */
.hb20-hero {
    position: relative;
    padding: 72px 0 84px;
    background:
        radial-gradient(circle at 15% 20%, rgba(139, 195, 74, 0.18) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(0, 188, 212, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, var(--hb20-bg-mint) 0%, var(--hb20-bg) 100%);
    overflow: hidden;
}

.hb20-hero::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--hb20-bg);
    clip-path: polygon(0 100%, 100% 100%, 100% 40%, 75% 70%, 50% 30%, 25% 70%, 0 40%);
}

.hb20-hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hb20-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: var(--hb20-surface);
    border: 1px solid var(--hb20-border);
    border-radius: var(--hb20-radius-pill);
    font-size: 13px;
    font-weight: 700;
    color: var(--hb20-leaf);
    margin-bottom: 24px;
    box-shadow: var(--hb20-shadow-sm);
    text-transform: none;
}

.hb20-hero-eyebrow i {
    color: var(--hb20-sprout);
    animation: hb20Sway 3s ease-in-out infinite;
}

@keyframes hb20Sway {
    0%, 100% { transform: rotate(-8deg); }
    50% { transform: rotate(8deg); }
}

.hb20-hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.08;
    color: var(--hb20-leaf-deep);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hb20-hero-title em {
    font-style: normal;
    background: var(--hb20-gradient-fresh);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hb20-hero-sub {
    font-size: 18px;
    color: var(--hb20-text-soft);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.hb20-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hb20-hero-stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}

.hb20-hero-stat-num {
    display: block;
    font-family: var(--hb20-font-display);
    font-size: 30px;
    font-weight: 700;
    color: var(--hb20-leaf);
    line-height: 1;
    margin-bottom: 6px;
}

.hb20-hero-stat-label {
    font-size: 13px;
    color: var(--hb20-text-muted);
    text-transform: none;
}

/* Hero visual */
.hb20-hero-visual {
    position: relative;
}

.hb20-hero-blob {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 460px;
    margin: 0 auto;
    background: var(--hb20-gradient-fresh);
    border-radius: 48% 52% 60% 40% / 50% 60% 40% 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--hb20-shadow-lg);
    animation: hb20Blob 8s ease-in-out infinite;
}

@keyframes hb20Blob {
    0%, 100% { border-radius: 48% 52% 60% 40% / 50% 60% 40% 50%; }
    33% { border-radius: 60% 40% 50% 50% / 40% 55% 45% 60%; }
    66% { border-radius: 50% 50% 45% 55% / 60% 40% 60% 40%; }
}

.hb20-hero-blob i {
    font-size: 140px;
    color: #fff;
    opacity: 0.95;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15));
}

.hb20-hero-float {
    position: absolute;
    background: var(--hb20-surface);
    border-radius: var(--hb20-radius);
    padding: 12px 16px;
    box-shadow: var(--hb20-shadow-md);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--hb20-text);
    animation: hb20Float 4s ease-in-out infinite;
}

.hb20-hero-float i {
    font-size: 18px;
    color: var(--hb20-water);
}

.hb20-hero-float.one {
    top: 12%;
    left: -6%;
    animation-delay: 0s;
}

.hb20-hero-float.two {
    bottom: 18%;
    right: -4%;
    animation-delay: 1.5s;
}

.hb20-hero-float.three {
    bottom: 4%;
    left: 10%;
    animation-delay: 2.5s;
}

.hb20-hero-float.two i { color: var(--hb20-sprout); }
.hb20-hero-float.three i { color: var(--hb20-sun); }

@keyframes hb20Float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@media (max-width: 968px) {
    .hb20-hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hb20-hero-title { font-size: 42px; }
    .hb20-hero-visual { order: -1; max-width: 360px; }
}

@media (max-width: 560px) {
    .hb20-hero { padding: 48px 0 64px; }
    .hb20-hero-title { font-size: 32px; }
    .hb20-hero-sub { font-size: 15px; }
    .hb20-hero-stats { gap: 20px; }
    .hb20-hero-stat-num { font-size: 24px; }
}

/* ========== Marquee ========== */
.hb20-marquee {
    background: var(--hb20-surface);
    border-top: 1px solid var(--hb20-border-soft);
    border-bottom: 1px solid var(--hb20-border-soft);
    padding: 16px 0;
    overflow: hidden;
}

.hb20-marquee-track {
    display: flex;
    gap: 48px;
    white-space: nowrap;
    animation: hb20Scroll 32s linear infinite;
}

@keyframes hb20Scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.hb20-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--hb20-leaf);
    text-transform: none;
}

.hb20-marquee-item i {
    color: var(--hb20-sprout);
    font-size: 16px;
}

/* ========== Section ========== */
.hb20-section {
    padding: 80px 0;
}

.hb20-section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.hb20-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--hb20-bg-mint);
    border-radius: var(--hb20-radius-pill);
    font-size: 12px;
    font-weight: 700;
    color: var(--hb20-leaf);
    margin-bottom: 16px;
    text-transform: none;
    letter-spacing: 0.3px;
}

.hb20-section-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--hb20-leaf-deep);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.hb20-section-title em {
    font-style: normal;
    color: var(--hb20-sprout);
}

.hb20-section-sub {
    font-size: 16px;
    color: var(--hb20-text-soft);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hb20-section { padding: 56px 0; }
    .hb20-section-title { font-size: 30px; }
}

/* ========== Category Cards ========== */
.hb20-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hb20-category-card {
    position: relative;
    border-radius: var(--hb20-radius-lg);
    overflow: hidden;
    background: var(--hb20-surface);
    box-shadow: var(--hb20-shadow-sm);
    transition: all var(--hb20-transition);
    display: block;
    color: inherit;
}

.hb20-category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hb20-shadow-lg);
    color: inherit;
}

.hb20-category-thumb {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: var(--hb20-bg-mint);
}

.hb20-category-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hb20-category-card:hover .hb20-category-thumb img {
    transform: scale(1.06);
}

.hb20-category-icon {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--hb20-surface);
    border-radius: 14px;
    color: var(--hb20-leaf);
    font-size: 18px;
    box-shadow: var(--hb20-shadow-sm);
}

.hb20-category-body {
    padding: 22px 24px 26px;
}

.hb20-category-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--hb20-leaf-deep);
    margin-bottom: 6px;
}

.hb20-category-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--hb20-sprout);
    text-transform: none;
}

.hb20-category-link i {
    transition: transform var(--hb20-transition);
}

.hb20-category-card:hover .hb20-category-link i {
    transform: translateX(4px);
}

@media (max-width: 900px) {
    .hb20-category-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .hb20-category-grid { grid-template-columns: 1fr; }
}

/* ========== Product Cards (Homepage) ========== */
.hb20-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

@media (max-width: 1100px) {
    .hb20-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hb20-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (max-width: 480px) {
    .hb20-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

.hb20-product-card {
    background: var(--hb20-surface);
    border-radius: var(--hb20-radius-lg);
    overflow: hidden;
    box-shadow: var(--hb20-shadow-sm);
    transition: all var(--hb20-transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.hb20-product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hb20-shadow-lg);
}

.hb20-product-media {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--hb20-bg-soft);
}

.hb20-product-media a {
    display: block;
    width: 100%;
    height: 100%;
}

.hb20-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hb20-product-card:hover .hb20-product-media img {
    transform: scale(1.05);
}

.hb20-product-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 13px;
    border-radius: var(--hb20-radius-pill);
    font-size: 11px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(6px);
}

.hb20-tag-fresh {
    background: rgba(76, 175, 80, 0.92);
    color: #fff;
}

.hb20-tag-new {
    background: rgba(0, 188, 212, 0.92);
    color: #fff;
}

.hb20-tag-sale {
    background: rgba(253, 216, 53, 0.95);
    color: #5a4500;
}

.hb20-quickview {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border: none;
    background: var(--hb20-surface);
    border-radius: 50%;
    color: var(--hb20-leaf);
    cursor: pointer;
    box-shadow: var(--hb20-shadow-md);
    transition: all var(--hb20-transition);
    opacity: 0;
    transform: translateY(8px);
    font-size: 15px;
}

.hb20-product-card:hover .hb20-quickview {
    opacity: 1;
    transform: translateY(0);
}

.hb20-quickview:hover {
    background: var(--hb20-sprout);
    color: #fff;
}

.hb20-product-detail {
    padding: 20px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hb20-product-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--hb20-text);
    margin-bottom: 10px;
    line-height: 1.4;
}

.hb20-product-name a {
    color: inherit;
}

.hb20-product-name a:hover {
    color: var(--hb20-leaf);
}

.hb20-product-price {
    display: flex;
    align-items: baseline;
    gap: 9px;
    margin-top: auto;
}

.hb20-price-now {
    font-family: var(--hb20-font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--hb20-leaf);
}

.hb20-price-was {
    font-size: 15px;
    color: var(--hb20-text-muted);
    text-decoration: line-through;
}

/* ========== Banner Row ========== */
.hb20-banner-row {
    padding: 0 0 40px;
}

.hb20-banner-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 22px;
}

.hb20-banner {
    position: relative;
    border-radius: var(--hb20-radius-lg);
    overflow: hidden;
    padding: 36px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.hb20-banner-main {
    background: var(--hb20-gradient-leaf);
    grid-row: span 2;
    min-height: 460px;
}

.hb20-banner-aux {
    background: var(--hb20-gradient-water);
}

.hb20-banner-aux.alt {
    background: linear-gradient(135deg, #8BC34A 0%, #CDDC39 100%);
}

.hb20-banner-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: var(--hb20-radius-pill);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
    width: fit-content;
    text-transform: none;
}

.hb20-banner-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.15;
}

.hb20-banner-main .hb20-banner-title {
    font-size: 38px;
}

.hb20-banner-desc {
    font-size: 15px;
    opacity: 0.92;
    margin-bottom: 22px;
    max-width: 320px;
}

.hb20-banner-deco {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 160px;
    opacity: 0.18;
    transform: rotate(-12deg);
}

@media (max-width: 900px) {
    .hb20-banner-grid { grid-template-columns: 1fr 1fr; }
    .hb20-banner-main { grid-row: span 1; min-height: 280px; }
}

@media (max-width: 600px) {
    .hb20-banner-grid { grid-template-columns: 1fr; }
}

/* ========== CTA Section ========== */
.hb20-cta {
    background:
        radial-gradient(circle at 80% 30%, rgba(0, 188, 212, 0.12) 0%, transparent 50%),
        var(--hb20-bg-mint);
    border-radius: var(--hb20-radius-lg);
    padding: 56px;
    margin: 0 28px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hb20-cta::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.hb20-cta-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--hb20-leaf-deep);
    margin-bottom: 16px;
    line-height: 1.15;
}

.hb20-cta-title em {
    font-style: normal;
    color: var(--hb20-sprout);
}

.hb20-cta-desc {
    font-size: 16px;
    color: var(--hb20-text-soft);
    margin-bottom: 24px;
    line-height: 1.7;
}

.hb20-cta-list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hb20-cta-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--hb20-text);
}

.hb20-cta-list i {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--hb20-surface);
    color: var(--hb20-sprout);
    border-radius: 50%;
    font-size: 11px;
    flex-shrink: 0;
}

.hb20-cta-card {
    position: relative;
    background: var(--hb20-surface);
    border-radius: var(--hb20-radius-lg);
    padding: 40px 28px;
    text-align: center;
    box-shadow: var(--hb20-shadow-md);
}

.hb20-cta-card-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--hb20-gradient-fresh);
    color: #fff;
    border-radius: 50%;
    font-size: 38px;
    box-shadow: var(--hb20-shadow-md);
}

.hb20-cta-card-tag {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--hb20-water);
    text-transform: none;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.hb20-cta-card-big {
    display: block;
    font-family: var(--hb20-font-display);
    font-size: 30px;
    font-weight: 700;
    color: var(--hb20-leaf-deep);
}

@media (max-width: 900px) {
    .hb20-cta { grid-template-columns: 1fr; padding: 40px; }
    .hb20-cta-list { grid-template-columns: 1fr; }
}

/* ========== Services ========== */
.hb20-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.hb20-service-card {
    background: var(--hb20-surface);
    border: 1px solid var(--hb20-border-soft);
    border-radius: var(--hb20-radius-lg);
    padding: 32px 26px;
    text-align: center;
    transition: all var(--hb20-transition);
}

.hb20-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hb20-shadow-md);
    border-color: var(--hb20-sprout-light);
}

.hb20-service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 26px;
    color: #fff;
}

.hb20-service-icon.green { background: var(--hb20-gradient-leaf); }
.hb20-service-icon.blue { background: var(--hb20-gradient-water); }
.hb20-service-icon.lime { background: linear-gradient(135deg, #8BC34A 0%, #CDDC39 100%); }
.hb20-service-icon.sun { background: linear-gradient(135deg, #FDD835 0%, #FFA000 100%); }

.hb20-service-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--hb20-leaf-deep);
    margin-bottom: 8px;
}

.hb20-service-text {
    font-size: 14px;
    color: var(--hb20-text-soft);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .hb20-services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .hb20-services-grid { grid-template-columns: 1fr; }
}

/* ========== Newsletter ========== */
.hb20-newsletter {
    background: var(--hb20-gradient-leaf);
    border-radius: var(--hb20-radius-lg);
    padding: 56px;
    margin: 0 28px 80px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hb20-newsletter::before,
.hb20-newsletter::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.hb20-newsletter::before {
    width: 280px;
    height: 280px;
    top: -120px;
    left: -80px;
}

.hb20-newsletter::after {
    width: 200px;
    height: 200px;
    bottom: -80px;
    right: -40px;
}

.hb20-newsletter-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--hb20-radius-pill);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: none;
    position: relative;
}

.hb20-newsletter-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
}

.hb20-newsletter-desc {
    font-size: 16px;
    opacity: 0.92;
    max-width: 520px;
    margin: 0 auto 28px;
    position: relative;
}

.hb20-newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    background: var(--hb20-surface);
    border-radius: var(--hb20-radius-pill);
    padding: 6px;
    box-shadow: var(--hb20-shadow-md);
}

.hb20-newsletter-form i {
    align-self: center;
    margin-left: 16px;
    color: var(--hb20-text-muted);
}

.hb20-newsletter-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 8px;
    font-size: 15px;
    font-family: var(--hb20-font-body);
    color: var(--hb20-text);
    outline: none;
}

.hb20-newsletter-form button {
    padding: 12px 24px;
    background: var(--hb20-gradient-leaf);
    color: #fff;
    border: none;
    border-radius: var(--hb20-radius-pill);
    font-family: var(--hb20-font-display);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--hb20-transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hb20-newsletter-form button:hover {
    transform: translateX(2px);
}

@media (max-width: 600px) {
    .hb20-newsletter { padding: 40px 24px; }
    .hb20-newsletter-title { font-size: 26px; }
    .hb20-newsletter-form { flex-direction: column; border-radius: var(--hb20-radius-lg); padding: 14px; }
    .hb20-newsletter-form i { display: none; }
    .hb20-newsletter-form input { padding: 14px; text-align: center; }
}

/* ========== Page Header (non-index) ========== */
.hb20-page-head {
    background:
        radial-gradient(circle at 20% 50%, rgba(139, 195, 74, 0.12) 0%, transparent 50%),
        var(--hb20-bg-mint);
    padding: 56px 0 44px;
    border-bottom: 1px solid var(--hb20-border);
}

.hb20-page-kicker {
    display: inline-block;
    padding: 5px 14px;
    background: var(--hb20-surface);
    border-radius: var(--hb20-radius-pill);
    font-size: 12px;
    font-weight: 700;
    color: var(--hb20-leaf);
    margin-bottom: 14px;
    text-transform: none;
    letter-spacing: 0.3px;
}

.hb20-page-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--hb20-leaf-deep);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.hb20-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--hb20-text-muted);
    flex-wrap: wrap;
}

.hb20-breadcrumb a {
    color: var(--hb20-text-soft);
}

.hb20-breadcrumb a:hover {
    color: var(--hb20-leaf);
}

.hb20-breadcrumb-sep {
    color: var(--hb20-border);
}

/* ========== Footer ========== */
.hb20-footer {
    background: var(--hb20-leaf-deep);
    color: rgba(255, 255, 255, 0.85);
    padding-top: 64px;
    margin-top: 40px;
}

.hb20-footer a {
    color: rgba(255, 255, 255, 0.75);
}

.hb20-footer a:hover {
    color: var(--hb20-sprout-light);
}

.hb20-footer-top {
    padding-bottom: 48px;
}

.hb20-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
    gap: 40px;
}

.hb20-footer-brand-name {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--hb20-font-display);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.hb20-footer-brand-name i {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--hb20-sprout);
    border-radius: 12px;
    font-size: 18px;
}

.hb20-footer-about {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.hb20-footer-heading {
    font-family: var(--hb20-font-display);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    text-transform: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hb20-footer-heading::before {
    content: '';
    width: 18px;
    height: 3px;
    background: var(--hb20-sprout);
    border-radius: 2px;
}

.hb20-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hb20-footer-links a {
    font-size: 14px;
    transition: all var(--hb20-transition);
    display: inline-block;
}

.hb20-footer-links a:hover {
    transform: translateX(4px);
}

.hb20-footer-newsletter-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    line-height: 1.6;
}

.hb20-footer-newsletter {
    display: flex;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--hb20-radius-pill);
    padding: 5px;
    margin-bottom: 20px;
}

.hb20-footer-newsletter input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 14px;
    color: #fff;
    font-size: 13px;
    outline: none;
    font-family: var(--hb20-font-body);
}

.hb20-footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.hb20-footer-newsletter button {
    width: 42px;
    height: 42px;
    border: none;
    background: var(--hb20-sprout);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    transition: all var(--hb20-transition);
}

.hb20-footer-newsletter button:hover {
    background: var(--hb20-sprout-light);
    transform: scale(1.05);
}

.hb20-social-row {
    display: flex;
    gap: 10px;
}

.hb20-social-row a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 15px;
    transition: all var(--hb20-transition);
}

.hb20-social-row a:hover {
    background: var(--hb20-sprout);
    transform: translateY(-3px);
}

.hb20-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 22px 0;
}

.hb20-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.hb20-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.hb20-pay-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.hb20-pay-icons {
    display: inline-flex;
    gap: 8px;
    font-size: 22px;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 900px) {
    .hb20-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 560px) {
    .hb20-footer-grid { grid-template-columns: 1fr; }
    .hb20-footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ========== Notification Toast ========== */
.hb20-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    background: var(--hb20-surface);
    color: var(--hb20-text);
    padding: 14px 24px;
    border-radius: var(--hb20-radius-pill);
    box-shadow: var(--hb20-shadow-lg);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    z-index: 2000;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--hb20-border);
}

.hb20-toast.show {
    transform: translateX(-50%) translateY(0);
}

.hb20-toast i {
    color: var(--hb20-sprout);
    font-size: 18px;
}

/* ========== Utility ========== */
.hb20-text-accent {
    color: var(--hb20-sprout);
}

.hb20-btn-success {
    background: var(--hb20-sprout) !important;
}
