:root {
    --red: #e71921;
    --green: #113f2d;
    --leaf: #31a936;
    --ink: #252928;
    --muted: #67706d;
    --line: #dedede;
    --paper: #ffffff;
    --soft: #f7f7f5;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", "Inter", "Helvetica Neue", Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    font-weight: 400;
}

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

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

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: 150px 1fr auto;
    gap: 22px;
    align-items: center;
    padding: 12px clamp(18px, 4vw, 56px);
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.brand img {
    width: auto;
    height: 42px;
    max-width: 158px;
    object-fit: contain;
}

.nav {
    display: flex;
    justify-content: center;
    gap: clamp(16px, 2.4vw, 36px);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
}

.nav a {
    padding: 10px 0;
}

.nav a:hover,
.section-head a:hover,
.article-card a:hover {
    color: var(--red);
}

.header-phone {
    color: #fff;
    background: var(--green);
    padding: 9px 13px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 4px;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--green);
}

.hero {
    min-height: 640px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    align-items: center;
    background: #111;
    color: #fff;
}

.hero-media {
    height: 100%;
    min-height: 560px;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    padding: clamp(36px, 6vw, 90px);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1 {
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 72px);
    line-height: 1.05;
    letter-spacing: 0;
    font-weight: 700;
}

h2 {
    margin: 0 0 16px;
    font-size: clamp(25px, 3vw, 42px);
    line-height: 1.12;
    letter-spacing: 0;
    font-weight: 650;
}

h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 650;
}

.hero-content p:not(.eyebrow),
.page-hero p,
.lead {
    max-width: 650px;
    font-size: 18px;
    color: rgba(255, 255, 255, .82);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border: 1px solid currentColor;
    border-radius: 4px;
    font-weight: 650;
}

.btn.primary {
    color: #fff;
    background: var(--red);
    border-color: var(--red);
}

.btn.ghost {
    color: #fff;
    background: transparent;
}

.btn.dark-text {
    color: var(--green);
}

.section {
    padding: clamp(44px, 6vw, 82px) clamp(18px, 5vw, 72px);
}

.intro-grid,
.split-band,
.content-columns,
.contact-grid,
.industrial-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(28px, 5vw, 70px);
    align-items: start;
}

.feature-list,
.pill-cloud,
.use-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-list span,
.pill-cloud span,
.use-list span {
    border: 1px solid var(--line);
    background: #fff;
    padding: 10px 12px;
    border-radius: 4px;
    font-weight: 550;
}

.feature-list span:nth-child(odd),
.pill-cloud.green span {
    border-color: rgba(49, 169, 54, .34);
    color: var(--green);
}

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

.section-head h2 {
    margin-bottom: 0;
}

.section-head a,
.article-card a {
    color: var(--green);
    font-weight: 650;
}

.product-strip,
.blog-preview,
.product-filter,
.section.product-grid {
    background:
        linear-gradient(120deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .72)),
        linear-gradient(60deg, transparent 48%, rgba(17, 63, 45, .06) 49%, rgba(17, 63, 45, .06) 51%, transparent 52%),
        linear-gradient(-60deg, transparent 48%, rgba(17, 63, 45, .05) 49%, rgba(17, 63, 45, .05) 51%, transparent 52%),
        var(--soft);
    background-size: auto, 160px 92px, 160px 92px, auto;
}

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

.product-card {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 9px;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .08);
}

.product-card a {
    display: grid;
    grid-template-rows: 295px 1fr;
    min-height: 100%;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 28px;
    background: #fff;
}

.product-card div {
    border-top: 0;
    padding: 18px 22px 24px;
}

.product-card p {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 15px;
}

.product-card span {
    font-weight: 650;
    color: var(--green);
}

.split-band {
    color: #fff;
    background: var(--green);
}

.split-band .eyebrow {
    color: #85d48a;
}

.split-band p {
    color: rgba(255, 255, 255, .78);
}

.split-band span {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .18);
    color: #fff;
}

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

.article-card {
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.article-card h2,
.article-card h3 {
    font-size: 21px;
}

.article-card p {
    color: var(--muted);
}

.page-hero {
    position: relative;
    overflow: hidden;
    min-height: 210px;
    display: grid;
    align-content: center;
    padding: clamp(44px, 6vw, 72px) clamp(18px, 5vw, 72px);
    color: #fff;
    background: var(--green);
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 63, 45, .86), rgba(17, 63, 45, .72)),
        url("../img/freeze-3.jpg") center / cover;
    opacity: .9;
}

.page-hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -16px;
    width: 116px;
    height: 42px;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, .55), transparent 68%),
        linear-gradient(135deg, #6fc65b, #1e7e35);
    border-radius: 100% 0 100% 0;
    transform: translateX(-50%) rotate(-9deg);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .24);
}

.page-hero > * {
    position: relative;
    z-index: 1;
}

.page-hero.compact h1,
.page-hero.product-hero h1 {
    max-width: 980px;
    font-size: clamp(28px, 4vw, 54px);
    line-height: 1.1;
    font-weight: 700;
}

.page-hero.product-hero {
    background: var(--green);
}

.page-hero.dark {
    background: #1f1f1f;
}

