:root {
    --font-display: "Fraunces", Georgia, serif;
    --font-body:
        "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;

    --leaf: #3f9b25;
    --leaf-dark: #1f6d18;
    --kiwi: #89d82f;
    --lime: #c9ff4f;

    --orange: #ff5000;
    --orange-deep: #d83a00;
    --orange-hot: #ff6a00;
    --mango: #ffb31a;
    --peach: #ffd7b8;
    --lemon: #fff46a;

    --berry: #ff3f7f;
    --raspberry: #ff6fa5;
    --grapefruit: #ff876c;

    --mint: #efffee;
    --cream: #fffdf3;
    --white: #ffffff;

    --ink: #152015;
    --text: #314131;
    --muted: #738073;

    --line: rgba(31, 109, 24, 0.1);
    --line-white: rgba(255, 255, 255, 0.88);

    --glass: rgba(255, 255, 255, 0.78);
    --glass-strong: rgba(255, 255, 255, 0.92);

    --shadow-xs: 0 6px 18px rgba(45, 120, 24, 0.06);
    --shadow-sm: 0 16px 38px rgba(45, 120, 24, 0.09);
    --shadow-md: 0 26px 70px rgba(45, 120, 24, 0.12);
    --shadow-orange: 0 14px 34px rgba(255, 80, 0, 0.22);

    --radius-xs: 10px;
    --radius-sm: 14px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;

    --container: 1220px;
    --section: 124px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background:
        radial-gradient(
            circle at 10% 2%,
            rgba(255, 244, 106, 0.34),
            transparent 24%
        ),
        radial-gradient(
            circle at 92% 8%,
            rgba(255, 106, 0, 0.12),
            transparent 26%
        ),
        linear-gradient(180deg, #fffef8 0%, #ffffff 34%, #fbfffa 100%);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.58) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.58) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.14),
        transparent 75%
    );
}

body::after {
    content: "";
    position: fixed;
    inset: auto -10% -22% -10%;
    height: 420px;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(
            circle at 34% 62%,
            rgba(255, 106, 0, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 76% 48%,
            rgba(137, 216, 47, 0.1),
            transparent 30%
        );
    filter: blur(8px);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(255, 106, 0, 0.42);
    outline-offset: 4px;
}

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

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    white-space: nowrap;
    border: 0;
    clip: rect(0 0 0 0);
}

.is-hidden {
    display: none !important;
}

.info-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.shipping-pill,
.free-shipping-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    border-radius: 999px;
    font-weight: 1000;
    line-height: 1.2;
}

.shipping-pill {
    padding: 6px 10px;
    color: #183815;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.62);
}

.info-item svg,
.footer-trust svg,
.footer-contact svg,
.footer-social svg,
.contact-float svg {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.skip-link {
    position: fixed;
    left: 18px;
    top: 14px;
    z-index: 100;
    padding: 12px 16px;
    border-radius: 12px;
    color: white;
    background: var(--leaf-dark);
    transform: translateY(-140%);
    transition: transform 0.18s ease;
}

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

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

/* Announcement and top strip */

.announcement-bar {
    position: relative;
    z-index: 35;
    color: var(--ink);
    background: linear-gradient(90deg, #fff8df, #eef9e8 62%, #fff1dc);
    border-bottom: 1px solid rgba(31, 109, 24, 0.12);
    box-shadow: 0 10px 26px rgba(31, 109, 24, 0.08);
}

.announcement-bar.is-hidden {
    display: none;
}

.announcement-inner {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding-block: 9px;
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
}

.announcement-content a {
    color: var(--leaf-dark);
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.announcement-close {
    width: 32px;
    height: 32px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 32px;
    border: 1px solid rgba(31, 109, 24, 0.16);
    border-radius: 999px;
    color: var(--leaf-dark);
    background: rgba(255, 255, 255, 0.78);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.announcement-close:hover {
    transform: translateY(-1px);
    border-color: rgba(31, 109, 24, 0.28);
    background: white;
}

.top-strip {
    position: relative;
    z-index: 30;
    min-height: 42px;
    color: white;
    font-size: 13px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--leaf-dark), var(--leaf) 68%, var(--mango));
    box-shadow: 0 6px 18px rgba(31, 109, 24, 0.1);
}

.top-strip::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.36);
    opacity: 1;
}

.top-strip .container {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.top-strip-group {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.top-strip-group-right {
    justify-content: flex-end;
}

.top-strip a {
    font-weight: 900;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 25;
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(31, 109, 24, 0.08);
    backdrop-filter: blur(22px) saturate(1.18);
    -webkit-backdrop-filter: blur(22px) saturate(1.18);
}

.nav-wrap {
    min-height: 104px;
    display: grid;
    grid-template-columns: 230px 1fr 250px;
    align-items: center;
    gap: 28px;
}

.logo {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    padding: 12px 0;
    transition: transform 0.22s ease;
}

.logo:hover {
    transform: translateY(-2px) rotate(-1deg);
}

.logo img {
    width: 188px;
    height: auto;
}

.mobile-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    place-items: center;
    align-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid rgba(31, 109, 24, 0.1);
    border-radius: 999px;
    color: var(--leaf-dark);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-xs);
    cursor: pointer;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.mobile-menu-toggle:hover {
    transform: translateY(-1px);
    background: rgba(239, 255, 238, 0.9);
    border-color: rgba(63, 155, 37, 0.2);
}

.mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition:
        opacity 0.18s ease,
        transform 0.18s ease;
}

.main-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(31, 109, 24, 0.08);
    box-shadow: var(--shadow-xs);
}

.main-nav a {
    position: relative;
    padding: 13px 17px;
    border-radius: 999px;
    color: #243424;
    font-size: 14px;
    font-weight: 900;
    transition:
        color 0.18s ease,
        background 0.18s ease,
        transform 0.18s ease;
}

.main-nav a:hover {
    color: var(--leaf-dark);
    background: rgba(239, 255, 238, 0.78);
    transform: translateY(-1px);
}

.main-nav a.is-active {
    color: var(--leaf-dark);
    background: rgba(239, 255, 238, 0.92);
}

.header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 14px;
}

.phone-link {
    color: var(--leaf-dark);
    font-size: 15px;
    font-weight: 1000;
    white-space: nowrap;
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 23px;
    border: 0;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 1000;
    line-height: 1;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: white;
    background: linear-gradient(135deg, var(--orange-deep), var(--orange) 48%, var(--orange-hot) 76%, var(--mango));
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    box-shadow: 0 20px 46px rgba(255, 80, 0, 0.28);
}

