:root {
    --green-950: #003f26;
    --green-900: #06472d;
    --green-700: #176b3a;
    --green-100: #ecf7e7;
    --orange: #ff8617;
    --orange-dark: #8b4b12;
    --cream: #fff9ef;
    --ink: #123126;
    --muted: #52645c;
    --line: rgba(0, 63, 38, 0.14);
    --shadow: 0 18px 50px rgba(0, 44, 27, 0.12);
}

html {
    scrollbar-color: var(--green-700) var(--green-100);
    scrollbar-width: thin;
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--green-100);
}

::-webkit-scrollbar-thumb {
    border: 3px solid var(--green-100);
    border-radius: 999px;
    background: var(--green-700);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--green-950);
}

/* Painel administrativo */
.admin-body {
    min-height: 100vh;
    margin: 0;
    color: #20352b;
    background: #f3f6f2;
}

.admin-header {
    min-height: 70px;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 12px max(24px, calc((100vw - 1280px) / 2));
    border-bottom: 1px solid #dce7df;
    background: #fff;
}

.admin-brand {
    margin-right: auto;
    color: var(--green-950);
    font-size: 20px;
    font-weight: 900;
}

.admin-brand span {
    color: var(--orange);
}

.admin-header nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.admin-header nav a,
.admin-link-button {
    border: 0;
    color: #405149;
    background: transparent;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.admin-main {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 38px 0 64px;
}

.admin-login-main {
    min-height: 100vh;
    display: grid;
    place-items: center;
}

.admin-login-card {
    width: min(430px, 100%);
    padding: 34px;
    border: 1px solid #dce7df;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(0, 44, 27, 0.12);
}

.admin-login-card > img {
    width: 130px;
    height: 74px;
    display: block;
    margin: 0 auto 18px;
    object-fit: contain;
}

.admin-login-card h1,
.admin-page-heading h1 {
    margin: 4px 0 8px;
    color: var(--green-950);
}

.admin-login-card > p,
.admin-page-heading p {
    margin: 0;
    color: var(--muted);
}

.admin-login-card > a {
    display: block;
    margin-top: 18px;
    text-align: center;
    color: var(--green-700);
    font-weight: 700;
}

.admin-alert {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 8px;
    font-weight: 750;
}

.admin-alert-success {
    color: #105d36;
    background: #dcf3e5;
}

.admin-alert-error {
    color: #8a250e;
    background: #ffe0d2;
}

.admin-page-heading {
    margin-bottom: 28px;
}

.admin-page-heading > span,
.admin-page-heading div > span {
    color: var(--orange);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.admin-heading-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.admin-stat-grid,
.admin-action-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.admin-stat-grid article,
.admin-action-grid a,
.admin-form,
.admin-table-wrap {
    border: 1px solid #dce7df;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(0, 44, 27, 0.06);
}

.admin-stat-grid article {
    padding: 24px;
}

.admin-stat-grid span,
.admin-action-grid span {
    display: block;
    color: var(--muted);
}

.admin-stat-grid strong {
    display: block;
    margin-top: 8px;
    color: var(--green-950);
    font-size: 38px;
}

.admin-action-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
}

.admin-action-grid a {
    padding: 24px;
}

.admin-action-grid strong {
    display: block;
    margin-bottom: 8px;
    color: var(--green-950);
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 980px;
}

.admin-table th,
.admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #edf1ee;
    text-align: left;
    vertical-align: middle;
}

.admin-table th {
    color: #53645b;
    background: #f8faf8;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.admin-product-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-product-cell img {
    width: 54px;
    height: 54px;
    border-radius: 6px;
    object-fit: contain;
    background: #fff;
}

.admin-product-cell strong,
.admin-product-cell small {
    display: block;
}

.admin-product-cell small {
    margin-top: 3px;
    color: var(--muted);
}

