@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
    --ink: #06090c;
    --ink-2: #0a0f13;
    --glass: rgba(18, 27, 33, 0.62);
    --glass-strong: rgba(20, 30, 36, 0.88);
    --line: rgba(255, 255, 255, 0.13);
    --muted: #94a2aa;
    --white: #f5fbfd;
    --cyan: #008d36;
    --cyan-soft: rgba(0, 141, 54, 0.14);
    --orange: #ff7a3d;
    --green: #35da76;
    --shadow: 0 30px 100px rgba(0, 0, 0, 0.42);
    --display: "Space Grotesk", sans-serif;
    --body: "Manrope", sans-serif;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    background: var(--ink);
    color-scheme: dark;
}
body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(
            circle at 72% 12%,
            rgba(49, 231, 255, 0.08),
            transparent 25%
        ),
        radial-gradient(
            circle at 10% 45%,
            rgba(255, 122, 61, 0.06),
            transparent 22%
        ),
        var(--ink);
    color: var(--white);
    font-family: var(--body);
    -webkit-font-smoothing: antialiased;
}
body.modal-open {
    overflow: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
button,
input,
select,
textarea {
    font: inherit;
}
button {
    color: inherit;
    cursor: pointer;
}
img {
    max-width: 100%;
    display: block;
}
[hidden] {
    display: none !important;
}
.shell {
    width: min(1360px, calc(100% - 64px));
    margin-inline: auto;
}
.section {
    padding: 110px 0;
}
.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    transform: translateY(-150%);
    padding: 12px 18px;
    border-radius: 10px;
    background: var(--cyan);
    color: #031014;
    font-weight: 800;
}
.skip-link:focus {
    transform: none;
}
:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 4px;
}
.glass-card {
    border: 1px solid var(--line);
    background: linear-gradient(
        145deg,
        rgba(25, 37, 44, 0.68),
        rgba(9, 14, 18, 0.54)
    );
    box-shadow:
        inset 0 1px rgba(255, 255, 255, 0.06),
        var(--shadow);
    backdrop-filter: blur(22px) saturate(135%);
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--cyan);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.eyebrow:before {
    content: "";
    width: 24px;
    height: 1px;
    background: currentColor;
}
.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 0 24px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    font-size: 13px;
    font-weight: 800;
    transition: 0.25s ease;
}
.button:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}
.button-primary {
    border-color: var(--cyan);
    background: var(--cyan);
    color: #031014;
    box-shadow: 0 0 35px rgba(49, 231, 255, 0.16);
}
.button-primary:hover {
    background: #72efff;
    box-shadow: 0 0 45px rgba(49, 231, 255, 0.25);
}
.button-secondary {
    background: rgba(255, 255, 255, 0.06);
}
.button-wide {
    width: 100%;
}
.announcement {
    min-height: 34px;
    display: grid;
    place-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: #070b0e;
    color: #a5b1b7;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-align: center;
    text-transform: uppercase;
}
.announcement b {
    color: var(--cyan);
}
.site-header {
    position: sticky;
    z-index: 90;
    top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(6, 9, 12, 0.66);
    backdrop-filter: blur(24px) saturate(145%);
}
.header-inner {
    height: 76px;
    display: flex;
    align-items: center;
    gap: 36px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    font: 700 22px var(--display);
    letter-spacing: -0.045em;
}
.logo-mark {
    width: 39px;
    height: 35px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(49, 231, 255, 0.58);
    border-radius: 8px 8px 14px 8px;
    background: var(--cyan-soft);
    color: var(--cyan);
}
.logo em {
    color: var(--cyan);
    font-style: normal;
}
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}
.desktop-nav a {
    color: #c5d0d5;
    font-size: 12px;
    font-weight: 700;
}
.desktop-nav a:hover {
    color: var(--cyan);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 7px;
}
.header-icon {
    position: relative;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid transparent;
    border-radius: 12px;
    background: transparent;
    font-size: 19px;
}
.header-icon:hover {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.04);
}
.header-icon b {
    position: absolute;
    top: 2px;
    right: 1px;
    min-width: 19px;
    height: 19px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--orange);
    font-size: 9px;
}
.cart-icon-svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

