:root {
    --espresso: #1B0F08;
    --coffee: #4A2B18;
    --mocha: #7B4A28;
    --caramel: #C88335;
    --gold: #E3A94B;
    --cream: #FFF4E1;
    --latte: #F6E1C3;
    --soft: #FBF7F0;
    --white: #FFFFFF;
    --green: #4F8A42;
    --blue: #3E78B2;
    --red: #C2513A;
    --muted: #6B625A;
}

body {
    background: var(--soft);
    color: #24150e;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: var(--mocha);
}

.site-nav {
    background: rgba(27, 15, 8, .98);
    border-bottom: 1px solid rgba(227, 169, 75, .35);
    box-shadow: 0 14px 40px rgba(27, 15, 8, .18);
}

.navbar-brand img {
    height: 58px;
    width: auto;
}

.btn-primary,
.btn-hero {
    --bs-btn-bg: var(--caramel);
    --bs-btn-border-color: var(--caramel);
    --bs-btn-hover-bg: var(--mocha);
    --bs-btn-hover-border-color: var(--mocha);
    --bs-btn-color: #fff;
    font-weight: 700;
}

.btn-outline-hero {
    --bs-btn-color: var(--coffee);
    --bs-btn-border-color: rgba(74, 43, 24, .3);
    --bs-btn-hover-bg: var(--coffee);
    --bs-btn-hover-border-color: var(--coffee);
    --bs-btn-hover-color: #fff;
}

.hero {
    min-height: 520px;
    display: flex;
    align-items: center;
    background-image: linear-gradient(90deg, rgba(27, 15, 8, .9), rgba(27, 15, 8, .2)), url('../backgrounds/png/hero-banner-coffee.png');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.hero-home {
    min-height: calc(100vh - 84px);
    align-items: stretch;
    position: relative;
    overflow: hidden;
    background-image:
        linear-gradient(90deg, rgba(27, 15, 8, .96) 0%, rgba(27, 15, 8, .74) 42%, rgba(27, 15, 8, .18) 100%),
        url('../backgrounds/png/hero-banner-coffee.png');
}

.hero-home::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 160px;
    background: linear-gradient(180deg, rgba(251, 247, 240, 0), var(--soft));
    pointer-events: none;
}

.min-vh-hero {
    min-height: calc(100vh - 210px);
    padding: 80px 0 42px;
    position: relative;
    z-index: 1;
}

.hero-kicker,
.section-eyebrow {
    color: var(--gold);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 650px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(3rem, 6vw, 5.25rem);
    line-height: 1;
    letter-spacing: 0;
}

.hero h1 span,
.section-title span {
    color: var(--gold);
}

.hero p {
    max-width: 540px;
    font-size: 1.18rem;
}

.hero-order-strip,
.hero-proof {
    position: relative;
    z-index: 1;
    background: rgba(255, 244, 225, .92);
    border: 1px solid rgba(227, 169, 75, .5);
    color: var(--espresso);
    backdrop-filter: blur(14px);
    box-shadow: 0 22px 60px rgba(27, 15, 8, .22);
}

.hero-order-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-radius: 8px;
    padding: 1rem;
    max-width: 440px;
    margin-left: auto;
}

.hero-order-strip span,
.hero-proof span {
    display: block;
    color: var(--muted);
    font-weight: 700;
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 24px;
    border-radius: 8px;
    overflow: hidden;
}

.hero-proof div {
    padding: 1rem 1.25rem;
    border-right: 1px solid rgba(74, 43, 24, .12);
}

.hero-proof div:last-child {
    border-right: 0;
}

.hero-proof strong {
    display: block;
    color: var(--coffee);
    font-size: 1.25rem;
}

.section-pad {
    padding: 72px 0;
}

.section-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    letter-spacing: 0;
}

.menu-section {
    background: var(--soft) url('../backgrounds/png/coffee-pattern-light.png') repeat;
}

.menu-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1.5rem;
}

.menu-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: .7rem;
}

.menu-filter button {
    border: 1px solid rgba(74, 43, 24, .16);
    background: rgba(255, 255, 255, .76);
    color: var(--coffee);
    border-radius: 999px;
    min-height: 44px;
    padding: .55rem 1.25rem;
    font-weight: 800;
}

