@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@700&family=Lora:wght@500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --bg: #ffffff;
    --bg-soft: #f7f7f7;
    --surface: #ffffff;
    --primary: #82ae46;
    --primary-dark: #5f8d28;
    --text: #000000;
    --muted: #808080;
    --line: #ececec;
    --danger: #b63131;
    --success: #137a4e;
    --radius: 12px;
    --shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

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

main {
    min-height: 70vh;
}

.container {
    width: min(1140px, 92%);
    margin: 0 auto;
}

.top-strip {
    background: var(--primary);
    color: #fff;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.top-strip-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px 14px;
    padding: 8px 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(6px);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0;
}

.logo {
    font-size: 1.75rem;
    font-family: 'Lora', serif;
    color: #222;
    font-weight: 700;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-nav a {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: #111;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--primary-dark);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.mobile-nav-toggle {
    display: none;
    border: 0;
    background: #eff6e2;
    color: #1f1f1f;
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 600;
}

.btn,
.link-btn,
.cart-btn {
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    transition: all 0.2s ease;
}

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

.btn:hover {
    background: var(--primary-dark);
}

.btn:disabled,
.btn[disabled] {
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary-dark);
}

.btn-soft {
    background: #fff;
    color: #222;
    border: 1px solid #ddd;
}

.link-btn {
    padding-inline: 8px;
    color: var(--primary-dark);
    background: transparent;
}

.cart-btn {
    background: #f2f7e8;
    color: #2c2c2c;
}

.cart-count {
    min-width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #222;
    color: #fff;
    font-size: 0.73rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.flash {
    width: min(1140px, 92%);
    margin: 12px auto 0;
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 0.9rem;
    font-weight: 600;
}

.flash-success {
    color: var(--success);
    background: #e7f5ed;
}

.flash-error {
    color: var(--danger);
    background: #fde8e8;
}

.section {
    padding: 85px 0;
}

.section-light {
    background: var(--bg-soft);
}

.section h1,
.section h2 {
    margin: 0;
    font-family: 'Lora', serif;
    font-weight: 600;
    color: #111;
}

.section h1 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.15;
}

.section h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.section-subtitle {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    font-weight: 700;
}

.section-note {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.section-head-tight {
    margin-top: 12px;
}

.hero-vege {
    position: relative;
    padding: 130px 0 120px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.24)),
        linear-gradient(130deg, #a7cc71, #6b8f36);
    overflow: hidden;
}

.hero-vege::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/hero.svg') right 6% center/390px no-repeat;
    opacity: 0.34;
}

.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-center {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
}

.hero-center h1 {
    margin: 10px 0 16px;
    color: #fff;
}

.hero-center p {
    margin: 0 auto 22px;
    color: rgba(255, 255, 255, 0.93);
    max-width: 620px;
}

.hero-kicker {
    display: inline-block;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.76rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}

