/* ============================================
   PizzaClick — Stile pubblico mobile-first
   Plugin-safe: tutte le classi prefissate pzc-
   ============================================ */

:root {
    --primary: #e85d2c;
    --primary-dark: #d14d1e;
    --bg: #fafafa;
    --card: #ffffff;
    --text: #1a1a1a;
    --text-light: #666;
    --text-muted: #767676;
    --border: #eee;
    --success: #22c55e;
    --danger: #ef4444;
    --radius: 12px;
    --shadow: 0 2px 12px rgba(0,0,0,.06);
}

.pzc-app, .pzc-app *, .pzc-app *::before, .pzc-app *::after {
    margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent;
}

.pzc-app {
    font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    /* Previene overscroll su iOS quando modal/overlay è aperto */
    overscroll-behavior: none;
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
}

/* Blocca scroll body quando overlay è aperto — iOS workaround */
body.pzc-no-scroll {
    position: fixed;
    width: 100%;
    overflow: hidden;
}

/* Header — safe area per Dynamic Island / notch */
.pzc-header {
    background: var(--primary);
    color: #fff;
    padding: 16px 20px;
    padding-top: calc(16px + env(safe-area-inset-top, 0px));
    padding-left: calc(20px + env(safe-area-inset-left, 0px));
    padding-right: calc(20px + env(safe-area-inset-right, 0px));
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(232,93,44,.3);
}

.pzc-header-inner {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pzc-header h1 {
    font-size: 1.3rem;
    font-weight: 700;
}

.pzc-header-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
}

.pzc-header-left {
    display: flex;
    align-items: center;
}

.pzc-header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pzc-header-vcard {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(37, 211, 102, .2);
    color: #25d366;
    transition: background .2s;
    text-decoration: none;
}

.pzc-header-vcard:hover { background: rgba(37, 211, 102, .35); }

.pzc-header-status {
    font-size: .75rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.pzc-status-open {
    background: rgba(255,255,255,.2);
    color: #fff;
}

.pzc-status-closed {
    background: rgba(0,0,0,.2);
    color: #ffccc0;
}

/* Container */
.pzc-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 16px;
    padding-bottom: calc(100px + env(safe-area-inset-bottom, 0px));
    padding-left: calc(16px + env(safe-area-inset-left, 0px));
    padding-right: calc(16px + env(safe-area-inset-right, 0px));
}

/* Categorie filter bar */
.pzc-cat-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: nowrap;
    overflow-x: auto;

    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,.15) transparent;
    padding: 4px 0 12px;
    touch-action: pan-x;
}

.pzc-cat-tabs::-webkit-scrollbar { height: 3px; }
.pzc-cat-tabs::-webkit-scrollbar-track { background: transparent; }
.pzc-cat-tabs::-webkit-scrollbar-thumb { background: rgba(0,0,0,.15); border-radius: 3px; }

.pzc-cat-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
    padding: 8px 16px;
    border-radius: 9999px;
    border: none;
    background: transparent;
    font-size: .85rem;
    font-weight: 500;
    color: rgba(0, 0, 0, .55);
    cursor: pointer;
    transition: color .25s, background .25s;
    white-space: nowrap;
    touch-action: pan-x;
    min-height: 44px;
}

.pzc-cat-tab:hover {
    color: rgba(0, 0, 0, .75);
}

.pzc-cat-tab.pzc-active {
    background: var(--text, #1a1a1a);
    color: #fff;
}

.pzc-cat-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.2rem;
    height: 1.2rem;
    padding: 0 .3rem;
    border-radius: 9999px;
    font-size: .65rem;
    font-weight: 600;
    background: rgba(0, 0, 0, .07);
    color: rgba(0, 0, 0, .4);
}

.pzc-cat-tab.pzc-active .pzc-cat-count {
    background: rgba(255, 255, 255, .25);
    color: #fff;
}

/* Prodotti */
.pzc-products-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pzc-product-card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    transition: transform .15s;
}

.pzc-product-card:active {
    transform: scale(.98);
}

.pzc-product-img {
    width: 110px;
    min-height: 110px;
    object-fit: cover;
    flex-shrink: 0;
    background: #f0f0f0;
}

