/* Jack's Gelato Mobile App - Premium Design */

:root {
    --charcoal: #2d2d2d;
    --warm-beige: #e8e4df;
    --off-white: #f5f4f2;
    --white: #faf9f7;
    --grey: #d4d0cb;
    --grey-dark: #8a8a8a;
    --text-primary: #2d2d2d;
    --text-secondary: #666;
    --text-muted: #999;
    --accent: #2d2d2d;
    --success: #2e7d32;
    --warning: #e65100;
    --error: #c62828;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

a:hover {
    color: var(--charcoal);
}

button {
    color: inherit;
    font-family: inherit;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.01em;
}

/* Desktop Message */
#desktop-message {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

#desktop-message p {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    #desktop-message {
        display: flex;
    }

    #app {
        display: none !important;
    }
}

/* App Container */
#app {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Screens */
.screen {
    display: none;
    min-height: 100vh;
}

.screen.active {
    display: flex;
    flex-direction: column;
}

/* ==================== LOGIN SCREEN ==================== */
#login-screen,
#signup-screen,
#reset-password-screen {
    background: var(--white);
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.login-container {
    width: 100%;
    max-width: 320px;
    text-align: center;
}

.login-logo {
    width: 180px;
    height: auto;
    margin-bottom: 3rem;
}

.login-container h1 {
    color: var(--text-primary);
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    margin-bottom: 1.25rem;
    text-align: left;
}

.form-group label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--grey);
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group input:focus {
    outline: none;
    border-color: var(--charcoal);
    box-shadow: 0 0 0 3px rgba(45, 45, 45, 0.1);
}

.error-message {
    color: var(--error);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    min-height: 1.25rem;
}

.success-message {
    color: var(--success);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    min-height: 1.25rem;
}

.reset-description {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.login-footer {
    margin-top: 2rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.login-footer a {
    color: var(--charcoal);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
}

/* ==================== LOADING SCREEN ==================== */
#loading-screen {
    background: var(--white);
    justify-content: center;
    align-items: center;
}

.loading-container {
    text-align: center;
}

.loading-logo {
    width: 180px;
    height: auto;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.loading-text {
    color: var(--text-muted);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 400;
}

/* ==================== LOCATION SCREEN ==================== */
#location-screen {
    background: var(--white);
    padding: 0;
}

.location-screen-content {
    padding: 2rem 1.5rem 2rem;
}

.location-screen-content h1 {
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.location-screen-content > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.location-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-card-btn {
    display: block;
    width: 100%;
    background: var(--white);
    border: 1px solid var(--grey);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    color: var(--text-primary);
    font-family: inherit;
}

.location-card-btn:hover,
.location-card-btn:focus {
    border-color: var(--charcoal);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.location-card-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.location-card-info {
    padding: 1.25rem;
}

.location-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.location-card-info h3 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.location-card-address {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.location-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
}

.location-select-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.location-select-link svg {
    flex-shrink: 0;
}

.location-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.location-status.open {
    background: #e8f5e9;
    color: var(--success);
}

.location-status.closed {
    background: #ffebee;
    color: var(--error);
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--charcoal);
    color: var(--white);
    width: 100%;
}

.btn-primary:hover {
    background: #1a1a1a;
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--charcoal);
    color: var(--charcoal);
}

.btn-outline:hover {
    background: var(--charcoal);
    color: var(--white);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}

.btn-full {
    width: 100%;
}

.btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ==================== MAIN APP LAYOUT ==================== */
#main-app {
    display: none;
    flex-direction: column;
    min-height: 100vh;
    background: var(--off-white);
}

#main-app.active {
    display: flex;
}

/* App Header */
.app-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem 1.5rem;
    z-index: 100;
    border-bottom: 1px solid var(--grey);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.header-location-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem 0.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
    font-family: inherit;
}

.header-location-btn:hover {
    opacity: 0.7;
}

.header-location-btn:active {
    opacity: 0.5;
}

.header-location-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.location-chevron {
    display: none;
}