.services-section {
    padding-top: 48px;
    padding-bottom: 48px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.service-card {
    text-align: center;
    padding: 18px 12px;
}

.service-icon {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    margin: 0 auto 12px;
    background: #eaf3dc;
    color: #476823;
    font-size: 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.service-card h3 {
    margin: 0;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.service-card p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 0.84rem;
}

.about-vege {
    max-width: 760px;
    text-align: center;
}

.about-vege p {
    margin: 12px 0 12px;
    color: var(--muted);
}

.category-grid,
.product-grid,
.feature-grid,
.dashboard-grid,
.footer-grid {
    display: grid;
    gap: 18px;
}

.category-grid {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    margin-bottom: 34px;
}

.category-card {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.category-card img {
    width: 78px;
    height: 78px;
    margin: 0 auto 10px;
}

.category-card h3 {
    margin: 0;
    font-size: 1rem;
    color: #111;
}

.category-card p {
    margin: 6px 0 0;
    font-size: 0.82rem;
    color: var(--muted);
}

.product-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.product-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.product-media {
    background: #f8f8f8;
}

.product-media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-body {
    padding: 16px;
    text-align: center;
}

.badge {
    display: inline-flex;
    font-size: 0.72rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
}

.product-body h3 {
    margin: 0;
    font-size: 1rem;
}

.product-desc {
    margin: 8px 0 0;
    font-size: 0.84rem;
    color: var(--muted);
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.price {
    margin: 10px 0 0;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1rem;
}

.add-to-cart-form {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 8px;
}

.qty-wrap {
    display: grid;
    gap: 4px;
    font-size: 0.72rem;
    text-align: left;
    font-weight: 600;
    color: #444;
}

.qty-input {
    padding: 9px;
    border-radius: 6px;
}

.deal-section {
    background:
        linear-gradient(rgba(130, 174, 70, 0.08), rgba(130, 174, 70, 0.12)),
        url('../images/hero.svg') center right/340px no-repeat;
}

.deal-wrap {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
    align-items: center;
}

.deal-wrap p {
    margin: 10px 0 16px;
    color: #666;
}

.deal-counter {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.deal-counter div {
    background: #fff;
    border: 1px solid #e5ecd9;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
}

.deal-counter strong {
    display: block;
    font-size: 1.35rem;
    color: var(--primary-dark);
    line-height: 1;
}

.deal-counter span {
    color: #666;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.feature-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 20px;
}

.feature-card h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.89rem;
}

.contact-section {
    background: #fff;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: stretch;
}

.contact-panel {
    background: #1f1f1f;
    color: #fff;
    border-radius: var(--radius);
    padding: 24px;
}

.contact-panel h2 {
    color: #fff;
}

.contact-panel p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.8);
}

.contact-cards {
    margin-top: 16px;
    display: grid;
    gap: 10px;
}

.contact-cards article {
    border-radius: 8px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.08);
}

.contact-cards h3 {
    margin: 0;
    font-size: 0.9rem;
}

.contact-cards p {
    margin: 3px 0 0;
    font-size: 0.86rem;
    color: #fff;
}

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

.shop-hero-banner {
    position: relative;
    padding: 90px 0 80px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
        linear-gradient(120deg, #9bc45d, #6a8f32);
    overflow: hidden;
}

.shop-hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/hero.svg') center right 6%/320px no-repeat;
    opacity: 0.28;
}

.shop-hero-overlay {
    position: absolute;
    inset: 0;
}

.shop-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.shop-hero-content h1 {
    margin: 8px 0;
    color: #fff;
}

.shop-hero-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
}

.shop-breadcrumb {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.76rem;
}

.shop-section {
    padding-top: 58px;
}

.filter-row,
.account-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.chip {
    border-radius: 999px;
    padding: 8px 14px;
    background: #f1f1f1;
    color: #444;
    font-size: 0.83rem;
    font-weight: 600;
}

.chip.active {
    background: var(--primary);
    color: #fff;
}

.shop-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.empty-state {
    grid-column: 1 / -1;
    border: 1px dashed #ccc;
    border-radius: 10px;
    padding: 26px;
    text-align: center;
}

.empty-state h3 {
    margin: 0;
    font-size: 1.1rem;
}

.empty-state p {
    margin: 8px 0 12px;
    color: var(--muted);
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 12px;
    font: inherit;
    background: #fff;
    color: #111;
}

textarea {
    resize: vertical;
}

.form-grid {
    display: grid;
    gap: 12px;
}

.form-grid label {
    display: grid;
    gap: 6px;
    font-weight: 600;
    color: #3f3f3f;
    font-size: 0.9rem;
}

.form-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
}

.max-w {
    max-width: 650px;
}

.auth-wrap {
    max-width: 560px;
    margin: 0 auto;
}

.auth-page {
    min-height: 60vh;
}

.admin-page {
    padding-top: 48px;
}

