:root {
    --brand: #7c3aed;
    --brand-dark: #6d28d9;
    --brand-deeper: #5b21b6;
    --brand-light: #ede9fe;
    --brand-glow: rgba(124, 58, 237, 0.25);
    --accent: #f59e0b;
    --accent-dark: #d97706;
    --accent-light: #fef3c7;
    --success: #10b981;
    --bg: #f1f5f9;
    --bg-warm: #faf5ff;
    --surface: #ffffff;
    --text: #0f172a;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 8px 32px rgba(109, 40, 217, 0.12);
    --shadow-lg: 0 16px 48px rgba(109, 40, 217, 0.18);
    --gradient-brand: linear-gradient(135deg, #6d28d9 0%, #7c3aed 45%, #a855f7 100%);
    --gradient-hero: linear-gradient(135deg, #5b21b6 0%, #7c3aed 35%, #9333ea 65%, #c026d3 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

* { box-sizing: border-box; }

body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

.store-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 280px);
}

.store-body main { flex: 1; position: relative; }

.flash-messages {
    padding-top: 1rem;
    padding-bottom: 0.25rem;
}

.store-body > main > .flash-messages {
    position: fixed;
    top: 5.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1055;
    width: min(40rem, calc(100vw - 1.5rem));
    max-width: none;
    margin: 0;
    padding: 0;
}

.store-body > main > .flash-messages .alert {
    margin-bottom: 0;
}

.admin-content > .flash-messages,
.auth-form-inner > .flash-messages {
    padding-top: 0;
    padding-bottom: 1rem;
}

/* ── Navbar ── */
.store-navbar {
    background: var(--gradient-brand) !important;
    padding: 0.85rem 0;
    box-shadow: 0 4px 24px var(--brand-glow);
    margin-bottom: 0;
    border-bottom: none;
}

.store-navbar .navbar-brand {
    font-weight: 800;
    font-size: 1.2rem;
    color: #fff !important;
    letter-spacing: -0.02em;
}

.brand-icon {
    color: var(--accent);
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,.2));
}

.store-navbar .nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(255,255,255,.88) !important;
    padding: 0.45rem 0.9rem !important;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.store-navbar .nav-link:hover {
    color: #fff !important;
    background: rgba(255,255,255,.18) !important;
}

.btn-nav-register {
    background: rgba(255,255,255,.22) !important;
    color: #fff !important;
    border: 1.5px solid rgba(255,255,255,.45) !important;
    backdrop-filter: blur(4px);
}

.btn-cart {
    background: var(--gradient-accent) !important;
    color: #fff !important;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-sm);
    padding: 0.5rem 1.15rem;
    box-shadow: 0 4px 14px var(--accent-glow);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-glow);
    color: #fff !important;
}

.cart-badge {
    position: absolute;
    top: -7px;
    right: -7px;
    background: #ef4444;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.store-navbar .navbar-toggler {
    border-color: rgba(255,255,255,.4);
    padding: 0.35rem 0.6rem;
}

.store-navbar .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

/* ── Voltar ao topo (página de vendas) ── */
.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1040;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px var(--brand-glow);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px) scale(0.92);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s, box-shadow 0.2s;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    box-shadow: 0 12px 28px var(--brand-glow);
    transform: translateY(-2px) scale(1);
}

.back-to-top:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

@media (max-width: 575px) {
    .back-to-top {
        bottom: 1.15rem;
        right: 1.15rem;
        width: 44px;
        height: 44px;
    }
}

/* ── Hero ── */
.hero-section {
    background: var(--gradient-hero);
    color: #fff;
    padding: 5rem 0 5.5rem;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.hero-section--image {
    background-image: linear-gradient(135deg, color-mix(in srgb, var(--brand) 82%, transparent), color-mix(in srgb, var(--accent) 78%, transparent)), var(--hero-image) !important;
    background-size: cover !important;
    background-position: center !important;
}

.hero-event-meta {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 600;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, color-mix(in srgb, var(--accent) 30%, transparent) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,.12) 0%, transparent 40%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--bg));
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.25);
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-badge i { color: var(--accent); }