/* Header Cart Button */
.header-cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--off-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
}

.header-cart-btn:hover {
    background: var(--grey);
}

.header-cart-btn .cart-icon {
    width: 22px;
    height: 22px;
    color: var(--charcoal);
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--charcoal);
    color: var(--white);
    border-radius: 9px;
    font-size: 0.6875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-label {
    font-size: 0.6875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.header-location .location-name,
.header-location-info .location-name {
    color: var(--charcoal);
    font-weight: 700;
    font-size: 1.125rem;
}

/* App Content */
.app-content {
    flex: 1;
    padding-top: 70px;
    padding-bottom: 120px;
    overflow-y: auto;
}

.tab-content {
    display: none;
    padding: 1.5rem;
}

.tab-content.active {
    display: block;
}

/* ==================== BOTTOM NAVIGATION ==================== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--grey);
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    height: 72px;
    padding-bottom: env(safe-area-inset-bottom);
    z-index: 100;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.25rem;
    background: none;
    border: none;
    padding: 0 0.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.375rem;
    color: var(--text-muted);
    font-size: 0.625rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: color 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    min-width: 56px;
}

.nav-item.active {
    color: var(--charcoal);
    font-weight: 700;
}

.nav-item.active .nav-icon {
    fill: var(--charcoal);
}

/* Contrast details on filled icons - stay white when active */
.nav-item.active .nav-icon .nav-detail {
    fill: var(--white);
    stroke: var(--white);
}

/* Fill paths get the charcoal fill when active */
.nav-item.active .nav-icon .nav-fill {
    fill: var(--charcoal);
}

.nav-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* PNG icon images - all icons are 1024x1024 square */
.nav-icon-img {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    object-fit: contain;
    opacity: 0.5;
    transition: opacity 0.2s;
}

/* Middle three icons (ice cream cone, gift box, ice cream tub) larger */
.nav-icon-img[src*="ice-cream"],
.nav-icon-img[src*="gift-box"] {
    width: 76px;
    height: 76px;
    margin-top: -22px;
    margin-bottom: -26px;
}

.nav-item.active .nav-icon-img {
    opacity: 1;
}

/* Default state for nav-fill and nav-detail */
.nav-icon .nav-fill {
    fill: none;
}

.nav-icon .nav-detail {
    fill: none;
}

.nav-item span {
    margin-top: 4px;
    line-height: 1;
    white-space: nowrap;
    display: inline-block;
}

/* ==================== HOME TAB ==================== */
.welcome-section {
    margin-bottom: 2rem;
}

.welcome-section h2 {
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

.welcome-section p {
    color: var(--text-secondary);
}

.quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.quick-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: var(--white);
    border: 1px solid var(--grey);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.quick-action-btn:hover {
    border-color: var(--charcoal);
    box-shadow: var(--shadow-md);
}

.quick-action-btn:active {
    transform: scale(0.98);
}

.section {
    margin-bottom: 2rem;
}

.section h3 {
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

.featured-flavours {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    margin: 0 -1.5rem;
    padding: 0 1.5rem 0.5rem;
}

.featured-flavour {
    flex: 0 0 auto;
    min-width: 120px;
    background: var(--white);
    border: 1px solid var(--grey);
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.featured-flavour .flavour-name {
    font-size: 0.875rem;
    font-weight: 500;
}

/* ==================== ORDER TAB ==================== */
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.5rem;
    margin-bottom: 1rem;
}

.menu-header h2 {
    font-size: 1.25rem;
    font-weight: 400;
}

.change-location-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-family: inherit;
    font-size: 0.875rem;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Menu Search Bar */
.menu-search {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    background: var(--white);
    border: 1px solid var(--grey);
    border-radius: var(--radius-md);
    padding: 0 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.menu-search:focus-within {
    border-color: var(--charcoal);
    box-shadow: 0 0 0 3px rgba(45, 45, 45, 0.1);
}

.menu-search .search-icon {
    color: var(--text-muted);
    flex-shrink: 0;
    transition: color 0.2s;
}

.menu-search:focus-within .search-icon {
    color: var(--charcoal);
}

#menu-search-input {
    flex: 1;
    padding: 0.875rem 0.75rem;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 0.9375rem;
    color: var(--text-primary);
}

#menu-search-input::placeholder {
    color: var(--text-muted);
}

#menu-search-input:focus {
    outline: none;
}

.search-clear {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--off-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.2s;
    flex-shrink: 0;
}

.search-clear:hover {
    background: var(--grey);
    color: var(--charcoal);
}

/* Search Results Info */
.search-results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    margin-bottom: 0.5rem;
}