.content-columns p,
.blog-detail p {
    max-width: 840px;
    color: #4c5652;
    font-size: 17px;
}

.image-stack {
    display: grid;
    gap: 14px;
}

.image-stack img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 8px;
}

.industrial-grid h2 {
    color: var(--green);
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
    min-height: calc(100vh - 78px);
}

.detail-image {
    display: grid;
    place-items: center;
    padding: clamp(26px, 5vw, 70px);
    background: linear-gradient(180deg, color-mix(in srgb, var(--accent), #fff 82%), #fff);
}

.detail-image img {
    max-height: 760px;
    object-fit: contain;
}

.detail-copy {
    align-self: center;
    padding: clamp(34px, 6vw, 90px);
}

.detail-copy h1 {
    font-size: clamp(34px, 4.5vw, 58px);
}

.detail-copy p {
    font-size: 18px;
    color: var(--muted);
}

dl {
    display: grid;
    gap: 10px;
    margin: 28px 0;
}

dl div {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

dt {
    font-weight: 650;
    color: var(--green);
}

dd {
    margin: 0;
}

.blog-detail {
    max-width: 980px;
    margin: 0 auto;
}

.blog-detail h1 {
    font-size: clamp(30px, 4.5vw, 58px);
    line-height: 1.1;
}

.blog-detail .lead {
    color: var(--green);
}

.contact-grid {
    align-items: stretch;
}

.contact-info,
.contact-form {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.big-link {
    display: block;
    margin: 8px 0;
    color: var(--red);
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 650;
    line-height: 1.1;
}

iframe {
    width: 100%;
    height: 340px;
    margin-top: 18px;
    border: 0;
    border-radius: 8px;
}

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

label {
    display: grid;
    gap: 6px;
    color: var(--green);
    font-weight: 650;
}

.product-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 28px clamp(18px, 5vw, 72px) 8px;
}

.product-filter a {
    min-width: 118px;
    padding: 12px 20px;
    border: 2px solid var(--red);
    border-radius: 7px;
    color: var(--red);
    background: #fff;
    text-align: center;
    font-weight: 650;
}

.product-filter a.active,
.product-filter a:hover {
    color: #fff;
    background: var(--red);
}

input,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 13px 12px;
    font: inherit;
    color: var(--ink);
    background: #fff;
}

input:focus,
textarea:focus {
    outline: 2px solid rgba(231, 25, 33, .22);
    border-color: var(--red);
}

.notice {
    margin: 0;
    padding: 12px;
    border-radius: 4px;
    font-weight: 800;
}

.notice.success {
    color: var(--green);
    background: #e8f6ea;
}

.notice.error {
    color: var(--red);
    background: #fde9ea;
}

.footer {
    display: grid;
    grid-template-columns: 1.1fr .7fr 1fr;
    gap: 28px;
    padding: 42px clamp(18px, 5vw, 72px);
    color: #fff;
    background: #171717;
}

.footer img {
    width: 150px;
}

.footer a,
.footer span {
    display: block;
    margin: 6px 0;
    color: rgba(255, 255, 255, .78);
}

@media (max-width: 980px) {
    .topbar {
        grid-template-columns: 150px 1fr auto;
    }

    .menu-toggle {
        display: block;
        justify-self: end;
    }

    .nav {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 12px 18px;
        background: #fff;
        border-bottom: 1px solid var(--line);
    }

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

    .header-phone {
        display: none;
    }

    .hero,
    .intro-grid,
    .split-band,
    .content-columns,
    .contact-grid,
    .industrial-grid,
    .product-detail {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-media {
        min-height: 360px;
        order: 2;
    }

    .hero-content {
        order: 1;
    }

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

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

@media (max-width: 640px) {
    .topbar {
        padding: 12px 16px;
    }

    .brand img {
        width: 128px;
    }

    h1 {
        font-size: 38px;
    }

    .hero-content p:not(.eyebrow),
    .page-hero p {
        font-size: 17px;
    }

    .section-head {
        display: block;
    }

    .product-grid,
    .article-grid {
        grid-template-columns: 1fr;
    }

    .product-card a {
        grid-template-rows: 290px 1fr;
    }

    dl div {
        grid-template-columns: 1fr;
    }
}

/* Shop-style homepage */
.wordmark {
    display: inline-flex;
    align-items: center;
    font-size: 36px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0;
    color: #0c1b2b;
}

.wordmark span,
.wordmark b {
    color: #ff4b13;
}

.wordmark::before {
    content: "";
    width: 9px;
    height: 9px;
    margin-right: -7px;
    margin-bottom: 25px;
    border-radius: 50%;
    background: #5aa832;
}

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

.header-actions a,
.header-actions button {
    position: relative;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    color: #0c1b2b;
    background: #fff;
    box-shadow: 0 8px 24px rgba(12, 27, 43, .08);
    font-size: 0;
    font-weight: 400;
    cursor: pointer;
}

.ui-icon {
    position: relative;
    display: block;
    width: 22px;
    height: 22px;
    color: #0c1b2b;
}

.search-icon::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 2px;
    width: 12px;
    height: 12px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.search-icon::after {
    content: "";
    position: absolute;
    right: 2px;
    bottom: 3px;
    width: 9px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transform: rotate(45deg);
    transform-origin: center;
}

.user-icon::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 2px;
    width: 8px;
    height: 8px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.user-icon::after {
    content: "";
    position: absolute;
    left: 3px;
    bottom: 2px;
    width: 16px;
    height: 9px;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: 14px 14px 0 0;
}

.cart-icon::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 5px;
    width: 15px;
    height: 10px;
    border: 2px solid currentColor;
    border-top: 0;
    transform: skewX(-8deg);
}

.cart-icon::after {
    content: "";
    position: absolute;
    left: 5px;
    bottom: 1px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 10px 0 0 currentColor;
}

.cart-action > span:not(.ui-icon) {
    position: absolute;
    top: -3px;
    right: -2px;
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: #fff;
    background: #ff4b13;
    font-size: 11px;
    font-weight: 700;
}

.nav a.is-active {
    color: #ff4b13;
    font-weight: 700;
}

.nav a.is-active::after {
    content: "";
    display: block;
    width: 34px;
    height: 3px;
    margin: 7px auto 0;
    border-radius: 99px;
    background: #ff4b13;
}

.shop-hero ~ .hero,
.shop-hero ~ .intro-grid,
.shop-hero ~ .product-strip,
.shop-hero ~ .split-band,
.shop-hero ~ .blog-preview {
    display: none;
}

.shop-hero {
    position: relative;
    isolation: isolate;
    min-height: 565px;
    display: grid;
    grid-template-columns: minmax(0, .98fr) minmax(360px, .82fr);
    align-items: center;
    gap: clamp(18px, 3vw, 48px);
    padding: 54px clamp(28px, 7vw, 120px) 74px;
    overflow: hidden;
    background:
        radial-gradient(circle at 11% 58%, rgba(147, 203, 40, .2), transparent 16%),
        linear-gradient(90deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .77)),
        url("../img/freeze-2.jpg") center / cover;
}

.shop-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 105px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .96));
    z-index: -1;
}