.table-wrap {
    overflow-x: auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

th,
td {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}

.inline-form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.btn-small {
    padding: 7px 12px;
    font-size: 0.8rem;
}

.summary-row {
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 16px;
}

.order-summary-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.order-summary-list li {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.card-note {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 14px;
    font-weight: 600;
}

.error-note {
    color: var(--danger);
}

.big-number {
    font-size: 1.6rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.compact-form {
    margin-top: 8px;
}

.muted {
    color: var(--muted);
}

.site-footer {
    margin-top: 50px;
    padding: 50px 0 22px;
    background: #111;
    color: #ccc;
}

.footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.site-footer h4 {
    margin: 0 0 10px;
    color: #fff;
    font-family: 'Lora', serif;
}

.site-footer a,
.site-footer p {
    display: block;
    margin: 4px 0;
    color: #cfcfcf;
    font-size: 0.9rem;
}

.site-footer a:hover {
    color: #fff;
}

.copyright {
    text-align: center;
    margin: 18px 0 0;
    color: #bdbdbd;
    font-size: 0.85rem;
}

.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.48);
    z-index: 1200;
    padding: 16px;
}

.modal.open {
    display: flex;
}

.modal-card {
    background: #fff;
    border-radius: 10px;
    width: min(420px, 100%);
    padding: 20px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 8px;
    right: 8px;
    border: 0;
    background: #f1f1f1;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 700;
}

.toast {
    position: fixed;
    right: 16px;
    bottom: 18px;
    background: #191919;
    color: #fff;
    border-radius: 8px;
    padding: 11px 14px;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all 0.24s ease;
    z-index: 1400;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1040px) {
    .service-grid,
    .contact-layout,
    .deal-wrap,
    .checkout-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 920px) {
    .mobile-nav-toggle {
        display: inline-flex;
    }

    .main-nav {
        position: absolute;
        left: 4%;
        right: 4%;
        top: 66px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 10px;
        padding: 10px;
        box-shadow: var(--shadow);
        gap: 6px;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        width: 100%;
        padding: 8px;
    }

    .hero-vege {
        padding-top: 110px;
    }
}

@media (max-width: 700px) {
    .section {
        padding: 60px 0;
    }

    .add-to-cart-form {
        grid-template-columns: 1fr;
    }

    .qty-wrap {
        max-width: 110px;
    }

    table {
        min-width: 620px;
    }
}

@media (max-width: 560px) {
    .top-strip-inner {
        justify-content: flex-start;
    }

    .nav-wrap {
        flex-wrap: wrap;
    }

    .nav-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .hero-vege {
        padding: 94px 0 90px;
    }

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

/* =========================================================
   Vegefoods-inspired refresh (home, shop, product, cart, auth)
   ========================================================= */
:root {
    --brand-green: #82ae46;
    --brand-green-dark: #5d8b25;
    --brand-ink: #111111;
    --brand-muted: #6e6e6e;
    --brand-bg: #f8f8f8;
    --brand-line: #ececec;
    --brand-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

body {
    background: #fff;
    color: var(--brand-ink);
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    letter-spacing: 0;
    text-transform: uppercase;
    font-weight: 700;
}

.top-strip {
    background: var(--brand-green);
}

.main-nav a {
    letter-spacing: 0.16em;
    font-size: 0.76rem;
}

.main-nav a.active {
    color: var(--brand-green-dark);
}

.cart-btn {
    border-radius: 0;
    background: var(--brand-green);
    color: #fff;
    min-height: 54px;
    min-width: 86px;
    padding-inline: 16px;
}

.cart-btn.active {
    background: var(--brand-green-dark);
}

.cart-count {
    background: transparent;
    min-width: auto;
    width: auto;
    height: auto;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
}

.hero-vege {
    min-height: 82vh;
    display: flex;
    align-items: center;
    padding: 130px 0;
    background:
        linear-gradient(rgba(17, 17, 17, 0.34), rgba(17, 17, 17, 0.34)),
        var(--hero-image),
        linear-gradient(130deg, #b9d37f, #79a445);
    background-size: cover;
    background-position: center;
}

.hero-vege::before {
    content: none;
}

.hero-center {
    max-width: 880px;
}

.hero-center h1 {
    font-family: 'Amatic SC', cursive;
    font-size: clamp(3rem, 11vw, 7rem);
    line-height: 0.95;
    letter-spacing: 0.03em;
    margin: 14px 0 12px;
}

.hero-center p {
    max-width: 600px;
    font-size: 0.98rem;
}

.hero-kicker {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.2em;
    font-size: 0.68rem;
}

.btn {
    background: var(--brand-green);
    border-radius: 999px;
    padding: 11px 22px;
    font-size: 0.88rem;
}

.btn:hover {
    background: var(--brand-green-dark);
}

.services-section {
    background: #fff;
    padding-top: 44px;
}

.service-grid {
    gap: 10px;
}

.service-card {
    padding: 10px;
}

.service-icon {
    font-size: 1.35rem;
    width: 100px;
    height: 100px;
    border: 8px solid rgba(255, 255, 255, 0.5);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.03);
}

.service-card:nth-child(1) .service-icon {
    background: #dfb4d8;
}

.service-card:nth-child(2) .service-icon {
    background: #dcc698;
}

.service-card:nth-child(3) .service-icon {
    background: #9bd2eb;
}

.service-card:nth-child(4) .service-icon {
    background: #d6d08d;
}

.section-subtitle {
    color: var(--brand-green);
    text-transform: none;
    letter-spacing: 0;
    font-family: 'Lora', serif;
    font-size: 2rem;
    line-height: 1;
}

.section-head h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3.3rem);
}

.section-head-centered {
    text-align: center;
    justify-content: center;
}

.section-note {
    margin-top: 12px;
    font-size: 1rem;
}

.category-showcase-section {
    background: #f8f8f8;
}

.category-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
    align-items: stretch;
    margin-bottom: 42px;
}