.btn-green {
    color: white;
    background: linear-gradient(135deg, var(--leaf-dark), var(--leaf) 78%, var(--kiwi));
    box-shadow: 0 14px 34px rgba(63, 155, 37, 0.18);
}

.btn-light {
    color: var(--leaf-dark);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(63, 155, 37, 0.16);
    box-shadow: var(--shadow-xs);
}

/* Hero */

.hero {
    position: relative;
    padding: 76px 0 78px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    right: -160px;
    top: 86px;
    z-index: -1;
    border-radius: 999px;
    background: radial-gradient(
        circle at 34% 34%,
        rgba(255, 244, 106, 0.34),
        rgba(255, 179, 26, 0.14) 44%,
        transparent 68%
    );
    filter: blur(1px);
}

.hero::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    left: -100px;
    bottom: -20px;
    z-index: -1;
    border-radius: 999px;
    background: radial-gradient(
        circle at 38% 38%,
        rgba(255, 111, 165, 0.16),
        rgba(255, 106, 0, 0.08) 48%,
        transparent 72%
    );
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.78fr);
    align-items: center;
    gap: clamp(44px, 6vw, 76px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 15px;
    border-radius: 999px;
    color: var(--leaf-dark);
    font-size: 13px;
    font-weight: 1000;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(63, 155, 37, 0.12);
    box-shadow: var(--shadow-xs);
}

.eyebrow::before {
    content: "";
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--lime), var(--leaf));
    box-shadow: 0 0 0 7px rgba(137, 216, 47, 0.18);
}

h1,
h2,
h3 {
    text-wrap: balance;
}

h1 {
    margin: 28px 0 26px;
    max-width: 760px;
    font-family: var(--font-display);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: 0;
}

.gradient-text {
    background: linear-gradient(110deg, var(--leaf-dark), var(--leaf), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-lead {
    max-width: 650px;
    margin: 0;
    color: var(--text);
    font-size: 18px;
    line-height: 1.78;
}

.promo-strip {
    display: inline-flex;
    max-width: 650px;
    margin: 22px 0 0;
    padding: 12px 16px;
    border-radius: 16px;
    color: #4d2c00;
    background: rgba(255, 244, 106, 0.72);
    border: 1px solid rgba(255, 179, 26, 0.28);
    box-shadow: var(--shadow-xs);
    font-size: 15px;
    font-weight: 1000;
    line-height: 1.45;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.hero-note {
    max-width: 640px;
    margin-top: 20px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

/* Hero visual */

.hero-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: auto;
    padding-block: 24px;
}

.fruit-orb {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    animation: fruitFloat 7s ease-in-out infinite;
    opacity: 0.48;
    filter: blur(3px);
}

.orb-1 {
    width: 242px;
    height: 242px;
    right: 30px;
    top: 4px;
    background: radial-gradient(
        circle at 35% 34%,
        rgba(255, 249, 158, 0.82),
        rgba(255, 209, 44, 0.58) 55%,
        rgba(255, 159, 26, 0.34)
    );
    box-shadow: 0 24px 60px rgba(255, 179, 26, 0.12);
}

.orb-2 {
    width: 166px;
    height: 166px;
    left: 0;
    bottom: 128px;
    background: radial-gradient(
        circle at 35% 34%,
        rgba(255, 180, 205, 0.78),
        rgba(255, 63, 127, 0.46) 58%,
        rgba(232, 31, 99, 0.22)
    );
    box-shadow: 0 24px 60px rgba(255, 63, 127, 0.1);
    animation-delay: -2.2s;
}

.orb-3 {
    width: 126px;
    height: 126px;
    right: 68px;
    bottom: 105px;
    background: radial-gradient(
        circle at 35% 34%,
        rgba(221, 255, 217, 0.86),
        rgba(137, 216, 47, 0.52) 56%,
        rgba(63, 155, 37, 0.24)
    );
    box-shadow: 0 24px 60px rgba(63, 155, 37, 0.1);
    animation-delay: -4.1s;
}

@keyframes fruitFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        transform: translate3d(0, -16px, 0) rotate(3deg);
    }
}

.product-hero-card {
    position: relative;
    width: min(100%, 500px);
    padding: 24px;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.94),
            rgba(255, 255, 255, 0.78)
        ),
        radial-gradient(
            circle at 90% 10%,
            rgba(255, 244, 106, 0.2),
            transparent 28%
        ),
        radial-gradient(
            circle at 80% 88%,
            rgba(137, 216, 47, 0.12),
            transparent 30%
        );
    border: 1px solid rgba(31, 109, 24, 0.08);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(24px) saturate(1.16);
    -webkit-backdrop-filter: blur(24px) saturate(1.16);
    overflow: clip;
    transition:
        transform 0.32s ease,
        box-shadow 0.32s ease;
}

.product-hero-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 34px 86px rgba(45, 120, 24, 0.14);
}

.product-hero-card::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: calc(var(--radius-xl) - 12px);
    border: 1px solid rgba(255, 255, 255, 0.82);
    pointer-events: none;
}

.blender-placeholder {
    position: relative;
    height: clamp(300px, 34vw, 390px);
    display: grid;
    place-items: center;
    border-radius: 26px;
    background:
        radial-gradient(
            circle at 50% 15%,
            rgba(255, 244, 106, 0.22),
            transparent 24%
        ),
        rgba(255, 255, 255, 0.48);
}

.blender-placeholder img {
    position: absolute;
    inset: 16px 22px 10px;
    width: calc(100% - 44px);
    height: calc(100% - 26px);
    max-width: none;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 28px 34px rgba(21, 32, 21, 0.16));
    transition: transform 0.35s ease;
}

.product-hero-card:hover .blender-placeholder img {
    transform: scale(1.035) translateY(-4px);
}

.fallback-blender {
    position: relative;
    width: 220px;
    height: 342px;
    filter: drop-shadow(0 32px 40px rgba(21, 32, 21, 0.18));
    transition: transform 0.35s ease;
}

.product-hero-card:hover .fallback-blender {
    transform: scale(1.035) translateY(-4px);
}

.fallback-blender::before {
    content: "";
    position: absolute;
    left: 56px;
    top: 4px;
    width: 108px;
    height: 198px;
    border-radius: 22px 22px 32px 32px;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.94),
        rgba(230, 250, 255, 0.48)
    );
    border: 3px solid rgba(63, 155, 37, 0.18);
}

