@keyframes slideUp {
    0% {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.94);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --green: #1a7a4a;
    --green2: #28b86a;
    --green3: #e6f7ef;
    --navy: #0f2744;
    --navy2: #1a3d6b;
    --orange: #f06529;
    --orange2: #ff8c42;
    --cream: #f7faf8;
    --white: #fff;
    --text: #0d1f0f;
    --muted: #556b5f;
    --border: #d4e9dc;
    --card: #fff;
    --radius: 18px;
}
html {
    scroll-behavior: smooth;
}
.banner,
body {
    position: relative;
}
body {
    font-family: "Segoe UI", system-ui, sans-serif;
    background: #eef5f0;
    color: var(--text);
    max-width: 480px;
    margin: 0 auto;
    min-height: 100vh;
    overflow-x: hidden;
}
svg.ic,
svg.ic-lg,
svg.ic-sm {
    width: 18px;
    height: 18px;
    stroke-width: 2;
    display: inline-block;
    vertical-align: middle;
}
svg.ic-lg,
svg.ic-sm {
    width: 14px;
    height: 14px;
}
svg.ic-lg {
    width: 22px;
    height: 22px;
    stroke-width: 1.8;
}
.banner {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f2744 0%, #1a7a4a 100%);
    background-size: cover;
}
.banner-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.12;
}
.banner-pattern svg {
    width: 100%;
    height: 100%;
}
.banner-shelf {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(15, 39, 68, 0.5), transparent);
}
.banner-icons {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
}
.banner-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    opacity: 0.75;
}
.banner-icon-item svg,
.profile-avatar svg {
    fill: none;
    stroke: #fff;
    stroke-width: 1.5;
}
.banner-icon-item span {
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}
.banner-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    z-index: 5;
}
.save-btn-top,
.share-btn {
    color: #fff;
    padding: 0.36rem 0.85rem;
    border-radius: 20px;
    font-size: 0.74rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.share-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
}
.save-btn-top {
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    font-weight: 700;
    border: 0;
}
.profile-card {
    background: var(--card);
    margin: 0 0.8rem;
    border-radius: var(--radius);
    padding: 0 1.2rem 1.3rem;
    box-shadow: 0 4px 24px rgba(15, 39, 68, 0.12);
    position: relative;
    margin-top: -44px;
    z-index: 10;
}
.profile-avatar-wrap {
    display: flex;
    justify-content: center;
    margin-top: -40px;
    margin-bottom: 0.75rem;
}
.profile-avatar {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    border: 4px solid #fff;
    background: linear-gradient(135deg, var(--green), var(--green2));
    box-shadow: 0 4px 16px rgba(26, 122, 74, 0.25);
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.profile-avatar svg {
    width: 38px;
    height: 38px;
}
.profile-name {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.3px;
}
.profile-bio,
.profile-role {
    text-align: center;
    font-size: 0.78rem;
}
.profile-role {
    color: var(--green);
    font-weight: 700;
    margin: 0.18rem 0 0.5rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.profile-bio {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    padding: 0 0.2rem;
}
.profile-action-btns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.45rem;
}
.pab {
    border: 0;
    border-radius: 12px;
    padding: 0.6rem 0.3rem;
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.26rem;
    transition: 0.17s;
    letter-spacing: 0.1px;
}
.pab:active {
    transform: scale(0.95);
}
.pab.call {
    background: #e6f7ef;
    color: #1a7a4a;
}
.pab.whatsapp {
    background: #dcfce7;
    color: #15803d;
}
.pab.save {
    background: #fff7ed;
    color: #ea580c;
}
.pab.email {
    background: #eff6ff;
    color: #1d4ed8;
}
.pab.direction {
    background: #fdf2f8;
    color: #9d174d;
}
.pab.share {
    background: #f5f0ff;
    color: #6d28d9;
}
.badge-strip {
    display: flex;
    gap: 0.45rem;
    overflow-x: auto;
    padding: 0.5rem 1.2rem 0.3rem;
    scrollbar-width: none;
}
.badge-strip::-webkit-scrollbar {
    display: none;
}
.badge-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 0.3rem 0.7rem;
    white-space: nowrap;
    font-size: 0.69rem;
    font-weight: 700;
    color: var(--muted);
    flex-shrink: 0;
}
.badge-item svg {
    fill: none;
    stroke: var(--green);
    width: 13px;
    height: 13px;
    stroke-width: 2.2;
    flex-shrink: 0;
}
.sec {
    margin: 0.5rem 0.8rem;
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(15, 39, 68, 0.07);
}
.sec-header,
.sec-icon {
    display: flex;
    align-items: center;
}
.sec-header {
    gap: 0.6rem;
    padding: 0.85rem 1.1rem 0.7rem;
    border-bottom: 1px solid var(--border);
}
.sec-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--green), var(--green2));
    justify-content: center;
    flex-shrink: 0;
}
.sec-icon svg {
    stroke: #fff;
    fill: none;
    width: 15px;
    height: 15px;
    stroke-width: 2.2;
}
.sec-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text);
}
.sec-body {
    padding: 0.85rem 1.1rem;
}
.address-link {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    text-decoration: none;
    color: var(--text);
}
.addr-icon-wrap {
    width: 36px;
    height: 36px;
    background: #fdf2f8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.addr-icon-wrap svg {
    stroke: #9d174d;
    fill: none;
}
.addr-text {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.55;
}
.addr-text strong {
    color: var(--text);
    font-size: 0.86rem;
    display: block;
    margin-bottom: 0.12rem;
}
.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, var(--green), var(--green2));
    color: #fff;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-decoration: none;
}
.social-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.s-ico,
.social-item {
    display: flex;
    align-items: center;
}
.social-item {
    gap: 0.7rem;
    padding: 0.6rem 0.8rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-decoration: none;
    transition: 0.17s;
    cursor: pointer;
    background: var(--cream);
}
.social-item:active {
    transform: scale(0.98);
}
.s-ico {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    justify-content: center;
    flex-shrink: 0;
}
.s-ico svg {
    fill: none;
    width: 16px;
    height: 16px;
    stroke-width: 2;
}
.s-name {
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--text);
}
.s-val {
    font-size: 0.71rem;
    color: var(--muted);
}
.s-arrow {
    margin-left: auto;
    color: #ccc;
}
.s-arrow svg {
    stroke: #bbb;
    fill: none;
    width: 13px;
    height: 13px;
    stroke-width: 2.5;
}
.ic-wa {
    background: #dcfce7;
}
.fab.call-fab svg,
.ic-wa svg {
    stroke: #15803d;
}
.ic-fb {
    background: #eff6ff;
}
.ic-fb svg {
    stroke: #1877f2;
}
.ic-ig {
    background: #fdf2f8;
}
.ic-ig svg {
    stroke: #e1306c;
}
.ic-yt {
    background: #fff1f2;
}
.ic-yt svg {
    stroke: #dc2626;
}
.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.55rem;
}
.cat-card {
    border-radius: 12px;
    background: var(--bg);
    border: 1.5px solid var(--border);
    padding: 0.75rem 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: 0.18s;
}
.cat-card:active {
    transform: scale(0.97);
}
.cat-name {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}
.cat-count {
    font-size: 0.63rem;
    color: var(--muted);
    margin-top: 0.15rem;
}
.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}
.prod-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--card);
}
.prod-img {
    height: 100px;
    overflow: hidden;
    position: relative;
}
.prod-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.prod-tag {
    position: absolute;
    top: 0.38rem;
    left: 0.38rem;
    color: #fff;
    font-size: 0.58rem;
    font-weight: 800;
    padding: 0.16rem 0.48rem;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.prod-body {
    padding: 0.6rem 0.7rem;
}
.prod-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.18rem;
    line-height: 1.3;
}
.prod-desc {
    font-size: 0.68rem;
    color: var(--muted);
    line-height: 1.4;
    margin-bottom: 0.45rem;
}
.prod-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.25rem;
}
.prod-price {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
}
.prod-old {
    font-size: 0.66rem;
    color: var(--muted);
    text-decoration: line-through;
    margin-left: 0.2rem;
}
.qty-btn,
.qty-ctrl {
    display: flex;
    align-items: center;
}
.qty-ctrl {
    gap: 0.28rem;
}
.qty-btn {
    width: 23px;
    height: 23px;
    border-radius: 7px;
    border: 1.5px solid var(--border);
    background: var(--cream);
    cursor: pointer;
    justify-content: center;
    transition: 0.14s;
    flex-shrink: 0;
}
.qty-btn:active {
    background: var(--green3);
    border-color: var(--green);
}
.qty-btn svg {
    stroke: var(--navy);
    fill: none;
    width: 12px;
    height: 12px;
    stroke-width: 2.5;
}
.qty-num {
    min-width: 17px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text);
}
.deals-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.deal-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
    background: var(--cream);
    border: 1.5px solid var(--border);
}
.deal-badge {
    min-width: 48px;
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    padding: 0.28rem 0.5rem;
    border-radius: 7px;
    text-align: center;
    line-height: 1.35;
}
.deal-info {
    flex: 1;
}
.deal-name {
    font-size: 0.83rem;
    font-weight: 700;
    color: var(--text);
}
.deal-desc {
    font-size: 0.71rem;
    color: var(--muted);
    margin-top: 0.1rem;
}
.deal-cta {
    background: linear-gradient(135deg, var(--green), var(--green2));
    color: #fff;
    border: 0;
    border-radius: 9px;
    padding: 0.35rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}
