:root {
    --brown: #46291c;
    --cream: #fff8e9;
    --yellow: #fee400;
    --orange: #ff914d;
    --green: #abd79e;
    --ink: #25130c;
    --line: rgba(70, 41, 28, .18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--brown);
    font-family: "Playpen Sans", sans-serif;
    font-size: 16px;
    line-height: 1.55;
}

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

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

button {
    font: inherit;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.section-shell {
    max-width: 1180px;
    margin: auto;
    padding-left: 32px;
    padding-right: 32px;
}

.site-header {
    max-width: 1180px;
    height: 94px;
    margin: auto;
    padding: 10px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.brand img {
    width: 90px;
    height: 52px;
    object-fit: contain;
}

.brand-text {
    font-family: "Finger Paint", cursive;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--brown);
    white-space: nowrap;
    letter-spacing: -0.5px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: .92rem;
    font-weight: 700;
}

.site-nav>a:not(.button):hover,
.text-link:hover {
    color: #b85e2b;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--yellow);
    color: var(--brown);
    border: 2px solid var(--brown);
    border-radius: 999px;
    padding: 13px 21px;
    font-weight: 800;
    box-shadow: 3px 3px 0 var(--brown);
    transition: transform .2s, box-shadow .2s;
}

.button:hover {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0 var(--brown);
}

.button-small {
    padding: 9px 14px;
    font-size: .8rem;
}

.menu-toggle {
    display: none;
}

.hero {
    min-height: 590px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 40px;
    align-items: center;
    padding-top: 45px;
    padding-bottom: 60px;
    overflow: hidden;
}

.eyebrow {
    color: #c85c24;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .73rem;
    margin: 0 0 10px;
}

.hero-veg-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: #edf7ee;
    color: #1b5e20;
    border: 1px solid #2e7d32;
    border-radius: 999px;
    padding: 1.5px 6px;
    font-size: 0.56rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1;
}

.veg-symbol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 9px;
    height: 9px;
    border: 1px solid #2e7d32;
    padding: 0;
    border-radius: 2px;
    box-sizing: border-box;
}

.veg-dot {
    width: 4px;
    height: 4px;
    background: #2e7d32;
    border-radius: 50%;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2 {
    font-family: "Finger Paint", cursive;
    font-weight: 400;
    letter-spacing: -.04em;
    line-height: 1.08;
}

h1 {
    font-size: clamp(3.2rem, 7vw, 6rem);
    max-width: 600px;
    margin-bottom: 22px;
}

h1 em,
h2 em {
    color: #d85f2c;
    font-style: normal;
}

.hero-text {
    max-width: 500px;
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 30px 0;
}

.text-link {
    font-weight: 800;
    border-bottom: 2px solid var(--brown);
    padding-bottom: 2px;
}

.trust-list {
    display: flex;
    gap: 18px;
    padding: 0;
    list-style: none;
    font-size: .76rem;
    font-weight: 700;
}

.trust-list li:before {
    content: "✦";
    color: #d85f2c;
    margin-right: 5px;
}

.hero-art {
    min-height: 480px;
    position: relative;
    display: grid;
    place-items: center;
}

.hero-art img {
    width: 440px;
    max-height: 470px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(18px 22px 15px rgba(70, 41, 28, .16));
    transform: rotate(-7deg);
}

.sun {
    position: absolute;
    border-radius: 50%;
}

.sun-one {
    height: 390px;
    width: 390px;
    background: var(--yellow);
    top: 25px;
    right: 14px;
}

.sun-two {
    height: 115px;
    width: 115px;
    background: var(--green);
    left: 20px;
    bottom: 30px;
}

.hero-sticker {
    position: absolute;
    z-index: 3;
    right: 2px;
    bottom: 50px;
    background: var(--orange);
    border: 2px solid var(--brown);
    padding: 15px 18px;
    border-radius: 50%;
    width: 124px;
    height: 124px;
    display: grid;
    place-content: center;
    text-align: center;
    font-family: "Finger Paint", cursive;
    font-size: .8rem;
    transform: rotate(11deg);
    box-shadow: 3px 4px 0 var(--brown);
}

.announcement {
    background: var(--brown);
    color: var(--cream);
    min-height: 58px;
    padding: 16px 32px;
    text-align: center;
    font-size: .86rem;
    font-weight: 600;
}

.announcement span {
    color: var(--yellow);
    font-weight: 800;
}

.announcement b {
    color: var(--orange);
    padding: 0 10px;
}

.menu-section {
    padding-top: 55px;
    padding-bottom: 55px;
}

.section-heading {
    max-width: 600px;
}

.section-heading h2,
.about-section h2,
.contact-section h2 {
    font-size: clamp(2.3rem, 5vw, 4.1rem);
    margin-bottom: 13px;
}

.section-heading>p:last-child {
    max-width: 520px;
}

.menu-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 38px 0 28px;
}

.menu-filters button {
    border: 1.5px solid var(--brown);
    color: var(--brown);
    background: transparent;
    border-radius: 999px;
    padding: 8px 15px;
    cursor: pointer;
    font-size: .8rem;
    font-weight: 700;
}