.menu-filter button.active,
.menu-filter button:hover {
    background: var(--espresso);
    color: #fff;
    border-color: var(--espresso);
}

.product-card,
.soft-panel,
.admin-card,
.table-panel {
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(74, 43, 24, .12);
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(27, 15, 8, .06);
}

.product-card {
    height: 100%;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(200, 131, 53, .45);
    box-shadow: 0 24px 60px rgba(27, 15, 8, .14);
}

.product-image {
    position: relative;
    overflow: hidden;
    background: var(--latte);
}

.product-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--latte);
    transition: transform .35s ease;
}

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

.product-image span {
    position: absolute;
    left: .75rem;
    top: .75rem;
    background: rgba(27, 15, 8, .82);
    color: #fff;
    border-radius: 999px;
    padding: .35rem .75rem;
    font-size: .78rem;
    font-weight: 800;
}

.product-card .card-body {
    display: flex;
    flex-direction: column;
}

.price {
    font-weight: 800;
    color: var(--espresso);
}

.steps-panel {
    background: rgba(255, 244, 225, .9);
    border: 1px solid rgba(74, 43, 24, .1);
    border-radius: 8px;
}

.experience-section {
    background:
        linear-gradient(90deg, rgba(255, 244, 225, .82), rgba(251, 247, 240, .98)),
        url('../backgrounds/png/coffee-pattern-light.png');
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.step-card {
    min-height: 190px;
    background: #fff;
    border: 1px solid rgba(74, 43, 24, .12);
    border-radius: 8px;
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 42px rgba(27, 15, 8, .06);
}

.step-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 4px;
    background: linear-gradient(90deg, var(--caramel), var(--green), var(--blue));
}

.step-number {
    position: absolute;
    right: 1rem;
    top: .75rem;
    color: rgba(74, 43, 24, .12);
    font-size: 2.4rem;
    font-weight: 900;
}

.step-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.promo-banner {
    min-height: 170px;
    background-image: linear-gradient(90deg, rgba(27, 15, 8, .88), rgba(74, 43, 24, .35)), url('../backgrounds/png/promo-banner-hero10.png');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    color: #fff;
}

.sugar-option input,
.addon-option input {
    display: none;
}

.sugar-option span,
.addon-option span {
    display: block;
    border: 1px solid rgba(74, 43, 24, .18);
    border-radius: 999px;
    padding: .75rem 1rem;
    background: #fff;
    cursor: pointer;
    font-weight: 700;
}

.sugar-option input:checked + span,
.addon-option input:checked + span {
    background: var(--coffee);
    color: #fff;
    border-color: var(--coffee);
}

.summary-line {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px dashed rgba(74, 43, 24, .18);
    padding: .75rem 0;
}

.status-badge-img {
    max-height: 34px;
    width: auto;
}

.payment-qr {
    max-width: 280px;
    width: 100%;
}

.site-footer {
    padding: 28px 0;
    background: var(--espresso);
    color: rgba(255, 255, 255, .82);
}

.admin-shell {
    min-height: 100vh;
    background: #fbf7f0;
}

.admin-sidebar {
    background-image: linear-gradient(rgba(27, 15, 8, .95), rgba(27, 15, 8, .95)), url('../backgrounds/png/dark-coffee-texture.png');
    background-size: cover;
    color: #fff;
}

.admin-sidebar .logo {
    width: 180px;
}

.admin-link {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: rgba(255, 255, 255, .86);
    text-decoration: none;
    padding: .85rem 1rem;
    border-radius: 8px;
    margin-bottom: .35rem;
}

.admin-link:hover,
.admin-link.active {
    color: #fff;
    background: rgba(200, 131, 53, .78);
}

.admin-link img {
    width: 22px;
    height: 22px;
}