.hours-table {
    width: 100%;
    border-collapse: collapse;
}
.hours-table tr {
    border-bottom: 1px solid var(--border);
}
.hours-table tr:last-child {
    border: 0;
}
.hours-table td {
    padding: 0.5rem 0.2rem;
    font-size: 0.8rem;
}
.hours-table .day {
    color: var(--text);
    font-weight: 600;
    width: 48%;
}
.hours-table .time {
    color: var(--muted);
    text-align: right;
}
.hours-table .closed {
    color: #dc2626;
    font-weight: 700;
}
.hours-table .open-row .day {
    color: var(--navy);
    font-weight: 800;
}
.hours-table .open-row .time,
.today-badge {
    color: #15803d;
    font-weight: 700;
}
.today-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: #dcfce7;
    font-size: 0.68rem;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    margin-bottom: 0.65rem;
}
.today-badge svg {
    stroke: #15803d;
    fill: none;
    width: 12px;
    height: 12px;
    stroke-width: 2.3;
}
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.4rem;
}
.g-item {
    border-radius: 9px;
    overflow: hidden;
    height: 88px;
    cursor: pointer;
    transition: 0.17s;
}
.g-item:hover,
.qr-btn:active {
    transform: scale(0.97);
}
.qr-card-inner {
    text-align: center;
    padding: 0.3rem 0;
}
#vcardQR,
.qr-actions,
.qr-btn {
    display: flex;
    justify-content: center;
}
#vcardQR {
    margin: 0.9rem 0;
}
#vcardQR canvas,
#vcardQR img {
    border-radius: 12px !important;
    border: 5px solid var(--cream) !important;
    box-shadow: 0 4px 18px rgba(15, 39, 68, 0.1);
}
.qr-actions,
.qr-btn {
    gap: 0.55rem;
}
.qr-btn {
    flex: 1;
    max-width: 150px;
    padding: 0.55rem;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    background: var(--cream);
    color: var(--text);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    align-items: center;
    gap: 0.32rem;
    transition: 0.18s;
}
.qr-btn svg {
    stroke: var(--text);
    fill: none;
    width: 13px;
    height: 13px;
    stroke-width: 2;
}
.payment-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.pay-icon-wrap,
.pay-item {
    display: flex;
    align-items: center;
}
.pay-item {
    gap: 0.7rem;
    padding: 0.75rem;
    background: var(--cream);
    border-radius: 12px;
    border: 1px solid var(--border);
}
.pay-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(15, 39, 68, 0.08);
    justify-content: center;
    flex-shrink: 0;
}
.pay-icon-wrap svg {
    fill: none;
    width: 16px;
    height: 16px;
    stroke-width: 2;
}
.pay-name {
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--text);
}
.pay-detail {
    font-size: 0.71rem;
    color: var(--muted);
    margin-top: 0.08rem;
}
.bf-group {
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
    margin-bottom: 0.65rem;
}
.bf-label {
    font-size: 0.69rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.bf-input {
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 0.62rem 0.82rem;
    font-size: 0.82rem;
    color: var(--text);
    font-family: inherit;
    transition: 0.28s;
    width: 100%;
}
.bf-input:focus {
    outline: 0;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(26, 122, 74, 0.1);
}
.bf-input::placeholder {
    color: #a0b8a8;
}
textarea.bf-input {
    resize: vertical;
    min-height: 70px;
}
.bf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
}
.cf-submit {
    background: linear-gradient(135deg, var(--green), var(--green2));
    color: #fff;
    border: 0;
    border-radius: 11px;
    padding: 0.78rem;
    font-size: 0.86rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.38rem;
    transition: 0.2s;
}
.cf-submit svg {
    stroke: #fff;
    fill: none;
    width: 16px;
    height: 16px;
    stroke-width: 2;
}
.cf-submit:active {
    transform: scale(0.98);
}
.float-bar,
.suggest-link {
    border-top: 1px solid var(--border);
}
.suggest-link {
    display: flex;
    align-items: center;
    gap: 0.38rem;
    color: var(--green);
    font-size: 0.76rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 0.65rem;
    padding-top: 0.55rem;
}
.suggest-link svg {
    stroke: var(--green);
    width: 13px;
    height: 13px;
}
.float-bar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    z-index: 999;
    box-shadow: 0-4px 24px rgba(15, 39, 68, 0.1);
}
.cart-badge,
.fab {
    align-items: center;
}
.fab {
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
    padding: 0.6rem 0.3rem;
    border: 0;
    background: 0 0;
    cursor: pointer;
    font-size: 0.65rem;
    font-weight: 700;
    transition: 0.17s;
    color: var(--muted);
}
.fab:active {
    background: var(--cream);
}
.fab svg,
.suggest-link svg {
    fill: none;
    stroke-width: 2;
}
.fab.call-fab {
    color: #15803d;
}
.fab.wa-fab svg {
    stroke: #0f9e5e;
}
.fab.wa-fab {
    color: #0f9e5e;
}
.fab.save-fab {
    background: linear-gradient(to bottom, #fffbf5, #fff);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    color: var(--orange);
}
.fab.save-fab svg {
    stroke: var(--orange);
}
.fab.cart-fab {
    color: var(--navy);
}
.cart-title svg,
.fab.cart-fab svg {
    stroke: var(--navy);
}
.cart-badge {
    position: absolute;
    top: 5px;
    right: calc(50% - 18px);
    background: var(--orange);
    color: #fff;
    font-size: 0.52rem;
    font-weight: 800;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: none;
    justify-content: center;
}
.cart-badge.show,
.cart-overlay.show,
.fab-wrap,
.modal-overlay.show,
.promo-overlay.show {
    display: flex;
}
.fab-wrap {
    position: relative;
    flex-direction: column;
    align-items: center;
    gap: 0.18rem;
    padding: 0.6rem 0.3rem;
    cursor: pointer;
}
.cart-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 39, 68, 0.55);
    z-index: 8500;
    align-items: flex-end;
    justify-content: center;
    max-width: 480px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}