.shop-hero-copy {
    max-width: 650px;
}

.script-line {
    margin: 0 0 8px;
    color: #ff4b13;
    font-family: "Segoe Print", "Comic Sans MS", cursive;
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 700;
}

.shop-hero h1 {
    margin: 0 0 18px;
    color: #102033;
    font-size: clamp(44px, 5.4vw, 70px);
    line-height: 1.05;
    font-weight: 800;
}

.shop-hero h1 span {
    color: #ff4b13;
}

.shop-hero-copy > p:not(.script-line) {
    max-width: 510px;
    margin: 0;
    color: #263344;
    font-size: 20px;
    line-height: 1.35;
}

.hero-icons {
    display: grid;
    grid-template-columns: repeat(4, minmax(92px, 1fr));
    gap: 16px;
    margin: 28px 0;
    max-width: 560px;
}

.hero-icons span {
    display: grid;
    justify-items: center;
    gap: 7px;
    color: #102033;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
}

.hero-icons i {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border: 2px solid #ff4b13;
    border-radius: 50%;
    color: #ff4b13;
    background: rgba(255, 255, 255, .6);
    font-size: 25px;
    font-style: normal;
}

.benefit-icon,
.promise-icon,
.process-icon {
    position: relative;
    display: block;
    color: #ff4b13;
}

.benefit-icon::before,
.benefit-icon::after,
.promise-icon::before,
.promise-icon::after,
.process-icon::before,
.process-icon::after {
    content: "";
    position: absolute;
    box-sizing: border-box;
}

.natural-icon::before {
    width: 19px;
    height: 22px;
    border: 2px solid currentColor;
    border-radius: 48% 52% 50% 50%;
    left: 18px;
    top: 18px;
}

.natural-icon::after {
    width: 13px;
    height: 8px;
    border: 2px solid #55a832;
    border-left: 0;
    border-bottom: 0;
    left: 31px;
    top: 12px;
    border-radius: 100% 0 100% 0;
    transform: rotate(-25deg);
}

.freeze-icon::before,
.freeze-icon::after {
    width: 30px;
    height: 2px;
    left: 14px;
    top: 28px;
    background: currentColor;
}

.freeze-icon::after {
    transform: rotate(60deg);
}

.freeze-icon {
    transform: rotate(30deg);
}

.leaf-icon::before,
.promise-leaf-icon::before {
    width: 28px;
    height: 18px;
    border: 2px solid currentColor;
    border-radius: 100% 0 100% 0;
    left: 14px;
    top: 19px;
    transform: rotate(-18deg);
}

.leaf-icon::after,
.promise-leaf-icon::after {
    width: 25px;
    height: 2px;
    left: 18px;
    top: 28px;
    background: currentColor;
    transform: rotate(-20deg);
}