.metric-icon {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.chart-bars {
    display: grid;
    grid-template-columns: repeat(12, minmax(14px, 1fr));
    gap: .55rem;
    align-items: end;
    height: 190px;
    border-bottom: 1px solid rgba(74, 43, 24, .14);
}

.chart-bars span {
    display: block;
    border-radius: 6px 6px 0 0;
    min-height: 8px;
    background: linear-gradient(180deg, var(--gold), var(--mocha));
}

@media (max-width: 991px) {
    .admin-sidebar {
        position: static;
    }

    .hero {
        min-height: 440px;
    }

    .hero-home {
        min-height: auto;
    }

    .min-vh-hero {
        min-height: 560px;
        padding-top: 64px;
    }

    .hero-order-strip {
        margin-left: 0;
    }

    .hero-proof,
    .menu-heading {
        grid-template-columns: repeat(2, 1fr);
        flex-direction: column;
        align-items: stretch;
    }

    .menu-filter {
        justify-content: flex-start;
    }
}

@media (max-width: 575px) {
    .hero-proof,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .hero-proof div {
        border-right: 0;
        border-bottom: 1px solid rgba(74, 43, 24, .12);
    }

    .hero-order-strip {
        flex-direction: column;
        align-items: stretch;
    }
}

.modern-home {
    --modern-ink: #111827;
    --modern-muted: #64748b;
    --modern-line: #e5e7eb;
    --modern-panel: rgba(255, 255, 255, .86);
    --modern-amber: #d97706;
    --modern-amber-soft: #f59e0b;
    --modern-green: #16a34a;
    background: #f8fafc;
    color: var(--modern-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.modern-home .hero-home {
    min-height: calc(100vh - 84px);
    background-image:
        radial-gradient(circle at 20% 18%, rgba(245, 158, 11, .24), transparent 30%),
        linear-gradient(90deg, rgba(15, 23, 42, .92) 0%, rgba(15, 23, 42, .66) 46%, rgba(15, 23, 42, .18) 100%),
        url('../backgrounds/png/hero-banner-coffee.png');
}

.modern-home .hero-home::after {
    height: 220px;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0), #f8fafc 78%);
}

.modern-home .min-vh-hero {
    min-height: calc(100vh - 220px);
}

.modern-home .hero-kicker,
.modern-home .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    width: fit-content;
    border: 1px solid rgba(245, 158, 11, .35);
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    color: #fbbf24;
    padding: .45rem .8rem;
    letter-spacing: .04em;
    text-transform: none;
    backdrop-filter: blur(14px);
}

.modern-home .section-eyebrow {
    background: #fff7ed;
    color: #b45309;
    border-color: #fed7aa;
}

.modern-home .hero h1,
.modern-home .section-title {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    letter-spacing: 0;
}

.modern-home .hero h1 {
    max-width: 780px;
    font-size: clamp(3.4rem, 8vw, 7rem);
    font-weight: 900;
    line-height: .9;
}

.modern-home .hero h1 span,
.modern-home .section-title span {
    color: #f59e0b;
}

.modern-home .hero p {
    color: rgba(255, 255, 255, .78);
    font-size: 1.18rem;
}

.modern-home .btn-hero {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border: 0;
    border-radius: 8px;
    box-shadow: 0 18px 32px rgba(217, 119, 6, .28);
}

.modern-home .btn-light {
    border: 1px solid rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .14);
    color: #fff;
    border-radius: 8px;
    backdrop-filter: blur(14px);
}

.modern-home .btn-outline-hero {
    border-radius: 8px;
    border-color: #cbd5e1;
    color: #334155;
}

.modern-home .hero-order-strip,
.modern-home .hero-proof {
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .24);
    color: #fff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .35);
}

.modern-home .hero-order-strip span,
.modern-home .hero-proof span {
    color: rgba(255, 255, 255, .66);
}

.modern-home .hero-proof strong {
    color: #fff;
}

.modern-home .hero-proof div {
    border-right-color: rgba(255, 255, 255, .16);
}

.modern-home .menu-section,
.modern-home .experience-section {
    background:
        radial-gradient(circle at 12% 10%, rgba(245, 158, 11, .14), transparent 28%),
        radial-gradient(circle at 88% 20%, rgba(22, 163, 74, .12), transparent 26%),
        #f8fafc;
}

.modern-home .section-title {
    color: var(--modern-ink);
    font-weight: 900;
    font-size: clamp(2.35rem, 5vw, 4.75rem);
    line-height: .95;
}