.search-results-count {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.search-results-count strong {
    color: var(--charcoal);
    font-weight: 500;
}

/* No Search Results */
.no-search-results {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--text-secondary);
}

.no-search-results svg {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.no-search-results p {
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.no-search-results .search-suggestion {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Dietary Filters */
.dietary-filters {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    -webkit-overflow-scrolling: touch;
}

.filter-pill {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    background: var(--white);
    border: 1px solid var(--grey);
    border-radius: 20px;
    font-family: inherit;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.filter-pill:hover {
    border-color: var(--charcoal);
}

.filter-pill.active {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: var(--white);
}

.filter-pill.active .filter-icon {
    background: var(--white);
    color: var(--charcoal);
}

.filter-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--charcoal);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.625rem;
    font-weight: 600;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    gap: 0.375rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.category-tab {
    padding: 0.5rem 0.75rem;
    background: var(--white);
    border: 1px solid var(--grey);
    border-radius: 30px;
    font-family: inherit;
    color: var(--text-primary);
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.category-tab.active {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: var(--white);
}

/* Allergen Legend */
.allergen-legend {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--grey);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

/* Allergen Badges */
.allergen-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--white);
}

.allergen-badge.milk { background: #2d2d2d; }
.allergen-badge.nuts { background: #8B4513; }
.allergen-badge.gluten { background: #DAA520; }
.allergen-badge.eggs { background: #F5A623; }
.allergen-badge.soy { background: #228B22; }

/* Hide old menu categories (replaced by category-tabs) */
.menu-categories {
    display: none;
}

.category-btn {
    padding: 0.625rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--grey);
    border-radius: 30px;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
}

.category-btn.active {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: var(--white);
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Premium Product Cards */
.product-card {
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    background: var(--white);
    border: 1px solid var(--grey);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all 0.2s;
}

.product-card:hover {
    border-color: var(--charcoal);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.product-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.product-card-info {
    flex: 1;
}

.product-card-info h4 {
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.product-card-info .product-description {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.product-card-price {
    font-weight: 600;
    font-size: 1rem;
    color: var(--charcoal);
}

.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--grey);
}

/* Product card content layout */
.product-card-content {
    display: flex;
    flex-direction: column;
}

.product-info {
    flex: 1;
}

.product-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}

.product-name {
    font-weight: 500;
    font-size: 1rem;
    flex: 1;
}

.product-price {
    font-size: 0.875rem;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.product-description {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 0.625rem;
}

.product-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.product-badges {
    display: flex;
    gap: 0.375rem;
    flex-wrap: wrap;
    flex: 1;
}

.product-select-btn {
    padding: 0.5rem 0.875rem;
    background: var(--charcoal);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
}

.product-allergens {
    display: flex;
    gap: 0.375rem;
}

.product-dietary {
    display: flex;
    gap: 0.375rem;
}

.dietary-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.dietary-badge.vegan {
    background: #e8f5e9;
    color: #2e7d32;
}

.dietary-badge.dairy-free {
    background: var(--off-white);
    color: var(--text-primary);
}

.dietary-badge.gluten-free {
    background: #fff3e0;
    color: #e65100;
}

/* Legacy menu item styles */
.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--grey);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.menu-item-info h4 {
    font-weight: 500;
    font-size: 0.9375rem;
    margin-bottom: 0.125rem;
}

.menu-item-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.menu-item-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--charcoal);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.125rem;
    cursor: pointer;
    transition: background 0.2s;
}

.quantity-btn:hover {
    background: #1a1a1a;
}

.quantity-display {
    min-width: 24px;
    text-align: center;
    font-weight: 600;
}

.add-btn {
    padding: 0.5rem 1.25rem;
    background: var(--charcoal);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.add-btn:hover {
    background: #1a1a1a;
}

/* Cart Summary - Hidden, using header cart button instead */
.cart-summary {
    display: none !important;
}

/* ==================== PREMIUM CART VIEW ==================== */
.cart-view {
    padding: 0;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 140px);
    background: var(--off-white);
}

/* Cart Header */
.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-bottom: 1px solid var(--grey);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    position: relative;
}

.cart-header h2 {
    font-size: 1.125rem;
    font-weight: 600;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: var(--charcoal);
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: none;
    border: none;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--charcoal);
    font-family: inherit;
    cursor: pointer;
    padding: 0.5rem 0;
}

.back-btn svg {
    color: var(--text-secondary);
}

.back-btn:hover {
    color: var(--text-secondary);
}

.cart-clear-btn {
    background: none;
    border: none;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    font-family: inherit;
    cursor: pointer;
    padding: 0.5rem 0;
    transition: color 0.2s;
}

.cart-clear-btn:hover {
    color: var(--error);
}

/* Collection Card */
.cart-collection-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 1.5rem;
    padding: 1rem 1.25rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--grey);
}

.collection-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--off-white);
    border-radius: 50%;
    flex-shrink: 0;
}