.pzc-product-img-placeholder {
    width: 110px;
    min-height: 110px;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.pzc-product-info {
    padding: 12px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pzc-product-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.pzc-product-desc {
    font-size: .8rem;
    color: var(--text-light);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pzc-product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pzc-product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.pzc-btn-add {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--primary);
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    line-height: 1;
    touch-action: manipulation;
}

.pzc-btn-add:hover { background: var(--primary-dark); }

/* Carrello fisso in basso — safe area per home indicator */
.pzc-cart-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    color: #fff;
    padding: 14px 20px;
    padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    padding-left: calc(20px + env(safe-area-inset-left, 0px));
    padding-right: calc(20px + env(safe-area-inset-right, 0px));
    display: none;
    z-index: 200;
    cursor: pointer;
    touch-action: manipulation;
    transition: transform .3s;
}

.pzc-cart-bar.pzc-visible { display: flex; }

.pzc-cart-bar-inner {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pzc-cart-bar-left {
    display: flex;
    align-items: center;
}

.pzc-cart-count {
    background: var(--primary);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    font-weight: 700;
    margin-right: 12px;
}

.pzc-cart-label {
    flex: 1;
    font-weight: 600;
    font-size: .95rem;
}

.pzc-cart-total {
    font-weight: 700;
    font-size: 1.05rem;
}

/* Overlay carrello */
.pzc-cart-overlay {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(0,0,0,.5);
    z-index: 300;
    visibility: hidden;
    opacity: 0;
    transition: opacity .3s, visibility 0s .3s;
}

.pzc-cart-overlay.pzc-visible {
    visibility: visible;
    opacity: 1;
    transition: opacity .3s;
}

.pzc-cart-bar.pzc-hidden {
    display: none !important;
}

.pzc-cart-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card);
    border-radius: 20px 20px 0 0;
    max-height: 85vh;
    max-height: 85dvh;
    overflow-y: auto;

    overscroll-behavior: contain;
    z-index: 301;
    transform: translateY(100%);
    transition: transform .3s ease;
    padding: 0 20px calc(20px + env(safe-area-inset-bottom, 0px));
    padding-left: calc(20px + env(safe-area-inset-left, 0px));
    padding-right: calc(20px + env(safe-area-inset-right, 0px));
}


.pzc-cart-panel.pzc-visible {
    transform: translateY(0);
}

.pzc-cart-handle {
    width: 40px;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
    margin: 12px auto 16px;
}

.pzc-cart-panel h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.pzc-cart-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    gap: 12px;
}

.pzc-cart-item-info {
    flex: 1;
}

.pzc-cart-item-name {
    font-weight: 600;
    font-size: .95rem;
}

.pzc-cart-item-note {
    font-size: .75rem;
    color: var(--text-muted);
    font-style: italic;
}

.pzc-cart-item-price {
    font-size: .85rem;
    color: var(--text-light);
}

.pzc-qty-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pzc-qty-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s;
    touch-action: manipulation;
}

.pzc-qty-btn:hover { border-color: var(--primary); color: var(--primary); }

.pzc-qty-value {
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

/* Form ordine */
.pzc-order-form {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 2px solid var(--border);
}

.pzc-order-form h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.pzc-form-field {
    margin-bottom: 12px;
}

.pzc-form-field label {
    display: block;
    font-size: .8rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 4px;
}

.pzc-form-field input,
.pzc-form-field textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 16px; /* >= 16px previene zoom automatico su iOS */
    font-family: inherit;
    outline: none;
    transition: border .2s;
    -webkit-appearance: none;
    appearance: none;
}

.pzc-form-field input:focus,
.pzc-form-field textarea:focus {
    border-color: var(--primary);
}

.pzc-form-field textarea {
    resize: vertical;
    min-height: 60px;
}

/* Slot picker */
.pzc-slot-picker {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    max-height: 160px;
    overflow-y: auto;
    padding: 4px 0;
}

.pzc-slot-btn {
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    background: var(--card);
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .15s;
    font-variant-numeric: tabular-nums;
    touch-action: manipulation;
    min-height: 44px;
}

