:root {
    --green: #1d6b45;
    --green-dark: #12482f;
    --green-soft: #e8f2eb;
    --lime: #b9d86e;

    --cream: #fafaf5;
    --white: #ffffff;
    --dark: #17201b;
    --text: #303a34;
    --muted: #78817b;

    --border: #e5e9e4;

    --red: #d75d4e;
    --orange: #ed984b;

    --shadow-sm: 0 8px 25px rgba(20, 35, 27, .06);
    --shadow-md: 0 18px 50px rgba(20, 35, 27, .11);

    --radius: 20px;
    --transition: .28s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

button,
input,
select {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}


/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(250, 250, 245, .94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(229, 233, 228, .85);
}

.header-inner {
    min-height: 80px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: white;
    background: var(--green);
    box-shadow: 0 8px 18px rgba(29, 107, 69, .2);
}

.brand-mark i {
    font-size: 16px;
}

.brand-name {
    color: var(--dark);
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -.6px;
}

.brand-name span {
    color: var(--green);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

.main-nav a {
    position: relative;
    padding: 29px 0;
    color: #6c756f;
    font-size: 13px;
    font-weight: 600;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--green);
}

.main-nav a.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 19px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
    transform: translateX(-50%);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 7px;
}

.header-icon,
.mobile-menu-trigger {
    position: relative;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--dark);
    background: transparent;
    transition: var(--transition);
}

.header-icon:hover,
.mobile-menu-trigger:hover {
    color: var(--green);
    background: var(--green-soft);
}

.header-count {
    position: absolute;
    top: 1px;
    right: -1px;
    min-width: 16px;
    height: 16px;
    display: grid;
    place-items: center;
    padding: 0 4px;
    border-radius: 20px;
    color: white;
    background: var(--red);
    font-size: 11px;
    font-weight: 700;
}

.header-cart {
    min-height: 43px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 14px;
    border-radius: 13px;
    color: white;
    background: var(--green);
    font-size: 12px;
    font-weight: 700;
    transition: var(--transition);
}

.header-cart:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
}

.cart-count {
    min-width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--green);
    background: white;
    font-size: 11px;
}

.mobile-menu-trigger {
    display: none;
}


/* SEARCH */

.search-panel {
    display: none;
    padding: 13px 0;
    border-top: 1px solid var(--border);
    background: white;
}

.search-panel.open {
    display: block;
}

.search-box {
    height: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 15px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: var(--cream);
}

.search-box > i {
    color: var(--muted);
    font-size: 14px;
}

.search-box input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    color: var(--dark);
    background: transparent;
    font-size: 13px;
}

.clear-search {
    color: var(--muted);
    background: transparent;
}


/* MOBILE MENU */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 3000;
    width: min(340px, 88%);
    height: 100vh;
    padding: 25px;
    background: white;
    box-shadow: -20px 0 55px rgba(0, 0, 0, .15);
    transition: .35s ease;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--dark);
    background: var(--cream);
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px;
    border-radius: 12px;
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
}

.mobile-menu nav a:hover {
    color: var(--green);
    background: var(--green-soft);
}

.mobile-menu nav i {
    width: 20px;
    color: var(--green);
    text-align: center;
}

.mobile-overlay,
.cart-overlay,
.modal-overlay {
    position: fixed;
    inset: 0;
    display: none;
    background: rgba(14, 23, 18, .48);
    backdrop-filter: blur(4px);
}

.mobile-overlay {
    z-index: 2500;
}

.mobile-overlay.show,
.cart-overlay.show,
.modal-overlay.show {
    display: block;
}


/* HERO */

.hero-section {
    padding: 70px 0 90px;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 30%, rgba(197, 221, 177, .38), transparent 31%),
        var(--cream);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr .9fr;
    align-items: center;
    gap: 55px;
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.hero-kicker span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lime);
}