.collection-icon svg {
    color: var(--charcoal);
}

.collection-details {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.collection-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.collection-location {
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
}

.collection-time {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

/* Cart Section */
.cart-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cart-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    margin-bottom: 0.75rem;
}

.cart-section-header h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--charcoal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-item-count {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    border: 1px solid var(--grey);
}

/* Cart Items */
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 0 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--grey);
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--charcoal);
    margin-bottom: 0.125rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-options {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--off-white);
    border-radius: var(--radius-md);
    padding: 0.125rem;
    flex-shrink: 0;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    border: none;
    background: transparent;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: var(--charcoal);
}

.qty-btn:hover {
    background: var(--white);
}

.qty-btn:active {
    background: var(--grey);
}

.qty-value {
    min-width: 28px;
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--charcoal);
}

.cart-item-price {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--charcoal);
    min-width: 50px;
    text-align: right;
    flex-shrink: 0;
}

/* Swipe to delete hint - future enhancement */
.cart-item-delete {
    display: none;
}

/* Cart Footer */
.cart-footer {
    margin-top: auto;
    padding: 1.25rem 1.5rem;
    padding-bottom: max(1.5rem, calc(env(safe-area-inset-bottom) + 0.5rem));
    background: var(--white);
    border-top: 1px solid var(--grey);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
}

.cart-totals {
    margin-bottom: 1rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.subtotal-row {
    display: flex;
}

.total-final {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0;
}

.total-final span:first-child {
    font-weight: 500;
}

/* Checkout Button */
.cart-checkout-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
}

/* ==================== FLAVOUR DECK TAB ==================== */
#tab-flavours h2 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0.25rem;
    text-align: center;
}

.flavour-intro {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    text-align: center;
}

.flavour-categories {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.flavour-category {
    background: var(--white);
    border: 1px solid var(--grey);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
}

.flavour-category h3 {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.flavour-category h3::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--grey);
}

.flavour-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.flavour-list li {
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
    color: var(--text-primary);
    background: var(--off-white);
    border-radius: 50px;
    border: 1px solid var(--grey);
}

/* Flavour Deck Tabs */
.flavour-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.flavour-tab {
    flex: 1;
    padding: 0.75rem;
    background: var(--white);
    border: 1px solid var(--grey);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
}

.flavour-tab.active {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: var(--white);
}