body {
    cursor: default;
}
p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
small,
strong,
em,
li,
td,
th,
label {
    cursor: default;
    user-select: text;
}
a,
button,
[role="button"],
.upload-drop,
select {
    cursor: pointer;
}
input,
textarea,
[contenteditable="true"] {
    cursor: text;
}
.menu-button {
    display: none;
}
.hero {
    position: relative;
    isolation: isolate;
    min-height: calc(100svh - 110px);
    overflow: hidden;
}
.hero:before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 720px;
    height: 720px;
    right: -160px;
    top: -170px;
    border: 1px solid rgba(49, 231, 255, 0.12);
    border-radius: 50%;
    box-shadow:
        0 0 0 90px rgba(49, 231, 255, 0.018),
        0 0 0 190px rgba(255, 255, 255, 0.012);
}
.hero-grid {
    min-height: calc(100svh - 110px);
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
    align-items: center;
    gap: 65px;
}
.hero-copy {
    padding: 70px 0;
}
.hero-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    color: #a9b5bb;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.hero-kicker i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 18px var(--green);
}
.hero h1 {
    max-width: 700px;
    margin: 0;
    font: 600 clamp(54px, 6vw, 91px) / 0.94 var(--display);
    letter-spacing: -0.07em;
}
.hero h1 em {
    color: var(--cyan);
    font-style: normal;
}
.hero-copy > p {
    max-width: 570px;
    margin: 28px 0 36px;
    color: #a5b2b8;
    font-size: 15px;
    line-height: 1.8;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    color: #7e8b92;
    font-size: 10px;
}
.hero-trust b {
    color: #eaf1f4;
}
.hero-stage {
    position: relative;
    height: 660px;
}
.hero-panel {
    position: absolute;
    inset: 42px 0 38px 30px;
    overflow: hidden;
    border-radius: 30px;
}
.hero-panel:before {
    content: "T";
    position: absolute;
    right: -10px;
    bottom: -160px;
    color: rgba(255, 255, 255, 0.035);
    font: 700 540px/1 var(--display);
}
.hero-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: luminosity;
    opacity: 0.8;
    transform: scale(1.02);
    transition: transform 0.8s ease;
}
.hero-panel:hover img {
    transform: scale(1.055);
}
.hero-product-info {
    position: absolute;
    right: 25px;
    bottom: 18px;
    left: 75px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 10px;
    padding: 22px 24px;
    border-radius: 18px;
}
.hero-product-info small {
    color: #829097;
    font-size: 9px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}