.menu-filters button.active,
.menu-filters button:hover {
    background: var(--brown);
    color: var(--cream);
}

.tab-badge {
    background: var(--yellow);
    color: var(--brown);
    font-size: 0.62rem;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 999px;
    margin-left: 5px;
    border: 1px solid var(--brown);
    display: inline-block;
    vertical-align: middle;
    line-height: 1.2;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.menu-card {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    background: #fffdf6;
    border: 1.5px solid var(--brown);
    border-radius: 17px;
    overflow: hidden;
    transition: transform .2s;
}

/* The filter script uses the hidden attribute; this must override the card layout rule. */
.menu-card[hidden] {
    display: none;
}

.menu-card {
    min-height: 420px;
    display: flex;
    flex-direction: column;
    background: #fffdf6;
    border: 1.5px solid var(--brown);
    border-radius: 17px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(70, 41, 28, 0.12);
}

.menu-card img {
    height: 235px;
    width: 100%;
    object-fit: contain;
    object-position: center;
    background: #f9eebf;
    padding: 8px 12px;
    transform: scale(1.12);
}

.product-placeholder {
    min-height: 235px;
    display: grid;
    place-items: center;
    padding: 16px;
    background: repeating-linear-gradient(-45deg, #f8e8b9, #f8e8b9 12px, #f3d88e 12px, #f3d88e 24px);
    color: var(--brown);
    text-align: center;
    font-family: "Finger Paint", cursive;
    font-size: 1.05rem;
    line-height: 1.4;
}

.featured-card img {
    background: var(--yellow);
}

.mocktail-card img {
    background: var(--green);
    object-fit: contain;
    transform: scale(1.15);
}

.mocktail-card .product-placeholder {
    background: repeating-linear-gradient(-45deg, #cfe7c7, #cfe7c7 12px, #abd79e 12px, #abd79e 24px);
}

.card-content {
    padding: 19px;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.card-tag {
    background: var(--orange);
    width: max-content;
    font-size: .65rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 3px 7px;
    border-radius: 4px;
}

.card-content h3 {
    font-family: "Finger Paint", cursive;
    font-size: 1.3rem;
    font-weight: 400;
    margin: 7px 0 6px;
}

.card-content p {
    font-size: .78rem;
    margin-bottom: 17px;
}

.card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    margin-top: auto;
}

.card-bottom strong {
    font-size: 1.04rem;
}

.card-bottom button {
    padding: 0;
    background: none;
    color: var(--brown);
    border: 0;
    cursor: pointer;
    font-weight: 800;
    font-size: .74rem;
}

.card-bottom button span {
    display: inline-grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border: 1px solid var(--brown);
    border-radius: 50%;
    margin-left: 3px;
}

.full-menu {
    margin-top: 45px;
    border-top: 2px solid var(--line);
    border-bottom: 2px solid var(--line);
    background: rgba(255, 253, 246, 0.4);
    border-radius: 16px;
    padding: 0 24px;
}

.full-menu summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--brown);
}

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

.full-menu[open] summary {
    border-bottom: 1.5px dashed var(--line);
}

.full-menu[open] summary span {
    transform: rotate(45deg);
}

.full-menu-wrapper {
    padding: 28px 0 36px 0;
}

.full-menu-category-header {
    margin-bottom: 20px;
}

.full-menu-category-header h2 {
    font-family: "Finger Paint", cursive;
    font-size: 1.8rem;
    color: var(--brown);
    margin: 4px 0 0 0;
}

.full-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 24px;
}

.full-menu-group {
    background: #fffdf6;
    border: 1.5px solid var(--brown);
    border-radius: 14px;
    padding: 20px;
    box-shadow: 3px 3px 0 var(--brown);
}

.group-title {
    font-family: "Finger Paint", cursive;
    font-weight: 400;
    font-size: 1.1rem;
    color: #c85c24;
    margin: 0 0 14px 0;
    padding-bottom: 8px;
    border-bottom: 1.5px solid var(--line);
}

.group-title-sub {
    margin-top: 22px;
}

.full-menu-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.full-menu-group li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 9px 0;
    font-size: 0.86rem;
    font-weight: 600;
    border-bottom: 1px dashed var(--line);
    color: var(--brown);
}

.full-menu-group li:last-child {
    border-bottom: none;
}

.full-menu-group li b {
    color: #c85c24;
    font-weight: 800;
}

.tag-inline {
    background: var(--yellow);
    color: var(--brown);
    font-size: 0.62rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
    border: 1px solid var(--brown);
}

.full-menu-addons {
    background: #fff8e5;
    border: 1.5px solid var(--brown);
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 36px;
    box-shadow: 3px 3px 0 var(--brown);
}

.full-menu-addons .group-title {
    color: var(--brown);
}

.full-menu-addons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.full-menu-addons li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    font-weight: 700;
}

.full-menu-addons li b {
    color: #c85c24;
}