.flavour-tab-content {
    display: none;
}

.flavour-tab-content.active {
    display: block;
}

/* Flavour item with heart */
.flavour-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
    color: var(--text-primary);
    background: var(--off-white);
    border-radius: 50px;
    border: 1px solid var(--grey);
}

.flavour-item-name {
    flex: 1;
}

.flavour-heart {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey-dark);
    transition: color 0.2s, transform 0.2s;
}

.flavour-heart:hover {
    color: #e91e63;
    transform: scale(1.1);
}

.flavour-heart.following {
    color: #e91e63;
}

.flavour-heart svg {
    width: 18px;
    height: 18px;
}

/* Following list */
.following-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
}

.following-empty p {
    margin-bottom: 0.5rem;
}

.following-category {
    margin-bottom: 1.5rem;
}

.following-category h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.following-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ==================== REWARDS TAB ==================== */
.rewards-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.rewards-header h2 {
    font-size: 1.25rem;
    font-weight: 400;
}

.points-balance {
    text-align: right;
}

.points-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1;
}

.points-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.rewards-progress {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid var(--grey);
}

.progress-bar {
    height: 6px;
    background: var(--grey);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.progress-fill {
    height: 100%;
    background: var(--charcoal);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: center;
}

.rewards-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.reward-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--grey);
    border-radius: var(--radius-md);
}

.reward-info h4 {
    font-weight: 500;
    font-size: 0.9375rem;
    margin-bottom: 0.125rem;
}

.reward-info p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.how-it-works {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border: 1px solid var(--grey);
    border-radius: var(--radius-md);
}

.step-number {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--charcoal);
    color: var(--white);
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.step p {
    font-size: 0.9375rem;
}

/* ==================== ORDERS TAB ==================== */
.orders-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.orders-tab {
    flex: 1;
    padding: 0.75rem;
    background: var(--white);
    border: 1px solid var(--grey);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
}

.orders-tab.active {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: var(--white);
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.order-card {
    padding: 1.25rem;
    background: var(--white);
    border: 1px solid var(--grey);
    border-radius: var(--radius-md);
}

.order-card.active-order {
    border-color: var(--charcoal);
    border-width: 2px;
}

.order-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-badge.preparing {
    background: #fff3e0;
    color: var(--warning);
}

.status-badge.ready {
    background: #e8f5e9;
    color: var(--success);
}

.status-badge.completed {
    background: var(--off-white);
    color: var(--text-secondary);
}

.order-number {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 500;
}

.order-details {
    margin-bottom: 0.75rem;
}

.order-location {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.order-items {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

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

.order-items-list li {
    font-size: 0.875rem;
    color: var(--text-primary);
    padding: 0.125rem 0;
}

.order-time,
.order-date {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.order-total {
    font-weight: 600;
    text-align: right;
    font-size: 1rem;
}

.order-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.order-actions .btn-small {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
}

.no-orders {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
}

.no-orders p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.no-orders .no-orders-sub {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ==================== ACCOUNT TAB ==================== */
.account-header {
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 1.5rem;
}

.account-avatar {
    width: 80px;
    height: 80px;
    background: var(--charcoal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 300;
    margin: 0 auto 1rem;
}

#account-name {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
}

#account-email {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.account-menu {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--grey);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 2rem;
    padding: 1.5rem;
    gap: 0.25rem;
}

.account-menu .form-group {
    margin-bottom: 1rem;
}

.account-menu .form-group:last-of-type {
    margin-bottom: 1.5rem;
}

.account-menu .form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.account-menu .form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--grey);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--off-white);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.account-menu .form-group input:focus {
    outline: none;
    border-color: var(--charcoal);
    box-shadow: 0 0 0 3px rgba(45, 45, 45, 0.1);
    background: var(--white);
}

.account-menu .form-group input::placeholder {
    color: var(--text-muted);
}

.account-menu .btn-primary {
    margin-top: 0.5rem;
}

.account-menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: none;
    border: none;
    border-bottom: 1px solid var(--grey);
    font-family: inherit;
    font-size: 0.9375rem;
    color: var(--text-primary);
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
}

.account-menu-item:last-child {
    border-bottom: none;
}

.account-menu-item:hover {
    background: var(--off-white);
}

.chevron {
    color: var(--text-muted);
    font-size: 1.25rem;
}

.logout-btn {
    color: var(--error);
    border-color: var(--error);
}

.logout-btn:hover {
    background: var(--error);
    color: var(--white);
}

/* ==================== MODAL ==================== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 200;
    justify-content: center;
    align-items: flex-end;
    padding: 0;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    text-align: center;
    max-width: 100%;
    width: 100%;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.modal-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.modal-content p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.order-eta {
    margin-bottom: 1.5rem;
}

/* ==================== CONFIRM MODAL ==================== */
.confirm-modal-content {
    padding: 1.5rem;
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
}

.confirm-modal-content h2 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.confirm-modal-content p {
    margin-bottom: 1.5rem;
}

.confirm-modal-buttons {
    display: flex;
    gap: 0.75rem;
}

.confirm-modal-buttons .btn {
    flex: 1;
    padding: 0.875rem 1rem;
}

/* ==================== PRODUCT MODAL ==================== */
.product-modal-content {
    max-width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    text-align: left;
    padding: 0;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

/* Modal handle bar */
.modal-product-header {
    position: relative;
    padding: 1.25rem 1.5rem 1rem;
}

.modal-close-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--off-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.modal-close-btn:hover {
    background: var(--grey);
    color: var(--charcoal);
}

.modal-product-header::before {
    content: '';
    position: absolute;
    top: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: var(--grey);
    border-radius: 2px;
}

.modal-product-header h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    margin-top: 0.5rem;
}

.modal-product-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.modal-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Option Section */
.option-section {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--grey);
}

