:root {
    --ink: #123026;
    --muted: #64756d;
    --paper: #f8fff8;
    --line: #d8eadc;
    --primary: #198754;
    --primary-dark: #0f6b42;
    --charcoal: #10251d;
    --card: #ffffff;
}

:root.dark {
    --ink: #eefbf2;
    --muted: #9bb7a7;
    --paper: #06120d;
    --line: #173d2b;
    --primary: #22c55e;
    --primary-dark: #8ff0b2;
    --charcoal: #020805;
    --card: #0c1b13;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(90deg, rgba(25, 135, 84, 0.09), transparent 18%, transparent 82%, rgba(25, 135, 84, 0.09)),
        var(--paper);
    font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(25, 135, 84, 0.1);
}

input, textarea, select {
    -webkit-user-select: text;
    user-select: text;
}

button, .action, .social-btn {
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
}

.hero {
    position: relative;
    width: min(1220px, calc(100% - 28px));
    height: clamp(260px, 27vw, 360px);
    min-height: 0;
    margin: 22px auto 0;
    overflow: hidden;
    border-radius: 18px;
    background: var(--charcoal);
    box-shadow: 0 22px 45px rgba(16, 37, 29, 0.18);
}

.hero__image {
    width: 100%;
    height: 100%;
    min-height: 0;
    display: block;
    object-fit: cover;
    object-position: center;
}

.hero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.12) 45%, rgba(0, 0, 0, 0.48));
}

.hero__brand {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.brand-logo {
    width: clamp(72px, 10vw, 120px);
    height: clamp(72px, 10vw, 120px);
    justify-self: center;
    margin-bottom: 12px;
    object-fit: contain;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px;
}

.hero__brand strong {
    max-width: 920px;
    padding-inline: 18px;
    font-size: clamp(2rem, 5vw, 4.2rem);
    line-height: 1;
    letter-spacing: 0;
    font-weight: 900;
}

.hero__brand span:last-child {
    font-size: clamp(1rem, 3vw, 2rem);
    font-weight: 800;
}

.page-shell {
    width: min(1220px, calc(100% - 28px));
    margin: 22px auto 42px;
    position: relative;
    z-index: 2;
}

.intro,
.menu-board,
.order-note,
.review-card {
    background: var(--paper);
}

.intro {
    display: grid;
    grid-template-columns: 190px 1fr auto;
    align-items: center;
    gap: 30px;
    padding: 22px clamp(18px, 4vw, 48px);
    border-bottom: 1px solid var(--line);
}

.guru-wrap {
    display: grid;
    justify-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 0.75rem;
}

.actions {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) repeat(2, minmax(128px, 160px));
    gap: 16px;
    align-items: stretch;
}

.action {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 18px;
    border: 2px solid var(--line);
    border-radius: 8px;
    background: var(--card);
    font-weight: 800;
    text-align: center;
}