.clean-icon::before {
    width: 30px;
    height: 30px;
    left: 14px;
    top: 14px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.clean-icon::after {
    width: 34px;
    height: 2px;
    left: 12px;
    top: 28px;
    background: currentColor;
    transform: rotate(-48deg);
}

.shop-cta {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    min-height: 54px;
    padding: 14px 30px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(90deg, #ff3b08, #ff651c);
    box-shadow: 0 16px 28px rgba(255, 75, 19, .26);
    font-weight: 800;
}

.shop-cta b {
    font-size: 22px;
    line-height: 1;
}

.shop-hero-product {
    justify-self: center;
    position: relative;
}

.shop-hero-product::before {
    content: "";
    position: absolute;
    inset: 12% 2% 4%;
    border-radius: 50%;
    background: rgba(255, 113, 22, .16);
    filter: blur(26px);
    z-index: -1;
}

.shop-hero-product > img {
    max-height: 485px;
    object-fit: contain;
    filter: drop-shadow(0 28px 35px rgba(52, 34, 20, .22));
}

.trio-packs {
    width: min(560px, 42vw);
    min-width: 410px;
    height: 500px;
}

.trio-packs .pack {
    position: absolute;
    bottom: 0;
    width: 36%;
    max-height: 470px;
    object-fit: contain;
    transform-origin: bottom center;
}

.trio-packs .pack-front {
    left: 50%;
    z-index: 3;
    width: 44%;
    transform: translateX(-50%);
}

.trio-packs .pack-back-left {
    left: 3%;
    z-index: 2;
    transform: rotate(-7deg) translateY(26px);
    opacity: .95;
}

.trio-packs .pack-back-right {
    right: 3%;
    z-index: 1;
    transform: rotate(7deg) translateY(26px);
    opacity: .95;
}

.floating {
    position: absolute;
    z-index: -1;
    pointer-events: none;
}

.fruit-a,
.fruit-b {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 13px solid rgba(255, 128, 18, .84);
    box-shadow: inset 0 0 0 4px rgba(255, 255, 255, .8);
    opacity: .72;
}

.fruit-a {
    right: 7%;
    top: 16%;
    filter: blur(2px);
}

.fruit-b {
    right: 37%;
    top: 36%;
    width: 74px;
    height: 74px;
    border-width: 9px;
}

.leaf-a {
    left: 52%;
    top: 28px;
    width: 112px;
    height: 46px;
    border-radius: 100% 0 100% 0;
    background: linear-gradient(135deg, #88cf39, #1d7f38);
    transform: rotate(-18deg);
    filter: blur(.4px);
    opacity: .88;
}

.promise-bar {
    position: relative;
    z-index: 2;
    width: min(1060px, calc(100% - 48px));
    margin: -43px auto 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 18px 38px rgba(16, 32, 51, .14);
}

.promise-bar div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 84px;
    padding: 16px;
    border-right: 1px solid #e7e7e7;
}

.promise-bar div:last-child {
    border-right: 0;
}

.promise-bar i {
    color: #ff4b13;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    font-size: 0;
    font-style: normal;
}

.delivery-icon::before {
    left: 2px;
    top: 12px;
    width: 23px;
    height: 15px;
    border: 2px solid currentColor;
}

.delivery-icon::after {
    left: 23px;
    top: 17px;
    width: 12px;
    height: 10px;
    border: 2px solid currentColor;
    border-left: 0;
    box-shadow: -18px 10px 0 -7px currentColor, 5px 10px 0 -7px currentColor;
}

.payment-icon::before {
    left: 8px;
    top: 4px;
    width: 22px;
    height: 28px;
    border: 2px solid currentColor;
    border-radius: 0 0 12px 12px;
    transform: rotate(45deg);
}

.payment-icon::after {
    left: 15px;
    top: 16px;
    width: 12px;
    height: 7px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
}

.package-icon::before {
    left: 7px;
    top: 8px;
    width: 24px;
    height: 24px;
    border: 2px solid currentColor;
    transform: rotate(45deg) skew(-8deg, -8deg);
}

.package-icon::after {
    left: 18px;
    top: 7px;
    width: 2px;
    height: 25px;
    background: currentColor;
}

.support-icon::before {
    left: 8px;
    top: 7px;
    width: 22px;
    height: 24px;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: 18px 18px 0 0;
}

.support-icon::after {
    left: 4px;
    top: 19px;
    width: 7px;
    height: 12px;
    border: 2px solid currentColor;
    border-radius: 5px;
    box-shadow: 23px 0 0 -2px #fff, 23px 0 0 0 currentColor;
}

.promise-bar span {
    color: #102033;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
}

.home-section {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 26px;
    padding: 34px clamp(32px, 5vw, 72px) 0;
    background: #fff;
}

.side-title {
    align-self: center;
}

.side-title h2 {
    display: block;
    width: max-content;
    max-width: 100%;
    margin: 0;
    color: #102033;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 800;
    line-height: 1.1;
    white-space: nowrap;
}

.side-title h2::after {
    content: "";
    display: block;
    width: 92px;
    height: 10px;
    margin-top: 12px;
    background: #ff4b13;
    clip-path: polygon(0 60%, 100% 20%, 100% 44%, 0 84%);
}

.decorated::before {
    content: "";
    display: block;
    width: 76px;
    height: 36px;
    margin: 0 0 12px -10px;
    border-radius: 100% 0 100% 0;
    background: linear-gradient(135deg, #9cd94a, #1a8c3c);
    transform: rotate(-18deg);
}

.category-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(130px, 1fr));
    gap: 16px;
}

.category-tile {
    position: relative;
    min-height: 154px;
    overflow: hidden;
    border-radius: 16px;
    color: #fff;
    box-shadow: 0 12px 26px rgba(16, 32, 51, .12);
}

.category-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, .66));
}