.pzc-slot-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.pzc-slot-btn.pzc-selected {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.pzc-slot-btn.pzc-slot-disabled {
    opacity: .3;
    pointer-events: none;
    text-decoration: line-through;
}

.pzc-slot-empty {
    color: var(--text-muted);
    font-size: .85rem;
    padding: 12px;
    text-align: center;
    width: 100%;
}

.pzc-cart-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.pzc-btn-whatsapp {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: var(--radius);
    background: #25d366;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background .2s;
    touch-action: manipulation;
    min-height: 52px;
    margin-bottom: env(safe-area-inset-bottom, 0px);
}

.pzc-btn-whatsapp:hover { background: #1ebe57; }
.pzc-btn-whatsapp:active { background: #1ebe57; }
.pzc-btn-whatsapp:disabled { background: #a8e6c1; cursor: not-allowed; }

.pzc-btn-whatsapp svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Conferma ordine */
.pzc-order-confirm {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.pzc-order-confirm.pzc-visible { display: block; }

.pzc-order-confirm .pzc-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.pzc-order-confirm h2 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.pzc-order-confirm .pzc-code {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 4px;
    margin: 16px 0;
    padding: 16px;
    background: #fff5f2;
    border-radius: var(--radius);
}

.pzc-order-confirm p {
    color: var(--text-light);
    font-size: .9rem;
    margin-bottom: 16px;
}

.pzc-btn-track {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    margin-top: 8px;
}

.pzc-btn-track:hover { background: var(--primary-dark); }

.pzc-btn-save-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    margin-top: 10px;
    transition: background .2s;
}

.pzc-btn-save-contact:hover { background: #1fb855; }

.pzc-btn-save-contact svg { flex-shrink: 0; }

.pzc-btn-new-order {
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    color: var(--text-light);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: .9rem;
    cursor: pointer;
    margin-top: 8px;
}

.pzc-confirm-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-top: 20px;
}

.pzc-btn-confirm-yes {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.pzc-btn-confirm-yes:hover { background: var(--primary-dark); }
.pzc-btn-confirm-yes:disabled { opacity: .6; cursor: not-allowed; }

.pzc-btn-confirm-no {
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    color: var(--text-light);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: .9rem;
    cursor: pointer;
}

.pzc-btn-confirm-no:disabled { opacity: .6; cursor: not-allowed; }

/* Tracking page */
.pzc-tracking-section {
    display: none;
    padding: 20px 0;
}

.pzc-tracking-section.pzc-visible { display: block; }

.pzc-track-search {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.pzc-track-search input {
    flex: 1;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 16px; /* previene zoom iOS */
    text-transform: uppercase;
    letter-spacing: 2px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.pzc-track-search input:focus { border-color: var(--primary); }

.pzc-track-search button {
    padding: 12px 20px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    touch-action: manipulation;
    min-height: 44px;
}

/* Stepper tracking */
.pzc-track-result {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
    display: none;
}

.pzc-track-result.pzc-visible { display: block; }

.pzc-track-header {
    text-align: center;
    margin-bottom: 24px;
}

.pzc-track-header .pzc-track-code {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 3px;
}

.pzc-track-header .pzc-track-name {
    color: var(--text-light);
    font-size: .85rem;
    margin-top: 4px;
}

.pzc-stepper {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 8px;
}

.pzc-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    padding-bottom: 28px;
}

.pzc-step:last-child { padding-bottom: 0; }

.pzc-step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.pzc-step-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all .3s;
}

.pzc-step.pzc-done .pzc-step-dot {
    background: var(--success);
}

.pzc-step.pzc-current .pzc-step-dot {
    background: var(--primary);
    box-shadow: 0 0 0 4px rgba(232,93,44,.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(232,93,44,.2); }
    50% { box-shadow: 0 0 0 8px rgba(232,93,44,.1); }
}

.pzc-step-line {
    width: 2px;
    flex: 1;
    min-height: 20px;
    background: #e5e5e5;
    margin-top: 4px;
}

.pzc-step.pzc-done .pzc-step-line { background: var(--success); }

.pzc-step-content {
    padding-top: 6px;
}

.pzc-step-label {
    font-weight: 600;
    font-size: .95rem;
    color: var(--text-muted);
}

.pzc-step.pzc-done .pzc-step-label,
.pzc-step.pzc-current .pzc-step-label {
    color: var(--text);
}

.pzc-step-time {
    font-size: .75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.pzc-track-error {
    text-align: center;
    color: var(--danger);
    padding: 20px;
    display: none;
}

.pzc-track-error.pzc-visible { display: block; }

/* Note prodotto nel carrello */
.pzc-cart-item-note-input {
    width: 100%;
    padding: 6px 8px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 16px; /* previene zoom iOS */
    margin-top: 4px;
    font-family: inherit;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.pzc-cart-item-note-input:focus { border-color: var(--primary); }

/* Vuoto */
.pzc-empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}

.pzc-empty-state .pzc-icon { font-size: 3rem; margin-bottom: 8px; }

/* Nav tabs (menu / tracking) */
.pzc-nav-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 12px;
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.pzc-nav-tab {
    flex: 1;
    padding: 12px;
    text-align: center;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--text-light);
    transition: all .2s;
    touch-action: manipulation;
    min-height: 44px;
}

.pzc-nav-tab.pzc-active {
    background: var(--primary);
    color: #fff;
}

/* Form error */
.pzc-field-error {
    border-color: var(--danger) !important;
}

.pzc-error-text {
    color: var(--danger);
    font-size: .8rem;
    margin-top: 4px;
}

/* Responsive desktop */
@media (min-width: 640px) {
    .pzc-container {
        padding: 24px;
        padding-bottom: calc(100px + env(safe-area-inset-bottom, 0px));
    }
    .pzc-product-img, .pzc-product-img-placeholder { width: 140px; min-height: 140px; }
}

/* Small screens (320px) */
@media (max-width: 350px) {
    .pzc-product-img, .pzc-product-img-placeholder { width: 80px; min-height: 80px; }
    .pzc-product-info { padding: 10px; }
    .pzc-order-confirm .pzc-code { font-size: 1.5rem; letter-spacing: 2px; }
}

/* Landscape su mobile — cart panel piu basso, header compatto */
@media (orientation: landscape) and (max-height: 500px) {
    .pzc-header {
        padding-top: calc(8px + env(safe-area-inset-top, 0px));
        padding-bottom: 8px;
    }
    .pzc-header h1 { font-size: 1.1rem; }
    .pzc-cart-panel { max-height: 95vh; max-height: 95dvh; }
    .pzc-container {
        padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
    }
}

/* Previeni pull-to-refresh su Android Chrome */
html, body {
    overscroll-behavior-y: none;
}

/* Utility classes (sostituiscono inline styles per compatibilita CSP) */
.pzc-hidden { display: none !important; }
.pzc-honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* Focus visible — accessibilita tastiera */
.pzc-cart-bar:focus-visible,
.pzc-btn-add:focus-visible,
.pzc-cat-tab:focus-visible,
.pzc-nav-tab:focus-visible,
.pzc-slot-btn:focus-visible,
.pzc-qty-btn:focus-visible,
.pzc-btn-whatsapp:focus-visible,
.pzc-btn-track:focus-visible,
.pzc-btn-confirm-yes:focus-visible,
.pzc-btn-confirm-no:focus-visible,
.pzc-btn-new-order:focus-visible,
.pzc-btn-save-contact:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.pzc-form-field input:focus-visible,
.pzc-form-field textarea:focus-visible,
.pzc-track-search input:focus-visible,
.pzc-cart-item-note-input:focus-visible {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232, 93, 44, .15);
}

/* Reduced motion — accessibilita */
@media (prefers-reduced-motion: reduce) {
    .pzc-app *, .pzc-app *::before, .pzc-app *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
    :root {
        --bg: #121212;
        --card: #1e1e1e;
        --text: #f0f0f0;
        --text-light: #b0b0b0;
        --text-muted: #888;
        --border: #333;
        --shadow: 0 2px 12px rgba(0,0,0,.3);
    }

    .pzc-header {
        box-shadow: 0 2px 8px rgba(0,0,0,.4);
    }

    .pzc-product-img-placeholder {
        background: linear-gradient(135deg, #2a2a2a, #1e1e1e);
    }

    .pzc-cat-tab {
        color: rgba(255, 255, 255, .5);
    }

    .pzc-cat-tab:hover {
        color: rgba(255, 255, 255, .75);
    }

    .pzc-cat-count {
        background: rgba(255, 255, 255, .1);
        color: rgba(255, 255, 255, .5);
    }

    .pzc-qty-btn {
        background: var(--card);
        color: var(--text);
    }

    .pzc-form-field input,
    .pzc-form-field textarea,
    .pzc-track-search input,
    .pzc-cart-item-note-input {
        background: var(--card);
        color: var(--text);
    }

    .pzc-slot-btn {
        background: var(--card);
        color: var(--text);
    }

    .pzc-order-confirm .pzc-code {
        background: #2a1a14;
    }

    .pzc-btn-new-order,
    .pzc-btn-confirm-no {
        color: var(--text-light);
        border-color: var(--border);
    }

    .pzc-step-dot {
        background: #333;
    }

    .pzc-step-line {
        background: #333;
    }

    .pzc-cart-bar {
        background: var(--primary-dark);
    }
}