.hero-content h1 {
    max-width: 660px;
    margin-bottom: 20px;
    color: var(--dark);
    font-family: "Playfair Display", serif;
    font-size: clamp(48px, 6vw, 75px);
    line-height: 1.04;
    letter-spacing: -2.5px;
}

.hero-content h1 em {
    display: block;
    color: var(--green);
    font-style: normal;
}

.hero-content > p {
    max-width: 570px;
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.85;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
}

.btn-primary,
.btn-secondary {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    border-radius: 13px;
    font-size: 12px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-primary {
    color: white;
    background: var(--green);
    box-shadow: 0 12px 25px rgba(29, 107, 69, .18);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
}

.btn-secondary {
    color: var(--dark);
    background: white;
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    color: var(--green);
    border-color: var(--green);
}

.hero-benefits {
    display: flex;
    align-items: center;
    gap: 18px;
}

.hero-benefit {
    display: flex;
    flex-direction: column;
}

.hero-benefit strong {
    color: var(--dark);
    font-size: 15px;
}

.hero-benefit span {
    color: var(--muted);
    font-size: 11px;
}

.benefit-divider {
    width: 1px;
    height: 30px;
    background: var(--border);
}

.hero-visual {
    position: relative;
    min-height: 510px;
    display: grid;
    place-items: center;
}

.hero-orb {
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: #dcebd1;
}

.hero-photo {
    position: relative;
    z-index: 2;
    width: 420px;
    height: 470px;
    overflow: hidden;
    border-radius: 50% 50% 32px 32px;
    box-shadow: 0 25px 65px rgba(32, 57, 42, .18);
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-info {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 15px;
    background: rgba(255, 255, 255, .91);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-md);
}

.floating-info strong,
.floating-info span {
    display: block;
}

.floating-info strong {
    color: var(--dark);
    font-size: 11px;
}

.floating-info span {
    color: var(--muted);
    font-size: 11px;
}

.floating-icon,
.mini-avatar {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--green);
    background: var(--green-soft);
}

.freshness-card {
    top: 75px;
    left: -8px;
}

.delivery-card {
    right: -8px;
    bottom: 70px;
}


/* COMMON SECTION */

.section {
    padding: 90px 0;
}

.section-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 32px;
}

