/* =========================================================
   PEDIJA - STYLE.CSS
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --red: #e30613;
    --red-dark: #bd0010;
    --red-light: #fff1f2;
    --yellow: #ffd500;
    --black: #171717;
    --text: #292929;
    --gray: #6f6f6f;
    --gray-light: #f5f5f5;
    --border: #e7e7e7;
    --white: #ffffff;
    --green: #18864b;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, sans-serif;
    background: #fff;
    color: var(--text);
}

button,
input {
    font-family: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(1380px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   BARRA SUPERIOR
========================================================= */

.topbar {
    background: var(--red);
    color: white;
    font-size: 13px;
}

.topbar-content {
    min-height: 39px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.delivery-location {
    display: flex;
    gap: 5px;
    align-items: center;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 28px;
}


/* =========================================================
   CABEÇALHO
========================================================= */

.header {
    background: white;
    border-bottom: 1px solid var(--border);
}

.header-content {
    min-height: 91px;
    display: flex;
    align-items: center;
    gap: 32px;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--black);
    text-decoration: none;
    flex-shrink: 0;
}

.logo-cart {
    font-size: 40px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text strong {
    font-size: 29px;
    font-weight: 900;
    line-height: 28px;
    letter-spacing: -1.5px;
}

.logo-text strong span {
    color: var(--red);
}

.logo-text small {
    color: #6b6b6b;
    font-size: 11px;
}


/* =========================================================
   BUSCA
========================================================= */

.search-box {
    flex: 1;
    height: 48px;
    display: flex;
}

.search-box input {
    width: 100%;
    border: 1px solid #dedede;
    border-right: 0;
    border-radius: 8px 0 0 8px;
    background: #f6f6f6;
    padding: 0 18px;
    font-size: 14px;
    outline: none;
}

.search-box input:focus {
    background: white;
    border-color: var(--red);
}

.search-box button {
    width: 58px;
    border: 0;
    border-radius: 0 8px 8px 0;
    background: var(--red);
    color: white;
    font-size: 18px;
}

.search-box button:hover {
    background: var(--red-dark);
}


/* =========================================================
   AÇÕES DO CABEÇALHO
========================================================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.header-action {
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--text);
}

.header-icon {
    font-size: 21px;
}

.header-action div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.header-action strong {
    font-size: 13px;
}

.header-action small {
    color: #777;
    font-size: 11px;
}


/* =========================================================
   CARRINHO NO CABEÇALHO
========================================================= */

.cart-button {
    border: 0;
    background: transparent;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-icon {
    font-size: 25px;
}

.cart-button > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cart-button small {
    color: #666;
    font-size: 11px;
}

.cart-button strong {
    color: var(--red);
    font-size: 14px;
}

.cart-count {
    position: absolute;
    top: -10px;
    left: 16px;
    background: var(--red);
    color: white;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
}


/* =========================================================
   MENU DE CATEGORIAS
========================================================= */

.category-menu {
    background: white;
    border-bottom: 1px solid #eee;
    box-shadow: 0 3px 7px rgba(0, 0, 0, .035);
}

.category-menu-content {
    min-height: 51px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none;
}

.category-menu-content::-webkit-scrollbar {
    display: none;
}

.category-menu button {
    background: transparent;
    border: 0;
    white-space: nowrap;
    padding: 10px 11px;
    color: #333;
    font-size: 13px;
    font-weight: 600;
}

.category-menu button:first-child {
    color: var(--red);
}

.category-menu button:hover {
    color: var(--red);
}


/* =========================================================
   BANNER PRINCIPAL
========================================================= */

.hero {
    padding: 20px 0 5px;
}

.hero-banner {
    min-height: 325px;
    position: relative;
    overflow: hidden;
    display: flex;
    border-radius: 16px;

    background:
        radial-gradient(
            circle at 75% 50%,
            #ffd500 0,
            #ffd500 16%,
            transparent 16.5%
        ),
        linear-gradient(
            115deg,
            #c9000e,
            #ec0c1b 55%,
            #b9000c
        );

    box-shadow: 0 7px 24px rgba(0, 0, 0, .12);
}

.hero-content {
    width: 52%;
    padding: 42px 0 40px 70px;
    position: relative;
    z-index: 4;
    color: white;
}

.hero-small {
    font-size: 21px;
    font-weight: 800;
}

.hero-content h1 {
    margin: 7px 0 18px;
    color: var(--yellow);
    font-size: clamp(47px, 5vw, 72px);
    line-height: .92;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -3px;
}

.hero-content h1 strong {
    display: block;
    color: white;
    font-size: .62em;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 22px;
}

.hero-content button {
    border: 0;
    border-radius: 30px;
    padding: 14px 24px;
    background: var(--yellow);
    color: #222;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .12);
    transition: .2s;
}

.hero-content button:hover {
    transform: translateY(-2px);
}

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-cart {
    position: absolute;
    bottom: 13px;
    font-size: 145px;
    filter: drop-shadow(0 5px 6px rgba(0, 0, 0, .15));
}

.hero-products {
    position: absolute;
    top: 62px;
    font-size: 48px;
    letter-spacing: -12px;
    z-index: 3;
}

.hero-discount {
    position: absolute;
    right: 28px;
    top: 25px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--red);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotate(7deg);
    z-index: 5;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
}

.hero-discount small {
    font-size: 10px;
    font-weight: 800;
}

.hero-discount strong {
    font-size: 28px;
    line-height: 27px;
    font-weight: 900;
}

.hero-discount span {
    font-size: 12px;
    font-weight: 900;
}


/* =========================================================
   SEÇÕES
========================================================= */

.section {
    padding: 31px 0 5px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 18px;
}

.section-header h2 {
    font-size: 23px;
    font-weight: 800;
}

.section-description {
    margin-top: 5px;
    color: #777;
    font-size: 12px;
}

.see-all {
    border: 0;
    background: transparent;
    color: #555;
    font-weight: 600;
    font-size: 13px;
}

.see-all:hover {
    color: var(--red);
}


/* =========================================================
   CATEGORIAS
========================================================= */

.category-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 11px;
}