.full-menu-divider {
    text-align: center;
    margin: 40px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-menu-divider::before,
.full-menu-divider::after {
    content: "";
    flex: 1;
    border-bottom: 2px dashed var(--line);
}

.full-menu-divider span {
    padding: 0 16px;
    color: #c85c24;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 4px;
}

.mocktails-menu {
    margin-top: 92px;
    padding-top: 82px;
    border-top: 2px dashed var(--line);
}

.subsection-heading {
    max-width: 570px;
}

.subsection-heading h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    margin-bottom: 10px;
}

.about-section {
    padding: 100px 0;
    background: var(--green);
}

.about-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px;
    align-items: center;
}

.about-art {
    min-height: 370px;
    display: grid;
    place-items: center;
    position: relative;
}

.about-circle {
    height: 335px;
    width: 335px;
    border-radius: 50%;
    background: var(--yellow);
    border: 2px solid var(--brown);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-circle img {
    width: 95%;
    height: 95%;
    object-fit: contain;
    filter: drop-shadow(8px 8px 8px rgba(70, 41, 28, 0.18));
}

.founder-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 3;
    background: #fffdf6;
    border: 2px solid var(--brown);
    border-radius: 12px;
    padding: 8px 14px;
    display: flex;
    flex-direction: column;
    box-shadow: 3px 3px 0 var(--brown);
    transform: rotate(3deg);
}

.founder-badge .badge-tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #c85c24;
    font-weight: 800;
}

.founder-badge strong {
    font-size: 0.85rem;
    color: var(--brown);
}

.founder-quote {
    margin: 16px 0;
    padding: 16px 20px;
    background: rgba(255, 253, 246, 0.65);
    border-left: 4px solid #c85c24;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--brown);
}

.founder-quote cite {
    display: block;
    margin-top: 8px;
    font-style: normal;
    font-weight: 800;
    font-size: 0.82rem;
    color: #c85c24;
}

.about-intro {
    font-size: 0.96rem;
    margin-bottom: 20px;
}

.about-actions {
    margin-top: 15px;
}

/* Pillars Container & Tabs */
.pillars-container {
    margin-top: 75px;
    background: #fffdf6;
    border: 2px solid var(--brown);
    border-radius: 20px;
    padding: 36px 30px;
    box-shadow: 4px 6px 0 var(--brown);
}

.center-heading {
    text-align: center;
    margin: 0 auto 24px auto;
}

.pillars-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.pillar-tab {
    background: var(--cream);
    border: 1.5px solid var(--brown);
    color: var(--brown);
    border-radius: 999px;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pillar-tab:hover,
.pillar-tab.active {
    background: var(--brown);
    color: var(--yellow);
    transform: translateY(-2px);
    box-shadow: 2px 3px 0 var(--brown);
}

.pillars-content {
    background: var(--cream);
    border: 1.5px solid var(--brown);
    border-radius: 14px;
    padding: 24px;
    min-height: 110px;
}

.pillar-panel {
    display: none;
}

.pillar-panel.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pillar-panel h4 {
    font-family: "Finger Paint", cursive;
    color: #c85c24;
    font-size: 1.15rem;
    margin: 0 0 8px 0;
}

.pillar-panel p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
}

/* Trust Badges Grid */
.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 40px;
}

.trust-badge-card {
    background: rgba(255, 253, 246, 0.8);
    border: 1.5px solid var(--brown);
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    transition: transform 0.2s;
}

.trust-badge-card:hover {
    transform: translateY(-4px);
}

.trust-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}

.trust-badge-card h4 {
    font-family: "Finger Paint", cursive;
    font-size: 0.95rem;
    margin: 0 0 6px 0;
    color: var(--brown);
}

.trust-badge-card p {
    font-size: 0.78rem;
    margin: 0;
    line-height: 1.4;
}

/* Large Modal & Story Styling */
.modal-card-large {
    max-width: 680px;
}

.story-modal-body {
    font-size: 0.92rem;
    line-height: 1.65;
}

.story-badge {
    display: inline-block;
    background: var(--yellow);
    border: 1px solid var(--brown);
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.75rem;
    margin-bottom: 14px;
}

.story-divider {
    border: 0;
    border-top: 1px dashed var(--line);
    margin: 20px 0;
}

.modal-quote {
    background: #fff8e5;
    border-left: 3px solid var(--orange);
    padding: 14px 18px;
    font-style: italic;
    font-weight: 600;
    margin: 20px 0 0 0;
    border-radius: 0 8px 8px 0;
}

.contact-section {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 70px;
    padding-top: 105px;
    padding-bottom: 105px;
}

.contact-section>div>p:not(.eyebrow) {
    max-width: 480px;
}

.contact-details {
    border: 1.5px solid var(--brown);
    border-radius: 18px;
    overflow: hidden;
}

.contact-details div {
    padding: 19px 23px;
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-direction: column;
}

.contact-details div:last-child {
    border: 0;
}

.contact-details span {
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .65rem;
    font-weight: 800;
    color: #a44d23;
}

