/* ─────────────────────────────────────────────
   SmallBite – Frontend CSS
   Mobil-first, minimalistisk design
───────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }

.pjm-app {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 15px 120px;
    color: #1a202c;
}

/* ─── LOKATIONSVÆLGER ─── */
.pjm-location-picker {
    text-align: center;
    padding: 40px 20px;
}
.pjm-location-picker h2 {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 8px;
    color: #2d6a4f;
}
.pjm-location-picker p {
    color: #718096;
    margin-bottom: 30px;
}
.pjm-location-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}
.pjm-loc-card {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 28px 36px;
    cursor: pointer;
    transition: all 0.15s;
    min-width: 200px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.pjm-loc-card:hover { border-color: #2d6a4f; box-shadow: 0 8px 20px rgba(45,106,79,0.15); transform: translateY(-2px); }
.pjm-loc-card.closed { opacity: 0.55; cursor: not-allowed; }
.pjm-loc-card h3 { font-size: 20px; font-weight: 800; margin: 0 0 6px; }
.pjm-loc-card .pjm-loc-address { font-size: 13px; color: #718096; margin: 0 0 12px; }
.pjm-loc-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}
.pjm-loc-status.open  { background: #d1fae5; color: #065f46; }
.pjm-loc-status.closed { background: #fee2e2; color: #991b1b; }

/* ─── UGENS RUTE (foodtruck) ─── */
.pjm-weekly-route {
    margin-top: 12px;
    text-align: left;
}
.pjm-weekly-route summary {
    font-size: 12px;
    font-weight: 700;
    color: #718096;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
    user-select: none;
}
.pjm-weekly-route summary::-webkit-details-marker { display: none; }
.pjm-weekly-route summary::after {
    content: '▾';
    font-size: 10px;
    transition: transform 0.15s;
}
.pjm-weekly-route[open] summary::after { transform: rotate(-180deg); }
.pjm-weekly-route ul {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    border-top: 1px solid #e2e8f0;
    padding-top: 8px;
}
.pjm-weekly-route li {
    font-size: 12px;
    color: #4a5568;
    padding: 3px 0;
    display: flex;
    gap: 6px;
}
.pjm-weekly-route li strong {
    min-width: 28px;
    color: #2d3748;
}
.pjm-weekly-route li.pjm-route-today {
    color: #065f46;
    font-weight: 700;
}
.pjm-weekly-route li.pjm-route-today strong {
    color: #065f46;
}

/* ─── MENU HEADER ─── */
.pjm-menu-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
    flex-wrap: wrap;
}
.pjm-back-btn {
    background: none;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 8px 16px;
    cursor: pointer;
    font-weight: 700;
    color: #4a5568;
    font-size: 14px;
    transition: all 0.15s;
}
.pjm-back-btn:hover { background: #f7fafc; border-color: #cbd5e0; }
.pjm-menu-header h2 { margin: 0; font-size: 22px; font-weight: 900; color: #2d6a4f; flex: 1; }

/* ─── SØGE + VISNINGS TOOLBAR ─── */
.pjm-menu-toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.pjm-search-wrap {
    flex: 1;
    position: relative;
}
.pjm-search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    pointer-events: none;
}
.pjm-search-input {
    width: 100%;
    padding: 10px 14px 10px 38px;
    border: 1.5px solid rgba(255,255,255,0.55);
    border-radius: 14px;
    font-size: 15px;
    font-family: inherit;
    color: #1a202c;
    transition: border-color 0.15s, box-shadow 0.15s;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.8);
}
.pjm-search-input:focus {
    outline: none;
    border-color: rgba(45,106,79,0.5);
    background: rgba(255,255,255,0.85);
    box-shadow: 0 4px 16px rgba(45,106,79,0.1), inset 0 1px 0 rgba(255,255,255,0.9);
}
.pjm-search-input::placeholder { color: #a0aec0; }

.pjm-view-toggle {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1.5px solid rgba(255,255,255,0.5);
    border-radius: 10px;
    padding: 3px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.pjm-view-btn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 7px;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    transition: all 0.12s;
}
.pjm-view-btn.active { background: #2d6a4f; color: #fff; }
.pjm-view-btn:hover:not(.active) { color: #4a5568; background: rgba(0,0,0,0.04); }

/* ─── KATEGORI TABS ─── */
.pjm-cat-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 5px;
    padding-top: 10px;
    margin-bottom: 25px;
    scrollbar-width: none;
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
}
.pjm-cat-tabs::-webkit-scrollbar { display: none; }
.pjm-cat-tab {
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 7px 18px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.15s;
    color: #4a5568;
}
.pjm-cat-tab.active, .pjm-cat-tab:hover {
    background: #2d6a4f;
    border-color: #2d6a4f;
    color: #fff;
}

/* ─── PRODUKTGRID ─── */
.pjm-category-section { margin-bottom: 35px; }
.pjm-category-title {
    font-size: 18px;
    font-weight: 900;
    color: #2d3748;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 3px solid #e2e8f0;
}
.pjm-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
}

/* ── Listevisning ── */
.pjm-products-grid.list-view {
    grid-template-columns: 1fr;
    gap: 8px;
}
.pjm-products-grid.list-view .pjm-product-card {
    display: flex;
    align-items: center;
    border-radius: 14px;
    gap: 0;
}
.pjm-products-grid.list-view .pjm-product-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 12px 0 0 12px;
}
.pjm-products-grid.list-view .pjm-product-img-placeholder {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 12px 0 0 12px;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0fdf4;
}
.pjm-products-grid.list-view .pjm-product-info {
    flex: 1;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    min-width: 0;
}
.pjm-products-grid.list-view .pjm-product-name {
    font-size: 15px;
    margin-bottom: 0;
}
.pjm-products-grid.list-view .pjm-product-desc {
    display: block;
    font-size: 12px;
    color: #718096;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    -webkit-line-clamp: unset;
    margin-bottom: 0;
}
.pjm-products-grid.list-view .pjm-product-price {
    font-size: 15px;
    white-space: nowrap;
    margin-top: 4px;
}

.pjm-product-card {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.15s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.pjm-product-card:hover { border-color: #2d6a4f; box-shadow: 0 8px 20px rgba(45,106,79,0.12); transform: translateY(-2px); }
.pjm-product-card.out-of-stock { opacity: 0.5; cursor: not-allowed; }
.pjm-product-img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    background: #f0f4f8;
}
.pjm-product-img-placeholder {
    width: 100%;
    height: 130px;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}
.pjm-product-info { padding: 12px; }
.pjm-product-name { font-size: 15px; font-weight: 800; margin-bottom: 4px; line-height: 1.3; }
.pjm-product-desc { font-size: 12px; color: #718096; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pjm-product-price { font-size: 16px; font-weight: 900; color: #2d6a4f; }
.pjm-product-badge { font-size: 11px; color: #dc2626; font-weight: 700; }

/* ─── PRODUKT MODAL ─── */
.pjm-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 99998;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    animation: pjmFadeIn 0.2s ease;
}
@keyframes pjmFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pjmSlideUp { from { transform: translateY(60px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.pjm-modal {
    background: #fff;
    border-radius: 24px 24px 0 0;
    width: 100%;
    max-width: 580px;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    animation: pjmSlideUp 0.25s ease;
}
.pjm-modal-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 24px 24px 0 0;
    flex-shrink: 0;
}
.pjm-modal-img-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    border-radius: 24px 24px 0 0;
    flex-shrink: 0;
}
.pjm-modal-body {
    padding: 20px 22px 16px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
}
.pjm-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 2;
}
.pjm-modal-name { font-size: 22px; font-weight: 900; margin-bottom: 6px; }
.pjm-modal-desc { font-size: 14px; color: #718096; margin-bottom: 16px; line-height: 1.5; }
.pjm-modal-base-price { font-size: 20px; font-weight: 900; color: #2d6a4f; margin-bottom: 20px; }

/* Add-on grupper */
.pjm-addon-group {
    margin-bottom: 12px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.15s;
}
.pjm-addon-group.has-selection { border-color: #2d6a4f; }

.pjm-addon-group-label {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #4a5568;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    background: #f7fafc;
    transition: background 0.12s;
    margin: 0;
}
.pjm-addon-group-label:hover { background: #edf2f7; }
.pjm-addon-group-label .required-badge {
    font-size: 10px;
    background: #fed7d7;
    color: #c53030;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 700;
}
.pjm-addon-group-label .pjm-group-count {
    margin-left: auto;
    font-size: 11px;
    background: #2d6a4f;
    color: #fff;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 700;
    display: none;
}
.pjm-addon-group.has-selection .pjm-group-count { display: inline-block; }
.pjm-addon-group-label .pjm-group-chevron {
    font-size: 12px;
    color: #a0aec0;
    transition: transform 0.2s;
    flex-shrink: 0;
}
.pjm-addon-group.collapsed .pjm-group-chevron { transform: rotate(-90deg); }
.pjm-addon-group-label .pjm-group-icon {
    font-size: 14px;
    flex-shrink: 0;
}

.pjm-addon-group-content {
    padding: 10px 14px 14px;
    transition: max-height 0.25s ease, opacity 0.2s ease;
}
.pjm-addon-group.collapsed .pjm-addon-group-content {
    display: none;
}

.pjm-addon-options { display: flex; flex-wrap: wrap; gap: 6px; }
.pjm-addon-option {
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.12s;
    user-select: none;
    line-height: 1.3;
}
.pjm-addon-option:hover { border-color: #2d6a4f; }
.pjm-addon-option.selected { background: #2d6a4f; border-color: #2d6a4f; color: #fff; }
.pjm-addon-option .addon-price { font-size: 11px; opacity: 0.8; margin-left: 3px; }

/* Note felt */
.pjm-item-note { margin-bottom: 6px; }
.pjm-item-note label { font-size: 13px; font-weight: 700; display: block; margin-bottom: 5px; color: #4a5568; }
.pjm-item-note textarea {
    width: 100%;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px;
    font-size: 14px;
    resize: none;
    font-family: inherit;
}
.pjm-item-note textarea:focus { outline: none; border-color: #2d6a4f; }

/* Antal + tilføj — sticky footer */
.pjm-modal-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    padding-bottom: max(14px, env(safe-area-inset-bottom, 14px));
    border-top: 2px solid #e2e8f0;
    background: #fff;
    flex-shrink: 0;
}
.pjm-qty-control {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}
.pjm-qty-btn {
    background: none;
    border: none;
    width: 42px;
    height: 42px;
    font-size: 20px;
    cursor: pointer;
    font-weight: 700;
    color: #2d6a4f;
    transition: background 0.1s;
}
.pjm-qty-btn:hover { background: #f0fdf4; }
.pjm-qty-value { width: 36px; text-align: center; font-size: 16px; font-weight: 800; }
.pjm-add-btn {
    flex: 1;
    background: #2d6a4f;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.15s;
}
.pjm-add-btn:hover { background: #1e4d38; }
.pjm-add-btn:disabled { background: #a0aec0; cursor: not-allowed; }

/* ─── KURV BAR (bund) ─── */
.pjm-cart-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99997;
    display: flex;
    justify-content: center;
    padding: 12px 15px;
    background: transparent;
    pointer-events: none;
}
.pjm-cart-bar-inner {
    background: #2d6a4f;
    color: #fff;
    border-radius: 16px;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    pointer-events: auto;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 8px 24px rgba(45,106,79,0.4);
    transition: all 0.15s;
}
.pjm-cart-bar-inner:hover { background: #1e4d38; transform: translateY(-2px); }
.pjm-cart-count-badge {
    background: #fff;
    color: #2d6a4f;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 16px;
}
.pjm-cart-label { font-size: 16px; font-weight: 800; flex: 1; }
.pjm-cart-total { font-size: 16px; font-weight: 800; }

/* ─── KURV DRAWER ─── */
.pjm-cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 99998;
}
.pjm-cart-drawer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #fff;
    border-radius: 24px 24px 0 0;
    max-height: 90vh;
    overflow-y: auto;
    animation: pjmSlideUp 0.25s ease;
    padding: 20px 20px 40px;
    max-width: 600px;
    margin: 0 auto;
}
.pjm-cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}
.pjm-cart-drawer-header h3 { margin: 0; font-size: 20px; font-weight: 900; }
.pjm-cart-close-btn {
    background: #f7fafc;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pjm-cart-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f4f8;
}
.pjm-cart-item-info { flex: 1; }
.pjm-cart-item-name { font-size: 15px; font-weight: 800; }
.pjm-cart-item-addons { font-size: 12px; color: #718096; margin-top: 2px; }
.pjm-cart-item-price { font-size: 15px; font-weight: 800; color: #2d6a4f; white-space: nowrap; }
.pjm-cart-item-qty {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
}
.pjm-cart-qty-btn {
    background: #f0fdf4;
    border: 1px solid #d1fae5;
    border-radius: 6px;
    width: 28px;
    height: 28px;
    font-size: 16px;
    cursor: pointer;
    color: #2d6a4f;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pjm-cart-item-count { font-weight: 800; font-size: 14px; min-width: 20px; text-align: center; }
.pjm-empty-cart { text-align: center; padding: 40px 20px; color: #718096; }
.pjm-empty-cart .icon { font-size: 48px; display: block; margin-bottom: 10px; }

.pjm-cart-footer { margin-top: 20px; }
.pjm-cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 900;
    padding: 12px 0;
    border-top: 2px solid #e2e8f0;
    margin-bottom: 12px;
}
.pjm-checkout-btn {
    display: block;
    width: 100%;
    background: #2d6a4f;
    color: #fff;
    border: none;
    border-radius: 16px;
    padding: 16px;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    text-align: center;
    transition: background 0.15s;
    text-decoration: none;
}
.pjm-checkout-btn:hover { background: #1e4d38; color: #fff; }
.pjm-continue-btn {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: #718096;
    font-size: 14px;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    text-decoration: underline;
}

/* ─── LOADING SPINNER ─── */
.pjm-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    color: #718096;
    font-size: 16px;
    gap: 10px;
}
.pjm-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid #e2e8f0;
    border-top-color: #2d6a4f;
    border-radius: 50%;
    animation: pjmSpin 0.7s linear infinite;
}
@keyframes pjmSpin { to { transform: rotate(360deg); } }

/* ─── TOAST ─── */
.pjm-toast {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a202c;
    color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    z-index: 999999;
    animation: pjmFadeIn 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

/* ─── PRODUCT PICKER (Kingsize mv.) ─── */
.pjm-picker-count {
    font-size: 13px;
    color: #2d6a4f;
    font-weight: 700;
    margin-bottom: 10px;
}
.pjm-picker-hint {
    font-size: 12px;
    color: #718096;
    margin-top: 8px;
}
.pjm-picker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin-top: 6px;
}
.pjm-picker-card {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 8px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
    position: relative;
    background: #fff;
    user-select: none;
}
.pjm-picker-card:hover:not(.pjm-picker-oos) {
    border-color: #2d6a4f;
    box-shadow: 0 2px 8px rgba(45,106,79,0.15);
}
.pjm-picker-card.selected {
    border-color: #2d6a4f;
    background: #f0fdf4;
    box-shadow: 0 0 0 3px rgba(45,106,79,0.2);
}
.pjm-picker-card.pjm-picker-oos {
    opacity: 0.45;
    cursor: not-allowed;
}
.pjm-picker-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    margin-bottom: 6px;
}
.pjm-picker-img-placeholder {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: #f7fafc;
    border-radius: 6px;
    margin-bottom: 6px;
}
.pjm-picker-name {
    font-size: 12px;
    font-weight: 600;
    color: #1a202c;
    line-height: 1.3;
    word-break: break-word;
}
.pjm-picker-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: #2d6a4f;
    color: #fff;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    padding: 1px 5px;
    min-width: 18px;
    text-align: center;
    line-height: 16px;
}
.pjm-picker-oos-label {
    font-size: 10px;
    color: #e53e3e;
    font-weight: 700;
    margin-top: 3px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 480px) {
    .pjm-app { padding: 15px 10px 110px; }
    .pjm-products-grid { grid-template-columns: repeat(2, 1fr); }
    .pjm-modal { max-height: 95vh; }
    .pjm-modal-img { height: 160px; }
    .pjm-modal-body { padding: 16px 16px 12px; }
    .pjm-modal-footer { padding: 12px 16px; }
    .pjm-addon-option { padding: 5px 10px; font-size: 12px; }
    .pjm-location-picker h2 { font-size: 22px; }
    .pjm-loc-card { min-width: 140px; padding: 20px 24px; }
}