.modern-home .text-muted {
    color: var(--modern-muted) !important;
}

.modern-home .menu-heading {
    padding: 1.25rem;
    background: rgba(255, 255, 255, .7);
    border: 1px solid rgba(226, 232, 240, .85);
    border-radius: 8px;
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 55px rgba(15, 23, 42, .06);
}

.modern-home .menu-filter button {
    background: #fff;
    border-color: #e2e8f0;
    color: #475569;
    box-shadow: 0 8px 22px rgba(15, 23, 42, .04);
}

.modern-home .menu-filter button.active,
.modern-home .menu-filter button:hover {
    background: #111827;
    border-color: #111827;
    color: #fff;
}

.modern-home .product-card,
.modern-home .step-card,
.modern-home .promo-banner {
    border-radius: 8px;
}

.modern-home .product-card {
    background: #fff;
    border: 1px solid var(--modern-line);
    box-shadow: 0 16px 40px rgba(15, 23, 42, .06);
}

.modern-home .product-card:hover {
    border-color: rgba(245, 158, 11, .55);
    box-shadow: 0 24px 64px rgba(15, 23, 42, .12);
}

.modern-home .product-image {
    background: #f1f5f9;
}

.modern-home .product-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, .12));
    pointer-events: none;
}

.modern-home .product-image span {
    background: rgba(255, 255, 255, .88);
    color: #111827;
    border: 1px solid rgba(226, 232, 240, .85);
    backdrop-filter: blur(10px);
}

.modern-home .product-card h3 {
    color: #111827;
    font-weight: 800;
}

.modern-home .price {
    color: #111827;
    font-weight: 900;
}

.modern-home .promo-banner {
    background-image:
        linear-gradient(100deg, rgba(17, 24, 39, .92), rgba(17, 24, 39, .68)),
        url('../backgrounds/png/promo-banner-hero10.png');
    box-shadow: 0 24px 70px rgba(15, 23, 42, .18);
}

.modern-home .steps-grid {
    gap: 1.25rem;
}

.modern-home .step-card {
    background: rgba(255, 255, 255, .86);
    border-color: rgba(226, 232, 240, .9);
    backdrop-filter: blur(18px);
}

.modern-home .step-card::after {
    background: linear-gradient(90deg, #f59e0b, #16a34a, #0ea5e9);
}

.modern-home .step-number {
    color: rgba(15, 23, 42, .08);
}

.modern-home .step-icon {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: .55rem;
}

@media (max-width: 991px) {
    .modern-home .hero h1 {
        font-size: clamp(3rem, 13vw, 5.5rem);
    }

    .modern-home .menu-heading {
        padding: 1rem;
    }
}

body {
    background: #fbf7f0;
}

.site-nav {
    min-height: 104px;
    background: rgba(17, 8, 3, .98);
    border-bottom: 1px solid rgba(227, 169, 75, .45);
    box-shadow: none;
}

.navbar-brand img {
    height: 72px;
}

.site-nav .nav-link {
    color: rgba(255, 255, 255, .9);
    font-weight: 700;
    padding: 1rem .2rem;
    position: relative;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
    color: #fff;
}

.site-nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: .2rem;
    right: .2rem;
    bottom: .5rem;
    height: 2px;
    background: #e3a94b;
}

.cart-link {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
}

.cart-link img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.cart-link span {
    position: absolute;
    top: 0;
    right: 0;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #d18b28;
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
}

.prototype-hero {
    min-height: 524px;
    background-image:
        linear-gradient(90deg, rgba(12, 6, 3, .88) 0%, rgba(12, 6, 3, .62) 40%, rgba(12, 6, 3, .1) 100%),
        var(--home-hero-image, url('../backgrounds/png/hero-banner-coffee.png'));
    background-size: cover;
    background-position: center;
    color: #fff;
}

.prototype-hero-row {
    min-height: 524px;
}

.prototype-hero h1 {
    max-width: 600px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.45rem, 6.5vw, 5.45rem);
    font-weight: 800;
    line-height: .96;
    letter-spacing: 0;
}