.section-label {
    display: block;
    margin-bottom: 8px;
    color: var(--green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.section-top h2 {
    color: var(--dark);
    font-family: "Playfair Display", serif;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.15;
    letter-spacing: -1px;
}

.section-top h2 span {
    color: var(--green);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    background: transparent;
    font-size: 11px;
    font-weight: 700;
}

.text-link i {
    transition: var(--transition);
}

.text-link:hover i {
    transform: translateX(4px);
}


/* CATEGORIES */

.categories-section {
    background: white;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.category-card {
    position: relative;
    overflow: hidden;
    padding: 0;
    text-align: left;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: white;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(29, 107, 69, .25);
}

.category-image {
    height: 145px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.07);
}

.category-details {
    padding: 13px 14px 15px;
}

.category-details strong,
.category-details span {
    display: block;
}

.category-details strong {
    margin-bottom: 2px;
    color: var(--dark);
    font-size: 12px;
}

.category-details span {
    color: var(--muted);
    font-size: 11px;
}

.category-arrow {
    position: absolute;
    right: 10px;
    bottom: 13px;
    color: #b2bab4;
    font-size: 11px;
}


/* DEAL */

.deal-section {
    padding: 0 0 90px;
    background: white;
}

.deal-banner {
    position: relative;
    min-height: 365px;
    display: grid;
    grid-template-columns: 1fr .8fr;
    overflow: hidden;
    border-radius: 30px;
    background: linear-gradient(115deg, #153e2c, #1d6542);
}

.deal-copy {
    position: relative;
    z-index: 3;
    padding: 50px;
}

.deal-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    color: #d5e99f;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.deal-copy h2 {
    margin-bottom: 12px;
    color: white;
    font-family: "Playfair Display", serif;
    font-size: clamp(35px, 4vw, 50px);
    line-height: 1.05;
}

.deal-copy h2 span {
    color: #c3dd79;
}

.deal-copy > p {
    max-width: 420px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
}

.deal-copy > p strong {
    color: white;
}

.countdown {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
}

.countdown div {
    min-width: 54px;
    padding: 7px 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 9px;
    background: rgba(255, 255, 255, .08);
}

.countdown strong,
.countdown span {
    display: block;
}

.countdown strong {
    color: white;
    font-size: 15px;
}

.countdown span {
    color: rgba(255, 255, 255, .55);
    font-size: 11px;
}

.countdown > b {
    color: #c3dd79;
}

.deal-button {
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 17px;
    border-radius: 11px;
    color: var(--dark);
    background: white;
    font-size: 11px;
    font-weight: 700;
}

.deal-product {
    position: relative;
    min-height: 365px;
    display: grid;
    place-items: center;
}

.deal-circle {
    position: absolute;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: rgba(196, 221, 125, .14);
}

.deal-product img {
    position: relative;
    z-index: 2;
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 50%;
    border: 10px solid rgba(255, 255, 255, .1);
}

.deal-discount {
    position: absolute;
    right: 55px;
    top: 55px;
    z-index: 4;
    width: 70px;
    height: 70px;
    display: grid;
    place-content: center;
    text-align: center;
    border-radius: 50%;
    color: white;
    background: var(--red);
    transform: rotate(8deg);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
}

.deal-discount strong {
    font-size: 19px;
    line-height: 1;
}

.deal-discount span {
    font-size: 11px;
    font-weight: 700;
}


/* SHOP */

.shop-section {
    background: #f5f6f1;
}

.shop-heading {
    align-items: center;
}

.shop-tools {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-buttons {
    display: flex;
    gap: 4px;
    padding: 4px;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: white;
}

.filter {
    padding: 8px 12px;
    border-radius: 8px;
    color: var(--muted);
    background: transparent;
    font-size: 11px;
    font-weight: 700;
}

.filter.active,
.filter:hover {
    color: white;
    background: var(--green);
}

.sort-select {
    height: 38px;
    padding: 0 11px;
    border: 1px solid var(--border);
    border-radius: 10px;
    outline: none;
    color: var(--text);
    background: white;
    font-size: 11px;
}

.search-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 35px;
    margin-bottom: 12px;
}

.search-result span {
    color: var(--muted);
    font-size: 11px;
}

.search-result button {
    display: none;
    color: var(--green);
    background: transparent;
    font-size: 11px;
    font-weight: 700;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 19px;
}

.product-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: white;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.product-card.hidden {
    display: none;
}

.product-image {
    position: relative;
    height: 235px;
    overflow: hidden;
    background: #f0f2ec;
}

.product-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}

.product-card:hover .product-image > img {
    transform: scale(1.06);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    padding: 5px 8px;
    border-radius: 7px;
    color: white;
    background: var(--red);
    font-size: 11px;
    font-weight: 800;
}

.product-badge.new {
    background: var(--green);
}

.product-badge.best {
    background: var(--orange);
}

.wishlist-button {
    position: absolute;
    top: 11px;
    right: 11px;
    z-index: 3;
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--dark);
    background: rgba(255, 255, 255, .91);
    transition: var(--transition);
}

.wishlist-button:hover,
.wishlist-button.liked {
    color: var(--red);
}

.quick-view {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: -48px;
    z-index: 3;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 10px;
    color: white;
    background: var(--green);
    opacity: 0;
    font-size: 11px;
    font-weight: 700;
    transition: var(--transition);
}

.product-card:hover .quick-view {
    bottom: 12px;
    opacity: 1;
}

.product-info {
    padding: 16px;
}