.fallback-blender::after {
    content: "";
    position: absolute;
    left: 34px;
    bottom: 0;
    width: 152px;
    height: 124px;
    border-radius: 34px 34px 24px 24px;
    background: linear-gradient(135deg, #252525, #0f0f0f);
    box-shadow:
        inset 0 0 0 8px rgba(255, 255, 255, 0.06),
        0 24px 60px rgba(0, 0, 0, 0.18);
}

.hero-product-info {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    padding-top: 2px;
}

.hero-product-info h2 {
    margin: 0 0 6px;
    font-family: var(--font-display);
    font-size: clamp(24px, 2.2vw, 28px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0;
}

.hero-product-info p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.price-pill {
    display: grid;
    gap: 2px;
    padding: 12px 14px;
    border-radius: 14px;
    color: white;
    font-size: 21px;
    font-weight: 1000;
    letter-spacing: 0;
    background: linear-gradient(135deg, var(--orange), #ff941f);
    box-shadow: var(--shadow-orange);
    white-space: nowrap;
}

.price-pill .old-price {
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
}

/* Badges */

.badges {
    padding: 16px 0 84px;
}

.badge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.badge {
    position: relative;
    padding: 26px;
    min-height: 138px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(31, 109, 24, 0.08);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(20px) saturate(1.14);
    -webkit-backdrop-filter: blur(20px) saturate(1.14);
    overflow: hidden;
    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease;
}

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

.badge::after {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    top: 0;
    bottom: auto;
    width: auto;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--leaf), var(--mango));
    opacity: 0.38;
}

.badge strong {
    display: block;
    margin-bottom: 8px;
    color: var(--leaf-dark);
    font-size: 17px;
    font-weight: 1000;
}

.badge span {
    display: block;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Sections */

.section {
    padding: var(--section) 0;
}

.section-tight {
    padding-top: 42px;
    padding-bottom: 42px;
}

.section-after-hero {
    padding-top: 34px;
}

.order-section {
    padding-top: 48px;
}

.contact-section {
    padding-top: 48px;
}

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

.section-kicker {
    margin-bottom: 12px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 1000;
    letter-spacing: 0;
    text-transform: uppercase;
}

.section h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(34px, 4.2vw, 58px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0;
}

.section-head p {
    max-width: 540px;
    margin: 0;
    color: var(--text);
    font-size: 16px;
    line-height: 1.82;
}

.section-subhead {
    margin-top: 64px;
}

/* Inner pages */

.page-hero {
    position: relative;
    padding: 92px 0 40px;
    overflow: hidden;
}

.page-hero::after {
    content: "";
    position: absolute;
    right: -120px;
    top: 40px;
    width: 360px;
    height: 360px;
    z-index: -1;
    border-radius: 999px;
    background: radial-gradient(
        circle at 38% 38%,
        rgba(255, 244, 106, 0.26),
        rgba(255, 106, 0, 0.1) 46%,
        transparent 72%
    );
}

.page-hero-inner {
    max-width: 860px;
}

.page-hero h1 {
    margin: 16px 0 18px;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: var(--text);
    font-size: 18px;
    line-height: 1.78;
}

.breadcrumbs {
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
    content: "/";
    margin-left: 8px;
    color: rgba(115, 128, 115, 0.62);
}

.breadcrumbs a {
    color: var(--leaf-dark);
}

.prose-content {
    max-width: 920px;
}

.prose-content section + section {
    margin-top: 44px;
    padding-top: 36px;
    border-top: 1px solid rgba(31, 109, 24, 0.1);
}

.prose-content h2 {
    margin: 0 0 14px;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.14;
}

.prose-content p {
    margin: 0;
    color: var(--text);
    font-size: 18px;
    line-height: 1.84;
}

.prose-content ul {
    display: grid;
    gap: 10px;
    padding-left: 22px;
    margin: 18px 0 0;
    color: var(--text);
    font-size: 17px;
    line-height: 1.72;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.content-panel {
    padding: 32px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(
            150deg,
            rgba(255, 255, 255, 0.96),
            rgba(255, 255, 255, 0.78)
        );
    border: 1px solid rgba(31, 109, 24, 0.08);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(20px) saturate(1.1);
    -webkit-backdrop-filter: blur(20px) saturate(1.1);
}

.content-panel h2 {
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 1.22;
}

.content-panel p {
    margin: 0;
    color: var(--text);
    line-height: 1.78;
}

.answer-panel {
    padding: 36px 40px;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
        radial-gradient(circle at 95% 12%, rgba(255, 179, 26, 0.12), transparent 28%);
    border: 1px solid rgba(31, 109, 24, 0.08);
    box-shadow: var(--shadow-sm);
}

.answer-panel h2 {
    margin: 0 0 14px;
    font-size: clamp(30px, 3.5vw, 48px);
    line-height: 1.08;
}

.answer-panel p {
    max-width: 920px;
    margin: 0;
    color: var(--text);
    font-size: 18px;
    line-height: 1.82;
}

.split-grid,
.product-info-grid,
.contact-grid,
.order-grid {
    display: grid;
    gap: 34px;
}

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

.accent-warm {
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.8)),
        radial-gradient(circle at 100% 0%, rgba(255, 106, 0, 0.12), transparent 34%);
}

.accent-green {
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.8)),
        radial-gradient(circle at 100% 0%, rgba(137, 216, 47, 0.16), transparent 34%);
}

.use-grid,
.make-grid,
.why-grid {
    display: grid;
    gap: 18px;
}

.use-grid {
    grid-template-columns: repeat(5, 1fr);
}

.use-card,
.make-grid div {
    position: relative;
    min-height: 104px;
    padding: 22px;
    border-radius: var(--radius-md);
    color: var(--leaf-dark);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(31, 109, 24, 0.08);
    box-shadow: var(--shadow-xs);
}

.use-card strong {
    display: block;
    line-height: 1.35;
}

.make-grid {
    grid-template-columns: repeat(4, 1fr);
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.recipe-card {
    padding: 24px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(31, 109, 24, 0.08);
    box-shadow: var(--shadow-xs);
}

.recipe-card span {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    color: var(--leaf-dark);
    background: rgba(239, 255, 238, 0.9);
    font-size: 12px;
    font-weight: 1000;
}

.recipe-card h3 {
    margin: 16px 0 10px;
    font-size: 20px;
    line-height: 1.2;
}

.recipe-card p {
    margin: 0;
    color: var(--text);
    font-size: 14px;
    line-height: 1.68;
}

.make-grid div::before,
.use-card::before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--lime), var(--leaf));
    box-shadow: 0 0 0 7px rgba(137, 216, 47, 0.13);
}

