/* ==========================================================
   THEME HEADER
   ========================================================== */

.theme-header {
    position: relative;
    z-index: 1000;
    width: 100%;

    background: var(--header-background, #0f172a);
    color: var(--header-text, #ffffff);

    border-bottom: 1px solid color-mix(
        in srgb,
        var(--header-text, #ffffff) 9%,
        transparent
    );
}


/* ==========================================================
   CONTAINER
   ========================================================== */

.theme-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* ==========================================================
   HEADER INNER
   ========================================================== */

.theme-header-inner {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}


/* ==========================================================
   BRAND
   ========================================================== */

.theme-brand {
    display: inline-flex;
    align-items: center;

    gap: 13px;

    min-width: 0;

    color: var(--header-text, #ffffff);

    text-decoration: none;
}

.theme-brand-logo {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 12px;

    background: color-mix(
        in srgb,
        var(--header-accent, #f59e0b) 12%,
        var(--header-background, #0f172a)
    );
}

.theme-brand-logo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 4px;
}

.theme-brand-fallback {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    color: var(--header-accent, #f59e0b);

    font-size: 21px;
    line-height: 1;
}


/* ==========================================================
   BRAND INFO
   ========================================================== */

.theme-brand-info {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 3px;
}

.theme-brand-info strong {
    display: block;

    overflow: hidden;

    max-width: 260px;

    color: var(--header-text, #ffffff);

    font-size: 16px;
    font-weight: 700;

    line-height: 1.15;

    letter-spacing: -0.02em;

    white-space: nowrap;
    text-overflow: ellipsis;
}

.theme-brand-info small {
    display: block;

    overflow: hidden;

    max-width: 260px;

    color: color-mix(
        in srgb,
        var(--header-text, #ffffff) 58%,
        transparent
    );

    font-size: 11px;
    font-weight: 500;

    line-height: 1.3;

    letter-spacing: 0.01em;

    white-space: nowrap;
    text-overflow: ellipsis;
}


/* ==========================================================
   DESKTOP NAVIGATION
   ========================================================== */

.theme-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 6px;

    margin-left: auto;
}

.theme-nav-link {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 0 16px;

    color: color-mix(
        in srgb,
        var(--header-text, #ffffff) 72%,
        transparent
    );

    font-size: 13px;
    font-weight: 600;

    line-height: 1;

    text-decoration: none;

    border-radius: 10px;

    transition:
        color 180ms ease,
        background-color 180ms ease;
}

.theme-nav-link:hover {
    color: var(--header-accent, #f59e0b);

    background: color-mix(
        in srgb,
        var(--header-accent, #f59e0b) 9%,
        transparent
    );
}


/* ==========================================================
   FOCUS
   ========================================================== */

.theme-nav-link:focus-visible,
.theme-nav-button:focus-visible,
.theme-brand:focus-visible,
.theme-menu-button:focus-visible,
.theme-mobile-menu a:focus-visible {
    outline: 2px solid var(--header-accent, #f59e0b);
    outline-offset: 3px;
}


/* ==========================================================
   ACTIVE LINK
   ========================================================== */

.theme-nav-active {
    color: var(--header-accent, #f59e0b);
}

.theme-nav-active::after {
    content: "";

    position: absolute;

    left: 16px;
    right: 16px;
    bottom: 4px;

    height: 2px;

    border-radius: 999px;

    background: var(--header-accent, #f59e0b);
}


/* ==========================================================
   PRIMARY ACTION
   ========================================================== */

.theme-nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    margin-left: 8px;

    padding: 0 19px;

    color: var(--header-background, #0f172a);

    background: var(--header-button, #f59e0b);

    border: 1px solid var(--header-button, #f59e0b);

    border-radius: 10px;

    font-size: 13px;
    font-weight: 700;

    line-height: 1;

    text-decoration: none;

    white-space: nowrap;

    box-shadow:
        0 5px 18px
        color-mix(
            in srgb,
            var(--header-button, #f59e0b) 15%,
            transparent
        );

    transition:
        transform 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.theme-nav-button:hover {
    color: var(--header-background, #0f172a);

    background:
        color-mix(
            in srgb,
            var(--header-button, #f59e0b) 84%,
            #ffffff
        );

    border-color:
        color-mix(
            in srgb,
            var(--header-button, #f59e0b) 84%,
            #ffffff
        );

    transform: translateY(-1px);

    box-shadow:
        0 8px 24px
        color-mix(
            in srgb,
            var(--header-button, #f59e0b) 22%,
            transparent
        );
}

.theme-nav-button:active {
    transform: translateY(0);
}


/* ==========================================================
   MOBILE BUTTON
   ========================================================== */

.theme-menu-button {
    display: none;

    position: relative;

    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;

    padding: 0;

    color: var(--header-text, #ffffff);

    background: color-mix(
        in srgb,
        var(--header-accent, #f59e0b) 8%,
        var(--header-background, #0f172a)
    );

    border: 1px solid color-mix(
        in srgb,
        var(--header-text, #ffffff) 10%,
        transparent
    );

    border-radius: 11px;

    cursor: pointer;

    transition:
        background-color 180ms ease,
        border-color 180ms ease;
}

.theme-menu-button:hover {
    background: color-mix(
        in srgb,
        var(--header-accent, #f59e0b) 13%,
        var(--header-background, #0f172a)
    );

    border-color: color-mix(
        in srgb,
        var(--header-accent, #f59e0b) 25%,
        transparent
    );
}

.theme-menu-button span {
    display: block;

    width: 18px;
    height: 1.5px;

    background: var(--header-text, #ffffff);

    border-radius: 999px;

    transition:
        transform 180ms ease,
        opacity 180ms ease;
}


/* ==========================================================
   MOBILE MENU
   ========================================================== */

.theme-mobile-menu {
    display: none;

    width: min(1180px, calc(100% - 48px));

    margin: 0 auto;

    padding: 10px 0 18px;
}

.theme-mobile-menu a {
    display: flex;
    align-items: center;

    min-height: 48px;

    padding: 0 14px;

    color: var(--header-text, #ffffff);

    border-radius: 10px;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition:
        color 180ms ease,
        background-color 180ms ease;
}

.theme-mobile-menu a:hover {
    color: var(--header-accent, #f59e0b);

    background: color-mix(
        in srgb,
        var(--header-accent, #f59e0b) 9%,
        transparent
    );
}


/* ==========================================================
   MOBILE MENU ACTION
   ========================================================== */

.theme-mobile-menu a:last-child {
    justify-content: center;

    margin-top: 8px;

    color: var(--header-background, #0f172a);

    background: var(--header-button, #f59e0b);
}

.theme-mobile-menu a:last-child:hover {
    color: var(--header-background, #0f172a);

    background:
        color-mix(
            in srgb,
            var(--header-button, #f59e0b) 84%,
            #ffffff
        );
}


/* ==========================================================
   HEADER RESPONSIVE
   ========================================================== */

@media (max-width: 860px) {

    .theme-header-inner {
        min-height: 72px;
        gap: 20px;
    }

    .theme-navigation {
        display: none;
    }

    .theme-menu-button {
        display: flex;
    }

    .theme-mobile-menu {
        display: none;
    }

    .theme-mobile-menu.is-open {
        display: block;
    }

}


@media (max-width: 520px) {

    .theme-container {
        width: min(100% - 32px, 1180px);
    }

    .theme-mobile-menu {
        width: calc(100% - 32px);
    }

    .theme-header-inner {
        min-height: 68px;
    }

    .theme-brand-logo {
        width: 43px;
        height: 43px;

        flex-basis: 43px;

        border-radius: 10px;
    }

    .theme-brand-info strong {
        max-width: 190px;
        font-size: 15px;
    }

    .theme-brand-info small {
        max-width: 190px;
        font-size: 10px;
    }

}


/* ==========================================================
   THEME HERO
   ========================================================== */

.theme-hero {
    position: relative;

    width: 100%;

    overflow: hidden;

    color: var(--hero-text, #0f172a);

    background:
        radial-gradient(
            circle at 85% 20%,
            color-mix(
                in srgb,
                var(--hero-accent, #f59e0b) 8%,
                transparent
            ),
            transparent 35%
        ),
        var(--hero-background, #ffffff);

    border-bottom:
        1px solid
        color-mix(
            in srgb,
            var(--hero-text, #0f172a) 7%,
            transparent
        );
}


/* ==========================================================
   HERO GRID
   ========================================================== */

.theme-hero-grid {
    position: relative;

    min-height: 590px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(340px, 0.75fr);

    align-items: center;

    gap: 80px;

    padding-top: 76px;
    padding-bottom: 76px;
}


/* ==========================================================
   HERO CONTENT
   ========================================================== */

.theme-hero-content {
    position: relative;

    z-index: 2;

    max-width: 650px;
}


/* ==========================================================
   EYEBROW
   ========================================================== */

.theme-eyebrow {
    display: inline-flex;
    align-items: center;

    min-height: 32px;

    margin-bottom: 22px;

    padding: 0 13px;

    color: var(--hero-accent, #f59e0b);

    background:
        color-mix(
            in srgb,
            var(--hero-accent, #f59e0b) 8%,
            transparent
        );

    border:
        1px solid
        color-mix(
            in srgb,
            var(--hero-accent, #f59e0b) 13%,
            transparent
        );

    border-radius: 999px;

    font-size: 11px;
    font-weight: 750;

    line-height: 1;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


/* ==========================================================
   TITLE
   ========================================================== */

.theme-hero h1 {
    margin: 0;

    color: var(--hero-text, #0f172a);

    font-size: clamp(46px, 6vw, 78px);

    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -0.055em;
}

.theme-hero h1 strong {
    color: var(--hero-accent, #f59e0b);

    font-weight: 800;
}


/* ==========================================================
   DESCRIPTION
   ========================================================== */

.theme-hero-content > p {
    max-width: 570px;

    margin: 27px 0 0;

    color:
        color-mix(
            in srgb,
            var(--hero-text, #0f172a) 67%,
            transparent
        );

    font-size: 16px;
    font-weight: 450;

    line-height: 1.75;
}


/* ==========================================================
   HERO ACTIONS
   ========================================================== */

.theme-hero-actions {
    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 34px;
}


/* ==========================================================
   BUTTON BASE
   ========================================================== */

.theme-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding: 0 22px;

    border-radius: 10px;

    font-size: 13px;
    font-weight: 750;

    line-height: 1;

    text-decoration: none;

    cursor: pointer;

    transition:
        transform 180ms ease,
        background-color 180ms ease,
        color 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}


/* ==========================================================
   HERO PRIMARY BUTTON
   ========================================================== */

.theme-hero .theme-button-primary {
    color: var(--hero-background, #ffffff);

    background: var(--hero-button, #f59e0b);

    border:
        1px solid
        var(--hero-button, #f59e0b);

    box-shadow:
        0 8px 25px
        color-mix(
            in srgb,
            var(--hero-button, #f59e0b) 18%,
            transparent
        );
}

.theme-hero .theme-button-primary:hover {
    color: var(--hero-background, #ffffff);

    background:
        color-mix(
            in srgb,
            var(--hero-button, #f59e0b) 88%,
            #ffffff
        );

    border-color:
        color-mix(
            in srgb,
            var(--hero-button, #f59e0b) 88%,
            #ffffff
        );

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px
        color-mix(
            in srgb,
            var(--hero-button, #f59e0b) 25%,
            transparent
        );
}


/* ==========================================================
   HERO SECONDARY BUTTON
   ========================================================== */

.theme-hero .theme-button-secondary {
    color: var(--hero-text, #0f172a);

    background: transparent;

    border:
        1px solid
        color-mix(
            in srgb,
            var(--hero-text, #0f172a) 20%,
            transparent
        );
}

.theme-hero .theme-button-secondary:hover {
    color: var(--hero-background, #ffffff);

    background: var(--hero-accent, #f59e0b);

    border-color: var(--hero-accent, #f59e0b);

    transform: translateY(-2px);
}


/* ==========================================================
   HIGHLIGHT CARD
   ========================================================== */

.theme-hero-highlight {
    position: relative;

    z-index: 2;

    min-height: 390px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: center;

    padding: 46px;

    overflow: hidden;

    color: var(--hero-background, #ffffff);

    background:
        linear-gradient(
            145deg,
            var(--hero-accent, #f59e0b),
            color-mix(
                in srgb,
                var(--hero-accent, #f59e0b) 72%,
                #000000
            )
        );

    border-radius: 26px;

    box-shadow:
        0 25px 65px
        color-mix(
            in srgb,
            var(--hero-accent, #f59e0b) 22%,
            transparent
        );
}


/* ==========================================================
   GLOW
   ========================================================== */

.theme-highlight-glow {
    position: absolute;

    width: 280px;
    height: 280px;

    top: -110px;
    right: -90px;

    background:
        radial-gradient(
            circle,
            color-mix(
                in srgb,
                var(--hero-accent, #f59e0b) 35%,
                transparent
            ),
            transparent 70%
        );

    pointer-events: none;
}


/* ==========================================================
   ICON
   ========================================================== */

.theme-highlight-icon {
    position: relative;

    z-index: 2;

    width: 64px;
    height: 64px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    background:
        color-mix(
            in srgb,
            var(--hero-background, #ffffff) 10%,
            transparent
        );

    border:
        1px solid
        color-mix(
            in srgb,
            var(--hero-background, #ffffff) 15%,
            transparent
        );

    border-radius: 18px;

    font-size: 30px;

    backdrop-filter: blur(8px);
}


/* ==========================================================
   HIGHLIGHT LABEL
   ========================================================== */

.theme-highlight-label {
    position: relative;

    z-index: 2;

    margin-bottom: 10px;

    color:
        color-mix(
            in srgb,
            var(--hero-background, #ffffff) 65%,
            transparent
        );

    font-size: 10px;
    font-weight: 750;

    line-height: 1;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


/* ==========================================================
   HIGHLIGHT TITLE
   ========================================================== */

.theme-hero-highlight h2 {
    position: relative;

    z-index: 2;

    margin: 0;

    color: var(--hero-background, #ffffff);

    font-size: clamp(27px, 3vw, 38px);

    font-weight: 750;

    line-height: 1.1;

    letter-spacing: -0.035em;
}


/* ==========================================================
   HIGHLIGHT DESCRIPTION
   ========================================================== */

.theme-hero-highlight p {
    position: relative;

    z-index: 2;

    max-width: 330px;

    margin: 17px 0 0;

    color:
        color-mix(
            in srgb,
            var(--hero-background, #ffffff) 72%,
            transparent
        );

    font-size: 13px;

    line-height: 1.65;
}


/* ==========================================================
   HIGHLIGHT LINK
   ========================================================== */

.theme-highlight-link {
    position: relative;

    z-index: 2;

    display: inline-flex;

    align-items: center;

    margin-top: 27px;

    color: var(--hero-background, #ffffff);

    font-size: 12px;
    font-weight: 750;

    text-decoration: none;

    border-bottom:
        1px solid
        color-mix(
            in srgb,
            var(--hero-background, #ffffff) 35%,
            transparent
        );

    padding-bottom: 4px;

    transition:
        color 180ms ease,
        border-color 180ms ease,
        transform 180ms ease;
}

.theme-highlight-link:hover {
    color: var(--hero-accent, #f59e0b);

    border-color: var(--hero-accent, #f59e0b);

    transform: translateX(3px);
}


/* ==========================================================
   HERO FOCUS
   ========================================================== */

.theme-hero .theme-button:focus-visible,
.theme-highlight-link:focus-visible {
    outline:
        2px solid
        var(--hero-accent, #f59e0b);

    outline-offset: 4px;
}


/* ==========================================================
   HERO RESPONSIVE
   ========================================================== */

@media (max-width: 900px) {

    .theme-hero-grid {
        grid-template-columns: 1fr;

        min-height: auto;

        gap: 50px;

        padding-top: 65px;
        padding-bottom: 65px;
    }

    .theme-hero-content {
        max-width: 700px;
    }

    .theme-hero-highlight {
        width: 100%;

        min-height: 340px;
    }

}


@media (max-width: 600px) {

    .theme-hero-grid {
        width: min(100% - 32px, 1180px);

        gap: 38px;

        padding-top: 48px;
        padding-bottom: 48px;
    }

    .theme-hero h1 {
        font-size: clamp(42px, 13vw, 60px);
    }

    .theme-hero-content > p {
        margin-top: 21px;

        font-size: 14px;

        line-height: 1.65;
    }

    .theme-hero-actions {
        align-items: stretch;

        flex-direction: column;

        margin-top: 28px;
    }

    .theme-hero .theme-button {
        width: 100%;
    }

    .theme-hero-highlight {
        min-height: 330px;

        padding: 32px;

        border-radius: 21px;
    }

    .theme-highlight-icon {
        width: 56px;
        height: 56px;

        margin-bottom: 20px;

        border-radius: 15px;

        font-size: 26px;
    }

}


@media (max-width: 380px) {

    .theme-hero-highlight {
        padding: 27px;
    }

    .theme-hero-highlight h2 {
        font-size: 26px;
    }

}


/* ==========================================================
   PRODUCTS SECTION
   ========================================================== */

.theme-products-section {
    position: relative;

    width: 100%;

    padding: 90px 0;

    color: var(--products-text, #0f172a);

    background: var(--products-background, #ffffff);
}


/* ==========================================================
   SECTION HEADING
   ========================================================== */

.theme-section-heading {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 38px;
}


/* ==========================================================
   SECTION EYEBROW
   ========================================================== */

.theme-products-section .theme-section-eyebrow {
    display: inline-flex;

    align-items: center;

    margin-bottom: 10px;

    color: var(--products-price, #f59e0b);

    font-size: 11px;
    font-weight: 750;

    line-height: 1;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}


/* ==========================================================
   SECTION TITLE
   ========================================================== */

.theme-products-section .theme-section-heading h2 {
    margin: 0;

    color: var(--products-text, #0f172a);

    font-size: clamp(30px, 4vw, 44px);

    font-weight: 750;

    line-height: 1.05;

    letter-spacing: -0.04em;
}


/* ==========================================================
   SECTION LINK
   ========================================================== */

.theme-products-section .theme-section-link {
    display: inline-flex;

    align-items: center;

    flex-shrink: 0;

    min-height: 42px;

    padding: 0 15px;

    color: var(--products-text, #0f172a);

    background:
        color-mix(
            in srgb,
            var(--products-price, #f59e0b) 8%,
            transparent
        );

    border:
        1px solid
        color-mix(
            in srgb,
            var(--products-price, #f59e0b) 18%,
            transparent
        );

    border-radius: 10px;

    font-size: 12px;
    font-weight: 700;

    line-height: 1;

    text-decoration: none;

    transition:
        color 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        transform 180ms ease;
}

.theme-products-section .theme-section-link:hover {
    color: var(--products-background, #ffffff);

    background: var(--products-button, #f59e0b);

    border-color: var(--products-button, #f59e0b);

    transform: translateX(2px);
}


/* ==========================================================
   PRODUCTS GRID
   ========================================================== */

.theme-products-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 22px;
}


/* ==========================================================
   PRODUCT CARD
   ========================================================== */

.theme-product-card {
    position: relative;

    display: flex;

    flex-direction: column;

    min-width: 0;

    overflow: hidden;

    background: var(--products-card, #ffffff);

    border:
        1px solid
        color-mix(
            in srgb,
            var(--products-text, #0f172a) 9%,
            transparent
        );

    border-radius: 16px;

    box-shadow:
        0 8px 30px
        color-mix(
            in srgb,
            var(--products-text, #0f172a) 7%,
            transparent
        );

    transition:
        transform 200ms ease,
        box-shadow 200ms ease,
        border-color 200ms ease;
}

.theme-product-card:hover {
    transform: translateY(-5px);

    border-color:
        color-mix(
            in srgb,
            var(--products-button, #f59e0b) 35%,
            transparent
        );

    box-shadow:
        0 18px 42px
        color-mix(
            in srgb,
            var(--products-button, #f59e0b) 13%,
            transparent
        );
}


/* ==========================================================
   PRODUCT IMAGE
   ========================================================== */

.theme-product-image {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;

    aspect-ratio: 1 / 0.78;

    overflow: hidden;

    color: var(--products-price, #f59e0b);

    background:
        color-mix(
            in srgb,
            var(--products-button, #f59e0b) 7%,
            var(--products-background, #ffffff)
        );

    text-decoration: none;
}

.theme-product-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 300ms ease;
}

.theme-product-card:hover .theme-product-image img {
    transform: scale(1.04);
}


/* ==========================================================
   IMAGE FALLBACK
   ========================================================== */

.theme-product-image-fallback {
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    color: var(--products-price, #f59e0b);

    background:
        color-mix(
            in srgb,
            var(--products-button, #f59e0b) 7%,
            var(--products-background, #ffffff)
        );

    font-size: 38px;
}


/* ==========================================================
   PRODUCT BODY
   ========================================================== */

.theme-product-body {
    display: flex;

    flex-direction: column;

    flex: 1;

    padding: 21px;
}


/* ==========================================================
   PRODUCT NAME
   ========================================================== */

.theme-product-body h3 {
    margin: 0;

    overflow: hidden;

    color: var(--products-text, #0f172a);

    font-size: 17px;

    font-weight: 750;

    line-height: 1.25;

    letter-spacing: -0.02em;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;
}


/* ==========================================================
   PRODUCT DESCRIPTION
   ========================================================== */

.theme-product-body > p {
    margin: 9px 0 0;

    overflow: hidden;

    color:
        color-mix(
            in srgb,
            var(--products-text, #0f172a) 60%,
            transparent
        );

    font-size: 12px;

    line-height: 1.6;

    display: -webkit-box;

    -webkit-line-clamp: 3;

    -webkit-box-orient: vertical;
}


/* ==========================================================
   PRODUCT FOOTER
   ========================================================== */

.theme-product-footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;

    margin-top: auto;

    padding-top: 21px;
}


/* ==========================================================
   PRICE
   ========================================================== */

.theme-product-price {
    color: var(--products-price, #f59e0b);

    font-size: 17px;

    font-weight: 800;

    line-height: 1;

    white-space: nowrap;
}


/* ==========================================================
   PRODUCT BUTTON
   ========================================================== */

.theme-product-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 58px;
    min-height: 38px;

    padding: 0 14px;

    color: var(--products-card, #ffffff);

    background: var(--products-button, #f59e0b);

    border:
        1px solid
        var(--products-button, #f59e0b);

    border-radius: 9px;

    font-size: 11px;

    font-weight: 750;

    line-height: 1;

    text-decoration: none;

    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        transform 180ms ease,
        box-shadow 180ms ease;
}

.theme-product-button:hover {
    background:
        color-mix(
            in srgb,
            var(--products-button, #f59e0b) 84%,
            #ffffff
        );

    border-color:
        color-mix(
            in srgb,
            var(--products-button, #f59e0b) 84%,
            #ffffff
        );

    transform: translateY(-1px);

    box-shadow:
        0 7px 18px
        color-mix(
            in srgb,
            var(--products-button, #f59e0b) 18%,
            transparent
        );
}


/* ==========================================================
   EMPTY STATE
   ========================================================== */

.theme-products-section .theme-empty {
    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    min-height: 280px;

    padding: 40px;

    text-align: center;

    background:
        color-mix(
            in srgb,
            var(--products-button, #f59e0b) 5%,
            var(--products-background, #ffffff)
        );

    border:
        1px dashed
        color-mix(
            in srgb,
            var(--products-button, #f59e0b) 25%,
            transparent
        );

    border-radius: 18px;
}

.theme-products-section .theme-empty > span {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 64px;
    height: 64px;

    margin-bottom: 17px;

    color: var(--products-price, #f59e0b);

    background:
        color-mix(
            in srgb,
            var(--products-button, #f59e0b) 10%,
            transparent
        );

    border-radius: 18px;

    font-size: 28px;
}

.theme-products-section .theme-empty h3 {
    margin: 0;

    color: var(--products-text, #0f172a);

    font-size: 18px;

    font-weight: 750;
}

.theme-products-section .theme-empty p {
    max-width: 420px;

    margin: 8px 0 0;

    color:
        color-mix(
            in srgb,
            var(--products-text, #0f172a) 58%,
            transparent
        );

    font-size: 13px;

    line-height: 1.6;
}


/* ==========================================================
   PRODUCTS FOCUS
   ========================================================== */

.theme-products-section .theme-section-link:focus-visible,
.theme-products-section .theme-product-image:focus-visible,
.theme-products-section .theme-product-button:focus-visible {
    outline:
        2px solid
        var(--products-button, #f59e0b);

    outline-offset: 3px;
}


/* ==========================================================
   PRODUCTS RESPONSIVE — TABLET
   ========================================================== */

@media (max-width: 1050px) {

    .theme-products-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}


/* ==========================================================
   PRODUCTS RESPONSIVE — TABLET PEQUENO
   ========================================================== */

@media (max-width: 780px) {

    .theme-products-section {
        padding: 70px 0;
    }

    .theme-products-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 18px;
    }

    .theme-section-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 18px;

        margin-bottom: 30px;
    }

}


/* ==========================================================
   PRODUCTS RESPONSIVE — MOBILE
   ========================================================== */

@media (max-width: 520px) {

    .theme-products-section {
        padding: 55px 0;
    }

    .theme-section-heading h2 {
        font-size: 30px;
    }

    .theme-products-section .theme-section-link {
        width: 100%;
    }

    .theme-products-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .theme-product-image {
        aspect-ratio: 1 / 0.68;
    }

    .theme-product-body {
        padding: 18px;
    }

}


/* ==========================================================
   CTA
   ========================================================== */

.theme-cta {
    width: 100%;

    padding: 80px 0;

    color: var(--cta-text, #ffffff);

    background: var(--cta-background, #0f172a);
}

.theme-cta .theme-container {
    width: 100%;
}


/* ==========================================================
   CTA BOX
   ========================================================== */

.theme-cta-box {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    width: 100%;

    padding: 56px 64px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            color-mix(
                in srgb,
                var(--cta-background, #0f172a) 96%,
                var(--cta-accent, #f59e0b)
            ),
            var(--cta-background, #0f172a)
        );

    border:
        1px solid
        color-mix(
            in srgb,
            var(--cta-accent, #f59e0b) 28%,
            transparent
        );

    border-radius: 24px;

    box-shadow:
        0 20px 50px
        color-mix(
            in srgb,
            var(--cta-background, #0f172a) 18%,
            transparent
        );
}


/* ==========================================================
   DECORATIVE GLOW
   ========================================================== */

.theme-cta-box::before {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    top: -150px;
    right: 80px;

    border-radius: 50%;

    background:
        color-mix(
            in srgb,
            var(--cta-accent, #f59e0b) 18%,
            transparent
        );

    filter: blur(10px);

    pointer-events: none;
}

.theme-cta-box::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    bottom: -120px;
    left: 30%;

    border-radius: 50%;

    background:
        color-mix(
            in srgb,
            var(--cta-accent, #f59e0b) 12%,
            transparent
        );

    filter: blur(20px);

    pointer-events: none;
}


/* ==========================================================
   CTA CONTENT
   ========================================================== */

.theme-cta-box > div {
    position: relative;

    z-index: 2;

    max-width: 720px;
}


/* ==========================================================
   CTA EYEBROW
   ========================================================== */

.theme-cta .theme-section-eyebrow {
    display: inline-flex;

    align-items: center;

    margin-bottom: 14px;

    font-size: 12px;

    font-weight: 700;

    line-height: 1;

    letter-spacing: 0.16em;

    text-transform: uppercase;

    color: var(--cta-accent, #f59e0b);
}


/* ==========================================================
   CTA TITLE
   ========================================================== */

.theme-cta h2 {
    margin: 0;

    font-size: clamp(30px, 4vw, 46px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -0.035em;

    color: var(--cta-text, #ffffff);
}


/* ==========================================================
   CTA DESCRIPTION
   ========================================================== */

.theme-cta p {
    margin: 18px 0 0;

    max-width: 560px;

    font-size: 16px;

    line-height: 1.7;

    color:
        color-mix(
            in srgb,
            var(--cta-text, #ffffff) 78%,
            transparent
        );
}


/* ==========================================================
   CTA BUTTON
   ========================================================== */

.theme-cta .theme-button {
    position: relative;

    z-index: 2;

    flex-shrink: 0;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 28px;

    border-radius: 12px;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.theme-cta .theme-button-primary {
    color:
        var(--cta-background, #0f172a);

    background:
        var(--cta-button, #f59e0b);

    border:
        1px solid
        var(--cta-button, #f59e0b);

    box-shadow:
        0 10px 25px
        color-mix(
            in srgb,
            var(--cta-button, #f59e0b) 25%,
            transparent
        );
}

.theme-cta .theme-button-primary:hover {
    transform: translateY(-2px);

    background:
        color-mix(
            in srgb,
            var(--cta-button, #f59e0b) 88%,
            #ffffff
        );

    border-color:
        color-mix(
            in srgb,
            var(--cta-button, #f59e0b) 88%,
            #ffffff
        );

    box-shadow:
        0 14px 30px
        color-mix(
            in srgb,
            var(--cta-button, #f59e0b) 35%,
            transparent
        );
}


/* ==========================================================
   CTA RESPONSIVE — TABLET
   ========================================================== */

@media (max-width: 900px) {

    .theme-cta {
        padding: 64px 0;
    }

    .theme-cta-box {
        padding: 46px 40px;

        gap: 30px;
    }

    .theme-cta h2 {
        font-size: 36px;
    }

}


/* ==========================================================
   CTA RESPONSIVE — MOBILE
   ========================================================== */

@media (max-width: 700px) {

    .theme-cta {
        padding: 50px 0;
    }

    .theme-cta-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 38px 28px;

        border-radius: 20px;
    }

    .theme-cta h2 {
        font-size: 32px;

        line-height: 1.12;
    }

    .theme-cta p {
        font-size: 15px;
    }

    .theme-cta .theme-button {
        width: 100%;
    }

}


/* ==========================================================
   CTA RESPONSIVE — SMALL MOBILE
   ========================================================== */

@media (max-width: 420px) {

    .theme-cta {
        padding: 40px 0;
    }

    .theme-cta-box {
        padding: 32px 22px;
    }

    .theme-cta h2 {
        font-size: 28px;
    }

}


/* ==========================================================
   FOOTER
   ========================================================== */

.theme-footer {
    width: 100%;

    background:
        var(--footer-background, #0f172a);

    color:
        var(--footer-text, #ffffff);

    border-top:
        1px solid
        color-mix(
            in srgb,
            var(--footer-text, #ffffff) 12%,
            transparent
        );
}


/* ==========================================================
   FOOTER CONTAINER
   ========================================================== */

.theme-footer-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    min-height: 110px;
}


/* ==========================================================
   FOOTER BRAND
   ========================================================== */

.theme-footer-brand {
    display: flex;

    align-items: center;

    gap: 14px;

    min-width: 0;
}


/* ==========================================================
   FOOTER LOGO
   ========================================================== */

.theme-footer-logo {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    flex-shrink: 0;

    overflow: hidden;

    border-radius: 12px;

    background:
        color-mix(
            in srgb,
            var(--footer-text, #ffffff) 12%,
            transparent
        );

    border:
        1px solid
        color-mix(
            in srgb,
            var(--footer-text, #ffffff) 15%,
            transparent
        );

    color: var(--footer-text, #ffffff);

    font-size: 22px;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.theme-footer-logo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* ==========================================================
   FOOTER BRAND TEXT
   ========================================================== */

.theme-footer-brand > div {
    display: flex;

    flex-direction: column;

    gap: 4px;

    min-width: 0;
}

.theme-footer-brand strong {
    display: block;

    font-size: 16px;

    font-weight: 800;

    line-height: 1.2;

    color: var(--footer-text, #ffffff);

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}

.theme-footer-brand span:not(.theme-footer-logo) {
    display: block;

    font-size: 13px;

    line-height: 1.4;

    color:
        color-mix(
            in srgb,
            var(--footer-text, #ffffff) 65%,
            transparent
        );
}


/* ==========================================================
   COPYRIGHT
   ========================================================== */

.theme-footer-copy {
    font-size: 13px;

    line-height: 1.6;

    text-align: right;

    color:
        color-mix(
            in srgb,
            var(--footer-text, #ffffff) 60%,
            transparent
        );
}


/* ==========================================================
   FOOTER HOVER
   ========================================================== */

.theme-footer-logo:hover {
    background:
        color-mix(
            in srgb,
            var(--footer-accent, #f59e0b) 15%,
            transparent
        );

    border-color:
        color-mix(
            in srgb,
            var(--footer-accent, #f59e0b) 35%,
            transparent
        );

    transform: translateY(-1px);
}


/* ==========================================================
   FOOTER TABLET
   ========================================================== */

@media (max-width: 800px) {

    .theme-footer-inner {
        min-height: auto;

        padding-top: 32px;
        padding-bottom: 32px;

        gap: 24px;
    }

    .theme-footer-copy {
        max-width: 280px;
    }

}


/* ==========================================================
   FOOTER MOBILE
   ========================================================== */

@media (max-width: 650px) {

    .theme-footer-inner {
        flex-direction: column;

        align-items: center;

        text-align: center;

        padding-top: 34px;
        padding-bottom: 34px;
    }

    .theme-footer-brand {
        justify-content: center;
    }

    .theme-footer-copy {
        max-width: 100%;

        text-align: center;

        font-size: 12px;
    }

}


/* ==========================================================
   FOOTER SMALL MOBILE
   ========================================================== */

@media (max-width: 420px) {

    .theme-footer-inner {
        gap: 20px;
    }

    .theme-footer-logo {
        width: 44px;
        height: 44px;

        border-radius: 10px;
    }

    .theme-footer-brand strong {
        font-size: 15px;
    }

    .theme-footer-brand span:not(.theme-footer-logo) {
        font-size: 12px;
    }

}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

    .theme-nav-link,
    .theme-nav-button,
    .theme-menu-button,
    .theme-menu-button span,
    .theme-mobile-menu a,
    .theme-button,
    .theme-highlight-link,
    .theme-product-card,
    .theme-product-image img,
    .theme-section-link,
    .theme-product-button,
    .theme-footer-logo {
        transition: none;
    }

}
/* =========================================================
   CARDÁPIO PROFISSIONAL
   ========================================================= */

.restaurant-menu {
    --menu-bg: #24110b;
    --menu-surface: #30170f;
    --menu-text: #ffffff;
    --menu-muted: #d8c8c0;
    --menu-accent: #f5a623;
    --menu-border: rgba(245, 166, 35, 0.45);

    width: 100%;
    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(245, 166, 35, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(245, 166, 35, 0.06),
            transparent 30%
        ),
        var(--menu-bg);

    color: var(--menu-text);
    padding: 80px 24px 100px;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.restaurant-menu-container {
    width: min(1180px, 100%);
    margin: 0 auto;
}


/* =========================================================
   CABEÇALHO
   ========================================================= */

.restaurant-menu-header {
    max-width: 780px;
    margin: 0 auto 55px;
    text-align: center;
}

.restaurant-menu-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: var(--menu-accent);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;

    margin-bottom: 18px;
}

.restaurant-menu-eyebrow::before,
.restaurant-menu-eyebrow::after {
    content: "";

    width: 32px;
    height: 1px;

    background: var(--menu-accent);
}

.restaurant-menu-title {
    margin: 0;

    color: var(--menu-text);

    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.restaurant-menu-description {
    max-width: 620px;

    margin: 22px auto 0;

    color: var(--menu-muted);

    font-size: 17px;
    line-height: 1.7;
}


/* =========================================================
   NAVEGAÇÃO
   ========================================================= */

.restaurant-menu-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;

    margin-bottom: 70px;
}

.restaurant-menu-nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;
    padding: 0 20px;

    border: 1px solid var(--menu-border);
    border-radius: 999px;

    color: var(--menu-text);
    background: transparent;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.restaurant-menu-nav-link:hover {
    transform: translateY(-2px);

    border-color: var(--menu-accent);

    color: #1f1009;
    background: var(--menu-accent);
}

.restaurant-menu-nav-link.is-active {
    border-color: var(--menu-accent);

    color: #1f1009;
    background: var(--menu-accent);
}


/* =========================================================
   CATEGORIAS
   ========================================================= */

.restaurant-menu-category {
    margin-bottom: 75px;

    scroll-margin-top: 110px;
}

.restaurant-menu-category:last-child {
    margin-bottom: 0;
}


/* =========================================================
   CABEÇALHO DA CATEGORIA
   ========================================================= */

.restaurant-menu-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    margin-bottom: 28px;

    padding-bottom: 17px;

    border-bottom: 1px solid var(--menu-border);
}

.restaurant-menu-category-heading {
    display: flex;
    align-items: center;
    gap: 15px;
}

.restaurant-menu-category-line {
    width: 5px;
    height: 38px;

    flex: 0 0 auto;

    border-radius: 5px;

    background: var(--menu-accent);
}

.restaurant-menu-category-header h2 {
    margin: 0;

    color: var(--menu-text);

    font-size: clamp(25px, 3vw, 36px);
    line-height: 1.1;
    font-weight: 800;
}

.restaurant-menu-category-count {
    color: var(--menu-muted);

    font-size: 13px;
    font-weight: 600;

    white-space: nowrap;
}


/* =========================================================
   PRODUTOS
   ========================================================= */

.restaurant-menu-products {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    column-gap: 55px;
    row-gap: 18px;
}


/* =========================================================
   PRODUTO
   ========================================================= */

.restaurant-menu-product {
    display: grid;

    grid-template-columns: 92px minmax(0, 1fr);

    gap: 18px;

    min-width: 0;

    padding: 16px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;

    background: rgba(255, 255, 255, 0.025);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.restaurant-menu-product:hover {
    transform: translateY(-3px);

    border-color: var(--menu-border);

    background: rgba(255, 255, 255, 0.05);
}


/* =========================================================
   IMAGEM DO PRODUTO
   ========================================================= */

.restaurant-menu-product-image {
    width: 92px;
    height: 92px;

    overflow: hidden;

    border-radius: 13px;

    background: var(--menu-surface);
}

.restaurant-menu-product-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.3s ease;
}

.restaurant-menu-product:hover
.restaurant-menu-product-image img {
    transform: scale(1.06);
}

.restaurant-menu-product-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    font-size: 28px;
}


/* =========================================================
   INFORMAÇÕES
   ========================================================= */

.restaurant-menu-product-info {
    min-width: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.restaurant-menu-product-top {
    display: flex;
    align-items: baseline;

    min-width: 0;

    gap: 10px;
}

.restaurant-menu-product-top h3 {
    margin: 0;

    color: var(--menu-text);

    font-size: 18px;
    line-height: 1.25;
    font-weight: 800;
}


/* =========================================================
   LINHA ENTRE NOME E PREÇO
   ========================================================= */

.restaurant-menu-product-dots {
    flex: 1 1 auto;

    min-width: 15px;

    border-bottom: 1px dotted rgba(255, 255, 255, 0.25);

    transform: translateY(-3px);
}


/* =========================================================
   PREÇO
   ========================================================= */

.restaurant-menu-product-price {
    flex: 0 0 auto;

    color: var(--menu-accent);

    font-size: 18px;
    line-height: 1;
    font-weight: 900;

    white-space: nowrap;
}


/* =========================================================
   DESCRIÇÃO
   ========================================================= */

.restaurant-menu-product-description {
    margin: 8px 0 0;

    color: var(--menu-muted);

    font-size: 14px;
    line-height: 1.55;
}


/* =========================================================
   VAZIO
   ========================================================= */

.restaurant-menu-empty {
    padding: 70px 25px;

    border: 1px solid var(--menu-border);
    border-radius: 20px;

    text-align: center;

    background: rgba(255, 255, 255, 0.025);
}

.restaurant-menu-empty-icon {
    margin-bottom: 18px;

    font-size: 42px;
}

.restaurant-menu-empty h2 {
    margin: 0;

    color: var(--menu-text);

    font-size: 25px;
}

.restaurant-menu-empty p {
    margin: 10px 0 0;

    color: var(--menu-muted);

    font-size: 15px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .restaurant-menu {
        padding: 65px 20px 80px;
    }

    .restaurant-menu-products {
        grid-template-columns: 1fr;

        column-gap: 0;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .restaurant-menu {
        padding: 50px 15px 65px;
    }

    .restaurant-menu-header {
        margin-bottom: 35px;
    }

    .restaurant-menu-title {
        font-size: 36px;
    }

    .restaurant-menu-description {
        font-size: 15px;
    }

    .restaurant-menu-navigation {
        justify-content: flex-start;

        overflow-x: auto;
        flex-wrap: nowrap;

        padding-bottom: 8px;
        margin-bottom: 45px;

        scrollbar-width: none;
    }

    .restaurant-menu-navigation::-webkit-scrollbar {
        display: none;
    }

    .restaurant-menu-nav-link {
        flex: 0 0 auto;
    }

    .restaurant-menu-category {
        margin-bottom: 55px;
    }

    .restaurant-menu-category-header {
        align-items: flex-start;
    }

    .restaurant-menu-category-header h2 {
        font-size: 26px;
    }

    .restaurant-menu-category-count {
        padding-top: 7px;
    }

    .restaurant-menu-product {
        grid-template-columns: 72px minmax(0, 1fr);

        gap: 13px;

        padding: 12px;
    }

    .restaurant-menu-product-image {
        width: 72px;
        height: 72px;
    }

    .restaurant-menu-product-top {
        align-items: flex-start;

        flex-wrap: wrap;
        gap: 5px 8px;
    }

    .restaurant-menu-product-top h3 {
        width: 100%;

        font-size: 16px;
    }

    .restaurant-menu-product-dots {
        display: none;
    }

    .restaurant-menu-product-price {
        font-size: 17px;
    }

    .restaurant-menu-product-description {
        font-size: 13px;
    }

}
/* =========================================================
   AÇÕES DOS PRODUTOS
   ========================================================= */

.restaurant-menu-product-actions {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: 16px;
}


/* =========================================================
   BOTÃO ADICIONAR À SACOLA
   ========================================================= */

.restaurant-menu-cart-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 40px;
    padding: 0 15px;

    border: 1px solid var(--menu-border);
    border-radius: 10px;

    color: var(--menu-text);
    background: transparent;

    font-family: inherit;
    font-size: 13px;
    font-weight: 800;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.restaurant-menu-cart-button:hover {
    transform: translateY(-2px);

    border-color: var(--menu-accent);

    color: #1f1009;
    background: var(--menu-accent);
}

.restaurant-menu-cart-button.is-added {
    border-color: #3fb950;

    color: #ffffff;
    background: #238636;

    cursor: default;
}

.restaurant-menu-cart-button.is-added:hover {
    transform: none;

    border-color: #3fb950;

    color: #ffffff;
    background: #238636;
}

.cart-button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 20px;
    height: 20px;

    border-radius: 50%;

    font-size: 15px;
    font-weight: 900;
}


/* =========================================================
   BOTÃO PEDIR
   ========================================================= */

.restaurant-menu-order-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 40px;
    padding: 0 20px;

    border: 1px solid var(--menu-accent);
    border-radius: 10px;

    color: #1f1009;
    background: var(--menu-accent);

    font-family: inherit;
    font-size: 13px;
    font-weight: 900;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        filter 0.2s ease,
        box-shadow 0.2s ease;
}

.restaurant-menu-order-button:hover {
    transform: translateY(-2px);

    filter: brightness(1.08);

    box-shadow:
        0 8px 20px rgba(245, 166, 35, 0.18);
}

.restaurant-menu-order-button:active,
.restaurant-menu-cart-button:active {
    transform: translateY(0);
}


/* =========================================================
   PRODUTO ADICIONADO
   ========================================================= */

.restaurant-menu-product.is-in-cart {
    border-color: rgba(63, 185, 80, 0.35);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .restaurant-menu-product-actions {
        align-items: stretch;

        flex-direction: column;

        gap: 8px;

        width: 100%;
    }

    .restaurant-menu-cart-button,
    .restaurant-menu-order-button {
        width: 100%;
    }

}