.cart-box {
    background: #fff;
    border-radius: 22px 22px 0 0;
    padding: 1.4rem 1.2rem;
    width: 100%;
    max-height: 75vh;
    overflow-y: auto;
    animation: slideUp 0.33s ease;
}
.cart-header {
    justify-content: space-between;
    margin-bottom: 1rem;
}
.cart-close,
.cart-header,
.cart-title {
    display: flex;
    align-items: center;
}
.cart-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
    gap: 0.38rem;
}
.cart-title svg {
    fill: none;
    width: 17px;
    height: 17px;
    stroke-width: 2;
}
.cart-close {
    background: var(--cream);
    border: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    justify-content: center;
}
.cart-close svg {
    stroke: var(--muted);
    fill: none;
    width: 13px;
    height: 13px;
    stroke-width: 2.5;
}
.cart-empty {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--muted);
    font-size: 0.83rem;
}
.cart-empty svg {
    stroke: var(--border);
    fill: none;
    width: 38px;
    height: 38px;
    margin-bottom: 0.65rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.cart-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
}
.ci-name {
    font-size: 0.83rem;
    font-weight: 700;
    color: var(--text);
    flex: 1;
}
.ci-price {
    font-size: 0.8rem;
    color: var(--green);
    font-weight: 800;
    min-width: 50px;
    text-align: right;
}
.ci-qty,
.ci-qty-btn {
    display: flex;
    align-items: center;
}
.ci-qty {
    gap: 0.28rem;
}
.ci-qty-btn {
    width: 21px;
    height: 21px;
    border-radius: 6px;
    border: 1.5px solid var(--border);
    background: var(--cream);
    cursor: pointer;
    justify-content: center;
}
.ci-qty-btn svg {
    stroke: var(--navy);
    fill: none;
    width: 11px;
    height: 11px;
    stroke-width: 2.5;
}
.ci-qty-num {
    min-width: 15px;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 800;
}
.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 0 0.45rem;
    font-weight: 700;
    font-size: 0.9rem;
}
.cart-total-amt,
.promo-box h3 {
    color: var(--green);
    font-size: 1.02rem;
    font-weight: 800;
}
.cart-order-btn {
    background: linear-gradient(135deg, #25d366, #0f9e5e);
    color: #fff;
    border: 0;
    border-radius: 12px;
    padding: 0.82rem;
    width: 100%;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.38rem;
    margin-top: 0.35rem;
}
.cart-order-btn svg {
    stroke: #fff;
    fill: none;
    width: 16px;
    height: 16px;
    stroke-width: 2;
}
.promo-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 39, 68, 0.6);
    z-index: 9000;
    align-items: flex-end;
    justify-content: center;
    max-width: 480px;
    left: 50%;
    transform: translateX(-50%);
}
.promo-box {
    background: #fff;
    border-radius: 22px 22px 0 0;
    padding: 2rem 1.5rem 2.2rem;
    width: 100%;
    text-align: center;
    animation: slideUp 0.38s ease;
    position: relative;
}
.promo-close,
.promo-icon {
    border-radius: 50%;
    display: flex;
}
.promo-close {
    position: absolute;
    top: 0.85rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.07);
    border: 0;
    width: 28px;
    height: 28px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}