.why-grid {
    grid-template-columns: repeat(3, 1fr);
}

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

.model-difference-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    padding: 22px;
}

.model-difference-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.14;
}

.model-difference-lead {
    margin: 0 0 16px !important;
    color: var(--leaf-dark) !important;
    font-weight: 900;
    font-size: 14px !important;
    line-height: 1.54 !important;
}

.difference-list,
.model-card-meta {
    display: grid;
    gap: 12px;
    margin: 0;
}

.difference-list div {
    padding-top: 12px;
    border-top: 1px solid rgba(31, 109, 24, 0.1);
}

.difference-list dt,
.model-card-meta dt {
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 1000;
    letter-spacing: 0;
    text-transform: uppercase;
}

.difference-list dd,
.model-card-meta dd {
    margin: 0;
    color: var(--text);
    font-size: 14px;
    line-height: 1.56;
}

.model-card-meta {
    grid-template-columns: 1fr;
    margin-top: auto;
    padding-top: 18px;
}

.model-card-meta dd {
    color: var(--ink);
    font-weight: 1000;
}

.model-difference-card .btn {
    width: 100%;
    margin-top: 18px;
}

.info-card-warm {
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 237, 0.9)),
        radial-gradient(circle at 95% 10%, rgba(255, 80, 0, 0.14), transparent 34%);
    border-color: rgba(255, 80, 0, 0.16);
}

.info-card-green {
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(239, 255, 238, 0.86)),
        radial-gradient(circle at 95% 10%, rgba(63, 155, 37, 0.16), transparent 34%);
    border-color: rgba(63, 155, 37, 0.14);
}

.info-card-gold {
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(255, 253, 235, 0.9)),
        radial-gradient(circle at 95% 10%, rgba(255, 179, 26, 0.18), transparent 34%);
    border-color: rgba(255, 179, 26, 0.16);
}

.why-grid h3 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.2;
}

.content-panel ul {
    display: grid;
    gap: 10px;
    padding-left: 20px;
    margin: 18px 0 0;
    color: var(--text);
    line-height: 1.65;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-list details {
    padding: 22px 24px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(31, 109, 24, 0.08);
    box-shadow: var(--shadow-xs);
}

.faq-list summary {
    color: var(--leaf-dark);
    font-weight: 1000;
    cursor: pointer;
}

.faq-list p {
    margin: 14px 0 0;
    color: var(--text);
    line-height: 1.72;
}

/* Product cards */

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

.product-card {
    position: relative;
    padding: 22px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(
            150deg,
            rgba(255, 255, 255, 0.96),
            rgba(255, 255, 255, 0.78)
        );
    border: 1px solid rgba(31, 109, 24, 0.08);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(20px) saturate(1.12);
    -webkit-backdrop-filter: blur(20px) saturate(1.12);
    overflow: hidden;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}

.discount-ribbon {
    position: absolute;
    top: 26px;
    right: 26px;
    z-index: 3;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: calc(100% - 52px);
    padding: 0 14px;
    border-radius: 999px;
    color: white;
    background: linear-gradient(135deg, var(--berry), var(--orange));
    box-shadow: 0 12px 26px rgba(255, 63, 127, 0.22);
    font-size: 12px;
    font-weight: 1000;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
}

.discount-ribbon-large {
    top: 36px;
    right: 36px;
    min-height: 42px;
    padding-inline: 18px;
    font-size: 13px;
}

.product-card.has-discount {
    border-color: rgba(255, 106, 0, 0.24);
}

.product-card.has-discount .tag {
    margin-top: 48px;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 179, 26, 0.28);
}

.product-card.featured {
    padding: 26px;
    z-index: 1;
    transform: translateY(-6px) scale(1.015);
    background:
        linear-gradient(
            150deg,
            rgba(255, 255, 255, 0.97),
            rgba(255, 255, 255, 0.82)
        ),
        radial-gradient(
            circle at 52% 0,
            rgba(255, 179, 26, 0.18),
            transparent 36%
        ),
        linear-gradient(180deg, rgba(201, 255, 79, 0.16), transparent 46%);
    border: 2px solid rgba(31, 109, 24, 0.34);
    box-shadow:
        0 0 0 6px rgba(201, 255, 79, 0.16),
        var(--shadow-md);
}

.product-card.featured .tag:not(.tag-featured) {
    background: rgba(239, 255, 238, 0.94);
    border-color: rgba(31, 109, 24, 0.2);
}

.product-card.featured.has-discount .tag {
    margin-top: 48px;
}

.product-card.featured:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(31, 109, 24, 0.48);
    box-shadow:
        0 0 0 7px rgba(201, 255, 79, 0.22),
        0 30px 78px rgba(45, 120, 24, 0.16);
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 12px;
    color: var(--leaf-dark);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(63, 155, 37, 0.16);
    font-size: 12px;
    font-weight: 1000;
}

.tag-featured {
    min-height: 36px;
    padding: 0 15px;
    border: 0;
    border-radius: 999px;
    color: white;
    background: linear-gradient(135deg, #1f7218, #2f8f1e);
    background-clip: padding-box;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.14),
        0 12px 24px rgba(31, 109, 24, 0.18);
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    isolation: isolate;
}

.product-card.featured .tag-featured {
    color: white;
    background: linear-gradient(135deg, #1f7218, #2f8f1e);
    border: 0;
}

.tag-featured svg {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    fill: currentColor;
}

.product-image {
    position: relative;
    height: clamp(278px, 22vw, 320px);
    margin: 18px 0 22px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background:
        radial-gradient(
            circle at 50% 18%,
            rgba(255, 244, 106, 0.24),
            transparent 28%
        ),
        radial-gradient(
            circle at 18% 72%,
            rgba(255, 111, 165, 0.08),
            transparent 26%
        ),
        rgba(255, 255, 255, 0.52);
    overflow: hidden;
}

.product-image img {
    position: absolute;
    inset: 12px 18px;
    width: calc(100% - 36px);
    height: calc(100% - 24px);
    max-width: none;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 22px 34px rgba(21, 32, 21, 0.14));
    transition: transform 0.28s ease;
}

.product-card.featured .product-image {
    height: clamp(298px, 24vw, 342px);
    margin-block: 20px 24px;
    border: 1px solid rgba(31, 109, 24, 0.1);
    background:
        radial-gradient(
            circle at 50% 18%,
            rgba(255, 244, 106, 0.34),
            transparent 30%
        ),
        radial-gradient(
            circle at 16% 74%,
            rgba(255, 111, 165, 0.1),
            transparent 28%
        ),
        rgba(255, 255, 255, 0.66);
}