.admin-status {
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.admin-status.is-active {
    color: #0d6a3b;
    background: #dcf3e5;
}

.admin-status.is-inactive {
    color: #7d4a0b;
    background: #fff0ce;
}

.admin-row-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-row-actions a,
.admin-row-actions button {
    border: 0;
    color: var(--green-700);
    background: transparent;
    font: inherit;
    font-weight: 750;
    cursor: pointer;
}

.admin-row-actions button {
    color: #a53a24;
}

.admin-form {
    display: grid;
    gap: 22px;
    padding: 26px;
}

.admin-form fieldset {
    min-width: 0;
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 20px;
    border: 1px solid #dce7df;
    border-radius: 10px;
}

.admin-form legend {
    padding: 0 8px;
    color: var(--green-950);
    font-weight: 850;
}

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

.admin-form label {
    display: grid;
    gap: 7px;
    color: #34483f;
    font-weight: 750;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cfdcd3;
    border-radius: 8px;
    color: #20352b;
    background: #fff;
    font: inherit;
}

.admin-form textarea {
    resize: vertical;
}

.admin-form label small {
    color: var(--muted);
    font-weight: 500;
}

.admin-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.admin-checks label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-checks input {
    width: auto;
}

.admin-form > .btn {
    justify-self: start;
}

.admin-image-preview {
    width: 220px;
    height: 220px;
    display: block;
    object-fit: contain;
    border: 1px solid #dce7df;
    border-radius: 8px;
    background: #fff;
}

@media (max-width: 780px) {
    .admin-header {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .admin-header nav {
        width: 100%;
        order: 3;
    }

    .admin-stat-grid,
    .admin-action-grid,
    .admin-form-grid {
        grid-template-columns: 1fr;
    }

    .admin-heading-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-login-card,
    .admin-form {
        padding: 20px;
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--ink);
    background: #fffdf8;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid #ffb454;
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: 12px;
    z-index: 1000;
    padding: 10px 14px;
    border-radius: 6px;
    background: var(--green-950);
    color: #fff;
    font-weight: 800;
    transform: translateY(-160%);
}

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

.breadcrumbs {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 18px 0 0;
    font-size: 0.86rem;
}

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

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #68766f;
}

.breadcrumbs li:not(:last-child)::after {
    content: "/";
    color: #a3ada8;
}

.breadcrumbs a {
    color: #176640;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

img,
svg {
    display: block;
}

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

.image-hero {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.image-hero img {
    width: 100%;
    height: auto;
}

.image-hero picture {
    display: block;
}

.image-hero-link {
    display: block;
    overflow: hidden;
}

.image-hero-link img {
    transition: transform 0.45s ease, filter 0.45s ease;
}

.image-hero-link:hover img,
.image-hero-link:focus-visible img {
    transform: scale(1.012);
    filter: saturate(1.04);
}

.home-category-nav {
    max-width: 1120px;
    margin: 0 auto;
    padding: 64px 24px 8px;
}

.home-category-nav > header {
    max-width: 760px;
    margin-bottom: 28px;
}

.home-category-nav > header > span {
    display: block;
    margin-bottom: 8px;
    color: var(--orange);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 900;
}

.home-category-nav h2 {
    margin: 0;
    color: var(--green-950);
    font-size: clamp(31px, 4vw, 44px);
    line-height: 1.08;
}

.home-category-nav > header p {
    max-width: 680px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.6;
    font-weight: 600;
}

.home-category-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.home-category-card {
    min-height: 260px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    padding: 32px 22px 32px 32px;
    border: 1px solid rgba(0, 63, 38, 0.1);
    border-radius: 20px;
    color: var(--green-950);
    box-shadow: 0 16px 42px rgba(0, 44, 27, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-category-card:hover,
.home-category-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 22px 54px rgba(0, 44, 27, 0.14);
}

.pulp-category-card {
    background: #fff;
}

.ice-category-card {
    background: #fff;
}

.home-category-card > div {
    position: relative;
    z-index: 2;
}

.home-category-card small {
    color: var(--orange-dark);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.home-category-card h3 {
    margin: 9px 0 10px;
    font-size: clamp(24px, 2.6vw, 32px);
    line-height: 1.05;
}

.home-category-card p {
    margin: 0 0 22px;
    color: #405149;
    line-height: 1.5;
    font-weight: 600;
}

.home-category-card strong {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--green-700);
    font-size: 14px;
}

.home-category-card strong svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.home-category-card:hover strong svg {
    transform: translateX(4px);
}

.home-category-card > img {
    width: 100%;
    height: 225px;
    object-fit: contain;
    transform: scale(1.38);
}

.ice-category-card > img {
    transform: scale(1.6);
}

.site-header {
    background: #fff;
    color: #333;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 14px;
    font-weight: 700;
}

.header-strip span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.header-strip svg,
.navbar svg,
.btn svg {
    width: 20px;
    height: 20px;
}

.header-strip svg {
    color: #93c83f;
}

.navbar {
    min-height: 118px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 22px 24px;
    display: grid;
    grid-template-columns: 210px 1fr auto;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    width: 185px;
    height: 92px;
    overflow: hidden;
}

.brand img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(18px, 3vw, 42px);
    font-size: 15px;
    font-weight: 800;
}

.nav-links a {
    position: relative;
    padding: 12px 0;
    color: #333;
    opacity: 0.92;
}

.nav-links a:hover {
    color: #f6a23f;
}

.nav-links a.active {
    color: var(--orange);
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 3px;
    border-radius: 999px;
    background: var(--orange);
}

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

.cart-link {
    position: relative;
    display: grid;
    place-items: center;
    color: #333;
}

.company-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--green-950);
    font-size: 0.86rem;
    font-weight: 800;
    text-decoration: none;
}

.company-link svg {
    width: 19px;
    height: 19px;
}

.cart-link svg {
    width: 34px;
    height: 34px;
}

.cart-link span {
    position: absolute;
    top: -9px;
    right: -11px;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.menu-toggle {
    display: none;
    border: 1px solid rgba(51, 51, 51, 0.18);
    background: transparent;
    color: #333;
    width: 44px;
    height: 44px;
    border-radius: 8px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    padding: 0 22px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 10px 24px rgba(255, 134, 23, 0.22);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.68);
    color: var(--green-950);
    border-color: var(--green-900);
}

.hero {
    overflow: hidden;
    min-height: 500px;
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
    align-items: center;
    gap: 20px;
    padding: 50px max(24px, calc((100vw - 1200px) / 2)) 34px;
    background:
        radial-gradient(circle at 75% 18%, rgba(255, 134, 23, 0.18), transparent 22%),
        linear-gradient(90deg, #fff8ef 0%, #fffaf2 42%, #f8ead7 100%);
}

.hero-content {
    padding-left: 10px;
    z-index: 2;
}

.hero h1 {
    margin: 0;
    max-width: 520px;
    color: var(--green-950);
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.04;
    font-weight: 900;
}

.hero h1::first-line {
    color: #005432;
}

.hero p {
    max-width: 500px;
    margin: 22px 0 28px;
    color: #4a5751;
    font-size: clamp(18px, 2.2vw, 23px);
    line-height: 1.55;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-visual {
    position: relative;
    min-height: 430px;
}

.pouch {
    position: absolute;
    bottom: 28px;
    width: 184px;
    height: 338px;
    padding: 72px 24px 22px;
    border-radius: 8px 8px 38px 38px;
    box-shadow: 0 24px 45px rgba(46, 22, 6, 0.22);
    color: #fff;
    text-align: center;
    transform: rotate(-7deg);
}

.pouch::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(255,255,255,0.32), transparent 32%, rgba(0,0,0,0.14));
}

.pouch span,
.pouch strong,
.pouch em {
    position: relative;
    display: block;
}

.pouch span {
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 900;
}

.pouch strong {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.pouch em {
    margin-top: 24px;
    font-size: 27px;
    font-style: normal;
    font-weight: 800;
}

.pouch-grape {
    left: 160px;
    background:
        radial-gradient(circle at 40% 28%, rgba(255,255,255,0.4) 0 2px, transparent 3px),
        linear-gradient(160deg, #8f0f4a, #4d082d);
}

.pouch-mango {
    left: 330px;
    width: 205px;
    height: 365px;
    bottom: 18px;
    color: #52320f;
    background: linear-gradient(160deg, #ffd338, #f99010);
    transform: rotate(3deg);
}

.pouch-mango strong {
    color: #5a3111;
}

.fruit,
.ice {
    position: absolute;
    border-radius: 50%;
}

.fruit-orange {
    left: 30px;
    bottom: 115px;
    width: 158px;
    height: 158px;
    background: radial-gradient(circle, #ffcf68 0 16%, #fb8e16 17% 62%, #fff5cc 63% 66%, #f28a18 67%);
    box-shadow: 0 16px 30px rgba(244, 130, 24, 0.25);
}

.fruit-mango {
    right: 0;
    bottom: 18px;
    width: 170px;
    height: 130px;
    border-radius: 34px 80px 42px 80px;
    background: linear-gradient(135deg, #f8c035, #f28613);
    box-shadow: inset 18px 0 rgba(255,255,255,0.2);
}

.ice {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.55);
    border: 2px solid rgba(118, 171, 185, 0.35);
    box-shadow: inset 8px 8px 16px rgba(255, 255, 255, 0.9), 0 8px 18px rgba(35, 89, 93, 0.1);
    transform: rotate(18deg);
}

.ice-one { left: 108px; bottom: 24px; }
.ice-two { left: 278px; bottom: 0; transform: rotate(-14deg); }
.ice-three { right: 158px; bottom: 78px; transform: rotate(28deg); }

.products-preview,
.content-section,
.catalog-grid,
.contact-section,
.benefits-grid-page {
    max-width: 1120px;
    margin: 0 auto;
    padding: 58px 24px 24px;
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    align-items: end;
    gap: 40px;
    margin-bottom: 26px;
}

.section-heading span,
.eyebrow {
    display: block;
    margin-bottom: 8px;
    color: var(--orange);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 900;
}

.section-heading h2,
.content-section h2 {
    margin: 0;
    max-width: 520px;
    color: var(--green-950);
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.05;
}

.section-heading p,
.content-section p,
.catalog-card p,
.contact-card p {
    color: var(--muted);
    line-height: 1.6;
    font-weight: 600;
}

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

.product-card {
    min-height: 440px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    border: 1px solid rgba(0, 63, 38, 0.08);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0, 44, 27, 0.16);
}

.product-card-warm {
    background: #fff;
}

.product-card-fresh {
    background: #fff;
}

.product-card-gold {
    background: #fff;
}

.product-copy {
    position: relative;
    z-index: 2;
    padding: 32px 0 32px 26px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 10px;
    border-radius: 8px;
    background: var(--orange);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.badge svg {
    width: 13px;
    height: 13px;
}

.product-card h3 {
    margin: 28px 0 14px;
    font-size: clamp(27px, 3vw, 36px);
    line-height: 1.05;
    color: #683100;
}

.product-card p {
    margin: 0;
    max-width: 290px;
    color: #4d4335;
    line-height: 1.55;
    font-weight: 700;
}

.product-card ul {
    list-style: none;
    padding: 0;
    margin: 24px 0 28px;
    color: #28513d;
    font-size: 14px;
    font-weight: 800;
}

.product-card li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
}

.product-card li svg {
    width: 16px;
    height: 16px;
    color: var(--green-700);
}

.product-image {
    min-height: 100%;
    background-size: cover;
    background-position: center;
    clip-path: ellipse(82% 68% at 72% 55%);
    transition: transform 0.35s ease;
}

.product-card:hover .product-image {
    transform: scale(1.035);
}

.benefits-row {
    max-width: 1120px;
    margin: 0 auto 28px;
    padding: 24px 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    background: #f6fbf0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 63, 38, 0.07);
}

.benefits-row article,
.benefits-grid-page article {
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefits-row svg,
.benefits-grid-page svg,
.about-panel svg {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    padding: 8px;
    border-radius: 50%;
    color: var(--green-700);
    background: #e4f7d4;
}

.benefits-row h3,
.benefits-grid-page h2 {
    margin: 0 0 5px;
    font-size: 16px;
    color: var(--green-950);
}

.benefits-row p,
.benefits-grid-page p {
    margin: 0;
    color: #44584e;
    line-height: 1.35;
    font-size: 14px;
    font-weight: 600;
}

.cta-band {
    max-width: 1120px;
    min-height: 142px;
    margin: 0 auto 22px;
    padding: 25px 42px 25px 280px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 28px;
    border-radius: 8px;
    background: linear-gradient(90deg, #004528, #00623d);
    color: #fff;
}

.cta-fruits {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 260px;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1610832958506-aa56368176cf?auto=format&fit=crop&w=500&q=80');
    background-size: cover;
    background-position: center;
}

.cta-band h2 {
    margin: 0;
    font-size: clamp(26px, 4vw, 37px);
    line-height: 1.1;
}

.cta-band h2 span {
    display: block;
    color: #ffa329;
}

.site-footer {
    position: relative;
    overflow: hidden;
    background: #fff;
    color: #333;
    padding: 56px 24px 22px;
    border-top: 4px solid var(--green-700);
}

.site-footer::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -160px;
    top: -210px;
    border-radius: 50%;
    border: 1px solid rgb(19 122 75 / 10%);
    background: rgb(19 122 75 / 4%);
    pointer-events: none;
}

.footer-grid {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.35fr 0.9fr 0.9fr 1.35fr 0.7fr;
    gap: clamp(28px, 4vw, 52px);
}

.footer-brand {
    width: 112px;
    height: 78px;
    margin-bottom: 18px;
    padding: 8px;
    border-radius: 16px;
    border: 0;
    background: #fff;
    box-shadow: none;
}

.footer-about > p {
    max-width: 290px;
    color: #333;
}

.footer-quality {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 8px;
    padding: 8px 11px;
    border: 1px solid rgb(19 122 75 / 24%);
    border-radius: 999px;
    background: rgb(19 122 75 / 6%);
    color: var(--green-700);
    font-size: 12px;
    font-weight: 800;
}

.footer-quality svg {
    width: 15px;
    height: 15px;
}

.site-footer h3 {
    position: relative;
    margin: 8px 0 20px;
    padding-bottom: 10px;
    color: #333;
    font-size: 15px;
    letter-spacing: 0.02em;
}

.site-footer h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    border-radius: 2px;
    background: var(--green-700);
}

.site-footer h3 .footer-title-link {
    margin: 0;
    color: #333;
    font-size: inherit;
}

.site-footer p,
.site-footer a {
    display: block;
    margin: 0 0 10px;
    color: #333;
    line-height: 1.5;
    font-size: 14px;
}

.site-footer nav > a {
    width: fit-content;
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer nav > a:hover,
.site-footer address a:hover {
    color: var(--green-700);
    transform: translateX(3px);
}

.site-footer address {
    font-style: normal;
}

.site-footer p svg {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    vertical-align: middle;
    color: var(--green-700);
}

.site-footer p a,
.contact-card p a {
    display: inline;
}

.contact-card address {
    font-style: normal;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-links a {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    margin: 0;
    border: 1px solid rgb(19 122 75 / 28%);
    border-radius: 12px;
    background: rgb(19 122 75 / 5%);
    color: var(--green-700);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    border-color: var(--green-700);
    background: var(--green-700);
    color: #fff;
}

.copyright {
    position: relative;
    max-width: 1180px;
    margin: 38px auto 0;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px 24px;
    border-top: 1px solid rgb(19 122 75 / 24%);
    color: #333;
    font-size: 13px;
}

.developer-credit {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.site-footer .developer-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    color: var(--green-700);
    font-size: inherit;
    font-weight: 900;
    text-decoration: none;
}

.site-footer .developer-link:hover {
    color: var(--green-950);
    text-decoration: underline;
}

.developer-link svg {
    width: 13px;
    height: 13px;
}

.page-hero {
    padding: 70px 24px;
    text-align: center;
    background: linear-gradient(135deg, #fff5e4, #edf8e7);
}

.small-hero h1 {
    margin: 0 auto 14px;
    max-width: 760px;
    color: var(--green-950);
    font-size: clamp(40px, 6vw, 62px);
    line-height: 1.05;
}

.small-hero p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.55;
    font-weight: 700;
}

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

.catalog-card,
.contact-form,
.contact-card,
.about-panel,
.benefits-grid-page article {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 34px rgba(0, 44, 27, 0.08);
}

.catalog-card {
    overflow: hidden;
}

.catalog-card > div:last-child {
    padding: 24px;
}

.catalog-image {
    height: 230px;
    background-size: cover;
    background-position: center;
}

.catalog-card span {
    color: var(--orange);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
}

.catalog-card h2 {
    margin: 8px 0;
    color: var(--green-950);
}

.products-hero {
    min-height: 260px;
    display: grid;
    grid-template-columns: minmax(330px, 0.85fr) minmax(420px, 1.15fr);
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, #fffaf3 0%, #fffaf3 46%, rgba(255, 250, 243, 0.2) 70%),
        linear-gradient(135deg, #fff6e6, #f2eadb);
}

.products-hero-copy {
    padding: 42px 24px 42px max(24px, calc((100vw - 1120px) / 2));
}

.products-hero h1 {
    margin: 0 0 14px;
    color: var(--green-950);
    font-size: clamp(44px, 5.5vw, 64px);
    line-height: 1;
    font-weight: 900;
}

.products-hero p {
    max-width: 540px;
    margin: 0;
    color: #495a53;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 700;
}

.products-hero-art {
    position: relative;
    min-height: 260px;
}

.products-hero-art::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1610832958506-aa56368176cf?auto=format&fit=crop&w=900&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.82;
}

.products-hero-art .fruit-orange {
    left: 6%;
    bottom: 36px;
    width: 122px;
    height: 122px;
}

.products-hero-art .product-hero-pouch {
    transform: scale(0.62) rotate(-7deg);
    transform-origin: bottom left;
    bottom: 18px;
    z-index: 2;
}

.products-hero-art .pouch-grape {
    left: 185px;
}

.products-hero-art .pouch-mango {
    left: 305px;
    transform: scale(0.62) rotate(3deg);
}

.products-hero-art .ice {
    z-index: 2;
}

.catalog-page {
    max-width: 1120px;
    margin: 0 auto;
    padding: 34px 24px 18px;
}

.catalog-intro {
    min-height: 220px;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    align-items: center;
    gap: 42px;
    margin-bottom: 26px;
    padding: 36px 42px;
    overflow: hidden;
    border: 1px solid rgba(0, 63, 38, 0.1);
    border-radius: 22px;
    background:
        radial-gradient(circle at 88% 10%, rgba(255, 134, 23, 0.18), transparent 34%),
        linear-gradient(135deg, #fffaf1, #eff8e9);
}

.catalog-intro h1 {
    max-width: 600px;
    margin: 0;
    color: var(--green-950);
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.02;
}

.catalog-intro p {
    max-width: 600px;
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.55;
    font-weight: 600;
}

.catalog-intro-points {
    display: grid;
    gap: 12px;
}

.catalog-intro-points span {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    column-gap: 12px;
    padding: 13px 15px;
    border: 1px solid rgba(0, 63, 38, 0.11);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.74);
    color: #405149;
    font-size: 13px;
}

.catalog-intro-points svg {
    grid-row: 1 / 3;
    width: 42px;
    height: 42px;
    padding: 9px;
    border-radius: 50%;
    color: var(--green-700);
    background: var(--green-100);
}

.catalog-intro-points strong {
    display: block;
    color: var(--green-950);
    font-size: 15px;
}

.catalog-toolbar {
    position: sticky;
    z-index: 12;
    top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 34px;
    padding: 12px;
    border: 1px solid rgba(0, 63, 38, 0.11);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 34px rgba(0, 44, 27, 0.09);
    backdrop-filter: blur(10px);
}

.catalog-tabs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.catalog-tab {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 18px;
    border: 0;
    gap: 8px;
    border-radius: 9px;
    color: var(--green-950);
    background: transparent;
    font-family: inherit;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
}

.catalog-tab:hover,
.catalog-tab:focus-visible {
    background: #e7f6d8;
}

.catalog-tab.active {
    background: var(--green-950);
    color: #fff;
}

.catalog-tab small {
    min-width: 24px;
    padding: 3px 6px;
    border-radius: 999px;
    color: var(--green-950);
    background: rgba(0, 63, 38, 0.08);
    font-size: 11px;
}

.catalog-tab.active small {
    color: var(--green-950);
    background: #fff;
}

.product-category[hidden] {
    display: none;
}

.sort-control {
    min-width: 270px;
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    border: 1px solid rgba(0, 63, 38, 0.15);
    border-radius: 9px;
    background: #fff;
    color: #617066;
    font-size: 14px;
}

.sort-control select {
    min-width: 0;
    flex: 1;
    border: 0;
    background: transparent;
    color: #405149;
    font: inherit;
    outline: 0;
}

.product-category {
    margin-bottom: 54px;
}

.category-heading {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.category-heading > svg {
    width: 64px;
    height: 64px;
    padding: 14px;
    border-radius: 50%;
    color: var(--green-700);
    background: #e7f6d8;
}

.category-heading.ice-heading > svg {
    color: #0f5c85;
    background: #e8f4fb;
}

.category-heading h2 {
    margin: 0 0 6px;
    color: var(--green-950);
    font-size: clamp(28px, 3.5vw, 36px);
    line-height: 1.1;
}

.category-heading p {
    max-width: 520px;
    margin: 0;
    color: var(--muted);
    font-weight: 600;
    line-height: 1.45;
}

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

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

.store-card {
    min-width: 0;
    min-height: 452px;
    display: flex;
    flex-direction: column;
    padding: 14px;
    border: 1px solid rgba(0, 63, 38, 0.12);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(0, 44, 27, 0.06);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.store-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 63, 38, 0.24);
    box-shadow: 0 18px 42px rgba(0, 44, 27, 0.12);
}

.store-image {
    min-height: 220px;
    position: relative;
    display: grid;
    place-items: end center;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(180deg, #fff, #fff8ed);
}

.product-photo {
    place-items: center;
    background: #fff;
}

.product-photo img {
    width: 100%;
    height: 220px;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.store-card-polpas .product-photo img {
    transform: scale(1.28);
}

.store-card-gelos .product-photo img {
    transform: scale(1.52);
}

.store-card:hover .product-photo img {
    transform: scale(1.36);
}

.store-card-gelos:hover .product-photo img {
    transform: scale(1.62);
}

.store-size {
    position: absolute;
    z-index: 2;
    left: 9px;
    bottom: 9px;
    margin: 0 !important;
    padding: 5px 8px;
    border: 1px solid rgba(0, 63, 38, 0.1);
    border-radius: 999px;
    color: var(--green-950) !important;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 5px 16px rgba(0, 44, 27, 0.08);
    font-size: 10px !important;
}

.fruit-pack::before,
.fruit-pack::after,
.ice-pack::before,
.ice-pack::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.fruit-pack::before {
    left: 8px;
    bottom: 10px;
    width: 54px;
    height: 54px;
    background: var(--accent);
    box-shadow: 70px 0 0 -8px color-mix(in srgb, var(--accent), #fff 24%);
    opacity: 0.9;
}

.fruit-pack::after {
    right: 8px;
    bottom: 18px;
    width: 58px;
    height: 58px;
    background: radial-gradient(circle at 38% 35%, #fff 0 10%, var(--accent) 11%);
    opacity: 0.86;
}

.mini-pouch {
    position: relative;
    z-index: 1;
    width: 92px;
    height: 150px;
    margin-bottom: 18px;
    padding: 32px 10px 10px;
    border-radius: 6px 6px 18px 18px;
    background: linear-gradient(150deg, color-mix(in srgb, var(--accent), #fff 14%), var(--accent));
    color: #fff;
    text-align: center;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.16);
}

.mini-pouch::before,
.ice-bag::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(255,255,255,0.35), transparent 34%, rgba(0,0,0,0.12));
}

.mini-pouch span,
.mini-pouch strong,
.mini-pouch em,
.mini-pouch small,
.ice-bag span,
.ice-bag strong,
.ice-bag em,
.ice-bag small {
    position: relative;
    display: block;
}

.mini-pouch span,
.ice-bag span {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 900;
}

.mini-pouch strong,
.ice-bag strong {
    font-size: 22px;
    line-height: 1;
    font-style: italic;
}

.mini-pouch em {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.1;
    font-style: normal;
    font-weight: 900;
}

.mini-pouch small,
.ice-bag small {
    margin-top: 5px;
    font-size: 9px;
    font-weight: 800;
}

.fruit-pack-manga .mini-pouch,
.fruit-pack-maracuja .mini-pouch {
    color: #5a3414;
}

.ice-pack {
    background: linear-gradient(180deg, #fbfdff, #eef8ff);
}

.ice-pack::before {
    inset: auto 10px 6px auto;
    width: 96px;
    height: 42px;
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.8), rgba(163, 218, 241, 0.5)),
        repeating-linear-gradient(45deg, transparent 0 18px, rgba(84, 166, 207, 0.18) 18px 28px);
    transform: rotate(-3deg);
}

.ice-pack::after {
    left: 10px;
    bottom: 14px;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(211, 238, 250, 0.75);
    border: 1px solid rgba(80, 156, 195, 0.25);
    box-shadow: 28px 8px 0 -4px rgba(211, 238, 250, 0.8);
    transform: rotate(18deg);
}

.ice-bag {
    position: relative;
    z-index: 1;
    width: 114px;
    height: 128px;
    margin-bottom: 28px;
    padding: 28px 12px 10px;
    border-radius: 8px 8px 22px 22px;
    background: linear-gradient(160deg, #fff, #d9f0fb);
    color: #0f5c85;
    text-align: center;
    box-shadow: 0 12px 24px rgba(15, 92, 133, 0.12);
}

.ice-bag em {
    margin-top: 10px;
    text-transform: uppercase;
    font-size: 22px;
    line-height: 0.9;
    font-style: normal;
    font-weight: 900;
}

.store-card h3 {
    margin: 14px 0 4px;
    color: var(--green-950);
    font-size: 17px;
    line-height: 1.2;
}

.store-card p,
.store-card small {
    display: block;
    margin: 0 0 6px;
    color: #5d6c64;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 600;
}

.store-card > strong {
    display: block;
    margin: 10px 0 12px;
    color: var(--green-950);
    font-size: 20px;
}

.details-btn {
    width: 100%;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid #eca956;
    border-radius: 8px;
    color: #cc7a1d;
    background: #fffdf8;
    font-size: 12px;
    font-weight: 900;
}

.card-actions {
    display: grid;
    gap: 8px;
    margin-top: auto;
}

.card-actions form {
    margin: 0;
}

.buy-btn {
    cursor: pointer;
    border-color: var(--orange);
    background: var(--orange);
    color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.buy-btn:hover,
.buy-btn:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(255, 134, 23, 0.22);
}

.details-btn svg {
    width: 14px;
    height: 14px;
}

.load-more {
    width: min(260px, 100%);
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 0;
    border: 1px solid var(--green-950);
    border-radius: 6px;
    color: var(--green-950);
    background: #fff;
    font-weight: 800;
}

.catalog-benefits {
    margin-top: 22px;
}

.floating-cart-checkout {
    position: fixed;
    z-index: 40;
    right: max(20px, env(safe-area-inset-right));
    bottom: max(20px, env(safe-area-inset-bottom));
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border: 2px solid #fff;
    border-radius: 999px;
    color: #fff;
    background: var(--green-950);
    box-shadow: 0 10px 30px rgba(0, 44, 27, 0.28);
    font-size: 14px;
    font-weight: 900;
}

.floating-cart-checkout:hover,
.floating-cart-checkout:focus-visible {
    color: #fff;
    background: var(--green-700);
    transform: translateY(-2px);
}

.floating-cart-checkout svg {
    width: 24px;
    height: 24px;
}

.floating-cart-checkout span {
    min-width: 23px;
    height: 23px;
    display: grid;
    place-items: center;
    padding: 0 5px;
    border-radius: 999px;
    color: var(--green-950);
    background: var(--orange);
    font-size: 12px;
}

.product-detail,
.cart-page,
.checkout-page,
.success-page {
    max-width: 1120px;
    margin: 0 auto;
    padding: 58px 24px;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(300px, 0.8fr) minmax(320px, 1fr);
    gap: 42px;
    align-items: center;
}

.detail-visual {
    min-height: 430px;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    border-radius: 8px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.detail-visual .mini-pouch {
    width: 150px;
    height: 245px;
    padding-top: 52px;
}

.detail-visual .ice-bag {
    width: 190px;
    height: 215px;
    padding-top: 48px;
}

.product-detail-image {
    min-height: 500px;
    background: #fff;
}

.product-image-button {
    width: 100%;
    min-height: 500px;
    position: relative;
    display: grid;
    place-items: center;
    padding: 16px;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.product-image-button > img {
    width: 100%;
    height: 460px;
    display: block;
    object-fit: contain;
}

.zoom-hint {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 12px;
    border-radius: 999px;
    color: #fff;
    background: rgba(0, 63, 38, 0.88);
    font-size: 13px;
    font-weight: 800;
}

.zoom-hint svg,
.zoom-actions svg {
    width: 18px;
    height: 18px;
}

.product-zoom-modal {
    width: min(1100px, calc(100vw - 32px));
    height: min(850px, calc(100vh - 32px));
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.product-zoom-modal::backdrop {
    background: rgba(0, 24, 15, 0.8);
}

.zoom-toolbar {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--line);
    color: var(--green-950);
}

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

.zoom-actions button {
    min-width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--green-950);
    background: #fff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.zoom-actions button:hover,
.zoom-actions button:focus-visible {
    border-color: var(--green-700);
    background: #f1f8ed;
}

.zoom-canvas {
    height: calc(100% - 64px);
    overflow: auto;
    background: #f7f8f5;
}

.zoom-canvas img {
    width: 100%;
    max-width: none;
    min-height: 100%;
    display: block;
    object-fit: contain;
    transition: width 160ms ease;
}

.detail-copy h1 {
    margin: 10px 0 16px;
    color: var(--green-950);
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.05;
}

.detail-copy p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
    font-weight: 600;
}

.back-link {
    color: var(--green-700);
    font-weight: 800;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 22px 0;
    display: grid;
    gap: 10px;
    color: #34483f;
    font-weight: 700;
}

.detail-list li {
    display: flex;
    gap: 8px;
    align-items: center;
}

.detail-list svg {
    width: 18px;
    height: 18px;
    color: var(--green-700);
}

.detail-price {
    display: block;
    margin: 18px 0;
    color: var(--green-950);
    font-size: 34px;
}

.purchase-form {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: end;
}

.purchase-form label,
.cart-item label,
.checkout-form label {
    display: grid;
    gap: 7px;
    color: var(--green-950);
    font-weight: 800;
}

.purchase-form input,
.cart-item input,
.checkout-form input,
.checkout-form select,
.checkout-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px 14px;
    font: inherit;
    background: #fffdf8;
}

.purchase-form input {
    width: 110px;
}

.related-products {
    max-width: 1120px;
    margin: 0 auto 34px;
    padding: 0 24px;
}

.related-products h2 {
    color: var(--green-950);
}

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

.related-card,
.empty-state,
.cart-item,
.cart-summary,
.checkout-form,
.checkout-summary,
.success-card,
.policy-grid article {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(0, 44, 27, 0.08);
}

.related-card {
    display: flex;
    flex-direction: column;
    padding: 18px;
}

.related-card-image {
    height: 180px;
    display: grid;
    place-items: center;
    margin: -4px -4px 14px;
    overflow: hidden;
    border-radius: 6px;
    background: #fff;
}

.related-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.related-card span,
.related-card em {
    display: block;
    color: var(--muted);
    font-style: normal;
    font-size: 13px;
}

.related-card strong {
    display: block;
    margin: 8px 0;
    color: var(--green-950);
}

.related-card em {
    margin-top: auto;
}

.cart-page,
.checkout-page,
.success-page {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px;
    align-items: start;
}

.cart-page > .flash {
    grid-column: 1 / -1;
}

.cart-table {
    display: grid;
    gap: 14px;
    transition: opacity 0.2s ease;
}

.cart-table.is-updating {
    opacity: 0.65;
}

.cart-item {
    display: grid;
    grid-template-columns: 84px minmax(180px, 1fr) 130px 120px auto;
    align-items: center;
    gap: 18px;
    padding: 18px;
}

.cart-item-image {
    width: 84px;
    height: 84px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 14px;
    background: #f1f7f3;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-item-info > strong {
    color: var(--green-950);
}

.cart-item span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-weight: 600;
}

.text-btn {
    border: 0;
    background: transparent;
    color: #b14422;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.cart-summary,
.checkout-summary,
.success-card,
.empty-state {
    padding: 24px;
}

.cart-summary h2,
.checkout-summary h2,
.success-card h2 {
    margin-top: 0;
    color: var(--green-950);
}

.cart-summary div,
.checkout-summary div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin: 12px 0;
}

.cart-summary .btn,
.checkout-summary .btn {
    width: 100%;
    margin-top: 16px;
}

.cart-summary .cart-summary-total {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #dce8e1;
    font-size: 1.1rem;
    color: var(--green-950);
}

.free-delivery-note {
    margin: 14px 0 0;
    padding: 11px 13px;
    border-radius: 10px;
    background: #eaf7ef;
    color: #176640;
    font-size: 0.86rem;
    font-weight: 700;
}

.cart-toast {
    position: fixed;
    z-index: 1500;
    right: 24px;
    bottom: 24px;
    max-width: min(360px, calc(100% - 48px));
    padding: 14px 18px;
    border-radius: 12px;
    background: var(--green-950);
    color: #fff;
    box-shadow: 0 14px 36px rgb(0 0 0 / 22%);
    font-weight: 700;
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.cart-toast.is-error {
    background: #9d3428;
}

.company-page {
    width: min(920px, calc(100% - 40px));
    margin: 36px auto 72px;
}

.company-page-narrow {
    width: min(540px, calc(100% - 40px));
}

.company-card {
    padding: clamp(24px, 4vw, 42px);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 50px rgb(19 66 43 / 10%);
}

.company-form,
.company-form [data-company-fields] {
    display: grid;
    gap: 22px;
}

.company-form [hidden] {
    display: none;
}

.company-form label {
    display: grid;
    gap: 8px;
    color: var(--green-950);
    font-size: 0.9rem;
    font-weight: 800;
}

.company-form input {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    border: 1px solid #cadbd1;
    border-radius: 10px;
    background: #fff;
    color: #183a2a;
    font: inherit;
}

.company-form input[readonly] {
    background: #eef4f0;
    color: #617269;
}

.company-fieldset {
    margin: 0;
    padding: 22px;
    border: 1px solid #dce8e1;
    border-radius: 16px;
}

.company-fieldset legend {
    padding: 0 8px;
    color: var(--green-950);
    font-weight: 900;
}

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

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

.cnpj-status {
    margin: -10px 0 0;
    color: #65766d;
    font-weight: 700;
}

.cnpj-status.is-success {
    color: #167044;
}

.cnpj-status.is-error {
    color: #a03d2c;
}

.company-switch {
    margin: 24px 0 0;
    text-align: center;
}

.company-switch a {
    color: var(--green-700);
    font-weight: 800;
}

.company-logout-form {
    margin-top: 24px;
    text-align: center;
}

.checkout-form {
    padding: 24px;
}

.checkout-form fieldset {
    margin: 0 0 24px;
    padding: 0;
    border: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.checkout-form legend {
    grid-column: 1 / -1;
    margin-bottom: 4px;
    color: var(--green-950);
    font-size: 22px;
    font-weight: 900;
}

.checkout-form label:has(textarea),
.checkout-form label:has(select) {
    grid-column: 1 / -1;
}

.checkout-summary hr {
    border: 0;
    border-top: 1px solid var(--line);
}

.checkout-summary .total {
    font-size: 20px;
    color: var(--green-950);
}

.success-card {
    text-align: center;
}

.success-card svg {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    color: var(--green-700);
}

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

.policy-grid article {
    padding: 24px;
}

.policy-grid h2 {
    margin-top: 0;
    color: var(--green-950);
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 360px;
    align-items: center;
    gap: 34px;
}

.about-panel {
    padding: 30px;
}

.about-panel strong {
    display: block;
    margin: 18px 0 8px;
    color: var(--green-950);
    font-size: 22px;
}

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

.benefits-grid-page article {
    display: block;
    padding: 24px;
}

.benefits-grid-page svg {
    margin-bottom: 16px;
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
}

.contact-form,
.contact-card {
    padding: 28px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--green-950);
    font-weight: 800;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px 16px;
    font: inherit;
    color: var(--ink);
    background: #fffdf8;
}

.contact-form textarea {
    resize: vertical;
}

.flash {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 8px;
    font-weight: 800;
}

.flash-success {
    color: #105d36;
    background: #e3f6db;
}

.flash-error {
    color: #8a250e;
    background: #ffe0d2;
}

@media (max-width: 980px) {
    .header-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        padding: 12px 20px;
        font-size: 13px;
    }

    .navbar {
        grid-template-columns: 1fr auto;
        min-height: auto;
        padding: 14px 24px;
    }

    .brand {
        width: 150px;
        height: 74px;
    }

    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .nav-links,
    .nav-actions {
        display: none;
        grid-column: 1 / -1;
    }

    .navbar.is-open .nav-links,
    .navbar.is-open .nav-actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .hero,
    .products-hero,
    .section-heading,
    .product-cards,
    .split-section,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 36px;
    }

    .hero-visual {
        min-height: 390px;
    }

    .pouch-grape {
        left: 34%;
    }

    .pouch-mango {
        left: 54%;
    }

    .benefits-row,
    .benefits-grid-page,
    .catalog-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-hero-copy {
        padding: 38px 24px 18px;
    }

    .products-hero-art {
        min-height: 250px;
    }

    .catalog-toolbar {
        align-items: center;
        flex-direction: row;
    }

    .catalog-intro {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .catalog-intro-points {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .sort-control {
        width: 250px;
        min-width: 230px;
    }

    .product-list,
    .ice-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }

    .product-detail,
    .cart-page,
    .checkout-page,
    .success-page {
        grid-template-columns: 1fr;
    }

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

    .cart-item {
        grid-template-columns: 1fr 120px;
    }

    .cta-band {
        grid-template-columns: 1fr;
        padding-left: 220px;
    }

    .floating-cart-checkout {
        right: max(16px, env(safe-area-inset-right));
        bottom: max(16px, env(safe-area-inset-bottom));
        width: 58px;
        height: 58px;
        min-height: 58px;
        justify-content: center;
        padding: 0;
    }

    .floating-cart-checkout strong {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
    }

    .floating-cart-checkout span {
        position: absolute;
        top: -5px;
        right: -5px;
    }
}

@media (max-width: 760px) {
    .catalog-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .sort-control {
        width: 100%;
        min-width: 0;
    }

    .product-list,
    .ice-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .store-card {
        min-height: 420px;
    }

    .product-photo img {
        height: 190px;
    }

    .store-image {
        min-height: 190px;
    }
}

@media (max-width: 640px) {
    .header-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
        align-items: center;
        padding: 10px 12px;
        font-size: 11px;
    }

    .navbar {
        padding: 12px 18px;
    }

    .brand {
        width: 132px;
        height: 68px;
    }

    .header-strip span {
        justify-content: center;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-bottom: 22px;
    }

    .products-hero h1 {
        font-size: 42px;
    }

    .products-hero-art {
        min-height: 230px;
    }

    .products-hero-art .product-hero-pouch {
        transform: scale(0.5) rotate(-7deg);
    }

    .products-hero-art .pouch-grape {
        left: 122px;
    }

    .products-hero-art .pouch-mango {
        left: 224px;
        transform: scale(0.5) rotate(3deg);
    }

    .products-hero-art .fruit-orange {
        left: 12px;
        bottom: 58px;
        width: 90px;
        height: 90px;
    }

    .catalog-page {
        padding: 18px 14px 10px;
    }

    .catalog-intro {
        min-height: 0;
        margin-bottom: 16px;
        padding: 24px 18px;
        border-radius: 16px;
    }

    .catalog-intro h1 {
        font-size: 36px;
    }

    .catalog-intro p {
        font-size: 15px;
    }

    .catalog-intro-points {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .catalog-intro-points span {
        grid-template-columns: 32px 1fr;
        column-gap: 8px;
        padding: 10px;
        font-size: 11px;
    }

    .catalog-intro-points svg {
        width: 32px;
        height: 32px;
        padding: 7px;
    }

    .catalog-intro-points strong {
        font-size: 13px;
    }

    .catalog-toolbar {
        position: static;
        gap: 10px;
        margin-bottom: 26px;
        padding: 8px;
    }

    .catalog-tabs {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
    }

    .catalog-tab {
        width: auto;
        justify-content: center;
        gap: 4px;
        padding: 0 6px;
        font-size: 12px;
    }

    .catalog-tab small {
        min-width: 20px;
        padding: 2px 4px;
        font-size: 9px;
    }

    .sort-control {
        min-width: 0;
    }

    .category-heading {
        align-items: flex-start;
    }

    .category-heading > svg {
        width: 54px;
        height: 54px;
        padding: 12px;
    }

    .hero-visual {
        width: 100%;
        min-height: 315px;
        transform: none;
        margin-bottom: 0;
    }

    .pouch {
        width: 118px;
        height: 220px;
        bottom: 30px;
        padding: 48px 14px 14px;
        border-radius: 8px 8px 26px 26px;
    }

    .pouch span {
        font-size: 16px;
    }

    .pouch strong {
        font-size: 26px;
    }

    .pouch em {
        margin-top: 12px;
        font-size: 18px;
    }

    .pouch-grape {
        left: 112px;
    }

    .pouch-mango {
        left: 210px;
        width: 132px;
        height: 240px;
        bottom: 25px;
    }

    .fruit-orange {
        left: 8px;
        bottom: 95px;
        width: 105px;
        height: 105px;
    }

    .fruit-mango {
        right: 2px;
        bottom: 24px;
        width: 92px;
        height: 74px;
    }

    .ice {
        width: 38px;
        height: 38px;
    }

    .ice-one {
        left: 58px;
        bottom: 34px;
    }

    .ice-two {
        left: 170px;
        bottom: 12px;
    }

    .ice-three {
        right: 72px;
        bottom: 72px;
    }

    .product-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .product-copy {
        padding: 26px;
    }

    .product-image {
        height: 250px;
        clip-path: none;
    }

    .benefits-row,
    .benefits-grid-page,
    .catalog-grid,
    .related-grid,
    .policy-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .product-list,
    .ice-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .store-card {
        min-height: 386px;
        padding: 9px;
        border-radius: 12px;
    }

    .product-photo img {
        height: 132px;
    }

    .store-image {
        min-height: 132px;
    }

    .store-card h3 {
        min-height: 2.4em;
        margin-top: 10px;
        font-size: 14px;
    }

    .store-card p {
        min-height: 3.9em;
        font-size: 11px;
    }

    .store-card > strong {
        font-size: 16px;
    }

    .details-btn {
        min-height: 38px;
        padding: 5px;
        font-size: 10px;
    }

    .store-card-polpas .product-photo img {
        transform: scale(1.2);
    }

    .store-card-gelos .product-photo img {
        transform: scale(1.42);
    }

    .store-card:hover .product-photo img {
        transform: scale(1.24);
    }

    .store-card-gelos:hover .product-photo img {
        transform: scale(1.46);
    }

    .store-size {
        left: 6px;
        bottom: 6px;
        padding: 4px 6px;
        font-size: 9px !important;
    }

    .image-hero img {
        height: 260px;
        object-fit: cover;
        object-position: left center;
    }

    .home-category-nav {
        padding: 42px 18px 6px;
    }

    .home-category-nav > header p {
        font-size: 15px;
    }

    .home-category-links {
        gap: 14px;
    }

    .home-category-card {
        min-height: 230px;
        grid-template-columns: 1.15fr 0.85fr;
        padding: 24px 14px 24px 22px;
        border-radius: 16px;
    }

    .home-category-card h3 {
        font-size: 23px;
    }

    .home-category-card p {
        font-size: 13px;
    }

    .home-category-card > img {
        height: 185px;
        transform: scale(1.45);
    }

    .ice-category-card > img {
        transform: scale(1.65);
    }

    .floating-cart-checkout {
        right: max(12px, env(safe-area-inset-right));
        bottom: max(12px, env(safe-area-inset-bottom));
        width: 58px;
        height: 58px;
        min-height: 58px;
        justify-content: center;
        padding: 0;
    }

    .floating-cart-checkout strong {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
    }

    .floating-cart-checkout span {
        position: absolute;
        top: -5px;
        right: -5px;
    }

    .product-detail,
    .cart-page,
    .checkout-page,
    .success-page {
        padding: 34px 24px;
    }

    .detail-visual {
        min-height: 320px;
    }

    .product-image-button {
        min-height: 320px;
    }

    .product-image-button > img {
        height: 290px;
    }

    .zoom-toolbar > strong {
        display: none;
    }

    .zoom-actions {
        width: 100%;
        justify-content: center;
    }

    .cart-item {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .checkout-form fieldset {
        grid-template-columns: 1fr;
    }

    .cta-band {
        padding: 180px 24px 24px;
    }

    .cta-fruits {
        width: 100%;
        height: 155px;
    }

    .company-form-grid,
    .cnpj-lookup-row {
        grid-template-columns: 1fr;
    }

    .company-fieldset {
        padding: 18px;
    }

    .company-link span {
        display: none;
    }
}

@media (max-width: 520px) {
    .header-strip {
        grid-template-columns: 1fr;
        gap: 8px;
        align-items: start;
        padding: 12px 18px;
        font-size: 13px;
    }

    .header-strip span {
        justify-content: flex-start;
    }
}

@media (max-width: 350px) {
    .catalog-page {
        padding-inline: 10px;
    }

    .catalog-intro {
        padding: 20px 14px;
    }

    .catalog-intro h1 {
        font-size: 31px;
    }

    .catalog-intro-points span {
        padding: 8px;
    }

    .category-heading {
        gap: 10px;
    }

    .category-heading > svg {
        width: 46px;
        height: 46px;
        padding: 10px;
    }

    .category-heading h2 {
        font-size: 26px;
    }

    .category-heading p {
        font-size: 13px;
    }

    .product-list,
    .ice-list {
        gap: 8px;
    }

    .details-btn {
        font-size: 9px;
    }

    .floating-cart-checkout {
        width: 52px;
        height: 52px;
        min-height: 52px;
    }
}

/* Painel administrativo 2026 */
.admin-body {
    --admin-sidebar-width: 272px;
    min-height: 100vh;
    color: #26382f;
    background: #f4f7f4;
}

.admin-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: var(--admin-sidebar-width) minmax(0, 1fr);
}

.admin-sidebar {
    position: sticky;
    top: 0;
    z-index: 80;
    height: 100vh;
    display: flex;
    flex-direction: column;
    color: #fff;
    background: linear-gradient(180deg, #073f29 0%, #032f1e 100%);
    box-shadow: 10px 0 35px rgba(1, 35, 21, 0.1);
}

.admin-sidebar-brand {
    min-height: 92px;
    display: flex;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-sidebar-brand > a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.admin-sidebar-brand img {
    width: 76px;
    height: 50px;
    padding: 4px;
    border-radius: 9px;
    object-fit: contain;
    background: #fff;
}

.admin-sidebar-brand span {
    max-width: 86px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.admin-sidebar-close {
    display: none;
    margin-left: auto;
    border: 0;
    color: #fff;
    background: transparent;
    font-size: 20px;
}

.admin-sidebar-nav {
    display: grid;
    gap: 5px;
    padding: 18px 14px;
    overflow-y: auto;
}

.admin-nav-label {
    margin: 14px 12px 5px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.admin-sidebar-nav a,
.admin-sidebar-footer a,
.admin-sidebar-footer button {
    min-height: 46px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 10px 13px;
    border: 0;
    border-radius: 9px;
    color: rgba(255, 255, 255, 0.76);
    background: transparent;
    font: inherit;
    font-size: 14px;
    font-weight: 750;
    text-align: left;
    cursor: pointer;
    transition: 0.2s ease;
}

.admin-sidebar-nav a i,
.admin-sidebar-footer i {
    width: 20px;
    color: #8dd3a8;
    text-align: center;
}

.admin-sidebar-nav a:hover,
.admin-sidebar-nav a.is-active,
.admin-sidebar-footer a:hover,
.admin-sidebar-footer button:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.admin-sidebar-nav a.is-active {
    box-shadow: inset 3px 0 #8bd13c;
}

.admin-sidebar-nav a.is-active i {
    color: #a7e864;
}

.admin-sidebar-footer {
    display: grid;
    gap: 4px;
    margin-top: auto;
    padding: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-sidebar-footer form,
.admin-sidebar-footer button {
    width: 100%;
}

.admin-workspace {
    min-width: 0;
}

.admin-topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px clamp(20px, 3vw, 42px);
    border-bottom: 1px solid #e0e9e2;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
}

.admin-topbar > div:first-of-type {
    display: grid;
    gap: 2px;
}

.admin-topbar small {
    color: #738279;
    font-size: 11px;
}

.admin-topbar > div:first-of-type strong {
    color: var(--green-950);
    font-size: 17px;
}

.admin-menu-toggle {
    width: 42px;
    height: 42px;
    display: none;
    place-items: center;
    border: 1px solid #dce6df;
    border-radius: 9px;
    color: var(--green-900);
    background: #fff;
    font-size: 18px;
}

.admin-topbar-user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.admin-topbar-user > span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--green-700);
}

.admin-topbar-user div {
    display: grid;
}

.admin-topbar-user strong {
    font-size: 13px;
}

.admin-topbar-user small {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-main {
    width: min(1480px, calc(100% - clamp(32px, 6vw, 84px)));
    margin: 0 auto;
    padding: 34px 0 64px;
}

.admin-is-login .admin-main {
    width: min(430px, calc(100% - 32px));
}

.admin-page-heading h1 {
    font-size: clamp(28px, 3vw, 38px);
    letter-spacing: -0.035em;
}

.admin-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid currentColor;
}

.admin-stat-grid-dashboard {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-stat-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-width: 0;
}

.admin-stat-icon,
.admin-list-icon {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--green-700);
    background: #e9f6ec;
}

.admin-stat-icon {
    width: 46px;
    height: 46px;
    font-size: 18px;
}

.admin-stat-card > div {
    min-width: 0;
}

.admin-stat-card small,
.admin-stat-card span,
.admin-stat-card strong {
    display: block;
}

.admin-stat-card small {
    color: #64746b;
    font-weight: 700;
}

.admin-stat-card strong {
    margin: 7px 0 3px;
    color: var(--green-950);
    font-size: clamp(25px, 2.5vw, 34px);
    line-height: 1;
}

.admin-stat-card div > span {
    color: #829087;
    font-size: 11px;
}

.admin-dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 20px;
    margin-top: 22px;
}

.admin-panel-card,
.admin-filter-bar,
.admin-message-card,
.admin-quick-actions a {
    border: 1px solid #dce7df;
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 44, 27, 0.045);
}

.admin-panel-card > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    border-bottom: 1px solid #edf1ee;
}

.admin-panel-card > header span,
.admin-status-form > span,
.admin-payment-card > span {
    color: var(--orange-dark);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.admin-panel-card h2 {
    margin: 3px 0 0;
    color: var(--green-950);
    font-size: 18px;
}

.admin-panel-card > header > a {
    color: var(--green-700);
    font-size: 12px;
    font-weight: 800;
}

.admin-compact-list > a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid #edf1ee;
    color: #26382f;
}

.admin-compact-list > a:last-child {
    border-bottom: 0;
}

.admin-list-icon {
    position: relative;
    width: 38px;
    height: 38px;
}

.admin-list-icon.has-notification::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 9px;
    height: 9px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: var(--orange);
}

.admin-compact-list a > div:not(.admin-list-value) {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.admin-compact-list small {
    color: #78867e;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-list-value {
    display: grid;
    gap: 3px;
    margin-left: auto;
    text-align: right;
}

.admin-list-value small,
.admin-compact-list time {
    color: #718078;
    font-size: 11px;
}

.admin-quick-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 20px;
}

.admin-quick-actions a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 19px;
    color: #26382f;
}

.admin-quick-actions > a > i {
    color: var(--green-700);
    font-size: 22px;
}

.admin-quick-actions div {
    display: grid;
    gap: 3px;
}

.admin-quick-actions span {
    color: #738179;
    font-size: 12px;
}

.admin-filter-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 14px;
}

.admin-search-field {
    min-width: 240px;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 13px;
    border: 1px solid #cfdbd2;
    border-radius: 8px;
    background: #fff;
}

.admin-search-field i {
    color: #718078;
}

.admin-search-field input,
.admin-filter-bar select,
.admin-status-form select {
    min-height: 43px;
    border: 1px solid #cfdbd2;
    border-radius: 8px;
    color: #26382f;
    background: #fff;
    font: inherit;
}

.admin-search-field input {
    width: 100%;
    border: 0;
    outline: 0;
}

.admin-filter-bar select {
    min-width: 160px;
    padding: 0 12px;
}

.admin-filter-bar .btn {
    min-height: 43px;
}

.admin-clear-filter {
    padding: 9px;
    color: #68776f;
    font-size: 12px;
    font-weight: 800;
}

.admin-table-wrap {
    border-radius: 13px;
}

.admin-table td > strong,
.admin-table td > small,
.admin-table td > a,
.admin-orders-table td > strong,
.admin-orders-table td > small {
    display: block;
}

.admin-table td > small {
    margin-top: 4px;
    color: #78867e;
    font-size: 11px;
}

.admin-status {
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.admin-status .fa-circle {
    font-size: 6px;
}

.status-recebido {
    color: #165b86;
    background: #dceefa;
}

.status-em-preparacao {
    color: #80500a;
    background: #fff0c9;
}

.status-saiu-para-entrega {
    color: #5746a2;
    background: #ebe7ff;
}

.status-concluido {
    color: #0d6a3b;
    background: #dcf3e5;
}

.status-cancelado {
    color: #992f25;
    background: #ffe1dc;
}

.admin-row-actions {
    gap: 8px;
}

.admin-row-actions a,
.admin-row-actions button,
.admin-message-actions button,
.admin-icon-link {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 9px;
    border: 1px solid #dce7df;
    border-radius: 7px;
    background: #fff;
    font-size: 12px;
}

.admin-row-actions button.is-neutral {
    color: #56685e;
}

.admin-icon-link {
    justify-content: center;
    color: var(--green-700);
}

.admin-empty {
    min-height: 150px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    padding: 25px;
    color: #718078;
    text-align: center;
}

.admin-empty i {
    color: #9ebaaa;
    font-size: 28px;
}

.admin-empty p {
    margin: 0;
}

.admin-order-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 20px;
}

.admin-order-main {
    display: grid;
    gap: 20px;
}

.admin-order-items {
    padding: 5px 22px;
}

.admin-order-items > div,
.admin-order-totals span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.admin-order-items > div {
    padding: 15px 0;
    border-bottom: 1px solid #edf1ee;
}

.admin-order-items small {
    display: block;
    margin-top: 4px;
    color: #748279;
}

.admin-order-totals {
    display: grid;
    gap: 9px;
    padding: 18px 22px;
    border-top: 1px solid #edf1ee;
    background: #f8faf8;
}

.admin-order-totals span:last-child {
    padding-top: 10px;
    border-top: 1px solid #dce7df;
    color: var(--green-950);
    font-size: 18px;
}

.admin-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 22px;
}

.admin-info-grid > div {
    position: relative;
    display: grid;
    gap: 4px;
    padding-left: 31px;
}

.admin-info-grid i {
    position: absolute;
    top: 3px;
    left: 0;
    color: var(--green-700);
}

.admin-info-grid span {
    color: #748279;
    font-size: 11px;
    text-transform: uppercase;
}

.admin-info-grid a {
    color: var(--green-700);
    font-weight: 750;
}

.admin-info-grid .is-wide {
    grid-column: 1 / -1;
}

.admin-order-notes {
    margin: 0 22px 22px;
    padding: 16px;
    border-radius: 9px;
    background: #fff8e8;
}

.admin-order-notes p {
    margin-bottom: 0;
}

.admin-order-sidebar {
    display: grid;
    align-content: start;
    gap: 18px;
}

.admin-status-form,
.admin-payment-card {
    display: grid;
    gap: 14px;
    padding: 22px;
}

.admin-status-form label {
    display: grid;
    gap: 7px;
    color: #4b5f54;
    font-size: 12px;
    font-weight: 750;
}

.admin-status-form select {
    width: 100%;
    padding: 0 11px;
}

.admin-payment-card > strong {
    color: var(--green-700);
    font-size: 27px;
}

.admin-message-list {
    display: grid;
    gap: 12px;
}

.admin-message-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 15px;
    padding: 20px;
}

.admin-message-card.is-unread {
    border-left: 4px solid var(--orange);
}

.admin-message-avatar {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--green-700);
    background: #e9f6ec;
}