.promo-close svg {
    stroke: #666;
    fill: none;
    width: 13px;
    height: 13px;
    stroke-width: 2.5;
}
.promo-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    margin: 0 auto 0.85rem;
}
.promo-cta svg,
.promo-icon svg {
    stroke: #fff;
    fill: none;
    width: 25px;
    height: 25px;
    stroke-width: 2;
}
.promo-box h3 {
    font-size: 1.12rem;
    color: var(--text);
    margin-bottom: 0.45rem;
}
.promo-box p {
    font-size: 0.81rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.1rem;
}
.modal-overlay,
.promo-cta,
.promo-icon {
    align-items: center;
    justify-content: center;
}
.promo-cta {
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    color: #fff;
    border: 0;
    border-radius: 12px;
    padding: 0.85rem 2rem;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    display: flex;
    gap: 0.38rem;
}
.promo-cta svg {
    width: 16px;
    height: 16px;
}
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 39, 68, 0.55);
    z-index: 8000;
    max-width: 480px;
    left: 50%;
    transform: translateX(-50%);
}
.modal-box {
    background: #fff;
    border-radius: 20px;
    padding: 1.3rem;
    width: calc(100% - 3rem);
    max-width: 330px;
    animation: fadeIn 0.26s ease;
}
.modal-title {
    font-size: 0.93rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
    text-align: center;
}
.share-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 0.85rem;
}
.modal-close-btn,
.share-opt {
    font-weight: 700;
    cursor: pointer;
}
.share-opt {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.72rem;
    text-align: center;
    font-size: 0.78rem;
    transition: 0.17s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.32rem;
    color: var(--text);
}
.share-opt svg,
.toast svg {
    fill: none;
    width: 19px;
    height: 19px;
    stroke-width: 2;
}
.share-opt:active {
    transform: scale(0.96);
}
.modal-close-btn {
    width: 100%;
    padding: 0.62rem;
    border: 1.5px solid var(--border);
    border-radius: 11px;
    background: 0 0;
    font-size: 0.81rem;
    color: var(--muted);
}
.toast,
.vcard-footer {
    background: var(--navy);
}
.vcard-footer {
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
    padding: 1.1rem;
    font-size: 0.72rem;
    border-radius: var(--radius);
    margin: 0.5rem 0.8rem 5.5rem;
}
.vcard-footer strong {
    color: var(--green2);
}
.toast {
    position: fixed;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    color: #fff;
    padding: 0.62rem 1.35rem;
    border-radius: 25px;
    font-size: 0.78rem;
    font-weight: 600;
    z-index: 9999;
    transition: 0.3s;
    opacity: 0;
    white-space: nowrap;
    max-width: 90vw;
    display: flex;
    align-items: center;
    gap: 0.38rem;
}
.toast svg {
    stroke: #fff;
    width: 14px;
    height: 14px;
}
.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
.section-space {
    height: 0.45rem;
}