.category-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-tile span,
.category-tile b {
    position: absolute;
    z-index: 1;
}

.category-tile span {
    left: 16px;
    right: 52px;
    bottom: 17px;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}

.category-tile b {
    right: 14px;
    bottom: 13px;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ff4b13;
}

.featured-section {
    padding-top: 32px;
}

.featured-products {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(130px, 1fr));
    gap: 14px;
}

.mini-product {
    position: relative;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(16, 32, 51, .12);
    overflow: hidden;
}

.mini-product a {
    display: grid;
    padding: 12px 14px 14px;
}

.mini-product button {
    position: absolute;
    right: 12px;
    top: 10px;
    z-index: 2;
    width: 26px;
    height: 26px;
    border: 0;
    color: #ff4b13;
    background: #fff;
    font-size: 18px;
}

.mini-product img {
    width: 100%;
    height: 126px;
    object-fit: contain;
    margin-bottom: 7px;
}

.mini-product span,
.mini-product p {
    margin: 0;
    color: #5f6570;
    font-size: 13px;
    line-height: 1.15;
}

.mini-product h3 {
    margin: 1px 0 0;
    color: #102033;
    font-size: 16px;
    font-weight: 800;
}

.mini-product strong {
    margin-top: 8px;
    color: #102033;
    font-size: 18px;
    line-height: 1;
}

.mini-product i {
    position: absolute;
    right: 14px;
    bottom: 13px;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #fff;
    background: #ff4b13;
    font-size: 24px;
    font-style: normal;
    line-height: 1;
}

.freeze-info {
    position: relative;
    width: min(1160px, calc(100% - 64px));
    min-height: 188px;
    display: grid;
    grid-template-columns: minmax(210px, .68fr) minmax(430px, 1.18fr) minmax(170px, .46fr);
    gap: 22px;
    align-items: center;
    margin: 32px auto 26px;
    padding: 24px 30px;
    overflow: hidden;
    border-radius: 24px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .78)),
        url("../img/freeze-3.jpg") center / cover;
    box-shadow: 0 16px 34px rgba(16, 32, 51, .12);
}

.freeze-info h2 {
    margin: 0 0 8px;
    color: #102033;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
}

.freeze-info p {
    max-width: 310px;
    margin: 0 0 14px;
    color: #44505c;
    font-size: 14px;
    line-height: 1.35;
}

.freeze-info a {
    display: inline-flex;
    padding: 8px 18px;
    border: 1px solid #ff4b13;
    border-radius: 999px;
    color: #ff4b13;
    font-size: 13px;
    font-weight: 800;
}

.freeze-info ol {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.freeze-info li {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 9px;
    color: #102033;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    padding: 12px 8px 10px;
    border: 1px solid rgba(255, 75, 19, .11);
    border-radius: 18px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 10px 24px rgba(16, 32, 51, .08);
}

.freeze-info li:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -13px;
    top: 42px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color: #fff;
    background: #ff4b13;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.freeze-info li span {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    border-radius: 22px;
    background: linear-gradient(180deg, #fff, #fff7f1);
    box-shadow: inset 0 0 0 1px rgba(255, 75, 19, .12), 0 10px 20px rgba(255, 75, 19, .1);
    font-size: 27px;
}

.process-icon::before {
    inset: 14px;
    border: 2px solid #ff4b13;
    border-radius: 16px;
}

.process-freeze::after {
    left: 25px;
    top: 18px;
    width: 2px;
    height: 26px;
    background: #ff4b13;
    transform: rotate(60deg);
}

.process-vacuum::after {
    left: 20px;
    top: 20px;
    width: 22px;
    height: 22px;
    border: 2px solid #ff4b13;
    border-radius: 50%;
    box-shadow: inset 0 0 0 5px rgba(255, 75, 19, .12);
}

.process-dry::after {
    left: 19px;
    top: 18px;
    width: 6px;
    height: 24px;
    border-radius: 8px;
    background: #ff4b13;
    box-shadow: 10px 0 0 #ff4b13, 20px 0 0 #ff4b13;
    transform: skewX(-10deg);
}

.process-fruit::after {
    left: 21px;
    top: 21px;
    width: 20px;
    height: 20px;
    border: 2px solid #ff4b13;
    border-radius: 50% 50% 45% 45%;
    background: rgba(255, 75, 19, .12);
}

.search-panel {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: none;
    padding: 90px 18px 18px;
    background: rgba(16, 32, 51, .34);
    backdrop-filter: blur(8px);
}

.search-panel.is-open {
    display: block;
}

.search-box {
    position: relative;
    width: min(720px, 100%);
    margin: 0 auto;
    padding: 24px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(16, 32, 51, .22);
}

.search-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #f4f4f4;
    cursor: pointer;
}