.product-category {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.product-info h3 {
    margin-bottom: 7px;
    color: var(--dark);
    font-size: 14px;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 14px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating > span {
    color: #eaa340;
    font-size: 11px;
    letter-spacing: -1px;
}

.rating small {
    color: var(--muted);
    font-size: 11px;
}

.weight {
    color: #8c958e;
    font-size: 11px;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price {
    display: flex;
    align-items: center;
    gap: 7px;
}

.price strong {
    color: var(--dark);
    font-size: 15px;
}

.price del {
    color: #a5aba7;
    font-size: 11px;
}

.add-cart {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: white;
    background: var(--green);
    transition: var(--transition);
}

.add-cart:hover {
    background: var(--green-dark);
    transform: scale(1.06);
}

.empty-state {
    display: none;
    padding: 70px 20px;
    text-align: center;
}

.empty-state.show {
    display: block;
}

.empty-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin: 0 auto 15px;
    border-radius: 18px;
    color: var(--green);
    background: var(--green-soft);
    font-size: 20px;
}

.empty-state h3 {
    margin-bottom: 5px;
    color: var(--dark);
    font-size: 16px;
}

.empty-state p {
    color: var(--muted);
    font-size: 11px;
}


/* FEATURES */

.features-section {
    padding: 65px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: var(--green);
    background: var(--green-soft);
}

.feature strong,
.feature span {
    display: block;
}

.feature strong {
    margin-bottom: 2px;
    color: var(--dark);
    font-size: 12px;
}

.feature span {
    color: var(--muted);
    font-size: 11px;
}


/* REVIEWS */

.reviews-section {
    background: var(--cream);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.review-card {
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: white;
}

.review-stars {
    margin-bottom: 14px;
    color: #e9a23f;
    font-size: 13px;
    letter-spacing: 1px;
}

.review-card > p {
    min-height: 100px;
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--green);
    background: var(--green-soft);
    font-size: 11px;
    font-weight: 800;
}

.review-author strong,
.review-author span {
    display: block;
}

.review-author strong {
    color: var(--dark);
    font-size: 11px;
}

.review-author span {
    color: var(--muted);
    font-size: 11px;
}


/* NEWSLETTER */

.newsletter-section {
    padding: 80px 0;
    background: var(--cream);
}

.newsletter-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 45px 50px;
    border-radius: 28px;
    background: #e8f1e7;
}

.newsletter-box h2 {
    margin-bottom: 9px;
    color: var(--dark);
    font-family: "Playfair Display", serif;
    font-size: 34px;
    line-height: 1.1;
}

.newsletter-box h2 span {
    color: var(--green);
}

.newsletter-box p {
    color: var(--muted);
    font-size: 11px;
}

.newsletter-form {
    width: min(440px, 100%);
    display: flex;
    padding: 5px;
    border: 1px solid rgba(29, 107, 69, .13);
    border-radius: 13px;
    background: white;
}

.newsletter-form input {
    width: 100%;
    min-width: 0;
    padding: 0 12px;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 11px;
}

.newsletter-form button {
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 15px;
    border-radius: 10px;
    color: white;
    background: var(--green);
    font-size: 11px;
    font-weight: 700;
}


/* QUICK VIEW */

.modal-overlay {
    z-index: 4000;
    place-items: center;
    padding: 20px;
}

.modal-overlay.show {
    display: grid;
}

.quick-modal {
    position: relative;
    width: min(800px, 100%);
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    overflow: hidden;
    border-radius: 25px;
    background: white;
    box-shadow: var(--shadow-md);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 5;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--dark);
    background: rgba(255, 255, 255, .92);
}

.modal-image {
    min-height: 450px;
    background: #f1f2ed;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-content {
    padding: 55px 40px 40px;
}