.action--primary {
    color: #fff;
    border: 0;
    background: linear-gradient(180deg, #27b36c, var(--primary));
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    text-transform: uppercase;
    box-shadow: 0 12px 24px rgba(25, 135, 84, 0.24);
}

.action i {
    font-size: 1.45rem;
}

.action--primary i {
    font-size: 2rem;
}

.social-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-btn,
.theme-toggle {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    color: #fff;
    border: 0;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(38, 30, 22, 0.13);
    transition: transform 0.18s ease, filter 0.18s ease;
}

.social-btn:active,
.theme-toggle:active {
    transform: scale(0.95);
}

.social-btn--phone {
    background: var(--primary);
}

.social-btn--whatsapp {
    background: #25d366;
}

.social-btn--instagram {
    background: linear-gradient(135deg, #16a34a, #0f766e);
}

.theme-toggle {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.82);
    border-radius: 14px;
    cursor: pointer;
}

:root.dark .theme-toggle {
    background: rgba(24, 24, 27, 0.86);
    color: #f4f4f5;
}

.featured-products {
    padding: 26px clamp(18px, 4vw, 48px) 30px;
    background: var(--paper);
    border-top: 1px solid var(--line);
}

.section-title {
    margin-bottom: 16px;
}

.section-title span {
    color: var(--primary-dark);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
}

.section-title h2 {
    margin: 2px 0 0;
    font-size: clamp(1.35rem, 3vw, 2rem);
}

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

.featured-card {
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(18, 48, 38, 0.08);
}

.featured-card img {
    width: 100%;
    aspect-ratio: 1.45;
    display: block;
    object-fit: cover;
}

.featured-card div {
    padding: 14px;
}

.featured-card h3 {
    margin: 0 0 6px;
    font-size: 1.05rem;
}

.featured-card p {
    min-height: 2.4em;
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 0.92rem;
}

.featured-card strong {
    color: var(--primary-dark);
    font-size: 1.05rem;
}

.menu-board {
    display: grid;
    gap: 12px;
    padding: 34px clamp(18px, 4vw, 48px) 44px;
    border-top: 1px solid var(--line);
}

.menu-accordion {
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(18, 48, 38, 0.06);
}

.menu-accordion summary {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 14px;
    min-height: 66px;
    padding: 18px 20px;
    cursor: pointer;
    list-style: none;
}

.menu-accordion summary::-webkit-details-marker {
    display: none;
}

.menu-accordion summary span {
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
    font-weight: 950;
    text-transform: uppercase;
}

.menu-accordion summary em {
    min-width: max-content;
    padding: 8px 12px;
    color: #fff;
    background: var(--primary);
    border-radius: 999px;
    font-style: normal;
    font-weight: 900;
}

.menu-items {
    padding: 0 20px 14px;
    border-top: 1px solid var(--line);
}

.menu-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.menu-item h3 {
    margin: 0 0 4px;
    font-size: 1.08rem;
}

.menu-item p {
    margin: 0;
    color: var(--muted);
}

.menu-item strong {
    white-space: nowrap;
}

.order-note,
.review-card {
    width: min(1024px, 100%);
    margin: 24px auto 0;
    border-radius: 24px;
    padding: 20px;
    color: #fff;
    box-shadow: 0 10px 22px rgba(40, 31, 24, 0.08);
}

.order-note {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
    background: var(--primary);
    text-align: left;
}

.order-note > div:first-child {
    flex: 1;
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    align-items: center;
    gap: 14px;
}

.note-icon {
    min-height: 50px;
    display: grid;
    justify-content: start;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 700;
}

.note-icon img {
    display: block;
}

.order-note h2,
.order-note p {
    grid-column: 2;
    text-align: center;
}

.order-note h2,
.review-card h3 {
    margin: 4px 0 6px;
    font-size: 1.15rem;
}

.order-note p,
.review-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.95rem;
}

.mug-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 1.25rem;
}

.review-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
}

.review-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 16px;
    color: #2563eb;
    background: #fff;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 800;
    white-space: nowrap;
}

.site-footer {
    width: min(1220px, calc(100% - 28px));
    margin: 0 auto 32px;
    color: var(--muted);
    text-align: center;
    font-size: 0.92rem;
}

.site-footer a {
    color: var(--primary-dark);
    font-weight: 900;
}

@media (max-width: 920px) {
    .page-shell {
        width: min(560px, calc(100% - 22px));
        margin-top: 18px;
    }

    .intro {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 18px;
        padding-top: 10px;
    }

    .actions {
        width: 100%;
        grid-template-columns: 1fr 1fr;
    }

    .action--primary {
        grid-column: 1 / -1;
    }

    .social-actions {
        justify-content: center;
    }

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

@media (max-width: 560px) {
    .hero,
    .hero__image {
        height: 260px;
    }

    .hero__brand strong {
        font-size: 2rem;
    }

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

    .review-card {
        align-items: stretch;
        flex-direction: column;
    }

    .review-card a {
        width: 100%;
        justify-content: center;
    }

    .mug-icon {
        display: none;
    }
}