.hero-title {
    font-size: clamp(2.2rem, 5.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 1.1rem;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 20px rgba(0,0,0,.15);
}

.hero-subtitle {
    font-size: 1.125rem;
    opacity: 0.92;
    line-height: 1.65;
    margin-bottom: 2.25rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions .btn {
    border-radius: 12px;
    padding: 0.75rem 1.75rem;
    font-weight: 700;
    font-size: 1rem;
}

.hero-actions .btn-light {
    background: #fff;
    color: var(--brand-deeper);
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

.hero-actions .btn-light:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,.2);
}

.hero-actions .btn-outline-light {
    border: 2px solid rgba(255,255,255,.75);
    color: #fff;
}

.hero-actions .btn-outline-light:hover {
    background: #fff;
    color: var(--brand-deeper);
    border-color: #fff;
}

/* ── Sections ── */
#produtos {
    padding-top: 3rem;
    padding-bottom: 4rem;
}

.section-header { margin-bottom: 2.5rem; }

.section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 4px;
    background: var(--gradient-brand);
    border-radius: 2px;
    margin: 0.5rem auto 0;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 0.75rem;
}

/* ── Categorias do cardápio ── */
.category-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
    padding: 0 0.5rem;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1.15rem;
    border-radius: 50px;
    background: #fff;
    border: 2px solid var(--border);
    color: var(--text);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(91, 33, 182, 0.06);
}

.category-pill:hover {
    border-color: var(--brand);
    color: var(--brand);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px var(--brand-glow);
}

.category-pill-count {
    background: var(--brand-light);
    color: var(--brand);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
    min-width: 1.5rem;
    text-align: center;
}

.category-section {
    margin-bottom: 3.5rem;
    scroll-margin-top: 5rem;
}

.category-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.category-section-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text);
    margin: 0;
    white-space: nowrap;
    letter-spacing: -0.02em;
}

.category-section-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--brand), transparent);
    border-radius: 1px;
}

.page-header {
    background: var(--gradient-brand);
    color: #fff;
    padding: 2.5rem 0;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px var(--brand-glow);
}

.page-title {
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

.page-subtitle {
    opacity: 0.88;
    margin: 0;
    font-size: 1rem;
}

/* ── Product cards ── */
.product-card {
    border: none;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s;
    background: var(--surface);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, var(--brand-light), #f3e8ff);
}

.product-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gradient-accent);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 8px rgba(245,158,11,.35);
}

.product-card .card-body { padding: 1rem; }

.product-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--text);
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.45;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-prep-time {
    font-size: 0.82rem;
    color: #b45309;
    font-weight: 600;
    margin: 0.5rem 0 0;
    line-height: 1.4;
}

.product-card .product-prep-time {
    margin-bottom: 0.75rem;
}

.summary-list .product-prep-time {
    font-size: 0.78rem;
    margin: 0.15rem 0 0;
    color: var(--text-muted);
}

.ficha-ticket-prep {
    text-align: center;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 0.4rem 0.6rem;
    margin-bottom: 0.75rem !important;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-card .form-control {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    border-color: var(--border);
    font-weight: 600;
}

.product-card .btn-primary {
    background: var(--gradient-brand);
    border: none;
    font-weight: 700;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    font-size: 0.9rem;
}

.product-card .btn-primary:hover {
    background: linear-gradient(135deg, var(--brand-deeper), var(--brand-dark));
    box-shadow: 0 4px 16px var(--brand-glow);
}

/* ── Modal adicionado ao carrinho ── */
.cart-added-modal {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.cart-added-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.cart-added-modal .btn-lg {
    border-radius: 12px;
    font-weight: 700;
}

/* ── Content cards ── */
.content-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.content-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, #fafafa, #fff);
}

.content-card-body { padding: 1.5rem; }

.sticky-summary { position: sticky; top: 90px; }

.summary-list li:last-child { border-bottom: none !important; }

/* ── Payment ── */
.payment-option { cursor: pointer; }

.payment-card {
    border: 2px solid var(--border);
    border-radius: 14px;
    padding: 1.35rem;
    text-align: center;
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    height: 100%;
    background: var(--surface);
}

.payment-card.selected {
    border-color: var(--brand);
    background: var(--brand-light);
    box-shadow: 0 0 0 4px var(--brand-glow);
}

.payment-icon { font-size: 2.25rem; margin-bottom: 0.25rem; }

/* ── Buttons global ── */
.btn-primary {
    background: var(--gradient-brand);
    border: none;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--brand-deeper), var(--brand));
    transform: translateY(-1px);
    box-shadow: 0 6px 20px var(--brand-glow);
}