.modal-content > span {
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.modal-content h2 {
    margin: 8px 0 10px;
    color: var(--dark);
    font-family: "Playfair Display", serif;
    font-size: 32px;
}

.modal-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.modal-rating span {
    color: #eaa340;
    font-size: 12px;
}

.modal-rating small {
    color: var(--muted);
    font-size: 11px;
}

.modal-content > p {
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
}

.modal-price {
    margin-bottom: 20px;
    color: var(--green);
    font-size: 22px;
    font-weight: 700;
}

.modal-actions {
    display: flex;
    gap: 10px;
}

.modal-quantity {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 11px;
}

.modal-quantity button {
    width: 38px;
    height: 42px;
    color: var(--dark);
    background: transparent;
    font-size: 11px;
}

.modal-quantity span {
    min-width: 28px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
}

.modal-add {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 11px;
    color: white;
    background: var(--green);
    font-size: 11px;
    font-weight: 700;
}


/* CART */

.cart-drawer {
    position: fixed;
    top: 0;
    right: -470px;
    z-index: 3500;
    width: min(430px, 92%);
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: white;
    box-shadow: -20px 0 60px rgba(0, 0, 0, .15);
    transition: .35s ease;
}

.cart-drawer.open {
    right: 0;
}

.cart-overlay {
    z-index: 3400;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 23px 25px;
    border-bottom: 1px solid var(--border);
}

.cart-header h2 {
    color: var(--dark);
    font-family: "Playfair Display", serif;
    font-size: 24px;
}

.cart-close {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--dark);
    background: var(--cream);
}

.delivery-progress {
    padding: 15px 25px;
    background: #f5f8f2;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.progress-text span,
.progress-text strong {
    font-size: 11px;
}

.progress-text span {
    color: var(--muted);
}

.progress-text strong {
    color: var(--green);
}

.progress-bar {
    height: 6px;
    overflow: hidden;
    border-radius: 20px;
    background: #dfe7dd;
}

.progress-bar span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: var(--green);
    transition: .35s ease;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 15px 25px;
}