.search-close::before,
.search-close::after {
    content: "";
    position: absolute;
    left: 9px;
    top: 16px;
    width: 16px;
    height: 2px;
    background: #102033;
}

.search-close::before {
    transform: rotate(45deg);
}

.search-close::after {
    transform: rotate(-45deg);
}

.search-box label {
    color: #102033;
    font-size: 18px;
}

.search-box input {
    margin-top: 10px;
    min-height: 52px;
    border-radius: 999px;
    padding: 13px 18px;
}

.live-search-results {
    display: grid;
    gap: 8px;
    margin-top: 16px;
}

.live-search-results p {
    margin: 0;
    color: #66717c;
}

.live-search-results a {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid #ececec;
    border-radius: 12px;
    background: #fff;
}

.live-search-results small {
    color: #ff4b13;
    font-weight: 800;
}

.live-search-results strong {
    color: #102033;
}

.freeze-info > img {
    width: 100%;
    max-height: 190px;
    object-fit: contain;
    align-self: center;
    filter: drop-shadow(0 15px 20px rgba(16, 32, 51, .18));
}

@media (max-width: 1100px) {
    .shop-hero {
        grid-template-columns: 1fr;
        padding-top: 38px;
    }

    .shop-hero-product img {
        max-height: 390px;
    }

    .trio-packs {
        width: min(560px, 88vw);
        min-width: 0;
        height: 430px;
    }

    .promise-bar,
    .home-section,
    .freeze-info {
        width: calc(100% - 32px);
    }

    .home-section,
    .freeze-info {
        grid-template-columns: 1fr;
    }

    .category-row,
    .featured-products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .topbar {
        grid-template-columns: 1fr auto;
    }

    .header-actions {
        display: none;
    }

    .shop-hero {
        padding: 32px 20px 62px;
    }

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

    .hero-icons,
    .promise-bar,
    .freeze-info ol {
        grid-template-columns: repeat(2, 1fr);
    }

    .promise-bar {
        margin-top: -36px;
    }

    .promise-bar div {
        border-bottom: 1px solid #e7e7e7;
    }

    .category-row,
    .featured-products {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 520px) {
    .wordmark {
        font-size: 31px;
    }

    .shop-hero h1 {
        font-size: 34px;
    }

    .trio-packs {
        height: 360px;
    }

    .hero-icons,
    .promise-bar,
    .category-row,
    .featured-products,
    .freeze-info ol {
        grid-template-columns: 1fr;
    }

    .home-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .freeze-info {
        width: calc(100% - 24px);
        padding: 22px;
    }
}

/* Reliable SVG icons */
.svg-icon {
    display: block;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-actions .svg-icon {
    width: 23px;
    height: 23px;
}

.hero-icons i .svg-icon {
    width: 31px;
    height: 31px;
}

.promise-bar i .svg-icon {
    width: 38px;
    height: 38px;
}

.freeze-info li span .svg-icon {
    width: 36px;
    height: 36px;
    color: #ff4b13;
}

.hero-icons i::before,
.hero-icons i::after,
.promise-bar i::before,
.promise-bar i::after,
.freeze-info li span::before,
.freeze-info li span::after {
    display: none;
}

.freeze-info .svg-snow {
    stroke: #17a8e5;
}

.freeze-info .svg-vacuum {
    stroke: #ff4b13;
}

.freeze-info .svg-heat {
    stroke: #f08a00;
}

.freeze-info .svg-fruit {
    stroke: #4aa832;
}

.freeze-info li:nth-child(1) span {
    background: linear-gradient(180deg, #fff, #eef9ff);
}

.freeze-info li:nth-child(2) span {
    background: linear-gradient(180deg, #fff, #fff3ed);
}

.freeze-info li:nth-child(3) span {
    background: linear-gradient(180deg, #fff, #fff7e8);
}

.freeze-info li:nth-child(4) span {
    background: linear-gradient(180deg, #fff, #effaec);
}

@media (max-width: 780px) {
    body {
        padding-bottom: 76px;
        background: #fffaf5;
    }

    .topbar {
        position: sticky;
        top: 0;
        grid-template-columns: auto 1fr auto;
        min-height: 64px;
        padding: 10px 14px;
        border-bottom: 0;
        box-shadow: 0 10px 28px rgba(16, 32, 51, .08);
    }

    .brand img {
        height: 34px;
        max-width: 128px;
    }

    .menu-toggle {
        display: none;
    }

    .header-actions {
        display: flex;
        justify-self: end;
        gap: 8px;
    }

    .header-actions a,
    .header-actions button {
        width: 40px;
        height: 40px;
        box-shadow: none;
        background: #fff4ee;
        color: #ff4b13;
    }

    .header-actions a[href*="iletisim"] {
        display: none;
    }

    .nav {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: 10px;
        top: auto;
        z-index: 70;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 0;
        padding: 8px;
        border: 1px solid rgba(255, 75, 19, .12);
        border-radius: 22px;
        background: rgba(255, 255, 255, .94);
        box-shadow: 0 18px 40px rgba(16, 32, 51, .2);
        backdrop-filter: blur(16px);
    }

    .nav a {
        display: grid;
        place-items: center;
        min-height: 46px;
        padding: 6px 3px;
        color: #102033;
        font-size: 10px;
        font-weight: 800;
        line-height: 1.1;
        text-align: center;
        text-transform: none;
    }

    .nav a.hide-on-mobile {
        display: none;
    }

    .nav a.is-active {
        color: #fff;
        border-radius: 16px;
        background: #ff4b13;
    }

    .nav a.is-active::after {
        display: none;
    }

    .shop-hero {
        min-height: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 18px 16px 56px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, .84), rgba(255, 247, 240, .96)),
            url("../img/freeze-2.jpg") center / cover;
    }

    .shop-hero-copy {
        max-width: none;
        text-align: center;
    }

    .script-line {
        margin-top: 4px;
        font-size: 18px;
    }

    .shop-hero h1 {
        max-width: 360px;
        margin: 0 auto 12px;
        font-size: 34px;
        line-height: 1.05;
    }

    .shop-hero-copy > p:not(.script-line) {
        max-width: 330px;
        margin: 0 auto;
        font-size: 15px;
        line-height: 1.4;
    }

    .trio-packs {
        order: -1;
        width: min(360px, 96vw);
        height: 270px;
        min-width: 0;
        margin: 0 auto;
    }

    .trio-packs .pack {
        max-height: 255px;
    }

    .trio-packs .pack-front {
        width: 42%;
    }

    .trio-packs .pack-back-left,
    .trio-packs .pack-back-right {
        width: 34%;
        transform: translateY(18px);
    }

    .trio-packs .pack-back-left {
        left: 8%;
        transform: rotate(-7deg) translateY(18px);
    }

    .trio-packs .pack-back-right {
        right: 8%;
        transform: rotate(7deg) translateY(18px);
    }

    .hero-icons {
        grid-template-columns: repeat(4, 98px);
        gap: 10px;
        max-width: none;
        margin: 20px -16px 18px;
        padding: 0 16px 4px;
        overflow-x: auto;
        scroll-snap-type: x proximity;
    }

    .hero-icons span {
        scroll-snap-align: start;
        padding: 10px 8px;
        border-radius: 18px;
        background: rgba(255, 255, 255, .82);
        box-shadow: 0 8px 20px rgba(16, 32, 51, .08);
        font-size: 11px;
    }

    .hero-icons i {
        width: 50px;
        height: 50px;
        background: #fff;
    }

    .shop-cta {
        min-height: 50px;
        padding: 13px 24px;
    }

    .promise-bar {
        width: auto;
        display: flex;
        gap: 10px;
        margin: -30px 0 0;
        padding: 0 16px 6px;
        overflow-x: auto;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        scroll-snap-type: x proximity;
    }

    .promise-bar div {
        min-width: 178px;
        min-height: 76px;
        justify-content: flex-start;
        border: 0;
        border-radius: 18px;
        background: #fff;
        box-shadow: 0 12px 24px rgba(16, 32, 51, .1);
        scroll-snap-align: start;
    }

    .home-section {
        display: block;
        width: auto;
        padding: 28px 16px 0;
        background: #fffaf5;
    }

    .side-title {
        margin-bottom: 14px;
    }

    .side-title h2 {
        font-size: 27px;
    }

    .category-row,
    .featured-products {
        display: flex;
        gap: 12px;
        margin: 0 -16px;
        padding: 0 16px 6px;
        overflow-x: auto;
        scroll-snap-type: x proximity;
    }

    .category-tile {
        flex: 0 0 152px;
        min-height: 132px;
        border-radius: 18px;
        scroll-snap-align: start;
    }

    .category-tile span {
        font-size: 18px;
        right: 42px;
    }

    .mini-product {
        flex: 0 0 166px;
        border-radius: 18px;
        scroll-snap-align: start;
    }

    .mini-product img {
        height: 116px;
    }

    .freeze-info {
        width: calc(100% - 32px);
        display: block;
        margin: 28px auto 18px;
        padding: 22px;
        border-radius: 24px;
    }

    .freeze-info h2 {
        font-size: 28px;
    }

    .freeze-info p {
        max-width: none;
    }

    .freeze-info ol {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 18px;
    }

    .freeze-info li:not(:last-child)::after {
        display: none;
    }

    .freeze-info > img {
        max-height: 205px;
        margin: 12px auto 0;
    }

    .search-panel {
        padding: 76px 12px 90px;
    }

    .search-box {
        padding: 18px;
        border-radius: 24px;
    }

    .live-search-results a {
        grid-template-columns: 54px 1fr;
    }
}

@media (max-width: 420px) {
    .shop-hero h1 {
        font-size: 31px;
    }

    .trio-packs {
        height: 240px;
    }

    .trio-packs .pack {
        max-height: 230px;
    }

    .promise-bar div {
        min-width: 164px;
    }
}

/* Final mobile polish */
@media (max-width: 980px) {
    body {
        padding-top: 66px;
    }

    .topbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 90;
        display: grid;
        grid-template-columns: minmax(112px, 1fr) auto;
        gap: 10px;
        min-height: 66px;
        padding: 10px 14px;
        background: rgba(255, 255, 255, .96);
        border-bottom: 1px solid rgba(16, 32, 51, .06);
        box-shadow: 0 10px 28px rgba(16, 32, 51, .08);
        backdrop-filter: blur(14px);
    }

    .brand {
        display: flex;
        align-items: center;
        min-width: 0;
    }

    .brand img {
        display: block;
        width: auto;
        height: 38px;
        max-width: 148px;
        object-fit: contain;
    }

    .menu-toggle {
        display: none;
    }

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

    .header-actions a,
    .header-actions button {
        width: 40px;
        height: 40px;
        background: #fff4ee;
        box-shadow: none;
    }

    .header-actions a[href*="iletisim"] {
        display: none;
    }

    .nav {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        top: auto;
        z-index: 95;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 4px;
        padding: 6px;
        border: 1px solid rgba(255, 75, 19, .1);
        border-radius: 20px;
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 16px 38px rgba(16, 32, 51, .18);
        backdrop-filter: blur(16px);
    }

    .nav a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 6px 4px;
        border-radius: 15px;
        color: #142235;
        font-size: 10.5px;
        font-weight: 800;
        line-height: 1;
        text-align: center;
        text-transform: none;
        white-space: nowrap;
    }

    .nav a.hide-on-mobile {
        display: none;
    }

    .nav a.is-active {
        color: #fff;
        background: #ff4b13;
        box-shadow: 0 8px 18px rgba(255, 75, 19, .22);
    }

    .nav a.is-active::after {
        display: none;
    }

    .shop-hero {
        margin-top: 0;
        padding-top: 14px;
    }
}

@media (max-width: 390px) {
    .brand img {
        height: 34px;
        max-width: 132px;
    }

    .header-actions a,
    .header-actions button {
        width: 36px;
        height: 36px;
    }

    .nav {
        left: 8px;
        right: 8px;
        bottom: 8px;
    }

    .nav a {
        font-size: 9.5px;
        min-height: 42px;
    }
}

/* Mobile hard fix: logo, active tab and hero overflow */
@media (max-width: 980px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    body {
        padding-top: 68px;
    }

    .topbar {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        z-index: 120;
        display: grid !important;
        grid-template-columns: minmax(142px, 1fr) auto !important;
        align-items: center;
        min-height: 68px;
        padding: 10px 14px !important;
        background: rgba(255, 255, 255, .97);
        box-shadow: 0 10px 28px rgba(16, 32, 51, .08);
    }

    .brand {
        display: flex !important;
        align-items: center;
        width: 160px;
        min-width: 140px;
        overflow: visible;
    }

    .brand img {
        display: block !important;
        width: 150px !important;
        height: auto !important;
        max-width: 150px !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .menu-toggle {
        display: none !important;
    }

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

    .header-actions a[href*="iletisim"] {
        display: none !important;
    }

    .nav {
        position: fixed !important;
        left: 12px !important;
        right: 12px !important;
        top: auto !important;
        bottom: 12px !important;
        z-index: 125;
        display: grid !important;
        grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
        gap: 4px;
        padding: 6px !important;
        border-radius: 20px;
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 16px 38px rgba(16, 32, 51, .18);
        backdrop-filter: blur(16px);
    }

    .nav a {
        min-height: 44px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 6px 4px !important;
        border-radius: 15px;
        color: #142235 !important;
        background: transparent !important;
        box-shadow: none !important;
        font-size: 10.5px;
        font-weight: 800;
        line-height: 1;
        text-align: center;
        text-transform: none;
        white-space: nowrap;
    }

    .nav a.hide-on-mobile {
        display: none !important;
    }

    .nav a.is-active {
        color: #fff !important;
        background: #ff4b13 !important;
        box-shadow: 0 8px 18px rgba(255, 75, 19, .22) !important;
    }

    .nav a::after {
        display: none !important;
    }

    .shop-hero {
        width: 100%;
        max-width: 100vw;
        overflow: hidden !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .shop-hero-copy {
        width: 100%;
        max-width: calc(100vw - 32px);
        margin: 0 auto;
    }

    .shop-hero h1 {
        width: 100%;
        max-width: calc(100vw - 32px);
        margin-left: auto;
        margin-right: auto;
        font-size: clamp(30px, 8vw, 40px) !important;
        line-height: 1.05;
        overflow-wrap: normal;
        word-break: normal;
    }

    .shop-hero-copy > p:not(.script-line) {
        max-width: calc(100vw - 42px);
        font-size: clamp(15px, 4vw, 18px);
    }

    .hero-icons {
        width: calc(100vw - 32px);
        margin-left: auto !important;
        margin-right: auto !important;
        grid-template-columns: repeat(4, minmax(110px, 1fr));
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .trio-packs {
        width: min(360px, calc(100vw - 28px)) !important;
        max-width: calc(100vw - 28px);
        overflow: visible;
    }
}

@media (max-width: 390px) {
    .brand {
        width: 134px;
        min-width: 124px;
    }

    .brand img {
        width: 128px !important;
        max-width: 128px !important;
    }

    .nav {
        left: 8px !important;
        right: 8px !important;
    }

    .nav a {
        font-size: 9.5px;
    }
}