.btn-success {
    background: linear-gradient(135deg, #059669, var(--success));
    border: none;
    font-weight: 700;
    border-radius: var(--radius-sm);
}

.btn-outline-primary {
    color: var(--brand);
    border-color: var(--brand);
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.btn-outline-primary:hover {
    background: var(--brand);
    border-color: var(--brand);
}

/* ── Stats (minha conta) ── */
.stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.35rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}

.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text);
}

.stat-value-sm { font-size: 1rem; font-weight: 700; }

.stat-label {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 500;
}

/* ── Minha conta (layout com menu) ── */
.account-shell {
    display: grid;
    grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.account-panel { min-width: 0; }

.account-nav {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.25rem;
    position: sticky;
    top: 1rem;
}

.account-nav-user {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.account-nav-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.account-nav-name {
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.3;
}

.account-nav-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.account-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.account-nav-link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.85rem;
    border-radius: var(--radius-sm);
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
    transition: background 0.15s, color 0.15s;
}

.account-nav-link:hover {
    background: var(--bg);
    color: var(--brand);
}

.account-nav-link.active {
    background: color-mix(in srgb, var(--brand) 12%, transparent);
    color: var(--brand);
    font-weight: 600;
}

.account-nav-link i {
    font-size: 1.1rem;
    width: 1.25rem;
    text-align: center;
}

.account-nav-badge {
    margin-left: auto;
    background: var(--brand);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    min-width: 1.35rem;
    height: 1.35rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.35rem;
}

.account-nav-footer {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.account-fichas-tabs {
    gap: 0.35rem;
}

.account-fichas-tabs .nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-radius: 999px;
    padding: 0.45rem 1rem;
}

.account-fichas-tabs .nav-link:hover {
    color: var(--brand);
    background: color-mix(in srgb, var(--brand) 8%, transparent);
}

.account-fichas-tabs .nav-link.active {
    background: var(--gradient-brand);
    color: #fff;
}

.account-fichas-tabs .nav-link.active .badge {
    background: rgba(255, 255, 255, 0.25) !important;
    color: #fff !important;
}

.ficha-ticket-codigo-used {
    font-size: 1rem;
    opacity: 0.75;
}

@media (max-width: 991.98px) {
    .account-shell {
        grid-template-columns: 1fr;
    }

    .account-nav {
        position: static;
    }

    .account-nav-list {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.25rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0.45rem;
    }

    .account-nav-list::-webkit-scrollbar {
        display: none;
    }

    .account-nav-link {
        white-space: nowrap;
        flex-shrink: 0;
        padding: 0.7rem 0.95rem;
        font-size: 0.9rem;
    }

    .account-nav-user,
    .account-nav-footer {
        display: none;
    }

    .account-nav {
        padding: 0.85rem;
        margin-bottom: 0.25rem;
    }

    .ficha-ticket:hover {
        transform: none;
    }
}

@media (max-width: 767.98px) {
    .account-panel .content-card {
        border-radius: 14px;
    }

    .account-panel .content-card-header,
    .account-panel .content-card-body {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .ficha-ticket {
        padding: 1.15rem 1.1rem 1rem;
    }

    .ficha-ticket-qr {
        padding: 1.15rem;
    }

    .ficha-ticket-qr img {
        max-width: 220px;
    }

    .ficha-ticket-codigo {
        font-size: 1.45rem;
        letter-spacing: 0.14em;
    }

    .ficha-ticket-title {
        font-size: 1.05rem;
    }

    .ficha-ticket .btn {
        padding-top: 0.65rem;
        padding-bottom: 0.65rem;
        font-size: 0.92rem;
    }
}

/* ── Empty state ── */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--surface);
    border-radius: var(--radius);
    border: 2px dashed var(--border);
}

.empty-state i {
    font-size: 3.5rem;
    color: var(--brand-light);
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 1rem;
}

.empty-state p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* ── Auth ── */
.auth-body {
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--bg);
}

.auth-wrapper { display: flex; min-height: 100vh; min-height: 100dvh; }