.option-section:last-of-type {
    border-bottom: none;
}

.option-title {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.option-grid.two-col {
    grid-template-columns: repeat(2, 1fr);
}

.option-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.option-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 0.75rem;
    background: var(--off-white);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-family: inherit;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.option-list-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 1rem;
    background: var(--off-white);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-family: inherit;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
}

.option-list-btn.active,
.option-btn.active {
    border-color: var(--charcoal);
    background: var(--white);
}

.option-name {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--charcoal);
}

.option-price {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.125rem;
}

.option-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dietary-badge.small {
    padding: 0.125rem 0.375rem;
    font-size: 0.5625rem;
}

.option-btn:hover {
    border-color: var(--charcoal);
}

.option-btn.selected {
    border-color: var(--charcoal);
    border-width: 2px;
    background: var(--off-white);
}

.option-btn-name {
    font-weight: 500;
    font-size: 0.9375rem;
}

.option-btn-price {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.option-btn.selected .option-btn-price {
    color: var(--charcoal);
    font-weight: 500;
}

/* Allergen Info in Modal */
.modal-allergens {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.modal-allergen-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: var(--off-white);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
}

/* Allergen Info */
.allergen-info {
    padding: 1rem 1.5rem;
    background: var(--off-white);
}

.allergen-info h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.allergen-info p {
    font-size: 0.8125rem;
    color: var(--text-primary);
    line-height: 1.4;
}

/* Modal Footer */
.modal-footer {
    padding: 1rem 1.5rem;
    padding-bottom: max(1.5rem, calc(env(safe-area-inset-bottom) + 0.5rem));
    background: var(--white);
    border-top: 1px solid var(--grey);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.6875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-value,
#modal-total-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal);
}

.modal-footer .btn-primary {
    flex: 1;
    padding: 0.875rem 1.5rem;
}

/* No Products Message */
.no-products-message {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--text-secondary);
}

.no-products-message p {
    font-size: 0.9375rem;
}

/* Cart Item Options Display */
.cart-item-options {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* ==================== UTILITIES ==================== */
.hidden {
    display: none !important;
}