.contact-details strong,
.contact-details a {
    font-size: .96rem;
    font-weight: 700;
}

.contact-details a:hover {
    text-decoration: underline;
}

.site-footer {
    background: var(--brown);
    color: var(--cream);
    padding: 65px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.9fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 45px;
    border-bottom: 1px solid rgba(255, 248, 233, 0.15);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-logo {
    width: 130px;
    height: auto;
    object-fit: contain;
}

.footer-tagline {
    font-family: "Finger Paint", cursive;
    color: var(--yellow);
    font-size: 1.05rem;
    margin: 0;
}

.footer-desc {
    font-size: 0.82rem;
    color: #decabe;
    margin: 0;
    line-height: 1.5;
}

.fssai-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(254, 228, 0, 0.12);
    border: 1px dashed var(--yellow);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    color: var(--yellow);
    font-weight: 700;
    margin-top: 4px;
}

.footer-heading {
    font-family: "Finger Paint", cursive;
    color: var(--yellow);
    font-size: 1.1rem;
    margin: 0 0 18px 0;
    font-weight: 400;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links li a,
.link-button {
    color: #f3e6d8;
    font-size: 0.84rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s, transform 0.2s;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.footer-links li a:hover,
.link-button:hover {
    color: var(--yellow);
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cbb4a5;
    font-size: 0.76rem;
}

.footer-sep {
    color: var(--orange);
}

.footer-socials a {
    color: var(--yellow);
    font-weight: 700;
    font-size: 0.82rem;
}

.footer-socials a:hover {
    text-decoration: underline;
}

/* Modal Popups Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 19, 12, 0.75);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: var(--cream);
    color: var(--brown);
    border: 2px solid var(--brown);
    border-radius: 20px;
    width: 100%;
    max-width: 580px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 6px 8px 0 var(--brown);
    transform: translateY(15px);
    transition: transform 0.25s ease;
    overflow: hidden;
}

.modal-overlay.is-active .modal-card {
    transform: translateY(0);
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1.5px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fffbf0;
}

.modal-header h3 {
    font-family: "Finger Paint", cursive;
    font-size: 1.25rem;
    margin: 0;
    color: var(--brown);
}

.modal-close {
    background: transparent;
    border: 1.5px solid var(--brown);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--brown);
    line-height: 1;
    transition: background 0.15s;
}

.modal-close:hover {
    background: var(--yellow);
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    font-size: 0.88rem;
    line-height: 1.65;
}

.modal-body h4 {
    font-family: "Finger Paint", cursive;
    font-size: 0.95rem;
    margin: 18px 0 6px 0;
    color: #c85c24;
}

.modal-body h4:first-child {
    margin-top: 0;
}

.modal-body p {
    margin-bottom: 12px;
}

.modal-body ul {
    padding-left: 20px;
    margin-bottom: 12px;
}

.modal-body li {
    margin-bottom: 8px;
}

.faq-item {
    border-bottom: 1px dashed var(--line);
    padding-bottom: 12px;
    margin-bottom: 14px;
}

.faq-item:last-child {
    border: none;
    margin-bottom: 0;
}


@media (max-width:800px) {

    .section-shell,
    .site-header {
        padding-left: 21px;
        padding-right: 21px;
    }

    .site-header {
        height: 78px;
    }

    .brand img {
        width: 102px;
        height: 60px;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        border: 0;
        background: transparent;
        padding: 9px;
        cursor: pointer;
    }

    .menu-toggle span:not(.sr-only) {
        width: 22px;
        height: 2px;
        background: var(--brown);
    }

    .site-nav {
        display: none;
        position: absolute;
        left: 15px;
        right: 15px;
        top: 72px;
        padding: 21px;
        background: var(--cream);
        border: 1.5px solid var(--brown);
        border-radius: 14px;
        align-items: flex-start;
        flex-direction: column;
        gap: 17px;
        box-shadow: 4px 5px 0 var(--brown);
    }

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

    .hero {
        grid-template-columns: 1fr;
        gap: 0;
        padding-top: 45px;
        padding-bottom: 28px;
    }

    .hero-copy {
        order: 2;
    }

    .hero-art {
        min-height: 335px;
        order: 1;
    }

    .hero-art img {
        height: 330px;
        width: 310px;
    }

    .sun-one {
        height: 280px;
        width: 280px;
        right: calc(50% - 140px);
    }

    .sun-two {
        left: 8%;
        bottom: 18px;
        height: 78px;
        width: 78px;
    }

    .hero-sticker {
        right: 8%;
        bottom: 10px;
        width: 98px;
        height: 98px;
        font-size: .65rem;
    }

    .hero-actions {
        margin: 23px 0;
    }

    .trust-list {
        gap: 10px;
        flex-wrap: wrap;
        font-size: .68rem;
    }

    .announcement {
        font-size: .7rem;
        padding: 12px 16px;
    }

    .announcement b {
        padding: 0 4px;
    }

    .menu-section,
    .about-section,
    .contact-section {
        padding-top: 36px;
        padding-bottom: 36px;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .menu-card {
        min-height: 290px;
        border-radius: 14px;
    }

    .menu-card img {
        height: 130px;
        padding: 6px 8px;
    }

    .product-placeholder {
        min-height: 130px;
        font-size: 0.88rem;
        padding: 10px;
    }

    .card-content {
        padding: 10px 8px;
    }

    .card-content h3 {
        font-size: 0.95rem;
        margin: 4px 0 3px;
        line-height: 1.2;
    }

    .card-content p {
        font-size: .68rem;
        margin-bottom: 10px;
        line-height: 1.35;
    }

    .card-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 4px;
    }

    .card-bottom strong {
        font-size: 0.92rem;
    }

    .card-bottom button {
        font-size: 0.72rem;
    }

    .full-menu-grid {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .mocktails-menu {
        margin-top: 68px;
        padding-top: 62px;
    }

    .about-layout,
    .contact-section {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-art {
        min-height: 290px;
    }

    .about-circle {
        width: 260px;
        height: 260px;
    }

    .promise-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .promise-grid div {
        border-top: 1px solid var(--line);
        padding-top: 10px;
    }

    .contact-section h2 br {
        display: none;
    }

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

    .footer-brand {
        grid-column: span 2;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .modal-overlay {
        padding: 14px;
    }

    .modal-card {
        max-height: 90vh;
        border-radius: 16px;
    }

    .modal-header {
        padding: 16px 20px;
    }

    .modal-body {
        padding: 18px 20px;
    }

    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .pillars-container {
        padding: 24px 18px;
        margin-top: 50px;
    }
}

@media (max-width:540px) {
    .brand img {
        width: 65px;
        height: 40px;
    }

    .brand-text {
        font-size: 1.05rem;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .card-content {
        padding: 8px 6px;
    }

    .card-content h3 {
        font-size: 0.88rem;
    }

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

    .footer-brand {
        grid-column: span 1;
    }

    .footer-copy {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .footer-sep {
        display: none;
    }
}

@media (max-width:390px) {
    h1 {
        font-size: 2.5rem;
    }

    .brand-text {
        font-size: 0.95rem;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .menu-card {
        min-height: 275px;
    }

    .menu-card img {
        height: 115px;
    }
}

/* ==========================================
   LAUNCH COMBOS & VALUE DEALS SECTION (#combos)
   ========================================== */
.combos-section {
    padding-top: 30px;
    padding-bottom: 30px;
}

.combos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 36px;
}

.combo-card {
    background: #ffffff;
    border: 3px solid var(--brown);
    border-radius: 24px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 8px 8px 0px var(--brown);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}

.combo-card:hover {
    transform: translateY(-6px);
    box-shadow: 12px 12px 0px var(--brown);
}

.combo-card-solo {
    background: linear-gradient(180deg, #f3faee 0%, #ffffff 100%);
}

.combo-card-buddy {
    background: linear-gradient(180deg, #fff6ee 0%, #ffffff 100%);
}

.combo-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.combo-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.combo-badge {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 999px;
    text-transform: uppercase;
}

.combo-badge-primary {
    background: var(--ink);
    color: #ffffff;
}

.combo-card-solo .combo-badge-secondary {
    background: var(--green);
    color: var(--brown);
    border: 1.5px solid var(--brown);
}

.combo-card-buddy .combo-badge-secondary {
    background: var(--orange);
    color: #ffffff;
    border: 1.5px solid var(--brown);
}

.combo-discount-tag {
    background: #b31515;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: 999px;
    border: 2px solid var(--brown);
    transform: rotate(3deg);
    box-shadow: 2px 2px 0px var(--brown);
}

.combo-art {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 0;
    min-height: 180px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    border: 1.5px dashed var(--line);
    margin-bottom: 20px;
}

.combo-art-pair {
    display: flex;
    align-items: center;
    margin-right: -10px;
}

.combo-img {
    height: 130px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0px 8px 12px rgba(70, 41, 28, 0.15));
    transition: transform 0.3s ease;
}

.combo-card:hover .combo-img {
    transform: scale(1.06);
}

.combo-img.waffle-img-2 {
    margin-left: -35px;
}

.combo-plus {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--orange);
}

.combo-content h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 8px 0;
    color: var(--ink);
}

