/* Freshcraft Commerce Homepage — all selectors are intentionally scoped. */
:root {
    --freshcraft-green-900: #123b2a;
    --freshcraft-green-800: #165a3b;
    --freshcraft-green-700: #16784b;
    --freshcraft-green-600: #1d925c;
    --freshcraft-green-100: #eaf7f0;
    --freshcraft-green-50: #f4fbf7;
    --freshcraft-ink: #17201b;
    --freshcraft-muted: #5c6b62;
    --freshcraft-line: #dfe8e2;
    --freshcraft-surface: #f6f8f7;
    --freshcraft-white: #fff;
    --freshcraft-warning: #a46400;
    --freshcraft-danger: #b42318;
    --freshcraft-radius-sm: 10px;
    --freshcraft-radius: 18px;
    --freshcraft-radius-lg: 28px;
    --freshcraft-shadow: 0 12px 36px rgba(18, 59, 42, .09);
    --freshcraft-container: 1320px;
}

body.freshcraft-home-page {
    margin: 0;
    background: var(--freshcraft-white);
    color: var(--freshcraft-ink);
}

.freshcraft-site,
.freshcraft-site * {
    box-sizing: border-box;
}

.freshcraft-site {
    min-width: 0;
    overflow-x: clip;
    background: var(--freshcraft-white);
    color: var(--freshcraft-ink);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.55;
}

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

.freshcraft-site a {
    color: inherit;
    text-decoration: none;
}

.freshcraft-site button,
.freshcraft-site input,
.freshcraft-site select {
    font: inherit;
}

.freshcraft-site button,
.freshcraft-site a {
    -webkit-tap-highlight-color: transparent;
}

.freshcraft-site :focus-visible {
    outline: 3px solid #46b97c;
    outline-offset: 3px;
}

.freshcraft-site .screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.freshcraft-site .screen-reader-text:focus {
    width: auto;
    height: auto;
    clip: auto;
}

.freshcraft-container {
    width: min(calc(100% - 40px), var(--freshcraft-container));
    margin-inline: auto;
}

.freshcraft-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
}

.freshcraft-skip-link {
    position: fixed;
    z-index: 99999;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--freshcraft-green-900);
    color: #fff !important;
    transform: translateY(-160%);
}

.freshcraft-skip-link:focus {
    transform: translateY(0);
}

.freshcraft-announcement {
    position: relative;
    z-index: 1002;
    min-height: 34px;
    background: var(--freshcraft-green-900);
    color: #fff;
    font-size: 12px;
    letter-spacing: .01em;
}

.freshcraft-announcement-track {
    display: flex;
    min-height: 34px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.freshcraft-announcement-track span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.freshcraft-announcement .freshcraft-icon {
    width: 15px;
    height: 15px;
}

.freshcraft-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 1px 0 var(--freshcraft-line);
    backdrop-filter: blur(12px);
}

.freshcraft-header-main {
    display: grid;
    grid-template-columns: auto minmax(320px, 1fr) auto;
    align-items: center;
    gap: 28px;
    min-height: 82px;
}

.freshcraft-logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--freshcraft-green-900) !important;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1;
}

.freshcraft-logo > span:last-child {
    display: grid;
}