.product-card.featured .product-image img {
    width: 100%;
}

.product-image-placeholder {
    display: grid;
    width: min(78%, 210px);
    min-height: 140px;
    place-items: center;
    padding: 24px;
    border-radius: 22px;
    color: var(--leaf-dark);
    background:
        radial-gradient(circle at 50% 20%, rgba(201, 255, 79, 0.24), transparent 38%),
        rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(31, 109, 24, 0.12);
    text-align: center;
    line-height: 1.22;
    box-shadow: 0 18px 30px rgba(21, 32, 21, 0.1);
}

.product-card:hover .product-image img {
    transform: scale(1.04) translateY(-5px);
}

.mini-blender {
    width: 132px;
    height: 210px;
    border-radius: 32px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.94) 0 43%,
        #151515 43% 100%
    );
    border: 2px solid rgba(31, 109, 24, 0.14);
    box-shadow: 0 22px 46px rgba(21, 32, 21, 0.16);
    transition: transform 0.28s ease;
}

.product-card:hover .mini-blender {
    transform: scale(1.04) translateY(-5px);
}

.product-card h3 {
    margin: 0 0 10px;
    font-size: 19px;
    font-weight: 1000;
    line-height: 1.18;
    letter-spacing: 0;
}

.product-card p {
    margin: 0;
    color: var(--text);
    font-size: 14px;
    line-height: 1.62;
}

.product-for {
    margin-top: 14px !important;
    color: var(--muted) !important;
    font-size: 13px !important;
}

.product-best-for {
    margin: 20px 0 0;
    color: var(--leaf-dark);
    line-height: 1.68;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0;
}

.product-meta span {
    padding: 9px 11px;
    border-radius: 11px;
    color: #385238;
    background: rgba(239, 255, 238, 0.78);
    border: 1px solid rgba(63, 155, 37, 0.1);
    font-size: 12px;
    font-weight: 900;
}

.product-bottom {
    display: grid;
    align-items: end;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
}

.price {
    color: var(--orange);
    font-size: clamp(24px, 1.8vw, 26px);
    font-weight: 1000;
    line-height: 1.08;
    letter-spacing: 0;
    white-space: nowrap;
}

.price-block,
.detail-price-block {
    display: grid;
    gap: 4px;
}

.old-price {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.25;
}

.old-price del {
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(255, 106, 0, 0.64);
    white-space: nowrap;
}

.discount-saving {
    display: block;
    color: var(--leaf-dark);
    font-size: 12px;
    font-weight: 1000;
    line-height: 1.35;
    white-space: nowrap;
}

.price-note {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.free-shipping-badge {
    margin-top: 3px;
    padding: 7px 10px;
    color: var(--leaf-dark);
    background: rgba(239, 255, 238, 0.9);
    border: 1px solid rgba(63, 155, 37, 0.14);
    font-size: 12px;
}

.free-shipping-badge svg {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.price-missing {
    max-width: 190px;
    color: var(--orange-deep);
    font-size: 17px;
    line-height: 1.2;
}

.product-grid-wide {
    grid-template-columns: repeat(4, 1fr);
}

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

.product-grid-three {
    grid-template-columns: repeat(3, 1fr);
}

.accessory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.accessory-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 24px;
    border-radius: var(--radius-md);
    background:
        linear-gradient(
            150deg,
            rgba(255, 255, 255, 0.96),
            rgba(255, 255, 255, 0.78)
        ),
        radial-gradient(circle at 92% 10%, rgba(255, 179, 26, 0.1), transparent 32%);
    border: 1px solid rgba(31, 109, 24, 0.08);
    box-shadow: var(--shadow-xs);
    overflow: hidden;
}

.accessory-visual {
    display: grid;
    place-items: center;
    height: 190px;
    margin: 18px 0 22px;
    padding: 18px;
    border-radius: 20px;
    color: var(--leaf-dark);
    text-align: center;
    background:
        radial-gradient(circle at 50% 18%, rgba(201, 255, 79, 0.18), transparent 30%),
        rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(63, 155, 37, 0.08);
    overflow: hidden;
}

.accessory-visual.has-image {
    padding: 8px;
}

.accessory-visual img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 12px;
    filter: drop-shadow(0 18px 26px rgba(21, 32, 21, 0.12));
}

.accessory-visual strong {
    max-width: 180px;
    font-size: 18px;
    line-height: 1.24;
}

.accessory-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 1000;
    line-height: 1.22;
}

.accessory-card p {
    margin: 0;
    color: var(--text);
    font-size: 14px;
    line-height: 1.68;
}

.accessory-card .product-meta {
    margin: 22px 0 0;
}

.accessory-card .product-bottom {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    justify-content: initial;
    gap: 12px;
    margin-top: auto;
    padding-top: 22px;
}

.accessory-price {
    font-size: 27px;
    line-height: 1.05;
}

.accessory-card .btn {
    width: 100%;
    min-height: 48px;
    padding-inline: 16px;
    line-height: 1.16;
    text-align: center;
    white-space: normal;
}

/* Product detail */

.product-detail-hero {
    padding: 82px 0 34px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
    gap: 58px;
}

.product-gallery,
.product-detail-copy,
.spec-list {
    border-radius: var(--radius-xl);
    background:
        linear-gradient(
            150deg,
            rgba(255, 255, 255, 0.96),
            rgba(255, 255, 255, 0.78)
        );
    border: 1px solid rgba(31, 109, 24, 0.08);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(20px) saturate(1.1);
    -webkit-backdrop-filter: blur(20px) saturate(1.1);
}

.product-gallery {
    position: relative;
    display: grid;
    gap: 18px;
    padding: 34px;
    overflow: hidden;
}

.product-main-image {
    width: 100%;
    height: clamp(460px, 44vw, 620px);
    object-fit: contain;
    object-position: center bottom;
    padding: 16px;
    border-radius: 26px;
    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(255, 244, 106, 0.2),
            transparent 28%
        ),
        rgba(255, 255, 255, 0.56);
    filter: drop-shadow(0 26px 38px rgba(21, 32, 21, 0.14));
}

.product-main-placeholder {
    display: grid;
    place-items: center;
    padding: 34px;
    color: var(--leaf-dark);
    text-align: center;
    line-height: 1.18;
}

.product-main-placeholder strong {
    max-width: 360px;
    font-size: clamp(30px, 4vw, 52px);
}

.product-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.product-thumb {
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 16px;
    background: transparent;
    cursor: pointer;
}