.combo-details {
    font-size: 0.92rem;
    color: var(--brown);
    margin: 0 0 12px 0;
    line-height: 1.45;
}

.combo-upgrade-banner {
    background: var(--yellow);
    border: 2px solid var(--brown);
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 0.88rem;
    color: var(--brown);
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 3px 3px 0px var(--brown);
}

.upgrade-icon {
    font-size: 1.1rem;
}

.combo-terms {
    font-size: 0.78rem;
    color: rgba(70, 41, 28, 0.7);
    margin: 4px 0 16px 0;
    font-style: italic;
}

.combo-price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    padding-top: 16px;
    border-top: 2px dashed var(--line);
    gap: 16px;
}

.combo-price-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(70, 41, 28, 0.65);
    margin-bottom: 2px;
}

.combo-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.combo-price {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
}

.combo-original-price {
    font-size: 1.1rem;
    color: rgba(70, 41, 28, 0.5);
    text-decoration: line-through;
    font-weight: 600;
}

.combo-button {
    font-size: 0.9rem;
    padding: 11px 18px;
    white-space: nowrap;
}

/* Combo Selectors Styling */
.combo-selector-box {
    background: #fff8e9;
    border: 2px solid var(--brown);
    border-radius: 14px;
    padding: 12px 14px;
    margin: 12px 0;
}