.prototype-hero h1 span {
    color: #e3a94b;
}

.prototype-hero p {
    max-width: 470px;
    color: #fff;
    font-size: 1.18rem;
    line-height: 1.65;
}

.prototype-hero .btn-hero,
.prototype-product .btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    min-height: 48px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, #e3a94b, #c88335);
    box-shadow: none;
    color: #fff;
    font-weight: 800;
}

.prototype-hero .btn-hero img,
.prototype-product .btn-hero img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.prototype-menu {
    background:
        radial-gradient(circle at 50% 0%, rgba(246, 225, 195, .6), transparent 34%),
        #fbf7f0;
    padding-top: 34px;
}

.prototype-menu .section-title {
    color: #21130c;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.35rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: 0;
}

.title-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    margin: .45rem 0 .8rem;
}

.title-mark span {
    width: 34px;
    height: 2px;
    background: #d18b28;
}

.title-mark img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.prototype-menu .menu-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1.6rem;
}

.prototype-menu .menu-filter button {
    min-width: 132px;
    min-height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(74, 43, 24, .15);
    background: rgba(255, 255, 255, .64);
    color: #3b2a20;
    box-shadow: none;
    font-weight: 600;
}

.prototype-menu .menu-filter button.active,
.prototype-menu .menu-filter button:hover {
    background: #1b0f08;
    border-color: #1b0f08;
    color: #fff;
}

.prototype-product {
    height: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(74, 43, 24, .13);
    border-radius: 8px;
    box-shadow: none;
    transition: transform .18s ease, box-shadow .18s ease;
}

.prototype-product:hover {
    transform: translateY(-3px);
    border-color: rgba(74, 43, 24, .2);
    box-shadow: 0 18px 38px rgba(27, 15, 8, .08);
}

.prototype-product > img {
    width: 100%;
    aspect-ratio: 1.55 / 1;
    object-fit: cover;
    display: block;
}

.prototype-product h3 {
    color: #24150e;
    font-size: 1.18rem;
    font-weight: 800;
}

.prototype-product p {
    line-height: 1.34;
}

.prototype-product .price {
    color: #1b0f08;
    font-size: 1.05rem;
    font-weight: 900;
}

.prototype-product .btn-hero {
    min-height: 42px;
    padding: .45rem .75rem;
}

.prototype-product .btn-hero img {
    width: 17px;
    height: 17px;
}

.prototype-steps {
    background: rgba(255, 244, 225, .72);
    border: 1px solid rgba(74, 43, 24, .08);
    border-radius: 8px;
}

.prototype-steps .step-inline {
    border-right: 1px solid rgba(74, 43, 24, .14);
    min-height: 96px;
}

.prototype-steps .step-inline:last-child {
    border-right: 0;
}

.prototype-steps .step-icon {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

@media (max-width: 991px) {
    .site-nav {
        min-height: auto;
    }

    .navbar-brand img {
        height: 60px;
    }

    .prototype-hero,
    .prototype-hero-row {
        min-height: 460px;
    }

    .prototype-steps .step-inline {
        border-right: 0;
    }
}

@media (max-width: 575px) {
    .prototype-hero h1 {
        font-size: 3.35rem;
    }

    .prototype-menu .menu-filter {
        gap: .75rem;
    }

    .prototype-menu .menu-filter button {
        flex: 1 1 42%;
        min-width: 0;
    }
}

body {
    background: #f7f3ec;
    color: #17110d;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.site-nav {
    min-height: 88px;
    background: rgba(18, 10, 5, .96);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px);
}

.navbar-brand img {
    height: 62px;
}

.site-nav .nav-link {
    color: rgba(255, 255, 255, .76);
    font-size: .94rem;
    font-weight: 700;
    padding: .75rem .35rem;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
    color: #fff;
}

.site-nav .nav-link.active::after {
    display: none;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: .65rem 1.1rem;
    border-radius: 8px;
    background: #d8913d;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

.nav-cta:hover {
    background: #b86f22;
    color: #fff;
}

.pro-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 78px;
    background:
        linear-gradient(90deg, rgba(18, 10, 5, .96) 0%, rgba(18, 10, 5, .78) 48%, rgba(18, 10, 5, .32) 100%),
        url('../backgrounds/png/hero-banner-coffee.png') center / cover no-repeat;
    color: #fff;
}