.category-column {
    display: grid;
    grid-template-rows: repeat(2, minmax(250px, 1fr));
    gap: 18px;
}

.showcase-tile {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    display: block;
    min-height: 250px;
    background: #dfe8cf;
}

.showcase-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.showcase-tile:hover img {
    transform: scale(1.05);
}

.showcase-label {
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--brand-green);
    color: #fff;
    padding: 8px 18px;
    font-size: 2rem;
    line-height: 1;
    font-family: 'Lora', serif;
}

.showcase-caption {
    position: absolute;
    left: 16px;
    top: 14px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #3a3a3a;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.category-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background: #f2f2f2;
    border-radius: 8px;
}

.category-highlight .section-subtitle {
    font-size: 1.8rem;
}

.category-highlight h3 {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--brand-green-dark);
    font-family: 'Lora', serif;
}

.category-highlight p {
    margin: 8px 0 16px;
    color: var(--brand-muted);
}

.category-highlight-media {
    margin-top: 16px;
    width: min(340px, 100%);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    padding: 12px;
}

.category-highlight-media img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.vege-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.vege-product-card {
    border-radius: 0;
    border: 1px solid var(--brand-line);
    box-shadow: none;
    position: relative;
    background: #fff;
}

.vege-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--brand-shadow);
}

.sale-badge {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: var(--brand-green);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 4px 10px;
}

.vege-product-card .product-media {
    background: #fff;
    padding: 26px 20px 8px;
}

.vege-product-card .product-media img {
    height: 190px;
    object-fit: contain;
}

.vege-product-card .product-body {
    padding: 10px 16px 18px;
}

.vege-product-card .badge {
    margin-bottom: 8px;
    color: #8b8b8b;
}

.vege-product-card h3 {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 1.03rem;
}

.vege-product-card h3 a:hover {
    color: var(--brand-green-dark);
}

.price-row {
    margin: 8px 0 2px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.old-price {
    color: #a3a3a3;
    text-decoration: line-through;
    font-weight: 500;
    font-size: 0.95rem;
}

.price-row .price,
.product-meta .price {
    margin: 0;
    color: var(--brand-green);
    font-size: 1.05rem;
}

.add-to-cart-form-compact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
}

.btn-small {
    padding: 8px 10px;
    font-size: 0.78rem;
}

.shop-hero-banner {
    min-height: 360px;
    display: flex;
    align-items: center;
    padding: 92px 0;
    background:
        linear-gradient(rgba(17, 17, 17, 0.35), rgba(17, 17, 17, 0.35)),
        var(--shop-hero-image),
        linear-gradient(130deg, #a8cc6b, #6f9638);
    background-size: cover;
    background-position: center;
}

.shop-hero-banner::before {
    content: none;
}

.shop-hero-content h1 {
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
}

.shop-breadcrumb {
    letter-spacing: 0.22em;
    font-size: 0.7rem;
}

.section-light {
    background: #f8f8f8;
}

.shop-section {
    padding-top: 70px;
}

.shop-filters {
    justify-content: center;
    margin-bottom: 32px;
}

.chip {
    border-radius: 999px;
    font-size: 0.83rem;
    line-height: 1.1;
    padding: 8px 14px;
    background: #f1f1f1;
    color: #444;
    font-family: 'Poppins', sans-serif;
    border: 1px solid transparent;
    font-weight: 600;
}

.chip:hover {
    border-color: #dbe8c7;
    background: #edf4df;
    color: #315610;
}

.chip.active {
    background: var(--brand-green);
    color: #fff;
    border-color: var(--brand-green);
}

.shop-filters .chip {
    border-radius: 8px;
    font-size: 1.3rem;
    padding: 12px 16px;
    background: transparent;
    color: var(--brand-green-dark);
    font-family: 'Lora', serif;
    border-color: transparent;
    font-weight: 500;
}

.shop-filters .chip.active {
    color: #fff;
}

.auth-page {
    padding-top: 80px;
}

.auth-wrap {
    max-width: 760px;
}

.auth-card {
    border: 1px solid var(--brand-line);
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: var(--brand-shadow);
}

.auth-note {
    margin: 8px 0 18px;
    color: var(--brand-muted);
}

.auth-demo-panel {
    border: 1px dashed #cdddb1;
    background: #f8fbe8;
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 14px;
}

.auth-demo-panel p {
    margin: 0 0 8px;
}

.demo-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.demo-fill-btn {
    cursor: pointer;
}

.modal-note {
    margin: 0 0 10px;
}

.form-card {
    border-radius: 12px;
    border-color: var(--brand-line);
}

.product-single-section {
    padding-top: 72px;
}

.product-single-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.product-single-media {
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--brand-line);
    padding: 26px;
}