.product-thumb img {
    width: 100%;
    height: 104px;
    object-fit: contain;
    object-position: center bottom;
    padding: 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(31, 109, 24, 0.07);
    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        transform 0.18s ease;
}

.product-thumb:hover img,
.product-thumb.is-active img {
    border-color: rgba(255, 106, 0, 0.42);
    box-shadow: 0 12px 24px rgba(255, 106, 0, 0.12);
    transform: translateY(-2px);
}

.product-detail-copy {
    padding: 38px;
}

.product-detail-copy h1 {
    margin: 20px 0 22px;
}

.product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 34px;
}

.product-colors {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.product-colors > span {
    color: var(--leaf-dark);
    font-size: 13px;
    font-weight: 1000;
}

.color-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.color-chip {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 1000;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(31, 109, 24, 0.1);
    box-shadow: var(--shadow-xs);
}

.detail-price {
    color: var(--orange);
    font-size: 38px;
    font-weight: 1000;
    white-space: nowrap;
}

.detail-price-block {
    margin-right: 8px;
}

.product-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
}

.product-info-grid .service-list {
    margin-top: 24px;
}

.spec-list {
    display: grid;
    gap: 0;
    padding: 14px 24px;
    margin: 22px 0 0;
}

.spec-intro {
    margin: 12px 0 0;
    color: var(--text);
    line-height: 1.72;
}

.spec-list div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.spec-list div:last-child {
    border-bottom: 0;
}

.spec-list dt {
    color: var(--muted);
    font-weight: 800;
}

.spec-list dd {
    margin: 0;
    color: var(--ink);
    font-weight: 1000;
}

/* Comparison */

.compare {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(31, 109, 24, 0.08);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(20px) saturate(1.1);
    -webkit-backdrop-filter: blur(20px) saturate(1.1);
}

.compare th,
.compare td {
    padding: 22px 24px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: var(--text);
    line-height: 1.55;
    text-align: left;
    vertical-align: top;
}

.compare th:last-child,
.compare td:last-child {
    border-right: 0;
}

.compare tbody tr:last-child td {
    border-bottom: 0;
}

.compare th {
    color: white;
    font-weight: 1000;
    background: linear-gradient(135deg, var(--leaf-dark), var(--leaf));
}

.compare strong {
    color: var(--leaf-dark);
    font-weight: 1000;
}

.compare-two {
    table-layout: fixed;
}

/* Service card */

.service-card {
    display: grid;
    grid-template-columns: 1fr 0.86fr;
    align-items: center;
    gap: 46px;
    padding: 58px;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.94),
            rgba(255, 255, 255, 0.8)
        ),
        radial-gradient(
            circle at 12% 20%,
            rgba(255, 244, 106, 0.14),
            transparent 32%
        ),
        radial-gradient(
            circle at 94% 88%,
            rgba(255, 106, 0, 0.08),
            transparent 34%
        );
    border: 1px solid rgba(31, 109, 24, 0.08);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(22px) saturate(1.12);
    -webkit-backdrop-filter: blur(22px) saturate(1.12);
}

.service-card h2 {
    margin-bottom: 22px;
}

.service-card p {
    max-width: 670px;
    margin: 0 0 28px;
    color: var(--text);
    font-size: 18px;
    line-height: 1.82;
}

.service-list {
    display: grid;
    gap: 14px;
}

.service-list div {
    position: relative;
    padding: 19px 20px 19px 50px;
    border-radius: 16px;
    color: var(--leaf-dark);
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-xs);
    font-size: 15px;
    font-weight: 1000;
    transition:
        transform 0.22s ease,
        background 0.22s ease;
}

.service-list div:hover {
    transform: translateX(6px);
    background: rgba(239, 255, 238, 0.88);
}

.service-list div::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 50%;
    width: 15px;
    height: 15px;
    border-radius: 999px;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--lime), var(--leaf));
    box-shadow: 0 0 0 6px rgba(137, 216, 47, 0.14);
}

/* CTA */

.cta {
    position: relative;
    padding: 64px 44px;
    border-radius: var(--radius-xl);
    text-align: center;
    color: white;
    background:
        radial-gradient(
            circle at 12% 16%,
            rgba(255, 244, 106, 0.28),
            transparent 24%
        ),
        radial-gradient(
            circle at 82% 22%,
            rgba(255, 106, 0, 0.16),
            transparent 28%
        ),
        linear-gradient(135deg, var(--leaf-dark), var(--leaf) 78%, var(--kiwi));
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.cta::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -80px;
    bottom: -140px;
    border-radius: 999px;
    background: radial-gradient(
        circle at 35% 35%,
        rgba(255, 255, 255, 0.42),
        rgba(255, 244, 106, 0.22),
        transparent 68%
    );
}

.cta h2 {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto 18px;
    font-family: var(--font-display);
    font-size: clamp(34px, 4.2vw, 58px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0;
}

.cta p {
    position: relative;
    z-index: 1;
    max-width: 730px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    line-height: 1.8;
}

.cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

/* Contact */

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 34px;
    align-items: start;
}

.contact-lines {
    display: grid;
    gap: 12px;
    margin-top: 24px;
    color: var(--leaf-dark);
    font-weight: 1000;
}

.contact-company,
.contact-address {
    display: grid;
    gap: 2px;
    max-width: 100%;
    line-height: 1.32;
}

.contact-address span {
    overflow-wrap: anywhere;
}

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

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--leaf-dark);
    font-size: 13px;
    font-weight: 1000;
}

.contact-form input,
.contact-form textarea,
.contact-form select,
.order-form input,
.order-form textarea,
.order-form select {
    width: 100%;
    padding: 15px 16px;
    border-radius: 14px;
    border: 1px solid rgba(31, 109, 24, 0.14);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.82);
    font: inherit;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.order-form input:focus,
.order-form textarea:focus,
.order-form select:focus {
    outline: 3px solid rgba(137, 216, 47, 0.24);
    border-color: rgba(63, 155, 37, 0.42);
}

.contact-form [aria-invalid="true"],
.order-form [aria-invalid="true"] {
    border-color: rgba(220, 38, 38, 0.58);
    background: rgba(255, 255, 255, 0.96);
}

.form-alert {
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid rgba(31, 109, 24, 0.12);
    line-height: 1.55;
}

.form-alert strong {
    color: var(--ink);
}

.form-alert span {
    color: var(--text);
}

.form-error-list {
    display: grid;
    gap: 4px;
    padding-left: 20px;
    margin: 6px 0 0;
    color: #7a271a;
    font-size: 13px;
    font-weight: 800;
}