.pro-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(247, 243, 236, 0), #f7f3ec);
    pointer-events: none;
}

.pro-hero .container {
    position: relative;
    z-index: 1;
}

.pro-eyebrow {
    margin: 0 0 .85rem;
    color: #d8913d;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.pro-hero h1 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: clamp(3.3rem, 7vw, 6.4rem);
    font-weight: 900;
    line-height: .94;
    letter-spacing: 0;
}

.pro-lead {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 1.16rem;
    line-height: 1.75;
}

.btn-pro-primary,
.btn-pro-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: 8px;
    padding: .75rem 1.25rem;
    font-weight: 850;
    text-decoration: none;
}

.btn-pro-primary {
    border: 1px solid #d8913d;
    background: #d8913d;
    color: #fff;
    box-shadow: 0 20px 44px rgba(216, 145, 61, .22);
}

.btn-pro-primary:hover {
    border-color: #b86f22;
    background: #b86f22;
    color: #fff;
}

.btn-pro-secondary {
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    backdrop-filter: blur(12px);
}

.btn-pro-secondary:hover {
    background: rgba(255, 255, 255, .16);
    color: #fff;
}

.pro-hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
    max-width: 620px;
    margin-top: 34px;
}

.pro-hero-metrics div {
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    padding: .95rem 1rem;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
}

.pro-hero-metrics strong,
.pro-hero-metrics span {
    display: block;
}

.pro-hero-metrics strong {
    color: #fff;
    font-size: 1.35rem;
    line-height: 1;
}

.pro-hero-metrics span {
    margin-top: .35rem;
    color: rgba(255, 255, 255, .66);
    font-size: .86rem;
    font-weight: 700;
}

.pro-featured-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background: rgba(255, 255, 255, .92);
    color: #17110d;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .26);
}

.pro-card-label {
    position: absolute;
    z-index: 2;
    margin: 1rem;
    border-radius: 999px;
    background: rgba(18, 10, 5, .86);
    color: #fff;
    padding: .42rem .8rem;
    font-size: .78rem;
    font-weight: 850;
}

.pro-featured-card img {
    width: 100%;
    aspect-ratio: 1.35 / 1;
    object-fit: cover;
    display: block;
}

.pro-featured-card h2 {
    margin: 0;
    font-size: 1.45rem;
    font-weight: 900;
}

.pro-featured-card p {
    margin: .35rem 0 0;
    color: #6f6258;
}

.pro-featured-card strong {
    color: #17110d;
    white-space: nowrap;
}

.pro-menu-section,
.pro-process-section,
.pro-about-section {
    padding: 76px 0;
    background: #f7f3ec;
}

.pro-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 32px;
}

.pro-section-head.compact {
    align-items: center;
}

.pro-section-head h2,
.pro-about-panel h2 {
    margin: 0;
    color: #17110d;
    font-size: clamp(2.1rem, 4vw, 3.7rem);
    font-weight: 950;
    line-height: 1;
    letter-spacing: 0;
}

.pro-section-head p,
.pro-about-panel p {
    max-width: 560px;
    margin: .8rem 0 0;
    color: #6f6258;
    font-size: 1rem;
    line-height: 1.7;
}

.pro-menu-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: .7rem;
}

.pro-menu-filter button {
    min-height: 42px;
    border: 1px solid #ded3c5;
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    color: #4b3a2f;
    padding: .55rem 1rem;
    font-weight: 850;
}

.pro-menu-filter button.active,
.pro-menu-filter button:hover {
    border-color: #17110d;
    background: #17110d;
    color: #fff;
}

.pro-product-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid #e3d8cc;
    border-radius: 8px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 18px 48px rgba(42, 27, 17, .07);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.pro-product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(216, 145, 61, .5);
    box-shadow: 0 26px 64px rgba(42, 27, 17, .12);
}

.pro-product-media {
    position: relative;
    background: #eadfce;
}