.combo-select-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.combo-select-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.combo-select-group label {
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--brown);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.combo-select {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 0.84rem;
    font-weight: 700;
    padding: 8px 10px;
    border: 2px solid var(--brown);
    border-radius: 10px;
    background: #ffffff;
    color: var(--ink);
    outline: none;
    cursor: pointer;
    text-overflow: ellipsis;
}

.margin-top-xs {
    margin-top: 10px;
}

@media (max-width: 900px) {
    .combos-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .combo-select-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .combo-art {
        gap: 6px;
        padding: 10px 6px;
        min-height: 140px;
    }

    .combo-img {
        height: 85px;
    }

    .combo-img.waffle-img-2 {
        margin-left: -20px;
    }
}

@media (max-width: 480px) {
    .combo-card {
        padding: 18px 14px;
    }

    .combo-price-row {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .combo-button {
        justify-content: center;
        width: 100%;
    }
}

/* ==========================================
   VEG / EGGLESS BADGES & FSSAI SYMBOL
   ========================================== */
.brand-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.veg-symbol {
    width: 16px;
    height: 16px;
    border: 2px solid #008738;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 2px;
    flex-shrink: 0;
}

.veg-dot {
    width: 8px;
    height: 8px;
    background: #008738;
    border-radius: 50%;
}

.veg-symbol-inline {
    width: 14px;
    height: 14px;
    border: 1.5px solid #008738;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 2px;
    margin-right: 4px;
    vertical-align: middle;
}

.veg-symbol-inline .veg-dot {
    width: 6px;
    height: 6px;
    background: #008738;
    border-radius: 50%;
}

.header-veg-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eaf8ee;
    color: #00662a;
    border: 1.5px solid #abd79e;
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 0.78rem;
    font-weight: 700;
}

.hero-top-badges {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.hero-top-badges .eyebrow {
    margin-bottom: 0;
}

.hero-veg-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eaf8ee;
    color: #00662a;
    border: 1.5px solid #008738;
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 0.82rem;
    font-weight: 800;
    box-shadow: 2px 2px 0px #008738;
}

/* Combo Customizer Selectors */
.combo-selector-box {
    background: #fff8e9;
    border: 2px dashed var(--line);
    border-radius: 14px;
    padding: 12px 14px;
    margin: 12px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.combo-selector-box label {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--brown);
}

.combo-select-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.combo-select-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.margin-top-xs {
    margin-top: 4px;
}

.combo-select {
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 6px 10px;
    border: 1.5px solid var(--brown);
    border-radius: 10px;
    background: #ffffff;
    color: var(--ink);
    outline: none;
    cursor: pointer;
}

.combo-select:focus {
    border-color: var(--orange);
}

.combo-upgrade-option {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    padding-top: 8px;
    border-top: 1px dashed var(--line);
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 800;
    color: #c85c24;
}

.combo-upgrade-option input[type="checkbox"] {
    accent-color: var(--orange);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.btn-added-pulse {
    background: #008738 !important;
    color: #ffffff !important;
    border-color: #00662a !important;
    transform: scale(1.03);
}

/* ==========================================
   HOW TO ORDER & GUARANTEE SECTION
   ========================================== */
.how-it-works-section {
    padding-top: 30px;
    padding-bottom: 30px;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.step-card {
    background: #ffffff;
    border: 2.5px solid var(--brown);
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;
    position: relative;
    box-shadow: 4px 4px 0px var(--brown);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
}

.step-card:hover {
    transform: translateY(-3px);
    box-shadow: 6px 6px 0px var(--brown);
}

.step-badge {
    position: absolute;
    top: -14px;
    left: 20px;
    background: var(--yellow);
    color: var(--brown);
    border: 2px solid var(--brown);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 999px;
}

.step-icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
    line-height: 1;
}

.step-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 8px 0;
}

.step-card p {
    font-size: 0.88rem;
    color: var(--brown);
    margin: 0;
    line-height: 1.45;
}

.step-arrow {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--orange);
    user-select: none;
}

/* Guarantee Cards Grid */
.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
}

.guarantee-card {
    background: linear-gradient(135deg, #fff9ee 0%, #ffffff 100%);
    border: 2.5px solid var(--brown);
    border-radius: 18px;
    padding: 22px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 4px 4px 0px var(--brown);
    transition: transform 0.2s ease;
    box-sizing: border-box;
    width: 100%;
}

.guarantee-card:hover {
    transform: translateY(-3px);
}

.guarantee-icon {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
}

.guarantee-text h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 6px 0;
}