.product-single-media img {
    width: 100%;
    height: 460px;
    object-fit: contain;
}

.product-single-content h2 {
    margin: 6px 0 10px;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
}

.product-single-rating {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    color: #666;
    margin: 0;
}

.stars {
    letter-spacing: 0.14em;
    color: var(--brand-green);
}

.product-single-price {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin: 8px 0;
}

.product-single-desc {
    color: #666;
    margin: 0 0 14px;
}

.product-single-form {
    display: grid;
    gap: 12px;
}

.product-single-select {
    display: grid;
    gap: 6px;
    max-width: 280px;
}

.product-single-select span {
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #555;
    font-weight: 600;
}

.product-single-select select,
.product-single-form .qty-input {
    height: 46px;
    border-radius: 8px;
    border: 1px solid #d9d9d9;
}

.product-availability {
    margin: 0;
    font-weight: 600;
    color: #444;
}

.product-single-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.related-products-section {
    border-top: 1px solid #ececec;
}

.cart-page-section {
    padding-top: 64px;
}

.cart-table-wrap {
    border-radius: 0;
    border-color: #dde7cd;
}

.cart-table {
    min-width: 880px;
}

.cart-table thead th {
    background: var(--brand-green);
    color: #fff;
    text-transform: none;
    border-bottom: 0;
    font-size: 2rem;
    font-family: 'Lora', serif;
    font-weight: 600;
    text-align: center;
    padding: 16px 12px;
}

.cart-table td {
    text-align: center;
    vertical-align: middle;
    padding: 18px 14px;
}

.cart-remove-cell {
    width: 56px;
}

.remove-btn {
    width: 34px;
    height: 34px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background: #fff;
    color: #444;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
}

.cart-product-cell {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    min-width: 320px;
}

.cart-product-cell img {
    width: 92px;
    height: 92px;
    object-fit: contain;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 8px;
}

.cart-product-cell h3 {
    margin: 0 0 6px;
    font-size: 1.15rem;
}

.cart-product-cell p {
    margin: 0;
    color: #777;
    font-size: 0.9rem;
    max-width: 260px;
}

.cart-qty-form {
    justify-content: center;
}

.cart-qty-form input {
    width: 88px;
}

.cart-summary-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.cart-totals-card {
    background: #fff;
}

.totals-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 7px 0;
    color: #595959;
    border-bottom: 1px solid #efefef;
}

.totals-row.grand-total {
    margin-top: 10px;
    padding-top: 14px;
    border-top: 2px solid #e9e9e9;
    border-bottom: 0;
    color: #111;
    font-size: 1.06rem;
}

.cart-totals-card .btn {
    margin-top: 16px;
    width: 100%;
}

.contact-panel {
    background: #1c1f18;
    border-radius: 14px;
}

.site-footer {
    margin-top: 0;
}

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

    .category-showcase {
        grid-template-columns: 1fr;
    }

    .category-column {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
    }

    .product-single-layout,
    .cart-summary-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .top-strip-inner {
        gap: 4px 10px;
    }

    .main-nav {
        top: 72px;
    }

    .hero-vege {
        min-height: 68vh;
        padding-top: 116px;
    }

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

    .category-column {
        grid-template-columns: 1fr;
    }

    .cart-table {
        min-width: 760px;
    }

    .cart-table thead th {
        font-size: 1.35rem;
    }
}

@media (max-width: 560px) {
    .logo {
        font-size: 1.62rem;
    }

    .hero-center h1 {
        font-size: clamp(2.6rem, 17vw, 4rem);
    }

    .section-subtitle {
        font-size: 1.55rem;
    }

    .service-icon {
        width: 86px;
        height: 86px;
    }

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

    .add-to-cart-form-compact {
        grid-template-columns: 1fr;
    }

    .shop-filters .chip {
        font-size: 1.2rem;
        padding: 9px 14px;
    }
}