.auth-brand-panel {
    flex: 1;
    background: var(--gradient-hero);
    color: #fff;
    padding: 3rem;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.auth-brand-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(245,158,11,.2), transparent 60%);
}

.auth-brand-content { max-width: 420px; position: relative; z-index: 1; }

.auth-logo { font-size: 1.5rem; font-weight: 800; }

.auth-logo-mobile {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--brand);
}

.auth-features li {
    padding: 0.55rem 0;
    opacity: 0.92;
    font-weight: 500;
}

.auth-features i { color: var(--accent); }

.auth-form-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--surface);
}

.auth-form-inner { width: 100%; max-width: 420px; }

.auth-title {
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
}

.auth-subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.5;
}

@media (max-width: 991.98px) {
    .auth-body {
        background:
            radial-gradient(ellipse 120% 60% at 50% -10%, color-mix(in srgb, var(--brand) 28%, transparent), transparent 70%),
            linear-gradient(180deg, color-mix(in srgb, var(--brand) 10%, #fff) 0%, var(--bg) 42%, var(--bg) 100%);
    }

    .auth-form-panel {
        align-items: flex-start;
        background: transparent;
        padding: 1.25rem 1rem 2rem;
    }

    .auth-form-inner {
        max-width: 100%;
        margin-top: 0.35rem;
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        box-shadow: var(--shadow-md);
        padding: 1.35rem 1.15rem 1.5rem;
    }

    .auth-logo-mobile {
        margin-bottom: 1rem !important;
    }

    .auth-title {
        font-size: 1.55rem;
    }

    .auth-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
}

.auth-form .input-group-text {
    background: var(--brand-light);
    border-color: var(--border);
    color: var(--brand);
}

.auth-form .form-control {
    border-color: var(--border);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 0.75rem 1rem;
}

.auth-form .input-group-lg .input-group-text {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    padding: 0 1rem;
}

.auth-form .form-control:focus {
    border-color: var(--brand-light);
    box-shadow: 0 0 0 3px var(--brand-glow);
}

.password-toggle-btn {
    border-color: var(--border);
    color: var(--text-muted);
    padding-inline: 0.85rem;
}

.password-toggle-btn:hover {
    color: var(--brand);
    background: var(--brand-light);
    border-color: var(--brand-light);
}

.input-group .password-toggle-btn {
    border-left: 0;
}

/* ── Footer ── */
.store-footer {
    position: relative;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: rgba(255, 255, 255, 0.72);
    margin-top: auto;
    padding: 0 0 1.5rem;
}

.footer-accent {
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2.5rem;
    padding: 2.75rem 0 2rem;
}

.footer-col-title {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 1rem;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    text-decoration: none;
    margin-bottom: 0.85rem;
}

.footer-brand:hover {
    color: #fff;
    opacity: 0.92;
}

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

.footer-brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
    font-size: 1.1rem;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.58);
    margin-bottom: 1rem;
    max-width: 36ch;
}

.footer-event-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.footer-chip i {
    color: var(--accent);
    font-size: 0.85rem;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li + li {
    margin-top: 0.45rem;
}

.footer-nav a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s, transform 0.2s;
}

.footer-nav a i {
    width: 18px;
    text-align: center;
    font-size: 0.95rem;
    opacity: 0.75;
}

.footer-nav a:hover {
    color: #fff;
    transform: translateX(2px);
}

.footer-contact-wa:hover i {
    color: #4ade80;
}

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem 2rem;
    padding: 1.1rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 1.25rem;
}

.footer-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
}

.footer-trust i {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom small {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.78rem;
}

@media (max-width: 991px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-col-brand {
        grid-column: 1 / -1;
    }

    .footer-desc {
        max-width: none;
    }
}

@media (max-width: 575px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding-top: 2rem;
    }

    .footer-trust {
        flex-direction: column;
        align-items: center;
        gap: 0.65rem;
    }
}

/* legacy alias */
.footer-link {
    color: rgba(255,255,255,.55);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #fff;
}

.store-footer .text-muted { color: rgba(255,255,255,.5) !important; }

/* ── Alerts ── */
.alert {
    border-radius: var(--radius-sm);
    border: none;
    font-weight: 500;
}