.form-alert-success {
    background: rgba(239, 255, 238, 0.9);
    border-color: rgba(63, 155, 37, 0.22);
}

.form-alert-error {
    background: rgba(255, 246, 242, 0.94);
    border-color: rgba(255, 106, 0, 0.22);
}

.form-note {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.field-error {
    margin: 8px 0 0;
    color: #b42318;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.5;
}

.service-serial-field {
    display: block;
}

.service-serial-field.is-hidden {
    display: none;
}

.order-grid {
    grid-template-columns: 0.72fr 1.28fr;
    align-items: start;
}

.order-summary {
    position: sticky;
    top: 130px;
}

.order-summary img,
.order-product-placeholder {
    width: 100%;
    height: clamp(280px, 28vw, 340px);
    margin: 16px 0 18px;
    border-radius: 22px;
    background:
        radial-gradient(
            circle at 50% 18%,
            rgba(255, 244, 106, 0.18),
            transparent 30%
        ),
        rgba(255, 255, 255, 0.56);
    filter: drop-shadow(0 20px 30px rgba(21, 32, 21, 0.12));
}

.order-summary img {
    object-fit: contain;
    object-position: center bottom;
    padding: 10px 14px;
}

.order-product-placeholder {
    display: grid;
    place-items: center;
    padding: 24px;
    color: var(--leaf-dark);
    text-align: center;
    line-height: 1.22;
}

.mini-specs {
    display: grid;
    gap: 0;
    margin: 22px 0;
}

.mini-specs div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.mini-specs dt {
    color: var(--muted);
    font-weight: 800;
}

.mini-specs dd {
    margin: 0;
    color: var(--ink);
    font-weight: 1000;
    text-align: right;
}

.order-summary-specs {
    display: grid;
    gap: 8px;
    margin: 18px 0;
    color: var(--text);
    font-size: 13px;
    line-height: 1.5;
}

.order-summary-specs span {
    padding: 9px 10px;
    border-radius: 12px;
    background: rgba(239, 255, 238, 0.68);
    border: 1px solid rgba(63, 155, 37, 0.08);
}

.order-form {
    display: grid;
    gap: 24px;
}

.order-form fieldset {
    display: grid;
    gap: 16px;
    padding: 0 0 24px;
    margin: 0;
    border: 0;
    border-bottom: 1px solid var(--line);
}

.order-form fieldset:last-of-type {
    border-bottom: 0;
}

.order-form legend {
    margin-bottom: 4px;
    color: var(--leaf-dark);
    font-size: 20px;
    font-weight: 1000;
}

.order-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--leaf-dark);
    font-size: 13px;
    font-weight: 1000;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.checkbox-line {
    display: flex !important;
    align-items: center;
    gap: 10px;
    color: var(--text) !important;
    font-size: 14px !important;
}

.checkbox-line input {
    width: 18px;
    height: 18px;
}

.shipping-fields.is-hidden {
    display: none;
}

.order-form input:disabled,
.order-form textarea:disabled,
.order-form select:disabled {
    cursor: not-allowed;
    color: var(--muted);
    background: rgba(239, 255, 238, 0.5);
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Footer */

.site-footer {
    margin-top: 116px;
    padding: 82px 0 48px;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.72),
            rgba(255, 255, 255, 0.96)
        ),
        radial-gradient(
            circle at 16% 100%,
            rgba(255, 106, 0, 0.08),
            transparent 24%
        ),
        radial-gradient(
            circle at 52% 110%,
            rgba(255, 63, 127, 0.06),
            transparent 26%
        ),
        radial-gradient(
            circle at 86% 100%,
            rgba(137, 216, 47, 0.08),
            transparent 24%
        );
    border-top: 1px solid rgba(31, 109, 24, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.85fr 0.95fr 1.1fr;
    gap: 34px;
}

.footer-brand img {
    width: 170px;
    margin-bottom: 20px;
}

.footer-grid h3 {
    margin: 0 0 16px;
    color: var(--ink);
    font-size: 15px;
    font-weight: 1000;
}

.footer-grid p,
.footer-grid a {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.9;
}

.footer-grid a {
    transition: color 0.18s ease;
}

.footer-grid a:hover {
    color: var(--orange);
}

.footer-external-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 14px;
}

.footer-external {
    grid-column: 1 / -1;
    padding-top: 30px;
    border-top: 1px solid rgba(31, 109, 24, 0.1);
}

.footer-external h3 {
    color: rgba(49, 65, 49, 0.56);
    font-size: 13px;
    font-weight: 800;
}

.footer-grid .footer-external-link {
    display: grid;
    gap: 2px;
    color: rgba(115, 128, 115, 0.74);
    line-height: 1.45;
}