.hero-product-info b {
    font: 600 18px var(--display);
}
.hero-product-info strong {
    grid-row: 1/3;
    grid-column: 2;
    color: var(--cyan);
    font-size: 14px;
}
.floating-chip {
    position: absolute;
    top: 15%;
    left: 0;
    padding: 14px 17px;
    border-radius: 14px;
    color: #dce7eb;
    font-size: 10px;
}
.floating-chip b {
    display: block;
    margin-top: 3px;
    color: var(--orange);
    font-size: 20px;
}
.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 44px;
}
.section-head h2,
.catalog-hero h1 {
    margin: 10px 0 0;
    font: 600 clamp(42px, 5vw, 67px) / 1 var(--display);
    letter-spacing: -0.06em;
}
.text-link {
    padding-bottom: 7px;
    border-bottom: 1px solid #506068;
    font-size: 12px;
    font-weight: 800;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.product-card {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 65px rgba(0, 0, 0, 0.25);
    transition:
        transform 0.25s,
        border-color 0.25s;
}
.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(49, 231, 255, 0.35);
}
.product-media {
    position: relative;
    height: 310px;
    display: block;
    overflow: hidden;
    background: #10171c;
}
.product-media:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(3, 7, 9, 0.5));
}
.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s;
}
.product-card:hover .product-media img {
    transform: scale(1.04);
}
.product-badge {
    position: absolute;
    z-index: 2;
    top: 15px;
    left: 15px;
    padding: 8px 10px;
    border-radius: 999px;
    background: var(--orange);
    color: #fff;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.1em;
}
.badge-new {
    background: var(--cyan);
    color: #031014;
}
.product-content {
    padding: 20px;
}
.product-content small {
    color: #7f8e95;
    font-size: 8px;
    text-transform: uppercase;
}
.product-content h3 {
    min-height: 47px;
    margin: 8px 0 20px;
    font: 600 16px/1.45 var(--display);
}
.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.product-price > span {
    display: grid;
    gap: 3px;
}
.product-price b {
    font-size: 14px;
}
.product-price del {
    color: #66737a;
    font-size: 9px;
}
.product-price button {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(49, 231, 255, 0.35);
    border-radius: 12px;
    background: var(--cyan-soft);
    color: var(--cyan);
    font-size: 24px;
}
.category-ribbon {
    padding: 27px 0;
    border-block: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.018);
}
.category-list {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}
.category-list a {
    display: grid;
    gap: 8px;
    padding: 10px 20px;
    border-right: 1px solid var(--line);
    font: 600 14px var(--display);
}
.category-list a:last-child {
    border: 0;
}
.category-list small {
    color: var(--cyan);
    font: 800 8px var(--body);
    letter-spacing: 0.15em;
}
.campaign {
    overflow: hidden;
    background: linear-gradient(120deg, #ff6d2b, #ff8a4f);
    color: #160902;
}
.campaign-inner {
    min-height: 440px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
}
.campaign h2 {
    margin: 12px 0 20px;
    font: 600 clamp(46px, 6vw, 76px) / 0.95 var(--display);
    letter-spacing: -0.06em;
}
.campaign p {
    max-width: 470px;
    line-height: 1.7;
}
.campaign-art {
    position: relative;
    height: 100%;
    display: grid;
    place-items: center;
}
.campaign-art span {
    position: absolute;
    color: rgba(20, 7, 2, 0.11);
    font: 700 360px var(--display);
}
.campaign-art img {
    position: relative;
    width: 68%;
    max-height: 390px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 35px 80px rgba(47, 11, 0, 0.35);
    transform: rotate(5deg);
}
.pickup-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 20px;
}
.pickup-visual,
.pickup-copy {
    min-height: 500px;
    border-radius: 24px;
}
.pickup-visual {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 60% 40%,
            rgba(49, 231, 255, 0.18),
            transparent 22%
        ),
        linear-gradient(145deg, #101a20, #080d10);
}
.map-line {
    position: absolute;
    width: 120%;
    height: 1px;
    left: -10%;
    top: 50%;
    transform: rotate(-14deg);
    background: rgba(255, 255, 255, 0.13);
    box-shadow:
        0 65px rgba(255, 255, 255, 0.08),
        0 -85px rgba(255, 255, 255, 0.06);
}
.map-pin {
    position: absolute;
    top: 43%;
    left: 55%;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 50% 50% 50% 5px;
    transform: rotate(-45deg);
    background: var(--cyan);
    color: #031014;
    box-shadow: 0 0 50px rgba(49, 231, 255, 0.38);
}
.map-pin span {
    transform: rotate(45deg);
    font: 700 21px var(--display);
}
.pickup-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 55px;
}
.pickup-copy h2 {
    margin: 14px 0 20px;
    font: 600 55px/1 var(--display);
    letter-spacing: -0.06em;
}
.pickup-copy h2 em {
    color: var(--cyan);
    font-style: normal;
}
.pickup-copy p {
    color: #9cabb2;
    line-height: 1.75;
}
.steps {
    display: grid;
    gap: 16px;
    margin: 24px 0 30px;
}
.steps div {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 13px;
}
.steps span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 11px;
    color: var(--cyan);
    font-size: 10px;
}
.steps b {
    font-size: 11px;
}
.steps small {
    display: block;
    margin-top: 4px;
    color: #74838a;
    font-size: 9px;
}
.advantages {
    border-top: 1px solid var(--line);
}
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 34px 0;
}
.advantages-grid div {
    display: grid;
    gap: 6px;
    padding: 5px 25px;
    border-right: 1px solid var(--line);
}
.advantages-grid div:last-child {
    border: 0;
}
.advantages-grid b {
    font-size: 10px;
}
.advantages-grid small {
    color: #718087;
    font-size: 8px;
}
.footer {
    padding: 80px 0 35px;
    border-top: 1px solid var(--line);
    background: #05080a;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 70px;
}
.footer-brand p {
    max-width: 460px;
    color: #7f8c92;
    font-size: 11px;
    line-height: 1.8;
}
.footer h3 {
    font: 600 14px var(--display);
}
.footer nav {
    display: grid;
    gap: 12px;
    color: #93a0a6;
    font-size: 10px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 55px;
    padding-top: 25px;
    border-top: 1px solid var(--line);
    color: #657178;
    font-size: 9px;
}
.whatsapp-float {
    position: fixed;
    z-index: 170;
    left: 23px;
    bottom: 23px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 9px 16px 9px 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    background: #25d366;
    color: #04150b;
    box-shadow:
        0 18px 55px rgba(0, 0, 0, 0.42),
        0 0 0 6px rgba(37, 211, 102, 0.08);
    font-size: 11px;
    font-weight: 800;
}
.whatsapp-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    font-size: 19px;
}
.delivery-overlay,
.mobile-overlay {
    position: fixed;
    z-index: 250;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(1, 4, 6, 0.78);
    backdrop-filter: blur(14px);
}
.delivery-dialog {
    position: relative;
    width: min(920px, 100%);
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    overflow: hidden;
    border-radius: 28px;
}
.delivery-visual {
    min-height: 520px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 65% 22%,
            rgba(255, 122, 61, 0.2),
            transparent 26%
        ),
        #0b1318;
}
.delivery-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: luminosity;
    opacity: 0.65;
}
.delivery-stamp {
    position: absolute;
    right: 28px;
    bottom: 25px;
    width: 110px;
    height: 110px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: rgba(4, 10, 13, 0.74);
    color: var(--cyan);
    font: 700 29px var(--display);
    text-align: center;
    transform: rotate(-7deg);
}
.delivery-stamp small {
    display: block;
    color: #d6e0e4;
    font: 800 8px var(--body);
}
.delivery-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 58px;
}
.delivery-copy h2 {
    margin: 18px 0;
    font: 600 clamp(42px, 5vw, 61px) / 0.96 var(--display);
    letter-spacing: -0.065em;
}
.delivery-copy h2 em {
    display: block;
    color: var(--cyan);
    font-style: normal;
}
.delivery-copy p {
    color: #a1afb5;
    font-size: 12px;
    line-height: 1.8;
}
.popup-close {
    position: absolute;
    z-index: 2;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(4, 9, 12, 0.7);
    font-size: 22px;
}
.mobile-overlay {
    place-items: stretch end;
    padding: 0;
}
.mobile-drawer {
    width: min(400px, 90vw);
    height: 100dvh;
    max-height: 100dvh;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 28px 28px calc(28px + env(safe-area-inset-bottom));
    background: var(--glass-strong);
    border-left: 1px solid var(--line);
    backdrop-filter: blur(26px);
}
.mobile-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mobile-drawer nav {
    display: grid;
    margin-top: 45px;
}
.mobile-drawer nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font: 600 22px var(--display);
}
.catalog-hero {
    padding: 80px 0 55px;
}
.catalog-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
    align-items: start;
}
.catalog-layout > * {
    min-width: 0;
}
.filters {
    position: sticky;
    top: 106px;
    padding: 25px;
    border-radius: 20px;
}
.filters h2 {
    margin: 0 0 22px;
    font: 600 20px var(--display);
}
.field {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
    color: #99a7ad;
    font-size: 9px;
    font-weight: 700;
}
.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 47px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.035);
    padding: 0 13px;
    color: #fff;
}
.field textarea {
    min-height: 100px;
    padding-top: 12px;
    resize: vertical;
}
.check-field {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0 20px;
    color: #a3b0b6;
    font-size: 10px;
}
.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    color: #85939a;
    font-size: 10px;
}
.catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.catalog-grid .product-media {
    height: 275px;
}
.error-state,
.empty-state {
    grid-column: 1/-1;
    padding: 55px;
    border-radius: 20px;
    text-align: center;
}
.error-state p,
.empty-state p {
    color: var(--muted);
}
.product-detail {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 60px;
    align-items: start;
    padding: 70px 0 110px;
}
.product-gallery {
    height: 650px;
    overflow: hidden;
    border-radius: 28px;
}
.product-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-gallery-set{min-width:0;display:grid;gap:14px}
.gallery-frame{position:relative;min-width:0;height:clamp(290px,45vw,650px);touch-action:pan-y;background:radial-gradient(circle at 50% 40%,rgba(53,218,118,.07),transparent 65%),#0d1418}
.gallery-frame>img{object-fit:contain;padding:16px}
.gallery-count{position:absolute;bottom:16px;left:50%;transform:translateX(-50%);padding:7px 13px;border:1px solid var(--line);border-radius:999px;background:rgba(5,12,15,.88);color:#d8e7ed;font-size:13px;pointer-events:none}
.gallery-arrow{position:absolute;top:50%;transform:translateY(-50%);display:grid;place-items:center;width:44px;height:44px;border:1px solid var(--line);border-radius:50%;background:rgba(5,12,15,.88);color:#eaf5ef;font-size:30px;line-height:1}
.gallery-previous{left:12px}.gallery-next{right:12px}
.gallery-arrow:hover{border-color:var(--green);color:var(--green)}
.gallery-thumbnails{position:relative;display:flex;gap:10px;min-width:0;overflow-x:auto;padding:3px 3px 9px;scrollbar-width:thin;scrollbar-color:#225637 transparent}
.gallery-thumbnails button{flex:0 0 80px;width:80px;height:80px;padding:5px;border:1px solid var(--line);border-radius:13px;background:#0d1418}
.gallery-thumbnails button[aria-pressed="true"]{border:2px solid var(--green);background:rgba(53,218,118,.08)}
.gallery-thumbnails img{width:100%;height:100%;object-fit:contain;border-radius:8px}
@media(max-width:720px){.product-gallery-set .gallery-frame{height:auto;aspect-ratio:1/1;border-radius:20px}.gallery-thumbnails button{flex-basis:68px;width:68px;height:68px}}
.product-info {
    padding-top: 30px;
}
.product-info h1 {
    margin: 16px 0;
    font: 600 clamp(44px, 5vw, 70px) / 0.98 var(--display);
    letter-spacing: -0.065em;
}
.product-lead {
    color: #9eadb4;
    line-height: 1.8;
}
.detail-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 28px 0;
}
.detail-price b {
    font: 600 27px var(--display);
}
.detail-price del {
    color: #69777e;
}
.stock-status {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    color: #aab6bb;
    font-size: 10px;
}
.stock-status i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 15px var(--green);
}
.feature-list {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 24px 0 0;
    border-top: 1px solid var(--line);
    list-style: none;
}
.feature-list li {
    display: flex;
    gap: 10px;
    color: #a6b2b7;
    font-size: 11px;
}
.feature-list span {
    color: var(--cyan);
}
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 390px;
    gap: 28px;
    align-items: start;
    padding-bottom: 100px;
}
.cart-lines {
    display: grid;
    gap: 12px;
}
.cart-line {
    position: relative;
    display: grid;
    grid-template-columns: 110px 1fr 80px 110px 36px;
    align-items: center;
    gap: 18px;
    padding: 15px;
    border-radius: 18px;
}
.cart-line img {
    width: 110px;
    height: 120px;
    border-radius: 13px;
    object-fit: cover;
}
.cart-line h2 {
    margin: 5px 0;
    font: 600 15px var(--display);
}
.cart-line small,
.cart-line span {
    color: #85939a;
    font-size: 9px;
}
.cart-line label {
    display: grid;
    gap: 5px;
    color: #7f8d94;
    font-size: 8px;
}
.cart-line input {
    width: 70px;
    min-height: 40px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: #0c1216;
    color: #fff;
    text-align: center;
}
.icon-action {
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    font-size: 20px;
}
.checkout-panel {
    position: sticky;
    top: 105px;
    padding: 27px;
    border-radius: 20px;
}
.checkout-panel h2 {
    margin: 0 0 20px;
    font: 600 24px var(--display);
}
.summary-row {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    padding: 18px 0;
    border-block: 1px solid var(--line);
    font-size: 11px;
}
.toast-region {
    position: fixed;
    z-index: 400;
    right: 20px;
    bottom: 20px;
    display: grid;
    gap: 8px;
}
.toast {
    padding: 14px 18px;
    border: 1px solid rgba(49, 231, 255, 0.35);
    border-radius: 12px;
    background: rgba(9, 18, 23, 0.94);
    box-shadow: var(--shadow);
    font-size: 11px;
}
.toast-error {
    border-color: rgba(255, 122, 61, 0.5);
}
@media (max-width: 1100px) {
    .shell {
        width: min(100% - 40px, 980px);
    }
    .desktop-nav {
        display: none;
    }
    .menu-button {
        display: grid;
    }
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-stage {
        height: 560px;
    }
    .hero-copy {
        padding-bottom: 10px;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .category-list {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    .category-list a {
        border: 0;
    }
    .pickup-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }
    .product-detail {
        grid-template-columns: 1fr;
    }
    .cart-layout {
        grid-template-columns: 1fr;
    }
    .checkout-panel {
        position: static;
    }
}
@media (max-width: 720px) {
    .shell {
        width: min(100% - 24px, 620px);
    }
    .section {
        padding: 75px 0;
    }
    .announcement {
        font-size: 8px;
    }
    .header-inner {
        height: 68px;
    }
    .logo {
        font-size: 18px;
    }
    .header-icon {
        width: 43px;
        height: 43px;
    }
    .hero {
        min-height: auto;
    }
    .hero-grid {
        min-height: auto;
        gap: 10px;
    }
    .hero-copy {
        padding: 55px 0 20px;
    }
    .hero h1 {
        font-size: clamp(46px, 14vw, 66px);
    }
    .hero-copy > p {
        font-size: 12px;
    }
    .hero-stage {
        height: 430px;
    }
    .hero-panel {
        inset: 25px 0;
    }
    .hero-product-info {
        left: 15px;
        right: 15px;
    }
    .floating-chip {
        top: 2px;
    }
    .product-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 15px;
    }
    .product-card {
        flex: 0 0 80vw;
        scroll-snap-align: start;
    }
    .product-media {
        height: 300px;
    }
    .section-head {
        align-items: start;
    }
    .section-head h2 {
        font-size: 40px;
    }
    .section-head .text-link {
        display: none;
    }
    .category-list {
        display: flex;
        overflow-x: auto;
    }
    .category-list a {
        flex: 0 0 180px;
    }
    .campaign-inner {
        grid-template-columns: 1fr;
        padding-top: 65px;
    }
    .campaign-art {
        height: 340px;
    }
    .campaign-art span {
        font-size: 250px;
    }
    .pickup-copy {
        min-height: auto;
        padding: 35px 24px;
    }
    .pickup-copy h2 {
        font-size: 43px;
    }
    .pickup-visual {
        min-height: 360px;
    }
    .advantages-grid {
        grid-template-columns: 1fr 1fr;
    }
    .advantages-grid div {
        border: 0;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand {
        grid-column: 1/-1;
    }
    .delivery-overlay {
        padding: 10px;
    }
    .delivery-dialog {
        max-height: calc(100svh - 20px);
        grid-template-columns: 1fr;
        overflow: auto;
    }
    .delivery-visual {
        min-height: 230px;
    }
    .delivery-copy {
        padding: 30px 22px;
    }
    .delivery-copy h2 {
        font-size: 38px;
    }
    .delivery-stamp {
        width: 78px;
        height: 78px;
        font-size: 22px;
    }
    .whatsapp-float {
        left: 14px;
        bottom: 14px;
        padding: 8px;
    }
    .whatsapp-float > span:last-child {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip-path: inset(50%);
    }
    .catalog-layout {
        grid-template-columns: 1fr;
    }
    .filters {
        position: static;
    }
    .catalog-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .catalog-grid .product-card {
        min-width: 0;
    }
    .catalog-grid .product-media {
        height: 215px;
    }
    .catalog-grid .product-content {
        padding: 14px;
    }
    .catalog-grid .product-content h3 {
        font-size: 13px;
    }
    .product-detail {
        gap: 25px;
        padding-top: 30px;
    }
    .product-gallery {
        height: 430px;
    }
    .product-info {
        padding-top: 0;
    }
    .cart-line {
        grid-template-columns: 80px 1fr 40px;
        gap: 12px;
    }
    .cart-line img {
        width: 80px;
        height: 90px;
    }
    .cart-line label {
        grid-column: 2;
    }
    .cart-line strong {
        grid-column: 2;
    }
    .cart-line .icon-action {
        grid-column: 3;
        grid-row: 1;
    }
    .footer-bottom {
        display: grid;
    }
}

/* Informational pages */
.content-hero { padding: 115px 0 72px; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 78% 28%, rgba(0, 167, 73, .15), transparent 28%); }
.content-hero h1 { max-width: 900px; margin: 18px 0 24px; font: 600 clamp(48px, 7vw, 88px)/.98 var(--display); letter-spacing: -.065em; }
.content-hero p { max-width: 690px; margin: 0; color: #a5b2b8; font-size: 17px; line-height: 1.8; }
.content-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.story-card, .contact-card { min-height: 250px; padding: 34px; border-radius: 22px; }
.story-card-wide { grid-column: 1/-1; min-height: 330px; display: grid; align-content: center; }
.story-card > small, .contact-card > small { color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.story-card h2, .contact-card h2 { margin: 18px 0 14px; font: 600 clamp(25px, 3vw, 40px)/1.08 var(--display); letter-spacing: -.04em; }
.story-card p, .contact-card p { max-width: 680px; margin: 0; color: #98a7ad; font-size: 15px; line-height: 1.75; }
.content-cta { padding: 0 0 110px; }
.content-cta .shell { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 36px; border-radius: 24px; }
.content-cta h2 { margin: 12px 0 0; font: 600 clamp(27px, 4vw, 46px)/1 var(--display); }
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; }
.contact-card-primary { grid-row: span 2; min-height: 520px; display: flex; flex-direction: column; justify-content: center; }
.contact-card .button { align-self: flex-start; margin-top: 30px; }
.footer-inline-nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }
@media (max-width: 720px) {
  .content-hero { padding: 78px 0 54px; }
  .content-hero h1 { font-size: clamp(42px, 13vw, 60px); }
  .content-grid, .contact-grid { grid-template-columns: 1fr; }
  .story-card-wide, .contact-card-primary { grid-column: auto; grid-row: auto; min-height: 300px; }
  .story-card, .contact-card { padding: 26px; }
  .content-cta .shell { align-items: stretch; flex-direction: column; }
  .footer-inline-nav { justify-content: flex-start; }
}
@media (max-width: 430px) {
    .catalog-grid {
        grid-template-columns: 1fr;
    }
    .catalog-grid .product-media {
        height: 300px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-brand {
        grid-column: auto;
    }
    .hero-stage {
        height: 390px;
    }
    .hero-product-info {
        grid-template-columns: 1fr;
    }
    .hero-product-info strong {
        grid-row: auto;
        grid-column: auto;
    }
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}
@media (prefers-reduced-motion: reduce) {
    *,
    *:before,
    *:after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Hero motion is isolated to the artwork; copy keeps normal document flow. */
.hero-copy {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.75s ease,
        transform 0.85s cubic-bezier(0.2, 0.75, 0.2, 1);
}
.hero-stage {
    --hero-pointer-x: 0px;
    --hero-pointer-y: 0px;
    --hero-scroll-y: 0px;
    opacity: 0;
    transform: translate3d(
            var(--hero-pointer-x),
            calc(var(--hero-pointer-y) + var(--hero-scroll-y) + 26px),
            0
        )
        scale(0.985);
    transition:
        opacity 0.9s 0.12s ease,
        transform 0.18s ease-out;
    will-change: transform;
}
.hero-ready .hero-copy {
    opacity: 1;
    transform: none;
}
.hero-ready .hero-stage {
    opacity: 1;
    transform: translate3d(
            var(--hero-pointer-x),
            calc(var(--hero-pointer-y) + var(--hero-scroll-y)),
            0
        )
        scale(1);
}
.hero-ready .floating-chip {
    animation: hero-float 4.6s ease-in-out infinite;
}
@keyframes hero-float {
    0%,
    100% {
        margin-top: 0;
    }
    50% {
        margin-top: -10px;
    }
}
@media (max-width: 720px), (prefers-reduced-motion: reduce) {
    .hero-copy,
    .hero-stage {
        opacity: 1;
        transform: none !important;
        transition: none;
    }
    .hero-ready .floating-chip {
        animation: none;
    }
}

.delivery-visual-line {
    background: #03070a;
}
.delivery-visual-line img {
    object-position: center;
    mix-blend-mode: normal;
    opacity: 1;
    animation: delivery-line-drive 5.5s ease-in-out infinite alternate;
    will-change: transform;
}
@keyframes delivery-line-drive {
    from {
        transform: scale(1.035) translateX(-1.25%);
    }
    to {
        transform: scale(1.075) translateX(1.25%);
    }
}
@media (prefers-reduced-motion: reduce) {
    .delivery-visual-line img {
        animation: none;
    }
}
@supports not (backdrop-filter: blur(1px)) {
    .glass-card,
    .site-header,
    .mobile-drawer {
        background: #10171c;
    }
}
.whatsapp-icon-svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #07913d;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.whatsapp-float {
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow:
        0 22px 62px rgba(0, 0, 0, 0.5),
        0 0 0 7px rgba(37, 211, 102, 0.12);
}
.whatsapp-float:focus-visible {
    outline-color: #fff;
}
.products-menu { position: relative; padding-block: 24px; }
.products-menu-trigger { display: flex; align-items: center; gap: 7px; }
.products-mega { position: absolute; top: calc(100% - 8px); left: 50%; width: min(760px, calc(100vw - 48px)); max-height: min(650px, calc(100dvh - 130px)); overflow-y: auto; display: grid; grid-template-columns: 210px 1fr; gap: 25px; padding: 24px; transform: translateX(-38%); border-radius: 22px; }
.products-mega-intro { display: grid; align-content: start; gap: 14px; padding: 10px; }
.products-mega-intro strong { font: 600 24px/1.05 var(--display); }
.products-mega-intro > a { color: var(--green); font-size: 11px; font-weight: 800; }
.products-mega-map { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.products-mega-map::before { content: ''; position: absolute; inset: 18% 8%; background: linear-gradient(90deg, transparent, rgba(0, 167, 73, .2), transparent); filter: blur(14px); }
.products-mega-map a { position: relative; display: grid; place-items: center; min-height: 70px; padding: 12px; border: 1px solid rgba(0, 167, 73, .25); border-radius: 15px; background: rgba(8, 28, 20, .78); text-align: center; }
.products-mega-map a:hover, .products-mega-map a:focus-visible { border-color: var(--green); background: rgba(0, 167, 73, .16); color: #fff; }
.mobile-category-label { margin-top: 24px; color: var(--green); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.mobile-category-group{min-width:0;padding-block:14px}
.mobile-category-group .mobile-category-label{display:block;margin:0 0 12px;font-size:12px}
.mobile-category-links{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}
.mobile-drawer nav .mobile-category-links a{display:flex;align-items:center;min-height:52px;padding:10px;border:1px solid rgba(53,218,118,.22);border-radius:12px;background:rgba(53,218,118,.05);font-size:14px;line-height:1.4;overflow-wrap:anywhere}
.category-list[data-category-nav] a,.products-mega-map a{overflow-wrap:anywhere;min-width:0}
@media (max-width: 1100px) { .products-menu, .products-mega { display: none; } }
.category-filter { min-width: 0; margin: 0 0 20px; padding: 0; border: 0; }
.category-filter legend { margin-bottom: 10px; color: #99a7ad; font-size: 9px; font-weight: 700; }
.category-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.category-chip { min-height: 38px; padding: 0 13px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, .035); color: #a9b6bc; font-size: 10px; font-weight: 700; }
.category-chip:hover, .category-chip[data-selected] { border-color: rgba(0, 167, 73, .65); background: rgba(0, 167, 73, .16); color: #fff; box-shadow: 0 0 22px rgba(0, 167, 73, .1); }
@media (max-width: 720px) { .filters { padding: 18px; } .category-chips { flex-wrap: nowrap; overflow-x: auto; padding: 2px 2px 10px; scrollbar-width: none; } .category-chip { flex: 0 0 auto; } .category-chips::-webkit-scrollbar { display: none; } }
.delivery-route-board { position: relative; min-height: 500px; padding: 48px; }
.route-origin { position: absolute; left: 8%; top: 10%; display: grid; grid-template-columns: auto 1fr; column-gap: 12px; align-items: center; }
.route-origin .logo-mark { grid-row: 1/3; }
.route-origin small { color: #74838a; font-size: 9px; }
.route-track { position: absolute; inset: 25% 14% 17% 20%; border-left: 1px solid rgba(0, 167, 73, .48); border-bottom: 1px solid rgba(0, 167, 73, .28); transform: skewY(-8deg); }
.route-track i { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 18px rgba(0, 167, 73, .8); }
.route-track i:nth-child(1) { left: -4px; top: 18%; } .route-track i:nth-child(2) { left: 42%; bottom: -4px; } .route-track i:nth-child(3) { right: -4px; bottom: -4px; }
.route-node { position: absolute; width: min(245px, 42%); display: grid; grid-template-columns: 38px 1fr; gap: 12px; padding: 17px; border: 1px solid rgba(0, 167, 73, .24); border-radius: 17px; background: rgba(7, 22, 17, .82); box-shadow: 0 18px 45px rgba(0, 0, 0, .28); backdrop-filter: blur(16px); }
.route-node > span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 11px; background: rgba(0, 167, 73, .14); color: var(--green); font-size: 9px; }
.route-node strong { font-size: 11px; } .route-node small { display: block; margin-top: 5px; color: #7f8e95; font-size: 8px; line-height: 1.5; }
.route-node-city { left: 14%; top: 33%; } .route-node-store { right: 9%; top: 48%; } .route-node-whatsapp { left: 30%; bottom: 8%; }
@media (max-width: 720px) { .delivery-route-board { min-height: 430px; padding: 28px; } .route-node { width: min(250px, 72%); } .route-node-city { left: 7%; top: 30%; } .route-node-store { right: 5%; top: 50%; } .route-node-whatsapp { left: 12%; bottom: 5%; } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .button, .product-card, .product-media img, .hero-panel img, .whatsapp-float { transition: none !important; } }

/* Readability and delivery-card polish */
body { font-size: 16px; }
.announcement { min-height: 42px; font-size: 12px; }
.desktop-nav a { font-size: 14px; }
.hero-kicker, .eyebrow { font-size: 13px; }
.hero-copy > p, .pickup-copy > p { font-size: 17px; }
.hero-trust { font-size: 13px; }
.product-content small, .product-price del { font-size: 11px; }
.product-content h3 { font-size: 18px; }
.product-price b { font-size: 17px; }
.category-ribbon { padding: 34px 0; }
.category-list a { min-height: 74px; justify-content: center; padding: 12px 22px; font: 600 16px/1.25 var(--display); }
.category-list small { font: 800 10px var(--body); }
.steps b { font-size: 14px; }
.steps small { font-size: 12px; line-height: 1.55; }
.advantages-grid { padding: 42px 0; }
.advantages-grid div { gap: 9px; padding: 8px 28px; }
.advantages-grid b { font-size: 14px; }
.advantages-grid small { color: #98a6ac; font-size: 12px; line-height: 1.5; }
.footer-brand p, .footer nav { font-size: 13px; }
.footer-bottom { font-size: 11px; }

.delivery-route-board { min-height: 570px; padding: 42px; background: radial-gradient(circle at 46% 48%, rgba(0,167,73,.13), transparent 42%); }
.route-origin { left: 7%; top: 8%; padding: 14px 16px; border: 1px solid rgba(0,167,73,.22); border-radius: 16px; background: rgba(5,18,13,.82); }
.route-origin strong { font-size: 17px; }
.route-origin small { color: #9aabb1; font-size: 12px; }
.route-track { inset: 24% 12% 15% 18%; border-left-width: 2px; border-bottom-width: 2px; }
.route-node { width: min(290px, 46%); grid-template-columns: 46px 1fr; gap: 14px; padding: 20px; }
.route-node > span { width: 44px; height: 44px; font-size: 11px; }
.route-node strong { font-size: 15px; line-height: 1.25; }
.route-node small { margin-top: 7px; color: #a0afb5; font-size: 12px; line-height: 1.5; }
.route-node-city { left: 9%; top: 31%; }
.route-node-store { right: 6%; top: 49%; }
.route-node-whatsapp { left: 24%; bottom: 6%; }
.whatsapp-icon-svg { width: 24px; height: 24px; stroke: #07913d !important; fill: none !important; }
.whatsapp-float { font-size: 13px; }

@media (max-width: 1100px) {
  .category-list { grid-template-columns: repeat(4, 1fr); }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .advantages-grid div { border: 1px solid var(--line); border-radius: 14px; }
}
@media (max-width: 720px) {
  .category-ribbon { overflow: hidden; padding: 18px 0; }
  .category-list { width: 100%; min-width: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .category-list a { min-width: 0; min-height: 64px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255, 255, 255, .022); }
  .category-list a:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .advantages-grid { grid-template-columns: 1fr; }
  .delivery-route-board { min-height: 540px; padding: 22px; }
  .route-node { width: min(300px, 84%); }
  .route-node-city { left: 5%; top: 27%; }
  .route-node-store { right: 4%; top: 49%; }
  .route-node-whatsapp { left: 8%; bottom: 4%; }
}