.alert-success { background: #d1fae5; color: #065f46; }
.alert-danger { background: #fee2e2; color: #991b1b; }
.alert-warning { background: #fef3c7; color: #92400e; }
.alert-info { background: var(--brand-light); color: var(--brand-deeper); }

.alert-success-subtle {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

/* ── Table ── */
.table thead th {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 700;
    border-bottom-width: 1px;
}

.table-hover tbody tr:hover {
    background: var(--brand-light);
}

.badge.bg-success-subtle { background: #d1fae5 !important; }
.badge.bg-warning-subtle { background: #fef3c7 !important; }

/* ── Misc ── */
.max-w-pix { max-width: 480px; margin: 0 auto; }
.pix-qr { max-width: 280px; border-radius: 12px; box-shadow: var(--shadow-md); }
.result-green { background: var(--success); color: #fff; }
.result-red { background: #ef4444; color: #fff; }
#qr-reader { border-radius: 12px; overflow: hidden; }
.object-fit-cover { object-fit: cover; }
.min-vh-100 { min-height: 100vh; }
.qty-input { width: 72px; }

/* ── Página do pedido / fichas ── */
.order-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.order-header-kicker {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.85;
    margin-bottom: 0.35rem;
}

.order-status-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

.order-status-pill.bg-success { background: linear-gradient(135deg, #059669, #10b981) !important; }
.order-status-pill.bg-warning { background: linear-gradient(135deg, #d97706, #f59e0b) !important; color: #1e1b4b !important; }
.order-status-pill.bg-secondary { background: #64748b !important; }

.order-items-list {
    padding: 0.5rem 0;
}

.order-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.order-item-row:last-child {
    border-bottom: none;
}

.order-item-qty {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    height: 1.6rem;
    padding: 0 0.45rem;
    margin-right: 0.35rem;
    background: var(--brand-light);
    color: var(--brand-dark);
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.8rem;
}

.order-item-name {
    font-weight: 600;
    color: var(--text);
}

.order-item-price {
    font-weight: 700;
    color: var(--brand);
    white-space: nowrap;
}

.order-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #faf5ff, #f3e8ff);
    border-top: 2px solid var(--brand-light);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--brand-deeper);
}

.order-info-banner {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem 1.35rem;
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
    border: 1px solid transparent;
}

.order-info-banner i {
    font-size: 1.75rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.order-info-banner strong {
    display: block;
    margin-bottom: 0.25rem;
}

.order-info-banner p {
    margin: 0;
    font-size: 0.92rem;
    opacity: 0.9;
}

.order-info-success {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-color: #a7f3d0;
    color: #065f46;
}

.order-info-success i { color: #059669; }

.order-info-warning {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border-color: #fde68a;
    color: #92400e;
}

.order-info-warning i { color: #d97706; }

.order-info-muted {
    background: #f8fafc;
    border-color: var(--border);
    color: var(--text-muted);
}

.fichas-section-header {
    margin: 2rem 0 1.5rem;
    text-align: center;
}

.fichas-section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.35rem;
}

.fichas-section-subtitle {
    color: var(--text-muted);
    margin: 0;
}

.ficha-ticket {
    position: relative;
    background: #fff;
    border-radius: var(--radius);
    border: 2px solid var(--brand-light);
    box-shadow: var(--shadow-md);
    padding: 1.35rem 1.35rem 1.15rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.ficha-ticket:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.ficha-ticket::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-brand);
}

.ficha-ticket-used {
    opacity: 0.88;
    border-color: var(--border);
}

.ficha-ticket-used::before {
    background: #94a3b8;
}

.ficha-ticket-notch {
    position: absolute;
    top: 50%;
    width: 18px;
    height: 18px;
    background: var(--bg);
    border-radius: 50%;
    transform: translateY(-50%);
}

.ficha-ticket-notch-left {
    left: -10px;
    border: 2px solid var(--brand-light);
}

.ficha-ticket-notch-right {
    right: -10px;
    border: 2px solid var(--brand-light);
}

.ficha-ticket-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.ficha-ticket-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--brand-light);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.ficha-ticket-title {
    font-size: 1rem;
    font-weight: 800;
    margin: 0 0 0.35rem;
    line-height: 1.3;
    color: var(--text);
}

.ficha-ticket-status {
    font-size: 0.72rem;
    font-weight: 700;
}

.ficha-ticket-qr {
    background: #fff;
    border: 2px dashed var(--border);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    margin-bottom: 0.85rem;
}

.ficha-ticket-qr img {
    max-width: 180px;
    width: 100%;
    height: auto;
    display: inline-block;
}

.ficha-ticket-codigo {
    text-align: center;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin: 0 0 0.5rem;
}

.ficha-ticket-hint {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0 0 0.85rem;
    font-weight: 600;
}

.barraca-local-guide {
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    padding: 0.75rem;
    margin: 0 0 0.85rem;
    text-align: left;
}

.barraca-local-guide-title {
    font-size: 0.82rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--text);
}

.barraca-local-guide-photo {
    display: block;
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.barraca-local-guide-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.45;
}

.checkout-barraca-locais {
    grid-column: 1 / -1;
    padding: 0.75rem 1rem;
    background: rgba(15, 23, 42, 0.03);
    border: 1px dashed rgba(15, 23, 42, 0.12);
    border-radius: 12px;
}

.checkout-barraca-locais-label {
    font-size: 0.85rem;
    font-weight: 700;
    margin: 0;
    color: var(--text);
}

.checkout-barraca-locais .barraca-local-guide {
    margin-bottom: 0.75rem;
}

.barraca-local-guide--compact {
    padding: 0.6rem 0.75rem;
    margin-bottom: 0.75rem;
}

.barraca-local-guide--compact .barraca-local-guide-title {
    margin-bottom: 0.35rem;
}

.barraca-local-guide--compact .barraca-local-guide-text {
    margin-bottom: 0.5rem;
}

.barraca-local-details {
    margin: 0;
}

.barraca-local-details-summary {
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    user-select: none;
}

.barraca-local-details-summary::-webkit-details-marker {
    display: none;
}

.barraca-local-details-summary::before {
    content: '▸';
    font-size: 0.75rem;
    transition: transform 0.15s ease;
}

.barraca-local-details[open] .barraca-local-details-summary::before {
    transform: rotate(90deg);
}

.barraca-local-details-body {
    margin-top: 0.65rem;
}

.barraca-local-guide--compact .barraca-local-guide-photo {
    max-height: none;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: #fff;
}

.checkout-barraca-locais .barraca-local-guide:last-child {
    margin-bottom: 0;
}

.ficha-ticket-used-at {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0 0 0.85rem;
}

.ficha-brinquedo-sessao {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    text-align: center;
    margin: 0 0 0.85rem;
}

.ficha-brinquedo-sessao.is-expired {
    background: #f8fafc;
    border-color: var(--border);
}

.ficha-brinquedo-sessao-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #c2410c;
    margin-bottom: 0.35rem;
}

.ficha-brinquedo-sessao.is-expired .ficha-brinquedo-sessao-label {
    color: var(--text-muted);
}

.ficha-brinquedo-countdown {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #9a3412;
    line-height: 1.2;
}

.ficha-brinquedo-countdown.is-expired {
    font-size: 1.05rem;
    letter-spacing: 0;
    color: var(--text-muted);
}

.ficha-ticket-download {
    margin-top: auto;
    border-radius: 10px;
    font-weight: 700;
}

.order-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    padding-top: 0.5rem;
}

.agenda-preview--compact {
    margin: 0;
}

.agenda-preview-list {
    display: grid;
    gap: 0.75rem;
}

.agenda-preview-item {
    display: grid;
    grid-template-columns: 7.5rem 1fr;
    gap: 0.75rem;
    align-items: start;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.agenda-preview-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.agenda-preview-meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.agenda-preview-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.agenda-preview-time {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.agenda-timeline {
    display: grid;
    gap: 2rem;
}

.agenda-day-header {
    margin-bottom: 1rem;
}

.agenda-day-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0;
    color: var(--text);
}

.agenda-day-items {
    display: grid;
    gap: 0.85rem;
}

.agenda-item {
    display: grid;
    grid-template-columns: 5.5rem 1fr;
    gap: 1rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1rem 1.1rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.agenda-item-body {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    min-width: 0;
}

.agenda-item-content {
    flex: 1;
    min-width: 0;
}

.agenda-item-media {
    position: relative;
    flex-shrink: 0;
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f4;
}

.agenda-item-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.agenda-item-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.35);
    color: #fff;
    font-size: 1.75rem;
    pointer-events: none;
}

.agenda-item-more-btn {
    margin-top: 0.65rem;
}

.agenda-modal-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.agenda-modal-local {
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 1rem;
}

.agenda-modal-desc {
    color: var(--text-muted);
    line-height: 1.6;
}

.agenda-modal-image {
    width: 100%;
    max-height: 420px;
    object-fit: contain;
    background: #f5f5f4;
}

.agenda-modal-video-file {
    max-height: 420px;
    background: #000;
}

.agenda-admin-preview-img {
    display: block;
    max-width: 220px;
    max-height: 160px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--border, #e7e5e4);
}

.agenda-item-hour {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 4.5rem;
    padding: 0.45rem 0.6rem;
    border-radius: 10px;
    background: color-mix(in srgb, var(--primary) 12%, transparent);
    color: var(--primary);
    font-weight: 800;
    font-size: 1.05rem;
}

.agenda-item-title {
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0 0 0.35rem;
}

.agenda-item-local {
    margin: 0 0 0.35rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 600;
}

.agenda-item-desc {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 575px) {
    .agenda-preview-item,
    .agenda-item {
        grid-template-columns: 1fr;
    }

    .agenda-item-body {
        flex-direction: column;
    }

    .agenda-item-media {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .agenda-item-more-btn {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .store-body > main > .flash-messages {
        top: 4.5rem;
    }

    .hero-section { padding: 3.5rem 0 4.5rem; }
    .store-navbar .navbar-collapse {
        background: rgba(91,33,182,.95);
        border-radius: 12px;
        padding: 1rem;
        margin-top: 0.75rem;
    }

    .store-navbar .navbar-nav {
        align-items: stretch !important;
        gap: 0.35rem;
    }

    .store-navbar .nav-link {
        padding: 0.7rem 0.9rem !important;
    }

    .store-navbar .btn-cart {
        display: flex;
        width: 100%;
        justify-content: center;
        margin-top: 0.35rem;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .hero-actions .btn {
        width: 100%;
        margin: 0 !important;
    }

    .category-nav {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        padding: 0.15rem 0 0.65rem;
        margin-left: -0.25rem;
        margin-right: -0.25rem;
        padding-left: 0.25rem;
        padding-right: 0.25rem;
        scrollbar-width: none;
    }

    .category-nav::-webkit-scrollbar {
        display: none;
    }

    .category-pill {
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    .product-card:hover {
        transform: none;
    }

    .product-card:hover .product-img {
        transform: none;
    }
}

@media (max-width: 575px) {
    .store-body {
        overflow-x: clip;
    }

    .hero-section {
        padding: 2.75rem 0 3.25rem;
    }

    .hero-title {
        font-size: clamp(1.85rem, 9vw, 2.35rem);
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-badge {
        font-size: 0.78rem;
        padding: 0.4rem 0.9rem;
        max-width: 100%;
        white-space: normal;
        text-align: center;
        line-height: 1.35;
    }

    .section-title {
        font-size: 1.45rem;
    }

    .category-section {
        scroll-margin-top: 4.25rem;
        margin-bottom: 2.5rem;
    }

    .category-section-title {
        font-size: 1.15rem;
    }

    .product-card .card-body {
        padding: 0.85rem;
    }

    .product-name {
        font-size: 0.92rem;
    }

    .product-price {
        font-size: 1.05rem;
    }

    .product-card .input-group {
        flex-wrap: nowrap;
        gap: 0.4rem;
    }

    .product-card .form-control {
        flex: 0 0 3.5rem;
        width: 3.5rem;
        border-radius: var(--radius-sm) !important;
        text-align: center;
        padding-left: 0.35rem;
        padding-right: 0.35rem;
        font-size: 0.9rem;
    }

    .product-card .btn-primary {
        flex: 1 1 auto;
        border-radius: var(--radius-sm) !important;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        white-space: nowrap;
        font-size: 0.8rem;
    }

    .content-card-body {
        padding: 1rem;
    }

    .page-header {
        padding: 1.75rem 0;
    }

    .page-title {
        font-size: 1.45rem;
    }

    section.container.pb-5 {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }
}