.pro-product-media img {
    width: 100%;
    aspect-ratio: 1.45 / 1;
    object-fit: cover;
    display: block;
}

.pro-product-media span {
    position: absolute;
    left: .85rem;
    top: .85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .88);
    color: #2a1b11;
    padding: .34rem .72rem;
    font-size: .76rem;
    font-weight: 850;
    backdrop-filter: blur(10px);
}

.pro-product-body {
    display: flex;
    min-height: 202px;
    flex-direction: column;
    padding: 1rem;
}

.pro-product-body h3 {
    margin: 0;
    color: #17110d;
    font-size: 1.12rem;
    font-weight: 900;
}

.pro-product-body p {
    margin: .45rem 0 1rem;
    color: #6f6258;
    font-size: .93rem;
    line-height: 1.45;
}

.pro-product-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
    margin-top: auto;
}

.pro-product-action strong {
    color: #17110d;
    font-size: 1.05rem;
    font-weight: 950;
}

.pro-product-action a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border-radius: 8px;
    background: #d8913d;
    color: #fff;
    padding: .45rem .8rem;
    font-size: .88rem;
    font-weight: 850;
    text-decoration: none;
    white-space: nowrap;
}

.pro-product-action a:hover {
    background: #b86f22;
}

.pro-promo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 42px;
    border-radius: 8px;
    padding: 2rem;
    background:
        linear-gradient(90deg, rgba(18, 10, 5, .92), rgba(18, 10, 5, .58)),
        url('../backgrounds/png/promo-banner-hero10.png') center / cover no-repeat;
    color: #fff;
}

.pro-promo span {
    color: #e9b86a;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .76rem;
}

.pro-promo h2 {
    max-width: 720px;
    margin: .45rem 0;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 950;
    line-height: 1;
}

.pro-promo p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
}

.pro-step-card {
    height: 100%;
    border: 1px solid #e3d8cc;
    border-radius: 8px;
    background: rgba(255, 255, 255, .82);
    padding: 1.25rem;
    box-shadow: 0 18px 48px rgba(42, 27, 17, .06);
}

.pro-step-card span {
    display: block;
    color: #d8913d;
    font-size: .82rem;
    font-weight: 950;
    letter-spacing: .12em;
}

.pro-step-card img {
    width: 46px;
    height: 46px;
    margin: 1rem 0;
    object-fit: contain;
}

.pro-step-card h3 {
    margin: 0 0 .45rem;
    color: #17110d;
    font-size: 1.05rem;
    font-weight: 900;
}

.pro-step-card p {
    margin: 0;
    color: #6f6258;
    line-height: 1.55;
}

.pro-about-section {
    padding-top: 0;
}

.pro-about-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    border: 1px solid #e3d8cc;
    border-radius: 8px;
    padding: 2rem;
    background: #fff;
}

@media (max-width: 991px) {
    .site-nav {
        min-height: auto;
    }

    .pro-hero {
        padding: 70px 0 64px;
    }

    .pro-section-head,
    .pro-section-head.compact,
    .pro-promo,
    .pro-about-panel {
        flex-direction: column;
        align-items: stretch;
    }

    .pro-menu-filter {
        justify-content: flex-start;
    }
}

@media (max-width: 575px) {
    .pro-hero h1 {
        font-size: 3.15rem;
    }

    .pro-hero-metrics {
        grid-template-columns: 1fr;
    }

    .pro-menu-filter button {
        flex: 1 1 42%;
    }
}

body {
    background: #fbf7f0;
    color: #24150e;
    font-family: Arial, Helvetica, sans-serif;
}

.site-nav {
    min-height: 104px;
    background: rgba(17, 8, 3, .98);
    border-bottom: 1px solid rgba(227, 169, 75, .45);
    box-shadow: none;
    backdrop-filter: none;
}

.navbar-brand img {
    height: 72px;
}

.site-nav .nav-link {
    color: rgba(255, 255, 255, .9);
    font-size: 1rem;
    font-weight: 700;
    padding: 1rem .2rem;
    position: relative;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
    color: #fff;
}

.site-nav .nav-link.active::after {
    display: block;
    content: "";
    position: absolute;
    left: .2rem;
    right: .2rem;
    bottom: .5rem;
    height: 2px;
    background: #e3a94b;
}