.footer-grid .footer-external-link:hover {
    color: rgba(255, 80, 0, 0.7);
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.footer-social a {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(31, 109, 24, 0.1);
    border-radius: 999px;
    box-shadow: var(--shadow-xs);
}

.footer-social a:hover {
    color: var(--orange);
    border-color: rgba(255, 80, 0, 0.22);
}

.footer-external-link strong {
    color: rgba(49, 65, 49, 0.68);
    font-size: 13px;
    font-weight: 800;
}

.footer-external-link span {
    color: rgba(115, 128, 115, 0.7);
    font-size: 12px;
    line-height: 1.45;
}

.footer-trust,
.footer-contact {
    display: grid;
    gap: 10px;
}

.footer-trust {
    margin-top: 22px;
}

.footer-trust span {
    display: inline-flex;
    align-items: flex-start;
    gap: 9px;
}

.footer-contact span,
.footer-contact a {
    display: grid;
    grid-template-columns: 17px minmax(0, 1fr);
    align-items: start;
    column-gap: 10px;
}

.footer-contact svg {
    margin-top: 5px;
}

.footer-order {
    margin-top: 18px;
}

.contact-floats {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 70;
    display: grid;
    justify-items: end;
    gap: 12px;
}

.contact-float {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 18px 0 16px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 1000;
    line-height: 1;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease;
}

.contact-float-whatsapp {
    background: #1fb85b;
    box-shadow: 0 16px 34px rgba(18, 130, 66, 0.28);
}

.contact-float-viber {
    background: #7360f2;
    box-shadow: 0 16px 34px rgba(83, 65, 192, 0.28);
}

.contact-float:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.contact-float-whatsapp:hover {
    background: #169f4b;
    box-shadow: 0 20px 42px rgba(18, 130, 66, 0.34);
}

.contact-float-viber:hover {
    background: #6653df;
    box-shadow: 0 20px 42px rgba(83, 65, 192, 0.34);
}

.contact-float svg {
    width: 23px;
    height: 23px;
    flex-basis: 23px;
}

.contact-float-icon {
    display: block;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    object-fit: contain;
}

/* Mobile sticky CTA */

.mobile-cta {
    display: none;
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 60;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(22px) saturate(1.22);
    -webkit-backdrop-filter: blur(22px) saturate(1.22);
}

/* Scroll reveal helper */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

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

/* Responsive */

@media (max-width: 1240px) {
    .nav-wrap {
        grid-template-columns: 200px 1fr 210px;
        gap: 18px;
    }

    .logo img {
        width: 168px;
    }

    .main-nav a {
        padding-inline: 13px;
    }

    .hero-grid {
        gap: 44px;
    }
}

@media (max-width: 1120px) {
    .top-strip {
        display: none;
    }

    .site-header {
        z-index: 50;
    }

    .nav-wrap {
        grid-template-columns: 1fr auto;
        min-height: 96px;
        position: relative;
        gap: 14px;
    }

    .logo img {
        width: 172px;
    }

    .mobile-menu-toggle {
        display: inline-grid;
        justify-self: end;
    }

    .mobile-menu-toggle.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .main-nav {
        display: none;
        grid-column: 1 / -1;
        justify-self: stretch;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        margin: -10px 0 18px;
        padding: 10px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--shadow-md);
        backdrop-filter: blur(22px) saturate(1.12);
        -webkit-backdrop-filter: blur(22px) saturate(1.12);
    }

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

    .main-nav a {
        display: flex;
        align-items: center;
        min-height: 48px;
        padding: 0 16px;
        border-radius: 12px;
    }

    .header-actions {
        display: none;
    }

    .mobile-cta {
        display: grid;
    }

    .contact-floats {
        right: 14px;
        bottom: 96px;
    }

    .contact-float {
        width: 54px;
        justify-content: center;
        padding: 0;
    }

    .contact-float span {
        position: absolute;
        width: 1px;
        height: 1px;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
    }

    body {
        padding-bottom: 132px;
    }
}

@media (max-width: 980px) {
    :root {
        --section: 92px;
    }

    .container {
        width: min(var(--container), calc(100% - 36px));
    }

    .announcement-inner {
        justify-content: space-between;
        align-items: flex-start;
        gap: 12px;
    }

    .announcement-content {
        justify-content: flex-start;
        text-align: left;
    }

    .hero {
        padding-top: 76px;
    }

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

    .hero-visual {
        min-height: auto;
        padding-top: 18px;
    }

    .product-hero-card {
        width: min(100%, 460px);
    }

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

    .product-grid-wide,
    .accessory-grid,
    .content-grid,
    .split-grid,
    .use-grid,
    .make-grid,
    .recipe-grid,
    .why-grid,
    .product-detail-grid,
    .product-info-grid,
    .contact-grid,
    .order-grid {
        grid-template-columns: 1fr;
    }

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

    .order-summary {
        position: static;
    }

    .product-detail-grid {
        gap: 34px;
    }

    .product-card.featured {
        transform: none;
    }

    .product-card.featured:hover {
        transform: translateY(-10px);
    }

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

@media (max-width: 680px) {
    :root {
        --section: 72px;
    }

    .container {
        width: min(var(--container), calc(100% - 28px));
    }

    .announcement-inner {
        min-height: 0;
        padding-block: 8px;
    }

    .announcement-content {
        display: block;
        font-size: 13px;
        line-height: 1.45;
    }

    .announcement-content a {
        display: inline-block;
        margin-left: 6px;
    }

    .announcement-close {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
        font-size: 22px;
    }

    .nav-wrap {
        min-height: 86px;
    }

    .logo img {
        width: 158px;
    }

    .hero {
        padding: 58px 0 54px;
    }

    h1 {
        font-size: clamp(36px, 10.6vw, 50px);
    }

    .hero-lead {
        font-size: 17px;
        line-height: 1.75;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: auto;
        padding-block: 12px 0;
    }

    .product-hero-card {
        padding: 24px;
        border-radius: 28px;
    }

    .blender-placeholder {
        height: clamp(320px, 92vw, 420px);
    }

    .fallback-blender {
        transform: scale(0.86);
    }

    .hero-product-info {
        grid-template-columns: 1fr;
        margin-top: 24px;
    }

    .badge-grid,
    .product-grid,
    .product-grid-four,
    .accessory-grid,
    .recipe-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 58px 0 22px;
    }

    .page-hero p {
        font-size: 16px;
    }

    .order-section,
    .contact-section {
        padding-top: 34px;
    }

    .content-panel,
    .product-detail-copy,
    .product-gallery {
        padding: 24px;
        border-radius: 24px;
    }

    .discount-ribbon {
        top: 18px;
        right: 18px;
        min-height: 34px;
        max-width: calc(100% - 36px);
        padding-inline: 12px;
        font-size: 11px;
    }

    .discount-ribbon-large {
        top: 24px;
        right: 24px;
        min-height: 38px;
        font-size: 12px;
    }

    .product-detail-hero {
        padding: 52px 0 20px;
    }

    .product-main-image {
        height: clamp(360px, 96vw, 460px);
    }

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

    .product-detail-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .product-detail-actions .btn {
        width: 100%;
    }

    .detail-price {
        margin-right: 0;
        font-size: 32px;
    }

    .spec-list div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .answer-panel {
        padding: 28px 24px;
        border-radius: 24px;
    }

    .make-grid,
    .why-grid,
    .model-difference-grid,
    .use-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .model-card-meta {
        grid-template-columns: 1fr;
    }

    .compare-two,
    .compare-rich {
        display: block;
    }

    .form-actions .btn {
        width: 100%;
    }

    .section-head {
        display: block;
        margin-bottom: 34px;
    }

    .section-head p {
        margin-top: 18px;
    }

    .product-image {
        height: clamp(300px, 88vw, 380px);
    }

    .compare {
        display: block;
    }

    .compare thead {
        display: none;
    }

    .compare tbody,
    .compare tr,
    .compare td {
        display: block;
        width: 100%;
    }

    .compare td {
        border-right: 0 !important;
    }

    .compare td::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 6px;
        color: var(--leaf-dark);
        font-weight: 900;
    }

    .service-card {
        padding: 34px;
        border-radius: 28px;
    }

    .cta {
        padding: 46px 24px;
        border-radius: 28px;
    }

    body {
        padding-bottom: 152px;
    }
}