.guarantee-text p {
    font-size: 0.85rem;
    color: var(--brown);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 960px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .step-arrow {
        transform: rotate(90deg);
        justify-self: center;
    }

    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .header-veg-badge {
        display: none;
    }
}

/* ==========================================
   MULTI-ITEM CART & QUANTITY CONTROLS
   ========================================== */
.card-qty-control {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow);
    border: 2px solid var(--brown);
    border-radius: 999px;
    padding: 3px 8px;
    box-shadow: 2px 2px 0px var(--brown);
}

.qty-btn {
    background: #ffffff;
    border: 1.5px solid var(--brown);
    border-radius: 50%;
    width: 26px;
    height: 26px;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--brown);
    transition: transform 0.15s ease, background 0.15s ease;

    &:hover {
        background: var(--orange);
        color: #ffffff;
        transform: scale(1.1);
    }
}

.qty-val {
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--brown);
    min-width: 18px;
    text-align: center;
}

/* Floating Sticky Bottom Cart Bar */
.floating-cart-bar[hidden] {
    display: none !important;
}

.floating-cart-bar {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 680px;
    background: rgba(37, 19, 12, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2.5px solid var(--yellow);
    border-radius: 999px;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    box-shadow: 0px 12px 32px rgba(0, 0, 0, 0.35), 0px 0px 0px 4px rgba(254, 228, 0, 0.2);
    animation: slideUpCart 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideUpCart {
    from {
        opacity: 0;
        transform: translate(-50%, 40px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.cart-bar-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-bar-badge {
    background: var(--orange);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.82rem;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1.5px solid #ffffff;
}

.cart-bar-total {
    display: flex;
    flex-direction: column;
}

.cart-bar-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-bar-total strong {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1;
}

.button-cart-checkout {
    padding: 10px 20px;
    font-size: 0.9rem;
    box-shadow: 3px 3px 0px var(--brown);
}

/* Cart Checkout Modal */
.cart-modal-container {
    background: var(--cream);
    color: var(--brown);
    border: 3px solid var(--brown);
    border-radius: 24px;
    max-width: 600px;
    box-shadow: 8px 12px 0px var(--brown);
    overflow: hidden;
}

.cart-modal-container .modal-header {
    background: var(--yellow);
    border-bottom: 2px solid var(--brown);
    padding: 18px 24px;
}

.cart-modal-container .modal-header h3 {
    font-family: "Playpen Sans", sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--brown);
    margin: 0;
}

.cart-modal-body {
    padding: 24px;
    max-height: calc(85vh - 80px);
    overflow-y: auto;
    background: var(--cream);
}

.cart-modal-body h4 {
    font-family: "Playpen Sans", sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--brown);
    margin: 0 0 14px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-items-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.cart-items-header h4 {
    margin-bottom: 0;
}

.clear-cart-button {
    background: #fff0f0;
    color: #b31515;
    border: 1.5px solid #b31515;
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease;
}

.clear-cart-button:hover {
    background: #b31515;
    color: #ffffff;
    transform: scale(1.04);
}

.cart-modal-body h4::after {
    content: "";
    flex: 1;
    height: 2px;
    background: var(--orange);
    border-radius: 999px;
    opacity: 0.5;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 12px;

    .empty-cart-msg {
        text-align: center;
        padding: 24px;
        color: rgba(70, 41, 28, 0.6);
        font-style: italic;
    }
}

.cart-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: #fff8e9;
    border: 1.5px solid var(--line);
    border-radius: 14px;
}

.cart-item-info {
    display: flex;
    flex-direction: column;
}

.cart-item-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--ink);
}

.cart-item-unit-price {
    font-size: 0.78rem;
    color: rgba(70, 41, 28, 0.65);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-item-line-price {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--ink);
    min-width: 50px;
    text-align: right;
}

.cart-divider {
    border: none;
    border-top: 2px dashed var(--line);
    margin: 20px 0;
}

.cart-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brown);
}

.form-group label .required {
    color: #b31515;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: inherit;
    font-size: 0.92rem;
    padding: 10px 14px;
    border: 2px solid var(--brown);
    border-radius: 12px;
    background: #ffffff;
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 145, 77, 0.25);
}

.fulfillment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.fulfillment-radio {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 10px;
    border: 2px solid var(--brown);
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.fulfillment-radio:hover {
    background: #fff8e9;
}

.fulfillment-radio input[type="radio"] {
    accent-color: var(--orange);
    width: 16px;
    height: 16px;
    margin: 0;
}

.cart-bill-summary {
    background: #f3faee;
    border: 2px dashed #abd79e;
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 6px;
}

.bill-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--brown);
}

.free-tag {
    color: #008738;
    font-weight: 800;
    font-size: 0.82rem;
}

.bill-total {
    font-size: 1.15rem;
    color: var(--ink);
}