.admin-message-content header,
.admin-message-content footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-message-content header {
    justify-content: space-between;
}

.admin-message-content header > div {
    display: flex;
    align-items: center;
    gap: 9px;
}

.admin-message-content header span {
    padding: 3px 7px;
    border-radius: 999px;
    color: #76500b;
    background: #fff0ce;
    font-size: 10px;
    font-weight: 800;
}

.admin-message-content time {
    color: #75837b;
    font-size: 11px;
}

.admin-message-content p {
    margin: 12px 0;
    color: #4b5d53;
    line-height: 1.55;
}

.admin-message-content footer {
    flex-wrap: wrap;
}

.admin-message-content footer a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--green-700);
    font-size: 12px;
    font-weight: 750;
}

.admin-message-actions {
    display: flex;
    gap: 7px;
}

.admin-message-actions form {
    margin: 0;
}

.admin-message-actions button {
    color: var(--green-700);
}

.admin-message-actions button.is-danger {
    color: #a53a24;
}

.admin-sidebar-backdrop {
    display: none;
}

@media (max-width: 1250px) {
    .admin-stat-grid-dashboard {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .admin-shell {
        display: block;
    }

    .admin-sidebar {
        position: fixed;
        left: 0;
        transform: translateX(-105%);
        width: min(300px, 88vw);
        transition: transform 0.25s ease;
    }

    .admin-sidebar-is-open .admin-sidebar {
        transform: translateX(0);
    }

    .admin-sidebar-close,
    .admin-menu-toggle {
        display: grid;
    }

    .admin-sidebar-backdrop {
        position: fixed;
        inset: 0;
        z-index: 70;
        border: 0;
        background: rgba(0, 28, 17, 0.5);
    }

    .admin-sidebar-is-open .admin-sidebar-backdrop {
        display: block;
    }
}

@media (max-width: 820px) {
    .admin-dashboard-grid,
    .admin-order-layout {
        grid-template-columns: 1fr;
    }

    .admin-quick-actions {
        grid-template-columns: 1fr;
    }

    .admin-filter-bar {
        align-items: stretch;
        flex-wrap: wrap;
    }

    .admin-search-field {
        min-width: 100%;
    }

    .admin-filter-bar select {
        flex: 1;
    }
}

@media (max-width: 620px) {
    .admin-topbar {
        min-height: 66px;
        padding: 10px 14px;
    }

    .admin-topbar-user div,
    .admin-topbar > div:first-of-type small {
        display: none;
    }

    .admin-main {
        width: calc(100% - 24px);
        padding-top: 24px;
    }

    .admin-stat-grid-dashboard {
        grid-template-columns: 1fr;
    }

    .admin-page-heading {
        margin-bottom: 20px;
    }

    .admin-heading-actions {
        align-items: stretch;
    }

    .admin-heading-actions .btn {
        justify-content: center;
    }

    .admin-filter-bar select,
    .admin-filter-bar .btn {
        width: 100%;
    }

    .admin-info-grid {
        grid-template-columns: 1fr;
    }

    .admin-info-grid .is-wide {
        grid-column: auto;
    }

    .admin-message-card {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .admin-message-actions {
        grid-column: 2;
    }

    .admin-message-content header {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Refinamento visual do painel */
.admin-body {
    --admin-sidebar-width: 258px;
    color: #333;
    background: #f6f7f6;
}

.admin-body a:focus-visible,
.admin-body button:focus-visible,
.admin-body input:focus-visible,
.admin-body textarea:focus-visible,
.admin-body select:focus-visible {
    outline-color: #4b9668;
}

.admin-sidebar {
    color: #333;
    border-right: 1px solid #e4e9e5;
    background: #fff;
    box-shadow: 6px 0 24px rgba(25, 50, 35, 0.035);
}

.admin-sidebar-brand {
    min-height: 88px;
    padding: 14px 20px;
    border-bottom-color: #e8ece9;
}

.admin-sidebar-brand > a {
    gap: 14px;
    color: #333;
}

.admin-sidebar-brand img {
    width: 105px;
    height: 58px;
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.admin-sidebar-brand span {
    max-width: 72px;
    color: #52705e;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0.08em;
}

.admin-sidebar-close {
    color: #333;
}

.admin-sidebar-nav {
    gap: 3px;
    padding: 14px 12px 20px;
}

.admin-nav-label {
    margin: 18px 12px 7px;
    color: #929b95;
    font-size: 9px;
    letter-spacing: 0.16em;
}

.admin-sidebar-nav a,
.admin-sidebar-footer a,
.admin-sidebar-footer button {
    min-height: 44px;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    color: #333;
    font-size: 13.5px;
    font-weight: 650;
}

.admin-sidebar-nav a i,
.admin-sidebar-footer i {
    color: #538269;
    font-size: 15px;
}

.admin-sidebar-nav a:hover,
.admin-sidebar-footer a:hover,
.admin-sidebar-footer button:hover {
    color: #164f30;
    background: #f2f7f3;
}

.admin-sidebar-nav a.is-active {
    color: #0f5a31;
    background: #e9f5ed;
    box-shadow: none;
    font-weight: 800;
}

.admin-sidebar-nav a.is-active i {
    color: #168447;
}

.admin-sidebar-footer {
    padding: 12px;
    border-top-color: #e8ece9;
}

.admin-sidebar-footer button:hover {
    color: #9a3328;
    background: #fff3f1;
}

.admin-topbar {
    min-height: 72px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom-color: #e5e9e6;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 12px rgba(25, 50, 35, 0.025);
}

.admin-topbar > div:first-of-type strong {
    color: #252b27;
    font-size: 16px;
}

.admin-topbar-user > span {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    color: #197b45;
    background: #e8f4ec;
}

.admin-topbar-user strong {
    color: #303632;
    font-weight: 750;
}

.admin-main {
    width: min(1360px, calc(100% - clamp(32px, 5vw, 72px)));
    padding-top: 32px;
}

.admin-page-heading > span,
.admin-page-heading div > span {
    color: #398259;
    font-size: 11px;
    letter-spacing: 0.12em;
}

.admin-page-heading h1 {
    color: #242a26;
    font-size: clamp(27px, 2.6vw, 35px);
    font-weight: 780;
    letter-spacing: -0.025em;
}

.admin-page-heading p {
    color: #6d766f;
}

.admin-body .btn-primary {
    border-color: #12693a;
    color: #fff;
    background: #12693a;
    box-shadow: 0 7px 16px rgba(18, 105, 58, 0.15);
}

.admin-body .btn-primary:hover {
    border-color: #0b532c;
    background: #0b532c;
    transform: translateY(-1px);
}

.admin-body .btn-outline {
    border-color: #cbd5ce;
    color: #31543e;
    background: #fff;
}

.admin-body .btn-outline:hover {
    border-color: #7ba38a;
    background: #f3f8f4;
}

.admin-stat-grid article,
.admin-action-grid a,
.admin-form,
.admin-table-wrap,
.admin-panel-card,
.admin-filter-bar,
.admin-message-card,
.admin-quick-actions a {
    border-color: #e1e6e2;
    border-radius: 11px;
    box-shadow: 0 5px 18px rgba(24, 48, 33, 0.035);
}

.admin-stat-grid article {
    padding: 21px;
}

.admin-stat-card {
    align-items: center;
}

.admin-stat-icon,
.admin-list-icon,
.admin-message-avatar {
    color: #25764a;
    background: #edf6f0;
}

.admin-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 9px;
}

.admin-stat-card small {
    color: #646d67;
    font-weight: 650;
}

.admin-stat-card strong {
    color: #232925;
    font-weight: 780;
}

.admin-stat-card div > span {
    color: #8a928d;
}

.admin-panel-card > header {
    padding: 19px 21px;
    border-bottom-color: #edf0ee;
}

.admin-panel-card > header span,
.admin-status-form > span,
.admin-payment-card > span {
    color: #47725a;
}

.admin-panel-card h2 {
    color: #2a302c;
    font-weight: 760;
}

.admin-compact-list > a,
.admin-order-items > div {
    border-bottom-color: #eef1ef;
}

.admin-compact-list > a:hover {
    background: #fafcfb;
}

.admin-list-icon.has-notification::after {
    background: #2b8a52;
}

.admin-quick-actions a {
    min-height: 78px;
}

.admin-quick-actions a:hover {
    border-color: #b9cbbf;
    background: #fbfdfb;
    transform: translateY(-2px);
}

.admin-quick-actions > a > i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: #247449;
    background: #edf6f0;
    font-size: 17px;
}

.admin-filter-bar {
    padding: 12px;
}

.admin-search-field,
.admin-search-field input,
.admin-filter-bar select,
.admin-status-form select,
.admin-form input,
.admin-form select,
.admin-form textarea {
    border-color: #d5ddd7;
    color: #333;
}

.admin-search-field:focus-within {
    border-color: #6e9f7f;
    box-shadow: 0 0 0 3px rgba(39, 127, 75, 0.09);
}

.admin-table th {
    color: #646d67;
    background: #f8f9f8;
    font-size: 10.5px;
    letter-spacing: 0.07em;
}

.admin-table td {
    border-bottom-color: #edf0ee;
    color: #3b423d;
}

.admin-table tbody tr:hover {
    background: #fbfdfb;
}

.admin-row-actions a,
.admin-row-actions button,
.admin-message-actions button,
.admin-icon-link {
    border-color: #dce2de;
    color: #286b45;
}

.admin-row-actions a:hover,
.admin-row-actions button.is-neutral:hover,
.admin-message-actions button:hover,
.admin-icon-link:hover {
    border-color: #aac0b1;
    background: #f1f7f3;
}

.admin-message-card.is-unread {
    border-left-color: #23814b;
}

.admin-message-content header span {
    color: #266b44;
    background: #eaf5ed;
}

.admin-order-totals {
    background: #fafbfa;
}

.admin-order-notes {
    background: #f3f7f4;
}

.admin-login-card {
    border-color: #e0e6e1;
    border-radius: 12px;
    box-shadow: 0 22px 60px rgba(22, 48, 31, 0.1);
}

@media (max-width: 1024px) {
    .admin-sidebar {
        box-shadow: 16px 0 45px rgba(20, 42, 28, 0.13);
    }
}