.cart-link {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
}

.cart-link img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.cart-link span {
    position: absolute;
    top: 0;
    right: 0;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #d18b28;
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
}

.prototype-hero {
    min-height: 524px;
    background-image:
        linear-gradient(90deg, rgba(12, 6, 3, .88) 0%, rgba(12, 6, 3, .62) 40%, rgba(12, 6, 3, .1) 100%),
        var(--home-hero-image, url('../backgrounds/png/hero-banner-coffee.png'));
    background-size: cover;
    background-position: center;
    color: #fff;
}

.prototype-hero::after {
    display: none;
}

.prototype-hero-row {
    min-height: 524px;
}

.prototype-hero h1 {
    max-width: 600px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.45rem, 6.5vw, 5.45rem);
    font-weight: 800;
    line-height: .96;
    letter-spacing: 0;
}

.prototype-hero h1 span {
    color: #e3a94b;
}

.prototype-hero p {
    max-width: 470px;
    color: #fff;
    font-size: 1.18rem;
    line-height: 1.65;
}

.prototype-hero .btn-hero,
.prototype-product .btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    min-height: 48px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, #e3a94b, #c88335);
    box-shadow: none;
    color: #fff;
    font-weight: 800;
}

.prototype-hero .btn-hero img,
.prototype-product .btn-hero img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.prototype-menu {
    background:
        radial-gradient(circle at 50% 0%, rgba(246, 225, 195, .6), transparent 34%),
        #fbf7f0;
    padding-top: 34px;
}

.prototype-menu .section-title {
    color: #21130c;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.35rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: 0;
}

.prototype-menu .menu-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1.6rem;
}

.prototype-menu .menu-filter button {
    min-width: 132px;
    min-height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(74, 43, 24, .15);
    background: rgba(255, 255, 255, .64);
    color: #3b2a20;
    box-shadow: none;
    font-weight: 600;
}

.prototype-menu .menu-filter button.active,
.prototype-menu .menu-filter button:hover {
    background: #1b0f08;
    border-color: #1b0f08;
    color: #fff;
}

.prototype-product {
    height: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(74, 43, 24, .13);
    border-radius: 8px;
    box-shadow: none;
    transition: transform .18s ease, box-shadow .18s ease;
}

.prototype-product:hover {
    transform: translateY(-3px);
    border-color: rgba(74, 43, 24, .2);
    box-shadow: 0 18px 38px rgba(27, 15, 8, .08);
}

.prototype-product > img {
    width: 100%;
    aspect-ratio: 1.55 / 1;
    object-fit: cover;
    display: block;
}

.prototype-product h3 {
    color: #24150e;
    font-size: 1.18rem;
    font-weight: 800;
}

.prototype-product p {
    line-height: 1.34;
}

.prototype-product .price {
    color: #1b0f08;
    font-size: 1.05rem;
    font-weight: 900;
}

.prototype-product .btn-hero {
    min-height: 42px;
    padding: .45rem .75rem;
}

.prototype-product .btn-hero img {
    width: 17px;
    height: 17px;
}

.prototype-steps {
    background: rgba(255, 244, 225, .72);
    border: 1px solid rgba(74, 43, 24, .08);
    border-radius: 8px;
}

.prototype-steps .step-inline {
    border-right: 1px solid rgba(74, 43, 24, .14);
    min-height: 96px;
}

.prototype-steps .step-inline:last-child {
    border-right: 0;
}

.prototype-steps .step-icon {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

@media (max-width: 991px) {
    .site-nav {
        min-height: auto;
    }

    .navbar-brand img {
        height: 60px;
    }

    .prototype-hero,
    .prototype-hero-row {
        min-height: 460px;
    }

    .prototype-steps .step-inline {
        border-right: 0;
    }
}

@media (max-width: 575px) {
    .prototype-hero h1 {
        font-size: 3.35rem;
    }

    .prototype-menu .menu-filter {
        gap: .75rem;
    }

    .prototype-menu .menu-filter button {
        flex: 1 1 42%;
        min-width: 0;
    }
}