.freshcraft-logo small {
    margin-top: 5px;
    color: var(--freshcraft-muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.freshcraft-logo-mark {
    position: relative;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 12px;
    background: var(--freshcraft-green-700);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.2);
}
.freshcraft-logo-image { width: auto; max-width: 190px; height: 48px; object-fit: contain; }

.freshcraft-logo-mark i {
    position: absolute;
    width: 19px;
    height: 3px;
    border-radius: 4px;
    background: #fff;
}

.freshcraft-logo-mark i:first-child { transform: translateY(-6px); }
.freshcraft-logo-mark i:nth-child(2) { width: 13px; transform: translateX(3px); }
.freshcraft-logo-mark i:last-child { transform: translateY(6px); }

.freshcraft-search {
    display: grid;
    grid-template-columns: 165px 1fr 48px;
    min-width: 0;
    height: 48px;
    overflow: hidden;
    border: 1px solid #cbd9d0;
    border-radius: 13px;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.freshcraft-search:focus-within {
    border-color: var(--freshcraft-green-600);
    box-shadow: 0 0 0 4px rgba(29, 146, 92, .12);
}

.freshcraft-search select,
.freshcraft-search input {
    min-width: 0;
    height: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--freshcraft-ink);
}

.freshcraft-search select {
    padding: 0 32px 0 14px;
    border-right: 1px solid var(--freshcraft-line);
    background: var(--freshcraft-surface);
    font-size: 13px;
}

.freshcraft-search input { padding: 0 16px; }
.freshcraft-search input::placeholder { color: #7d8a82; }

.freshcraft-search button {
    display: grid;
    border: 0;
    background: var(--freshcraft-green-700);
    color: #fff;
    cursor: pointer;
    place-items: center;
}

.freshcraft-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.freshcraft-header-actions > a {
    position: relative;
    display: grid;
    min-width: 42px;
    justify-items: center;
    gap: 2px;
    color: var(--freshcraft-ink);
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
}

.freshcraft-header-actions > a:hover { color: var(--freshcraft-green-700); }

.freshcraft-cart-count {
    position: absolute;
    top: -7px;
    right: -3px;
    display: grid;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    place-items: center;
    border: 2px solid #fff;
    border-radius: 99px;
    background: var(--freshcraft-green-600);
    color: #fff;
    font-size: 10px;
    line-height: 1;
}

.freshcraft-header-actions .freshcraft-whatsapp-header {
    display: inline-flex;
    min-width: auto;
    height: 40px;
    padding: 0 15px;
    align-items: center;
    border-radius: 10px;
    background: #e9f9ef;
    color: #087838;
    font-size: 12px;
}

.freshcraft-menu-toggle { display: none; }

.freshcraft-nav {
    border-top: 1px solid var(--freshcraft-line);
    background: #fff;
}

.freshcraft-nav-inner {
    display: flex;
    min-height: 46px;
    align-items: stretch;
}

.freshcraft-nav ul {
    display: flex;
    margin: 0;
    padding: 0 0 0 18px;
    align-items: center;
    gap: clamp(13px, 1.7vw, 28px);
    list-style: none;
}

.freshcraft-nav ul a {
    color: #36443b;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.freshcraft-nav ul a:hover { color: var(--freshcraft-green-700); }

.freshcraft-all-categories {
    position: relative;
    width: 205px;
    flex: 0 0 205px;
}

.freshcraft-all-categories summary {
    display: flex;
    height: 46px;
    padding: 0 18px;
    align-items: center;
    gap: 10px;
    background: var(--freshcraft-green-700);
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    list-style: none;
}

.freshcraft-all-categories summary::-webkit-details-marker { display: none; }

.freshcraft-mega-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    display: grid;
    width: min(900px, 84vw);
    padding: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    border: 1px solid var(--freshcraft-line);
    border-radius: 0 0 var(--freshcraft-radius) var(--freshcraft-radius);
    background: #fff;
    box-shadow: var(--freshcraft-shadow);
}

.freshcraft-mega-menu a {
    display: flex;
    padding: 12px;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
}

.freshcraft-mega-menu a:hover { background: var(--freshcraft-green-50); color: var(--freshcraft-green-700); }
.freshcraft-mega-menu .freshcraft-icon { width: 18px; height: 18px; }
.freshcraft-mobile-menu { display: none; }

.freshcraft-hero {
    position: relative;
    min-height: clamp(510px, 45vw, 650px);
    overflow: hidden;
    border-bottom: 1px solid var(--freshcraft-line);
    background: var(--freshcraft-green-50);
}

.freshcraft-hero-slides,
.freshcraft-hero-slide {
    position: absolute;
    inset: 0;
}

.freshcraft-hero-slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease, visibility .5s ease;
}

.freshcraft-hero-slide.is-active { opacity: 1; visibility: visible; }

.freshcraft-hero-slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.freshcraft-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    max-width: var(--freshcraft-container);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-right: 50%;
}

.freshcraft-eyebrow {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--freshcraft-green-700);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.freshcraft-hero h1,
.freshcraft-hero h2 {
    max-width: 680px;
    margin: 0;
    color: var(--freshcraft-green-900);
    font-size: clamp(38px, 4vw, 62px);
    font-weight: 850;
    letter-spacing: -.055em;
    line-height: 1.02;
}

.freshcraft-hero h1 { font-size: clamp(34px, 3.5vw, 55px); }

.freshcraft-hero h1 + h2 {
    margin-top: 12px;
    font-size: clamp(21px, 2vw, 30px);
    letter-spacing: -.03em;
}

.freshcraft-hero p {
    max-width: 580px;
    margin: 20px 0 26px;
    color: #405247;
    font-size: clamp(16px, 1.5vw, 20px);
}

.freshcraft-button-row { display: flex; flex-wrap: wrap; gap: 12px; }

.freshcraft-button {
    display: inline-flex;
    min-height: 46px;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--freshcraft-green-700);
    border-radius: 11px;
    background: var(--freshcraft-green-700);
    color: #fff !important;
    font-size: 14px;
    font-weight: 800;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.freshcraft-button:hover { background: var(--freshcraft-green-800); box-shadow: 0 8px 20px rgba(22,120,75,.2); transform: translateY(-1px); }

.freshcraft-button-secondary {
    background: rgba(255,255,255,.88);
    color: var(--freshcraft-green-800) !important;
}