.whatsapp-submit-button {
    background: #25D366 !important;
    color: #ffffff !important;
    border: 2.5px solid var(--brown) !important;
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    padding: 14px !important;
    justify-content: center !important;
    box-shadow: 4px 4px 0px var(--brown) !important;
    margin-top: 8px;

    &:hover {
        background: #1eb956 !important;
        transform: translateY(-2px);
        box-shadow: 6px 6px 0px var(--brown) !important;
    }
}

@media (max-width: 600px) {
    .floating-cart-bar {
        width: calc(100% - 32px);
        bottom: 16px;
        padding: 10px 16px;
    }

    .form-row-pair {
        grid-template-columns: 1fr;
    }

    .button-cart-checkout {
        padding: 8px 14px;
        font-size: 0.82rem;
    }
}

/* Order Success Toast Notification */
.order-toast[hidden] {
    display: none !important;
}

.order-toast {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ink);
    color: #ffffff;
    border: 2.5px solid var(--yellow);
    border-radius: 999px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2500;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.4);
    animation: toastSlideDown 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes toastSlideDown {
    from {
        opacity: 0;
        transform: translate(-50%, -24px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.toast-icon {
    font-size: 1.6rem;
}

.toast-text strong {
    font-size: 0.95rem;
    color: var(--yellow);
    display: block;
    line-height: 1.2;
}

.toast-text p {
    font-size: 0.8rem;
    margin: 2px 0 0 0;
    color: rgba(255, 255, 255, 0.85);
}

/* Customer Reviews & Society Buzz Section */
.reviews-section {
    padding-top: 30px;
    padding-bottom: 30px;
}

.rating-summary-bar {
    background: #fff8e9;
    border: 2px solid var(--brown);
    border-radius: 18px;
    padding: 20px 24px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 4px 4px 0px var(--brown);
    width: 100%;
    box-sizing: border-box;
}

.rating-score-box {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rating-number {
    font-family: "Playpen Sans", sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--brown);
    line-height: 1;
    background: var(--yellow);
    padding: 6px 14px;
    border-radius: 14px;
    border: 2px solid var(--brown);
}

.rating-stars-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rating-stars {
    color: #ff914d;
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.rating-count {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brown);
}

.rating-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rating-pill {
    background: #ffffff;
    color: var(--brown);
    border: 1.5px solid var(--brown);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.82rem;
    font-weight: 700;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
}

.review-card {
    background: #ffffff;
    border: 2px solid var(--brown);
    border-radius: 18px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 4px 4px 0px var(--brown);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    width: 100%;
    box-sizing: border-box;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 6px 6px 0px var(--brown);
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    background: var(--yellow);
    color: var(--brown);
    border: 2px solid var(--brown);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: "Playpen Sans", sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
}

.review-user-info h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--brown);
    margin: 0 0 2px 0;
}

.review-location {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(70, 41, 28, 0.7);
}

.review-stars {
    color: #ff914d;
    font-size: 1rem;
    letter-spacing: 1px;
}

.review-quote {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--ink);
    margin: 0 0 16px 0;
    font-style: italic;
}

.review-footer {
    border-top: 1.5px dashed var(--line);
    padding-top: 12px;
}

.review-ordered-tag {
    font-size: 0.78rem;
    font-weight: 700;
    color: #c85c24;
    background: #fff8e9;
    padding: 4px 10px;
    border-radius: 8px;
    display: inline-block;
}
@media (max-width: 768px) {
    .combos-section,
    .how-it-works-section,
    .reviews-section,
    .faq-section {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        width: 100%;
    }

    .rating-summary-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 18px;
        border: 2px solid var(--brown);
        border-radius: 16px;
        box-shadow: 3px 3px 0px var(--brown);
        margin-bottom: 24px;
        width: 100%;
        box-sizing: border-box;
    }

    .review-card {
        padding: 16px 18px;
        border: 2px solid var(--brown);
        border-radius: 16px;
        box-shadow: 3px 3px 0px var(--brown);
        width: 100%;
        box-sizing: border-box;
    }

    .faq-accordion-container {
        gap: 12px;
    }

    .faq-accordion-item {
        border-radius: 14px;
        box-shadow: 3px 4px 0px var(--brown);
    }

    .faq-question {
        padding: 14px 18px;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 18px 16px 18px;
        font-size: 0.86rem;
    }
}

/* On-Page FAQ Accordion Section */
.faq-section {
    padding-top: 30px;
    padding-bottom: 30px;
}

.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-accordion-item {
    background: #ffffff;
    border: 2.5px solid var(--brown);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 4px 5px 0px var(--brown);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-accordion-item:hover {
    box-shadow: 6px 7px 0px var(--brown);
}

.faq-accordion-item[open] {
    background: #fffbf0;
}

.faq-question {
    padding: 20px 24px;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--brown);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon {
    font-size: 1.3rem;
    color: var(--orange);
    transition: transform 0.3s ease;
}

.faq-accordion-item[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 22px 24px;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--ink);
    border-top: 1.5px dashed rgba(70, 41, 28, 0.15);
    margin-top: 4px;
    padding-top: 14px;
}

.faq-answer p {
    margin: 0;
}