.cart-empty {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cart-empty-icon {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    margin-bottom: 15px;
    border-radius: 20px;
    color: var(--green);
    background: var(--green-soft);
    font-size: 23px;
}

.cart-empty h3 {
    margin-bottom: 5px;
    color: var(--dark);
    font-size: 16px;
}

.cart-empty p {
    max-width: 230px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 11px;
}

.start-shopping {
    padding: 10px 16px;
    border-radius: 10px;
    color: white;
    background: var(--green);
    font-size: 11px;
    font-weight: 700;
}

.cart-item {
    display: grid;
    grid-template-columns: 62px 1fr auto;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
}

.cart-item-image {
    width: 62px;
    height: 62px;
    overflow: hidden;
    border-radius: 11px;
    background: #f1f2ed;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info h4 {
    margin-bottom: 3px;
    color: var(--dark);
    font-size: 12px;
}

.cart-item-price {
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 7px;
}

.quantity-control button {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    color: var(--dark);
    background: #eff2ed;
    font-size: 10px;
}

.quantity-control span {
    min-width: 14px;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
}

.remove-cart-item {
    align-self: start;
    color: #9aa19c;
    background: transparent;
    font-size: 11px;
}

.cart-footer {
    padding: 16px 25px 20px;
    border-top: 1px solid var(--border);
}

.coupon-row {
    display: flex;
    gap: 7px;
    margin-bottom: 15px;
}

.coupon-row input {
    width: 100%;
    min-width: 0;
    height: 39px;
    padding: 0 10px;
    border: 1px solid var(--border);
    border-radius: 9px;
    outline: none;
    font-size: 11px;
}

.coupon-row button {
    padding: 0 13px;
    border-radius: 9px;
    color: white;
    background: var(--dark);
    font-size: 11px;
    font-weight: 700;
}

.cart-summary {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.cart-summary > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-summary span {
    color: var(--muted);
    font-size: 11px;
}

.cart-summary strong {
    color: var(--dark);
    font-size: 11px;
}

.cart-summary .cart-total {
    padding-top: 10px;
    margin-top: 3px;
    border-top: 1px solid var(--border);
}

.cart-summary .cart-total span {
    color: var(--dark);
    font-size: 13px;
    font-weight: 700;
}

.cart-summary .cart-total strong {
    color: var(--green);
    font-size: 19px;
}

.checkout-button {
    width: 100%;
    min-height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 11px;
    color: white;
    background: var(--green);
    font-size: 11px;
    font-weight: 700;
}

.secure-note {
    display: block;
    margin-top: 9px;
    text-align: center;
    color: #969e98;
    font-size: 11px;
}


/* FOOTER */

.footer {
    padding: 70px 0 25px;
    color: rgba(255, 255, 255, .62);
    background: #14251b;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 55px;
    padding-bottom: 45px;
}

.footer .brand-name {
    color: white;
}

.footer .brand-name span {
    color: var(--lime);
}

.footer-about > p {
    max-width: 280px;
    margin: 18px 0;
    color: rgba(255, 255, 255, .48);
    font-size: 11px;
    line-height: 1.8;
}

.socials {
    display: flex;
    gap: 8px;
}

.socials a {
    width: 33px;
    height: 33px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: white;
    background: rgba(255, 255, 255, .08);
    font-size: 11px;
}

.socials a:hover {
    background: var(--green);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-column h3 {
    margin-bottom: 7px;
    color: white;
    font-size: 12px;
}

.footer-column a {
    width: fit-content;
    color: rgba(255, 255, 255, .48);
    font-size: 11px;
}

.footer-column a:hover {
    color: white;
}

.footer-column p {
    display: flex;
    gap: 8px;
    color: rgba(255, 255, 255, .48);
    font-size: 11px;
}

.footer-column p i {
    margin-top: 5px;
    color: var(--lime);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .35);
    font-size: 11px;
}

.footer-bottom div {
    display: flex;
    gap: 20px;
}


/* MOBILE NAV */

.mobile-bottom-nav {
    display: none;
}


/* TOAST */

.toast {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 5000;
    min-height: 45px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 15px;
    border-radius: 11px;
    color: white;
    background: var(--dark);
    box-shadow: var(--shadow-md);
    font-size: 11px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
    transition: .3s ease;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast i {
    color: var(--lime);
}


/* TABLET */

@media (max-width: 1050px) {

    .main-nav {
        gap: 18px;
    }

    .hero-grid {
        grid-template-columns: 1fr .85fr;
        gap: 20px;
    }

    .hero-photo {
        width: 350px;
        height: 420px;
    }

    .hero-orb {
        width: 380px;
        height: 380px;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-column:last-child {
        grid-column: 2 / 4;
    }
}


/* TABLET / MOBILE */

@media (max-width: 800px) {

    .container {
        width: min(100% - 30px, 650px);
    }

    .header-inner {
        min-height: 68px;
    }

    .main-nav,
    .wishlist-trigger,
    .header-cart {
        display: none;
    }

    .mobile-menu-trigger {
        display: grid;
    }

    .header-actions {
        margin-left: auto;
    }

    .hero-section {
        padding: 55px 0 70px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content h1 {
        font-size: clamp(45px, 10vw, 62px);
    }

    .hero-content > p {
        font-size: 13px;
    }

    .hero-buttons {
        margin-bottom: 32px;
    }

    .hero-benefits {
        justify-content: center;
    }

    .hero-visual {
        min-height: 430px;
    }

    .hero-photo {
        width: 330px;
        height: 390px;
    }

    .hero-orb {
        width: 350px;
        height: 350px;
    }

    .freshness-card {
        left: 3%;
    }

    .delivery-card {
        right: 3%;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .category-image {
        height: 125px;
    }

    .deal-banner {
        grid-template-columns: 1fr;
        padding-bottom: 45px;
    }

    .deal-copy {
        padding: 40px;
    }

    .deal-product {
        min-height: 300px;
    }

    .deal-product img {
        width: 280px;
        height: 280px;
    }

    .shop-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .shop-tools {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .filter-buttons {
        overflow-x: auto;
    }

    .filter {
        white-space: nowrap;
    }

    .sort-select {
        width: 100%;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-card > p {
        min-height: auto;
    }

    .newsletter-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
    }

    .newsletter-form {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 25px;
    }

    .footer-column:last-child {
        grid-column: auto;
    }

    .mobile-bottom-nav {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 2000;
        min-height: 65px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        padding: 5px;
        border: 1px solid rgba(255, 255, 255, .8);
        border-radius: 20px;
        background: rgba(255, 255, 255, .95);
        backdrop-filter: blur(20px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, .13);
    }

    .bottom-item {
        min-height: 52px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        color: #8b938d;
        background: transparent;
        font-size: 11px;
        font-weight: 600;
    }

    .bottom-item i {
        font-size: 16px;
    }

    .bottom-item.active {
        color: var(--green);
    }

    .bottom-cart-icon {
        position: relative;
    }

    .bottom-cart-count {
        position: absolute;
        top: -8px;
        right: -9px;
        min-width: 16px;
        height: 16px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        color: white;
        background: var(--red);
        font-size: 11px;
    }

    body {
        padding-bottom: 88px;
    }

    .footer {
        padding-bottom: 105px;
    }
}


/* MOBILE */

@media (max-width: 520px) {

    .container {
        width: calc(100% - 24px);
    }

    .brand-name {
        font-size: 19px;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
    }

    .hero-section {
        padding-top: 40px;
    }

    .hero-content h1 {
        font-size: 44px;
        letter-spacing: -1.5px;
    }

    .hero-content > p {
        font-size: 12px;
    }

    .hero-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .hero-benefits {
        width: 100%;
        justify-content: space-between;
        gap: 9px;
    }

    .hero-benefit strong {
        font-size: 13px;
    }

    .hero-benefit span {
        font-size: 11px;
    }

    .hero-visual {
        min-height: 360px;
    }

    .hero-photo {
        width: 270px;
        height: 320px;
    }

    .hero-orb {
        width: 290px;
        height: 290px;
    }

    .floating-info {
        padding: 9px 10px;
    }

    .deal-banner {
        grid-template-columns: 1fr;
        padding-bottom: 30px;
    }

    .floating-info strong,
    .floating-info span {
        font-size: 11px;
    }

    .freshness-card {
        top: 25px;
        left: 0;
    }

    .delivery-card {
        right: 0;
        bottom: 35px;
    }

    .section {
        padding: 65px 0;
    }

    .section-top h2 {
        font-size: 30px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .category-image {
        height: 120px;
    }

    .deal-copy {
        padding: 30px 24px;
    }

    .deal-copy h2 {
        font-size: 35px;
    }

    .deal-product {
        min-height: 255px;
    }

    .deal-product img {
        width: 230px;
        height: 230px;
    }

    .deal-circle {
        width: 245px;
        height: 245px;
    }

    .deal-discount {
        right: 35px;
        top: 35px;
        width: 62px;
        height: 62px;
    }

    .product-grid {
        gap: 10px;
    }

    .product-image {
        height: 175px;
    }

    .product-info {
        padding: 13px;
    }

    .product-info h3 {
        font-size: 12px;
    }

    .product-category,
    .rating small,
    .weight {
        font-size: 11px;
    }

    .price strong {
        font-size: 13px;
    }

    .price del {
        display: none;
    }

    .quick-view {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .newsletter-box {
        padding: 30px 22px;
    }

    .newsletter-box h2 {
        font-size: 29px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 6px;
        padding: 6px;
    }

    .newsletter-form input {
        min-height: 40px;
    }

    .newsletter-form button {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-about {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .quick-modal {
        grid-template-columns: 1fr;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-image {
        min-height: 250px;
        height: 250px;
    }

    .modal-content {
        padding: 25px;
    }

    .modal-content h2 {
        font-size: 27px;
    }

    .toast {
        right: 15px;
        bottom: 90px;
    }
}