.freshcraft-button-secondary:hover { background: #fff; }

.freshcraft-slider-controls {
    position: absolute;
    z-index: 5;
    bottom: 22px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(-50%);
}

.freshcraft-slider-controls > button {
    display: grid;
    width: 38px;
    height: 38px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(18,59,42,.15);
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    color: var(--freshcraft-green-900);
    cursor: pointer;
    font-size: 24px;
}

.freshcraft-slider-dots { display: flex; gap: 7px; }

.freshcraft-slider-dots button {
    position: relative;
    display: grid;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    border-radius: 99px;
    background: transparent;
    cursor: pointer;
    place-items: center;
    transition: width .2s ease;
}

.freshcraft-slider-dots button::after {
    width: 9px;
    height: 9px;
    border-radius: 99px;
    background: rgba(18,59,42,.25);
    content: "";
    transition: width .2s ease, background .2s ease;
}

.freshcraft-slider-dots button.is-active { width: 40px; }
.freshcraft-slider-dots button.is-active::after { width: 26px; background: var(--freshcraft-green-700); }

.freshcraft-quick-categories {
    border-bottom: 1px solid var(--freshcraft-line);
    background: #fff;
}

.freshcraft-quick-scroll {
    display: grid;
    padding-block: 20px;
    grid-template-columns: repeat(10, minmax(86px, 1fr));
    gap: 8px;
}

.freshcraft-quick-scroll a {
    display: grid;
    min-width: 0;
    padding: 10px 6px;
    justify-items: center;
    gap: 8px;
    border-radius: 12px;
    color: #34463b;
    font-size: 12px;
    font-weight: 750;
    text-align: center;
    transition: background .2s ease, color .2s ease;
}

.freshcraft-quick-scroll a:hover { background: var(--freshcraft-green-50); color: var(--freshcraft-green-700); }
.freshcraft-quick-scroll .freshcraft-icon { width: 27px; height: 27px; }

.freshcraft-section { padding: clamp(64px, 7vw, 104px) 0; }

.freshcraft-section-heading { max-width: 740px; margin-bottom: 34px; }
.freshcraft-section-heading-row { display: flex; max-width: none; align-items: flex-end; justify-content: space-between; gap: 30px; }
.freshcraft-section-heading h2,
.freshcraft-project-hero h2,
.freshcraft-originals h2,
.freshcraft-b2b h2,
.freshcraft-newsletter h2,
.freshcraft-review-layout h2 {
    margin: 0;
    color: var(--freshcraft-green-900);
    font-size: clamp(30px, 3vw, 45px);
    font-weight: 840;
    letter-spacing: -.045em;
    line-height: 1.08;
}

.freshcraft-section-heading p,
.freshcraft-project-hero p,
.freshcraft-originals p,
.freshcraft-b2b p,
.freshcraft-newsletter p,
.freshcraft-review-layout p {
    margin: 12px 0 0;
    color: var(--freshcraft-muted);
    font-size: 17px;
}

.freshcraft-text-link {
    display: inline-flex;
    padding-bottom: 4px;
    align-items: center;
    gap: 7px;
    border-bottom: 1px solid var(--freshcraft-green-700);
    color: var(--freshcraft-green-700) !important;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

.freshcraft-text-link .freshcraft-icon { width: 17px; height: 17px; }

.freshcraft-category-section { background: var(--freshcraft-surface); }

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

.freshcraft-category-card {
    display: grid;
    min-height: 156px;
    padding: 20px;
    grid-template-columns: 48px 1fr auto;
    align-items: start;
    gap: 14px;
    border: 1px solid var(--freshcraft-line);
    border-radius: var(--freshcraft-radius);
    background: #fff;
    box-shadow: 0 3px 14px rgba(18,59,42,.035);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.freshcraft-category-card:hover { border-color: #9dc9af; box-shadow: var(--freshcraft-shadow); transform: translateY(-3px); }
.freshcraft-card-icon,
.freshcraft-category-card > .freshcraft-card-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 14px;
    background: var(--freshcraft-green-100);
    color: var(--freshcraft-green-700);
}

.freshcraft-category-card > .freshcraft-icon { width: 17px; height: 17px; margin-top: 15px; color: #92a398; }
.freshcraft-category-copy { display: flex; min-width: 0; flex-direction: column; }
.freshcraft-category-copy strong { color: var(--freshcraft-green-900); font-size: 16px; line-height: 1.25; }
.freshcraft-category-copy small { min-height: 42px; margin-top: 7px; color: var(--freshcraft-muted); font-size: 12px; line-height: 1.45; }
.freshcraft-category-copy em { margin-top: 10px; color: var(--freshcraft-green-700); font-size: 11px; font-style: normal; font-weight: 800; text-transform: uppercase; }

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

.freshcraft-product-card {
    position: relative;
    display: flex;
    min-width: 0;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid var(--freshcraft-line);
    border-radius: var(--freshcraft-radius);
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.freshcraft-product-card:hover { border-color: #a7cdb5; box-shadow: var(--freshcraft-shadow); transform: translateY(-3px); }

.freshcraft-product-media {
    position: relative;
    aspect-ratio: 1 / .86;
    overflow: hidden;
    background: #f5f7f6;
}

.freshcraft-product-media > a { display: block; width: 100%; height: 100%; }
.freshcraft-product-media img { width: 100%; height: 100%; object-fit: contain; padding: 14px; transition: transform .3s ease; }
.freshcraft-product-card:hover .freshcraft-product-media img { transform: scale(1.035); }

.freshcraft-discount-badge {
    position: absolute;
    z-index: 2;
    top: 12px;
    left: 12px;
    padding: 5px 8px;
    border-radius: 7px;
    background: #fff1e8;
    color: #a34408;
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
}

.freshcraft-product-content { display: flex; padding: 18px; flex: 1; flex-direction: column; }
.freshcraft-product-category { height: 18px; overflow: hidden; color: var(--freshcraft-green-700); font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; text-overflow: ellipsis; }
.freshcraft-product-category a { color: inherit; }
.freshcraft-product-title { display: -webkit-box; min-height: 44px; margin: 7px 0 9px; overflow: hidden; color: var(--freshcraft-ink); font-size: 15px; font-weight: 750; line-height: 1.45; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.freshcraft-product-rating { min-height: 20px; color: #d28a00; font-size: 12px; }
.freshcraft-product-rating .star-rating { float: none; margin: 0; }
.freshcraft-no-rating { color: #879289; font-size: 11px; }
.freshcraft-product-price { min-height: 30px; margin-top: 6px; color: var(--freshcraft-green-900); font-size: 17px; font-weight: 850; }
.freshcraft-product-price del { margin-right: 5px; color: #879289; font-size: 12px; font-weight: 500; }
.freshcraft-product-price ins { text-decoration: none; }
.freshcraft-stock { margin: 4px 0 13px; font-size: 11px; font-weight: 750; }
.freshcraft-stock.is-in-stock { color: var(--freshcraft-green-700); }
.freshcraft-stock.is-out-of-stock { color: var(--freshcraft-danger); }
.freshcraft-product-actions { display: grid; margin-top: auto; grid-template-columns: 1fr 1fr; gap: 8px; }

.freshcraft-product-actions .button,
.freshcraft-buy-now {
    display: inline-flex !important;
    min-height: 40px;
    margin: 0 !important;
    padding: 8px 10px !important;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--freshcraft-green-700) !important;
    border-radius: 9px !important;
    background: var(--freshcraft-green-700) !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    text-align: center;
}

.freshcraft-buy-now { background: #fff !important; color: var(--freshcraft-green-700) !important; }
.freshcraft-product-actions .added_to_cart { display: none !important; }

.freshcraft-site .woocommerce-message,
.freshcraft-site .woocommerce-info,
.freshcraft-site .woocommerce-error {
    width: min(calc(100% - 24px), var(--freshcraft-container));
    margin: 12px auto;
    padding: 14px 18px;
    border: 1px solid #b9d7c4;
    border-left: 4px solid var(--freshcraft-green-700);
    border-radius: 10px;
    background: #f2fbf6;
    color: var(--freshcraft-ink);
    list-style: none;
}

.freshcraft-empty-state {
    display: flex;
    min-height: 130px;
    padding: 26px;
    align-items: center;
    gap: 18px;
    border: 1px dashed #afc3b6;
    border-radius: var(--freshcraft-radius);
    background: var(--freshcraft-green-50);
}

.freshcraft-empty-state > .freshcraft-icon { width: 38px; height: 38px; color: var(--freshcraft-green-700); }
.freshcraft-empty-state div { display: grid; margin-right: auto; }
.freshcraft-empty-state span { color: var(--freshcraft-muted); }

.freshcraft-promo-section { padding-top: 20px; }
.freshcraft-promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.freshcraft-promo {
    position: relative;
    display: grid;
    min-height: 330px;
    padding: clamp(28px, 4vw, 54px);
    grid-template-columns: 80px 1fr;
    align-items: start;
    gap: 24px;
    overflow: hidden;
    border-radius: var(--freshcraft-radius-lg);
    background: linear-gradient(135deg, #e8f7ef, #f8fcfa);
}
.freshcraft-promo-stem { background: linear-gradient(135deg, #fff6e8, #fcfbf5); }
.freshcraft-promo::after { position: absolute; right: -70px; bottom: -110px; width: 260px; height: 260px; border: 35px solid rgba(29,146,92,.08); border-radius: 50%; content: ""; }
.freshcraft-promo .freshcraft-card-icon { width: 76px; height: 76px; border-radius: 22px; }
.freshcraft-promo h2 { margin: 4px 0 12px; color: var(--freshcraft-green-900); font-size: clamp(26px, 2.4vw, 38px); letter-spacing: -.04em; line-height: 1.1; }
.freshcraft-promo p { max-width: 520px; margin: 0 0 24px; color: var(--freshcraft-muted); }

.freshcraft-originals {
    position: relative;
    overflow: hidden;
    background: var(--freshcraft-green-900);
    color: #fff;
}
.freshcraft-originals::before { position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(58,190,123,.22), transparent 35%), linear-gradient(120deg, transparent 40%, rgba(255,255,255,.035)); content: ""; }
.freshcraft-originals-layout { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: clamp(50px, 7vw, 110px); }
.freshcraft-originals h2 { color: #fff; }
.freshcraft-originals p { color: #bed4c6; }
.freshcraft-originals .freshcraft-button-secondary { border-color: rgba(255,255,255,.55); background: transparent; color: #fff !important; }
.freshcraft-originals-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.freshcraft-originals-grid a { display: flex; min-height: 94px; padding: 18px; align-items: center; gap: 14px; border: 1px solid rgba(255,255,255,.13); border-radius: 16px; background: rgba(255,255,255,.07); transition: background .2s ease, transform .2s ease; }
.freshcraft-originals-grid a:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.freshcraft-originals-grid a span { display: grid; width: 45px; height: 45px; place-items: center; border-radius: 13px; background: rgba(64,201,132,.16); color: #86e2ad; }
.freshcraft-originals-grid strong { font-size: 14px; }

.freshcraft-application-section,
.freshcraft-learning,
.freshcraft-brand-section { background: var(--freshcraft-surface); }

.freshcraft-application-grid,
.freshcraft-learning-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.freshcraft-application-grid a,
.freshcraft-learning-grid a { position: relative; display: flex; min-height: 220px; padding: 25px; flex-direction: column; align-items: flex-start; border: 1px solid var(--freshcraft-line); border-radius: var(--freshcraft-radius); background: #fff; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.freshcraft-application-grid a:hover,
.freshcraft-learning-grid a:hover { border-color: #a7cdb5; box-shadow: var(--freshcraft-shadow); transform: translateY(-3px); }
.freshcraft-application-grid a > span,
.freshcraft-learning-grid a > span { display: grid; width: 48px; height: 48px; margin-bottom: 23px; place-items: center; border-radius: 14px; background: var(--freshcraft-green-100); color: var(--freshcraft-green-700); }
.freshcraft-application-grid strong,
.freshcraft-learning-grid strong { color: var(--freshcraft-green-900); font-size: 17px; line-height: 1.3; }
.freshcraft-application-grid small,
.freshcraft-learning-grid small { margin-top: 8px; color: var(--freshcraft-muted); font-size: 13px; }
.freshcraft-application-grid a > .freshcraft-icon,
.freshcraft-learning-grid a > .freshcraft-icon { position: absolute; right: 20px; bottom: 20px; width: 18px; height: 18px; color: var(--freshcraft-green-700); }

.freshcraft-project-assistance { background: linear-gradient(180deg, #f0faf4 0, #fff 100%); }
.freshcraft-project-hero { display: grid; margin-bottom: 38px; grid-template-columns: 1fr auto; align-items: end; gap: 40px; }
.freshcraft-project-hero > div:first-child { max-width: 850px; }
.freshcraft-project-hero .freshcraft-button-row { max-width: 300px; }
.freshcraft-project-hero .freshcraft-button { width: 100%; }

.freshcraft-service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.freshcraft-service-grid article { padding: 24px; border: 1px solid var(--freshcraft-line); border-radius: var(--freshcraft-radius); background: #fff; }
.freshcraft-service-grid article > span { display: grid; width: 45px; height: 45px; margin-bottom: 18px; place-items: center; border-radius: 13px; background: var(--freshcraft-green-100); color: var(--freshcraft-green-700); }
.freshcraft-service-grid h3 { margin: 0 0 8px; color: var(--freshcraft-green-900); font-size: 17px; }
.freshcraft-service-grid p { margin: 0; color: var(--freshcraft-muted); font-size: 13px; }
.freshcraft-disclaimer { margin: 24px 0 0; padding: 13px 17px; border-left: 3px solid var(--freshcraft-green-600); border-radius: 0 9px 9px 0; background: #edf8f2; color: #46574c; font-size: 12px; }
.freshcraft-enquiry-grid article { display: flex; min-height: 250px; flex-direction: column; }
.freshcraft-enquiry-grid article a { display: inline-flex; margin-top: auto; padding-top: 16px; align-items: center; gap: 6px; color: var(--freshcraft-green-700); font-size: 13px; font-weight: 800; }
.freshcraft-enquiry-grid article a .freshcraft-icon { width: 16px; height: 16px; }

.freshcraft-brand-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.freshcraft-brand-grid a { display: flex; min-height: 95px; padding: 15px; align-items: center; justify-content: center; gap: 12px; border: 1px solid var(--freshcraft-line); border-radius: 14px; background: #fff; color: #314037; }
.freshcraft-brand-grid a:hover { border-color: #99c8ac; color: var(--freshcraft-green-700); }
.freshcraft-brand-grid span { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; background: var(--freshcraft-green-100); color: var(--freshcraft-green-800); font-weight: 850; }
.freshcraft-brand-grid strong { font-size: 14px; }

.freshcraft-calculators { padding-top: 15px; }
.freshcraft-calculator-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.freshcraft-calculator-grid a { display: flex; min-height: 82px; padding: 18px; align-items: center; gap: 13px; border: 1px solid var(--freshcraft-line); border-radius: 14px; background: #fff; color: #2d3b33; font-size: 13px; font-weight: 750; }
.freshcraft-calculator-grid a:hover { border-color: #9bc9ad; color: var(--freshcraft-green-700); }
.freshcraft-calculator-grid .freshcraft-icon { color: var(--freshcraft-green-700); }

.freshcraft-benefits { background: var(--freshcraft-green-50); }
.freshcraft-benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px 30px; }
.freshcraft-benefit-grid article { display: flex; gap: 14px; }
.freshcraft-benefit-grid article > span { display: grid; width: 45px; height: 45px; flex: 0 0 45px; place-items: center; border-radius: 13px; background: #fff; color: var(--freshcraft-green-700); box-shadow: 0 5px 16px rgba(18,59,42,.08); }
.freshcraft-benefit-grid h3 { margin: 0 0 4px; color: var(--freshcraft-green-900); font-size: 15px; }
.freshcraft-benefit-grid p { margin: 0; color: var(--freshcraft-muted); font-size: 12px; }

.freshcraft-stats { padding: 48px 0; background: var(--freshcraft-green-900); color: #fff; }
.freshcraft-stat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: rgba(255,255,255,.13); }
.freshcraft-stat-grid > div { display: grid; min-height: 145px; padding: 20px; place-content: center; justify-items: center; background: var(--freshcraft-green-900); text-align: center; }
.freshcraft-stat-grid strong { color: #8ae2af; font-size: 36px; line-height: 1; }
.freshcraft-stat-grid span { margin-top: 9px; font-size: 13px; font-weight: 750; }
.freshcraft-stat-grid small { margin-top: 4px; color: #a9c4b3; font-size: 9px; text-transform: uppercase; }

.freshcraft-reviews { background: var(--freshcraft-surface); }
.freshcraft-review-layout { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 80px; }
.freshcraft-review-layout .freshcraft-button { margin-top: 25px; }
.freshcraft-review-placeholder { position: relative; min-height: 270px; padding: 45px; border: 1px solid var(--freshcraft-line); border-radius: var(--freshcraft-radius-lg); background: #fff; box-shadow: var(--freshcraft-shadow); }
.freshcraft-review-placeholder > .freshcraft-icon { width: 44px; height: 44px; color: #91c5a8; }
.freshcraft-review-placeholder p { margin: 28px 0 18px; color: #34463b; font-size: 20px; font-weight: 650; }
.freshcraft-review-placeholder span { color: var(--freshcraft-muted); font-size: 13px; }

.freshcraft-b2b { background: #edf8f2; }
.freshcraft-b2b-layout { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 60px; }
.freshcraft-b2b-layout > div:first-child { max-width: 880px; }
.freshcraft-b2b .freshcraft-button-row { max-width: 250px; }
.freshcraft-b2b .freshcraft-button { width: 100%; }
.freshcraft-chip-row { display: flex; margin-top: 24px; flex-wrap: wrap; gap: 8px; }
.freshcraft-chip-row span { padding: 7px 11px; border: 1px solid #c9dfd0; border-radius: 99px; background: rgba(255,255,255,.6); color: #405247; font-size: 11px; font-weight: 700; }

.freshcraft-newsletter { padding: 60px 0; background: var(--freshcraft-green-700); color: #fff; }
.freshcraft-newsletter-layout { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 70px; }
.freshcraft-newsletter h2 { color: #fff; }
.freshcraft-newsletter p { color: #f2fbf6; }
.freshcraft-newsletter .freshcraft-eyebrow { color: #fff; }
.freshcraft-newsletter form { display: grid; height: 58px; grid-template-columns: 1fr auto; overflow: hidden; border: 1px solid rgba(255,255,255,.35); border-radius: 13px; background: #fff; }
.freshcraft-newsletter input { min-width: 0; padding: 0 18px; border: 0; outline: 0; color: var(--freshcraft-ink); }
.freshcraft-newsletter button { padding: 0 24px; border: 0; background: var(--freshcraft-green-900); color: #fff; cursor: pointer; font-weight: 800; }
.freshcraft-form-status { grid-column: 2; margin-top: 9px !important; font-size: 12px !important; }

.freshcraft-footer { padding: 70px 0 0; background: #0c281d; color: #d2e0d7; }
.freshcraft-footer-top { display: grid; padding-bottom: 55px; grid-template-columns: 1.7fr repeat(5, 1fr); gap: 35px; }
.freshcraft-logo-footer { color: #fff !important; }
.freshcraft-logo-footer small { color: #97b5a3; }
.freshcraft-footer-brand > p { max-width: 330px; margin: 22px 0; color: #9fb7a8; font-size: 13px; }
.freshcraft-contact-list { display: grid; margin: 0; padding: 0; gap: 8px; list-style: none; color: #a9beb1; font-size: 12px; }
.freshcraft-contact-list strong { color: #dce9e1; }
.freshcraft-contact-list a:hover { color: #8ae2af; }
.freshcraft-editable-placeholder { color: #e7bd75; }
.freshcraft-footer-column h2 { margin: 4px 0 18px; color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.freshcraft-footer-column ul { display: grid; margin: 0; padding: 0; gap: 10px; list-style: none; }
.freshcraft-footer-column a { color: #9fb7a8; font-size: 12px; }
.freshcraft-footer-column a:hover { color: #8ae2af; }
.freshcraft-footer-bottom { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 25px; border-top: 1px solid rgba(255,255,255,.1); color: #8fa99a; font-size: 11px; }
.freshcraft-payment-labels,
.freshcraft-social-links { display: flex; align-items: center; gap: 8px; }
.freshcraft-payment-labels span { padding: 5px 8px; border: 1px solid rgba(255,255,255,.14); border-radius: 5px; color: #c4d5ca; font-weight: 750; }
.freshcraft-social-links a:hover { color: #8ae2af; }

.freshcraft-floating-whatsapp {
    position: fixed;
    z-index: 950;
    right: 24px;
    bottom: 24px;
    display: flex;
    min-height: 48px;
    padding: 0 17px;
    align-items: center;
    gap: 9px;
    border-radius: 99px;
    background: #128c4b;
    color: #fff !important;
    box-shadow: 0 12px 28px rgba(0,80,39,.25);
    font-size: 13px;
    font-weight: 800;
}

.freshcraft-back-to-top {
    position: fixed;
    z-index: 949;
    right: 27px;
    bottom: 84px;
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--freshcraft-line);
    border-radius: 50%;
    background: #fff;
    color: var(--freshcraft-green-900);
    box-shadow: var(--freshcraft-shadow);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease;
}

.freshcraft-back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.freshcraft-mobile-bottom { display: none; }

@media (max-width: 1180px) {
    .freshcraft-header-main { grid-template-columns: auto 1fr auto; gap: 18px; }
    .freshcraft-search { grid-template-columns: 130px 1fr 46px; }
    .freshcraft-header-actions > a span:not(.freshcraft-cart-count) { display: none; }
    .freshcraft-header-actions .freshcraft-whatsapp-header { display: none; }
    .freshcraft-nav ul { gap: 14px; }
    .freshcraft-nav ul li:nth-last-child(-n+2) { display: none; }
    .freshcraft-category-grid,
    .freshcraft-product-grid { grid-template-columns: repeat(3, 1fr); }
    .freshcraft-application-grid,
    .freshcraft-learning-grid,
    .freshcraft-service-grid { grid-template-columns: repeat(2, 1fr); }
    .freshcraft-footer-top { grid-template-columns: 1.7fr repeat(3, 1fr); }
    .freshcraft-footer-column:nth-last-child(-n+2) { margin-top: 20px; }
}

@media (max-width: 900px) {
    .freshcraft-container { width: min(calc(100% - 32px), var(--freshcraft-container)); }
    .freshcraft-announcement-track { justify-content: center; }
    .freshcraft-announcement-track span { display: none; }
    .freshcraft-announcement-track span.is-active { display: inline-flex; }
    .freshcraft-header-main { min-height: 70px; grid-template-columns: auto auto 1fr; }
    .freshcraft-menu-toggle { display: grid; width: 42px; height: 42px; padding: 0; place-items: center; border: 1px solid var(--freshcraft-line); border-radius: 10px; background: #fff; color: var(--freshcraft-green-900); }
    .freshcraft-logo { font-size: 22px; }
    .freshcraft-logo-mark { width: 34px; height: 34px; }
    .freshcraft-search { display: none; }
    .freshcraft-header-actions { margin-left: auto; }
    .freshcraft-header-actions .freshcraft-wishlist-link { display: none; }
    .freshcraft-nav { display: none; }
    .freshcraft-mobile-menu { padding: 16px; border-top: 1px solid var(--freshcraft-line); background: #fff; }
    .freshcraft-mobile-menu:not([hidden]) { display: grid; gap: 10px; }
    .freshcraft-mobile-search { display: grid; height: 46px; grid-template-columns: 1fr 46px; overflow: hidden; border: 1px solid var(--freshcraft-line); border-radius: 10px; }
    .freshcraft-mobile-search input { min-width: 0; padding: 0 13px; border: 0; }
    .freshcraft-mobile-search button { border: 0; background: var(--freshcraft-green-700); color: #fff; }
    .freshcraft-mobile-menu details { border: 1px solid var(--freshcraft-line); border-radius: 10px; }
    .freshcraft-mobile-menu summary { padding: 13px; color: var(--freshcraft-green-900); font-weight: 800; cursor: pointer; }
    .freshcraft-mobile-menu details div { display: grid; padding: 0 13px 13px; grid-template-columns: 1fr 1fr; gap: 7px; }
    .freshcraft-mobile-menu a { padding: 9px; border-radius: 7px; background: var(--freshcraft-surface); font-size: 13px; }
    .freshcraft-hero { min-height: 620px; }
    .freshcraft-hero-slide > img { object-position: 62% center; }
    .freshcraft-hero-slide::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.98) 0, rgba(255,255,255,.9) 48%, rgba(255,255,255,.25) 100%); content: ""; }
    .freshcraft-hero-content { z-index: 2; padding-right: 36%; }
    .freshcraft-quick-scroll { display: flex; overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none; }
    .freshcraft-quick-scroll::-webkit-scrollbar { display: none; }
    .freshcraft-quick-scroll a { min-width: 96px; scroll-snap-align: start; }
    .freshcraft-promo { grid-template-columns: 60px 1fr; }
    .freshcraft-promo .freshcraft-card-icon { width: 58px; height: 58px; }
    .freshcraft-originals-layout,
    .freshcraft-review-layout,
    .freshcraft-newsletter-layout { grid-template-columns: 1fr; gap: 45px; }
    .freshcraft-project-hero,
    .freshcraft-b2b-layout { grid-template-columns: 1fr; align-items: start; gap: 28px; }
    .freshcraft-project-hero .freshcraft-button-row,
    .freshcraft-b2b .freshcraft-button-row { max-width: none; }
    .freshcraft-brand-grid { grid-template-columns: repeat(3, 1fr); }
    .freshcraft-calculator-grid { grid-template-columns: repeat(2, 1fr); }
    .freshcraft-benefit-grid { grid-template-columns: repeat(2, 1fr); }
    .freshcraft-stat-grid { grid-template-columns: repeat(3, 1fr); }
    .freshcraft-footer-top { grid-template-columns: repeat(3, 1fr); }
    .freshcraft-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
    body.freshcraft-home-page { padding-bottom: 68px; }
    .freshcraft-container { width: min(calc(100% - 24px), var(--freshcraft-container)); }
    .freshcraft-announcement { min-height: 32px; }
    .freshcraft-announcement-track { min-height: 32px; }
    .freshcraft-logo small { display: none; }
    .freshcraft-logo { font-size: 20px; }
    .freshcraft-header-actions > a:first-child { display: none; }
    .freshcraft-hero { min-height: 650px; }
    .freshcraft-hero-slide > img { height: 46%; object-position: 72% center; }
    .freshcraft-hero-slide::after { background: linear-gradient(180deg, rgba(255,255,255,.05) 0, rgba(255,255,255,.22) 33%, #fff 48%, #fff 100%); }
    .freshcraft-hero-content { inset: auto 0 58px; display: block; height: auto; padding-right: 0; }
    .freshcraft-hero h1,
    .freshcraft-hero h2 { font-size: 34px; }
    .freshcraft-hero h1 { font-size: 30px; }
    .freshcraft-hero h1 + h2 { font-size: 20px; }
    .freshcraft-hero p { margin: 14px 0 19px; font-size: 15px; }
    .freshcraft-hero .freshcraft-button-row { display: grid; grid-template-columns: 1fr 1fr; }
    .freshcraft-hero .freshcraft-button { min-height: 43px; padding: 8px 10px; font-size: 12px; text-align: center; }
    .freshcraft-slider-controls { bottom: 17px; }
    .freshcraft-slider-controls > button { display: none; }
    .freshcraft-section { padding: 62px 0; }
    .freshcraft-section-heading-row { display: grid; align-items: start; gap: 12px; }
    .freshcraft-section-heading { margin-bottom: 25px; }
    .freshcraft-section-heading h2,
    .freshcraft-project-hero h2,
    .freshcraft-originals h2,
    .freshcraft-b2b h2,
    .freshcraft-newsletter h2,
    .freshcraft-review-layout h2 { font-size: 31px; }
    .freshcraft-section-heading p,
    .freshcraft-project-hero p,
    .freshcraft-originals p,
    .freshcraft-b2b p,
    .freshcraft-newsletter p,
    .freshcraft-review-layout p { font-size: 15px; }
    .freshcraft-category-grid,
    .freshcraft-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .freshcraft-category-card { min-height: 195px; padding: 15px; grid-template-columns: 1fr; gap: 10px; }
    .freshcraft-category-card > .freshcraft-icon { display: none; }
    .freshcraft-category-copy small { min-height: 52px; }
    .freshcraft-product-content { padding: 12px; }
    .freshcraft-product-title { min-height: 39px; font-size: 13px; line-height: 1.45; }
    .freshcraft-product-media img { padding: 8px; }
    .freshcraft-product-price { font-size: 15px; }
    .freshcraft-product-actions { grid-template-columns: 1fr; }
    .freshcraft-product-actions .button,
    .freshcraft-buy-now { min-height: 38px; font-size: 11px !important; }
    .freshcraft-empty-state { display: grid; justify-items: start; }
    .freshcraft-promo-grid { grid-template-columns: 1fr; }
    .freshcraft-promo { min-height: 0; padding: 27px; grid-template-columns: 1fr; }
    .freshcraft-originals-grid,
    .freshcraft-application-grid,
    .freshcraft-learning-grid,
    .freshcraft-service-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .freshcraft-originals-grid a { min-height: 112px; padding: 13px; align-items: flex-start; flex-direction: column; }
    .freshcraft-application-grid a,
    .freshcraft-learning-grid a { min-height: 210px; padding: 18px; }
    .freshcraft-service-grid article { padding: 18px; }
    .freshcraft-service-grid h3 { font-size: 15px; }
    .freshcraft-service-grid p { font-size: 12px; }
    .freshcraft-brand-grid { grid-template-columns: repeat(2, 1fr); }
    .freshcraft-brand-grid a { justify-content: flex-start; }
    .freshcraft-calculator-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .freshcraft-calculator-grid a { min-height: 96px; padding: 13px; align-items: flex-start; flex-direction: column; }
    .freshcraft-benefit-grid { grid-template-columns: 1fr; }
    .freshcraft-stat-grid { grid-template-columns: repeat(2, 1fr); }
    .freshcraft-stat-grid > div { min-height: 130px; }
    .freshcraft-review-placeholder { min-height: 240px; padding: 28px; }
    .freshcraft-newsletter form { height: auto; grid-template-columns: 1fr; overflow: visible; border: 0; background: transparent; gap: 8px; }
    .freshcraft-newsletter input,
    .freshcraft-newsletter button { min-height: 50px; border-radius: 10px; }
    .freshcraft-newsletter input { background: #fff; }
    .freshcraft-footer-top { grid-template-columns: 1fr 1fr; gap: 30px 22px; }
    .freshcraft-footer-brand { grid-column: 1 / -1; }
    .freshcraft-footer-bottom { padding: 24px 0; align-items: flex-start; flex-direction: column; }
    .freshcraft-payment-labels { flex-wrap: wrap; }
    .freshcraft-floating-whatsapp { right: 14px; bottom: 82px; width: 48px; padding: 0; justify-content: center; }
    .freshcraft-floating-whatsapp span { display: none; }
    .freshcraft-back-to-top { right: 17px; bottom: 140px; }
    .freshcraft-mobile-bottom { position: fixed; z-index: 960; right: 0; bottom: 0; left: 0; display: grid; min-height: 66px; padding: 6px max(8px, env(safe-area-inset-right)) max(6px, env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left)); grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--freshcraft-line); background: rgba(255,255,255,.98); box-shadow: 0 -8px 24px rgba(18,59,42,.08); backdrop-filter: blur(12px); }
    .freshcraft-mobile-bottom a,
    .freshcraft-mobile-bottom button { position: relative; display: grid; padding: 3px; justify-items: center; gap: 1px; border: 0; background: transparent; color: #45574c; font-size: 9px; font-weight: 700; }
    .freshcraft-mobile-bottom .freshcraft-icon { width: 20px; height: 20px; }
    .freshcraft-mobile-bottom .freshcraft-cart-count { top: -1px; right: 18%; }
}

@media (prefers-reduced-motion: reduce) {
    .freshcraft-site *,
    .freshcraft-site *::before,
    .freshcraft-site *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