.category-card {
    min-height: 124px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fafafa;
    padding: 10px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: .2s;
}

.category-card:hover {
    border-color: var(--red);
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, .08);
}

.category-image {
    font-size: 43px;
    line-height: 50px;
}

.category-card span {
    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   PRODUTOS
========================================================= */

.product-section {
    margin-top: 5px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}


/* =========================================================
   CARD DO PRODUTO
========================================================= */

.product-card {
    position: relative;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    min-width: 0;
    transition: .2s;
}

.product-card:hover {
    border-color: #ddd;
    transform: translateY(-3px);
    box-shadow: 0 9px 26px rgba(0, 0, 0, .09);
}

.product-image-container {
    width: 100%;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 5px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: .25s;
}

.product-card:hover .product-image {
    transform: scale(1.035);
}

.discount-badge {
    position: absolute;
    top: 11px;
    left: 11px;
    z-index: 4;
    padding: 6px 8px;
    border-radius: 5px;
    background: var(--red);
    color: white;
    font-size: 10px;
    font-weight: 900;
}

.favorite-button {
    position: absolute;
    top: 9px;
    right: 9px;
    z-index: 5;
    width: 32px;
    height: 32px;
    border: 1px solid #eee;
    border-radius: 50%;
    background: white;
    color: #777;
    font-size: 19px;
    transition: .2s;
}

.favorite-button:hover {
    color: var(--red);
    border-color: var(--red);
}

.product-name {
    min-height: 37px;
    margin-top: 11px;
    font-size: 12px;
    line-height: 17px;
    font-weight: 500;
}

.old-price {
    height: 17px;
    color: #999;
    text-decoration: line-through;
    font-size: 11px;
    margin-top: 6px;
}

.product-price {
    color: var(--red);
    font-size: 20px;
    line-height: 25px;
    font-weight: 900;
}

.product-price small {
    color: #777;
    font-size: 10px;
    font-weight: 500;
}

.payment-info {
    display: block;
    min-height: 20px;
    color: #888;
    font-size: 10px;
    margin-bottom: 8px;
}


/* =========================================================
   NOVO - ESCOLHA DA QUANTIDADE ANTES DE ADICIONAR
========================================================= */

.product-buy-area {
    margin-top: 8px;
}

.product-quantity {
    width: 100%;
    height: 39px;
    margin-bottom: 8px;

    display: grid;
    grid-template-columns: 42px 1fr 42px;

    align-items: center;

    border: 1px solid #dedede;
    border-radius: 7px;

    overflow: hidden;
    background: white;
}

.product-quantity button {
    height: 100%;
    border: 0;
    background: #f5f5f5;

    color: #333;

    font-size: 20px;
    line-height: 20px;
    font-weight: 800;

    transition: .15s;
}

.product-quantity button:first-child {
    border-right: 1px solid #e2e2e2;
}

.product-quantity button:last-child {
    border-left: 1px solid #e2e2e2;
}

.product-quantity button:hover {
    background: #eeeeee;
    color: var(--red);
}

.product-quantity button:active {
    background: #ddd;
}

.product-quantity span {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 100%;

    color: #222;

    font-size: 14px;
    font-weight: 900;

    background: white;
}


/* =========================================================
   BOTÃO ADICIONAR
========================================================= */

.add-cart {
    width: 100%;
    height: 40px;
    border: 0;
    border-radius: 7px;
    background: var(--red);
    color: white;
    font-size: 12px;
    font-weight: 900;
    transition: .2s;
}

.add-cart:hover {
    background: var(--red-dark);
}

.add-cart:active {
    transform: scale(.98);
}


/* =========================================================
   BARRA FIXA DO CARRINHO
========================================================= */

.floating-cartbar {
    position: fixed;
    left: 50%;
    bottom: 22px;
    z-index: 900;
    transform: translateX(-50%);
    width: min(540px, calc(100% - 32px));
    min-height: 58px;
    padding: 10px 16px;
    border: 0;
    border-radius: 14px;
    background: #202124;
    color: white;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.floating-cartbar-icon {
    font-size: 23px;
}

.floating-cartbar-summary {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 2px;
}

.floating-cartbar-summary strong {
    font-size: 13px;
}

.floating-cartbar-summary span {
    color: #f1f1f1;
    font-size: 12px;
    font-weight: 700;
}

.floating-cartbar-action {
    color: #ffcf00;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}


/* =========================================================
   BANNER SECUNDÁRIO
========================================================= */

.mini-banner-section {
    padding: 35px 0 2px;
}

.mini-banner {
    min-height: 140px;
    padding: 25px 45px;
    border-radius: 13px;
    background: linear-gradient(110deg, #ffd500, #ffe665);
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.mini-banner span {
    color: var(--red);
    font-size: 12px;
    font-weight: 900;
}

.mini-banner h2 {
    margin: 4px 0;
    font-size: 27px;
}

.mini-banner p {
    color: #555;
    font-size: 13px;
}

.mini-banner > strong {
    font-size: 78px;
    transform: rotate(-10deg);
}


/* =========================================================
   BENEFÍCIOS
========================================================= */

.benefits {
    padding: 48px 0 15px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #f6f6f6;
    border-radius: 12px;
    overflow: hidden;
}

.benefit {
    min-height: 90px;
    padding: 19px 21px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-right: 1px solid #e7e7e7;
}

.benefit:last-child {
    border-right: 0;
}

.benefit-icon {
    font-size: 30px;
}

.benefit > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.benefit strong {
    font-size: 13px;
}

.benefit span {
    color: #777;
    font-size: 11px;
}


/* =========================================================
   RODAPÉ
========================================================= */

.footer {
    margin-top: 35px;
    padding: 44px 0 20px;
    background: #17191b;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(4, 1fr);
    gap: 40px;
}

.footer h3 {
    margin-bottom: 14px;
    font-size: 13px;
}

.footer a,
.footer p {
    display: block;
    margin: 8px 0;
    color: #b9b9b9;
    text-decoration: none;
    font-size: 12px;
}

.footer a:hover {
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 35px;
}

.footer-logo div {
    display: flex;
    flex-direction: column;
}

.footer-logo strong {
    font-size: 27px;
    line-height: 27px;
}

.footer-logo strong span {
    color: var(--red);
}

.footer-logo small {
    color: #bbb;
    font-size: 10px;
}

.footer-description {
    max-width: 230px;
    line-height: 18px;
    margin-top: 14px !important;
}

.payments {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.payments span {
    background: white;
    color: #333;
    border-radius: 4px;
    padding: 7px 8px;
    font-size: 9px;
    font-weight: 800;
}

.copyright {
    border-top: 1px solid #2d2f31;
    margin-top: 35px;
    padding-top: 18px;
    color: #777;
    font-size: 10px;
}


/* =========================================================
   FUNDO ESCURO DO CARRINHO
========================================================= */

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .48);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: .25s;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   CARRINHO LATERAL
========================================================= */

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -470px;
    width: min(440px, 100%);
    height: 100vh;
    z-index: 999;
    background: white;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 35px rgba(0, 0, 0, .2);
    transition: right .3s ease;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    min-height: 80px;
    padding: 15px 21px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.cart-header h2 {
    font-size: 19px;
}

.cart-header small {
    color: #888;
    font-size: 10px;
}

.cart-header button {
    width: 35px;
    height: 35px;
    border: 0;
    border-radius: 50%;
    background: #f4f4f4;
    font-size: 18px;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 5px 20px 20px;
}

.empty-cart {
    height: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #777;
}

.empty-cart > div {
    margin-bottom: 14px;
    font-size: 64px;
}

.empty-cart strong {
    color: #444;
    margin-bottom: 6px;
}

.empty-cart p {
    font-size: 12px;
}


/* =========================================================
   PRODUTO DENTRO DO CARRINHO
========================================================= */

.cart-product {
    display: grid;
    grid-template-columns: 72px 1fr 30px;
    gap: 11px;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

.cart-product img {
    width: 72px;
    height: 72px;
    border: 1px solid #eee;
    border-radius: 7px;
    object-fit: contain;
}

.cart-product-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cart-product-info > strong {
    padding-right: 5px;
    font-size: 11px;
    line-height: 15px;
}

.cart-product-info > span {
    color: var(--red);
    font-size: 14px;
    font-weight: 900;
}


/* =========================================================
   QUANTIDADE DENTRO DO CARRINHO
========================================================= */

.quantity {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 4px;
}

.quantity button {
    width: 27px;
    height: 27px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
    font-size: 16px;
}

.quantity button:hover {
    border-color: var(--red);
    color: var(--red);
}

.quantity strong {
    min-width: 17px;
    text-align: center;
    font-size: 12px;
}

.remove-product {
    width: 28px;
    height: 28px;
    border: 0;
    background: transparent;
    opacity: .6;
}

.remove-product:hover {
    opacity: 1;
}


/* =========================================================
   RODAPÉ DO CARRINHO
========================================================= */

.cart-footer {
    padding: 17px 20px 20px;
    border-top: 1px solid var(--border);
    background: white;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: #555;
    font-size: 12px;
}

.cart-summary-row.delivery strong {
    color: var(--green);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 13px 0 15px;
    padding-top: 13px;
    border-top: 1px solid #eee;
    font-size: 17px;
}

.cart-total strong {
    color: var(--red);
    font-size: 22px;
}

.checkout-button {
    width: 100%;
    height: 49px;
    border: 0;
    border-radius: 7px;
    background: var(--red);
    color: white;
    font-size: 13px;
    font-weight: 900;
}

.checkout-button:hover {
    background: var(--red-dark);
}

.continue-shopping {
    width: 100%;
    height: 39px;
    margin-top: 7px;
    border: 0;
    background: transparent;
    color: #555;
    font-size: 11px;
}


/* =========================================================
   MENSAGEM FLUTUANTE
========================================================= */

.toast {
    position: fixed;
    right: 24px;
    bottom: -100px;
    z-index: 1500;
    max-width: 350px;
    padding: 14px 19px;
    border-radius: 7px;
    background: #202020;
    color: white;
    font-size: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .25);
    transition: .3s;
}

.toast.active {
    bottom: 24px;
}


/* =========================================================
   SEM RESULTADOS
========================================================= */

.no-results {
    grid-column: 1 / -1;
    padding: 55px 20px;
    text-align: center;
    color: #777;
    border: 1px dashed #ddd;
    border-radius: 10px;
}


/* =========================================================
   TABLET / NOTEBOOK
========================================================= */

@media (max-width: 1150px) {

    .favorite-header {
        display: none;
    }

    .category-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1.5fr repeat(2, 1fr);
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {

    .container {
        width: calc(100% - 24px);
    }

    .topbar-content {
        min-height: 34px;
    }

    .topbar-right {
        display: none;
    }

    .header-content {
        min-height: auto;
        flex-wrap: wrap;
        padding: 13px 0;
        gap: 13px;
    }

    .logo {
        margin-right: auto;
    }

    .logo-cart {
        font-size: 32px;
    }

    .logo-text strong {
        font-size: 24px;
    }

    .header-action {
        display: none;
    }

    .cart-button > div {
        display: none;
    }

    .search-box {
        order: 5;
        flex-basis: 100%;
    }

    .category-menu-content {
        justify-content: flex-start;
        gap: 10px;
    }

    .hero-banner {
        min-height: 280px;
    }

    .hero-content {
        width: 75%;
        padding: 35px 0 35px 30px;
    }

    .hero-content h1 {
        font-size: 45px;
    }

    .hero-visual {
        opacity: .7;
    }

    .hero-cart {
        font-size: 100px;
    }

    .hero-products {
        font-size: 33px;
    }

    .hero-discount {
        width: 70px;
        height: 70px;
        right: 14px;
        top: 14px;
    }

    .hero-discount strong {
        font-size: 21px;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .benefit:nth-child(2) {
        border-right: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 500px) {

    .delivery-location span {
        display: none;
    }

    .logo-cart {
        font-size: 29px;
    }

    .logo-text strong {
        font-size: 22px;
    }

    .hero-banner {
        min-height: 250px;
    }

    .hero-content {
        width: 100%;
        padding: 30px 23px;
    }

    .hero-content h1 {
        font-size: 41px;
    }

    .hero-content p {
        max-width: 220px;
        font-size: 14px;
    }

    .hero-visual {
        display: none;
    }

    .hero-discount {
        width: 62px;
        height: 62px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-card {
        min-height: 105px;
    }

    .category-image {
        font-size: 35px;
    }

    .products-grid {
        gap: 8px;
    }

    .product-card {
        padding: 9px;
    }

    .product-image-container {
        height: 125px;
    }

    .product-name {
        min-height: 50px;
        font-size: 11px;
    }

    .product-price {
        font-size: 17px;
    }

    .product-quantity {
        grid-template-columns: 37px 1fr 37px;
        height: 37px;
    }

    .product-quantity button {
        font-size: 18px;
    }

    .add-cart {
        height: 38px;
        font-size: 10px;
    }

    .mini-banner {
        padding: 22px;
    }

    .mini-banner h2 {
        font-size: 20px;
    }

    .mini-banner > strong {
        display: none;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit {
        border-right: 0;
        border-bottom: 1px solid #e5e5e5;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .toast {
        right: 12px;
        left: 12px;
        max-width: none;
        text-align: center;
    }
}
