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

#pz-app-v9 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    position: relative;
    min-height: 100vh;
}

#pz-menu-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px 120px 20px;
}

.pz-menu-wrapper {
    width: 100%;
}

.pz-daily-special-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #c8973a 0%, #a67a2e 100%);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(200, 151, 58, 0.3);
}

.pz-daily-special-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes cartPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.25);
        box-shadow: 0 12px 40px rgba(200, 151, 58, 0.8);
    }
}

.pz-cart-pulse {
    animation: cartPulse 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pz-daily-special-section>* {
    position: relative;
    z-index: 2;
}

.pz-daily-special-section h2 {
    color: white;
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.pz-daily-special-section>p {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-size: 16px;
    margin-bottom: 30px;
    font-weight: 500;
}

.pz-daily-subsection-title {
    color: white;
    font-size: 26px;
    font-weight: 700;
    margin: 35px 0 20px 0;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pz-daily-subsection-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 28px;
    background: white;
    border-radius: 2px;
}

.pz-daily-grid,
.pz-daily-grid-soups,
.pz-daily-grid-mains {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.pz-daily-grid .pz-menu-item img,
.pz-daily-grid-soups .pz-menu-item img,
.pz-daily-grid-mains .pz-menu-item img {
    height: 300px !important;
}

.pz-daily-grid .pz-menu-item,
.pz-daily-grid-soups .pz-menu-item,
.pz-daily-grid-mains .pz-menu-item {
    display: flex;
    flex-direction: column;
}

.pz-daily-grid .pz-item-unavailable,
.pz-daily-grid-soups .pz-item-unavailable,
.pz-daily-grid-mains .pz-item-unavailable {
    justify-content: center;
    align-items: center;
    background: #f5efe6;
    min-height: 300px;
}

.pz-menu-category {
    margin-bottom: 50px;
}

.pz-category-title {
    position: relative;
    display: inline-block;
    color: #c8973a;
    font-size: 28px;
    margin-bottom: 20px;
    border-bottom: 3px solid #c8973a;
    padding-bottom: 10px;
}

.pz-category-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: #c8973a;
    transition: width 0.3s ease;
}

.pz-menu-category:hover .pz-category-title::after {
    width: 100%;
}

.pz-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.pz-menu-item {
    position: relative;
    cursor: pointer;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.pz-menu-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.pz-menu-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pz-menu-item:hover img {
    transform: scale(1.05);
}

.pz-add-to-cart-btn {
    background: #333;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s ease, background-color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
}

.pz-add-to-cart-btn:hover {
    background: #000;
}

.pz-add-to-cart-btn:active {
    transform: scale(0.98);
}

.pz-menu-qty-decrease,
.pz-menu-qty-increase {
    background: white;
    border: 2px solid #ddd;
    color: #333;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;

}

.pz-menu-qty-decrease:active,
.pz-menu-qty-increase:active,
.pz-qty-btn:active {
    transform: scale(0.9) !important;
}

.pz-menu-qty-increase {
    background: #333;
    border-color: #333;
    color: white;
}

.pz-menu-qty-decrease:hover {
    background: #f5f5f5;
    border-color: #999;
    transform: scale(1.1);
}

.pz-menu-qty-increase:hover {
    background: #1a1a1a;
    transform: scale(1.1);
}

.pz-menu-qty-decrease:active,
.pz-menu-qty-increase:active {
    transform: scale(0.95);
}

.pz-qty-btn {
    transition: all 0.2s ease;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pz-qty-btn.pz-qty-decrease {
    background: white !important;
    border: 2px solid #ddd !important;
    color: #333 !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    font-size: 20px !important;
    font-weight: bold !important;
    line-height: 1 !important;
}

.pz-qty-btn.pz-qty-decrease:hover {
    background: #f5f5f5 !important;
    border-color: #999 !important;
    transform: scale(1.1);
}

.pz-qty-btn.pz-qty-increase {
    background: #333 !important;
    border: 2px solid #333 !important;
    color: white !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    font-size: 20px !important;
    font-weight: bold !important;
    line-height: 1 !important;
}

.pz-qty-btn.pz-qty-increase:hover {
    background: #1a1a1a !important;
    transform: scale(1.1);
}

.pz-qty-btn:active {
    transform: scale(0.95);
}

.pz-cart-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #c8973a 0%, #b08530 100%);
    color: white;
    padding: 18px 32px;
    border-radius: 50px;
    border: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(200, 151, 58, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pz-cart-button:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 12px 35px rgba(200, 151, 58, 0.6);
}

.pz-cart-badge {
    background: #ff4444;
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pz-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9998;
    display: none;
    animation: fadeIn 0.3s ease;
}

.pz-modal-overlay.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.pz-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    max-width: 900px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    z-index: 9999;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: none;
    animation: slideUp 0.3s ease;
}

.pz-modal.active {
    display: block;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.pz-modal::-webkit-scrollbar {
    width: 10px;
}

.pz-modal::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.pz-modal::-webkit-scrollbar-thumb {
    background: #c8973a;
    border-radius: 10px;
}

.pz-modal::-webkit-scrollbar-thumb:hover {
    background: #a67a2e;
}

.pz-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #c8973a;
}

.pz-modal-title {
    font-size: 28px;
    font-weight: 700;
    color: #c8973a;
    margin: 0;
}

.pz-modal-close {
    background: #ff4444;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pz-modal-close:hover {
    background: #ff6666;
    transform: scale(1.05);
}

.pz-cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
}

.pz-cart-table thead {
    background: #c8973a;
    color: white;
}

.pz-cart-table th,
.pz-cart-table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid #e0e0e0;
    vertical-align: middle;
}

.pz-cart-table tbody tr {
    background: #ffffff;
    transition: background 0.2s ease;
}

.pz-cart-table tbody tr:hover {
    background: #f5f5f5;
}

.pz-cart-delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.pz-cart-delete-btn:hover {
    background: #ff6666;
    transform: scale(1.05);
}

.pz-cart-summary {
    background: #f9f9f9;
    border: 2px solid #c8973a;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.pz-cart-total {
    font-size: 24px;
    font-weight: 700;
    color: #c8973a;
    margin-bottom: 15px;
}

.pz-cart-additional-cost {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #333;
}

.pz-order-form {
    background: #f9f9f9;
    border: 2px solid #c8973a;
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
}

.pz-form-title {
    font-size: 22px;
    font-weight: 700;
    color: #c8973a;
    margin-bottom: 20px;
}

.pz-form-group {
    margin-bottom: 20px;
}

.pz-form-label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
}

.pz-input {
    width: 100%;
    padding: 12px 16px;
    background: #ffffff;
    color: #333;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.2s ease;
    font-family: inherit;
}

.pz-input:focus {
    outline: none;
    border-color: #c8973a;
    box-shadow: 0 0 0 3px rgba(200, 151, 58, 0.1);
}

.pz-input::placeholder {
    color: #999;
}

.pz-delivery-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pz-delivery-btn {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    color: #333;
    padding: 16px 20px;
    border-radius: 10px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-family: inherit;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    word-wrap: break-word;
}

.pz-delivery-btn:hover {
    border-color: #c8973a;
    background: #fdf8ef;
    transform: translateX(5px);
}

.pz-delivery-btn.active {
    background: #c8973a;
    border-color: #c8973a;
    color: white;
    font-weight: 600;
}

.pz-payment-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.pz-payment-btn {
    flex: 1;
    min-width: 200px;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    font-family: inherit;
    text-align: center;
}

.pz-payment-btn:hover {
    border-color: #c8973a;
    background: #fdf8ef;
}

.pz-payment-btn.active {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.pz-payment-btn[data-payment="blik"] {
    background: #e3f2fd;
    border-color: #1E88E5;
    color: #1E88E5;
}

.pz-payment-btn[data-payment="blik"]:hover {
    background: #bbdefb;
    border-color: #1565C0;
}

.pz-payment-btn[data-payment="blik"].active {
    background: #1E88E5;
    color: white;
    border-color: #1E88E5;
}

.pz-btn-primary {
    padding: 14px 30px;
    background: linear-gradient(135deg, #c8973a 0%, #a67a2e 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(200, 151, 58, 0.3);
    font-family: inherit;
}

.pz-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 151, 58, 0.5);
}

.pz-btn-primary:active {
    transform: translateY(0);
}

.pz-btn-secondary {
    padding: 14px 30px;
    background: #e0e0e0;
    color: #333;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.pz-btn-secondary:hover {
    background: #d0d0d0;
}

.pz-upsell-section {
    margin: 30px 0 20px 0;
    padding: 20px 0;
    border-top: 2px dashed #e0e0e0;
    border-bottom: 2px dashed #e0e0e0;
}

.pz-upsell-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pz-slider-btn {
    background: #f5f5f5;
    color: #333;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pz-slider-btn:hover {
    background: #c8973a;
    color: white;
    transform: scale(1.1);
}

.pz-upsell-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px;
    flex: 1;
}

.pz-upsell-slider::-webkit-scrollbar {
    height: 8px;
}

.pz-upsell-slider::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.pz-upsell-slider::-webkit-scrollbar-thumb {
    background: #c8973a;
    border-radius: 10px;
}

.pz-upsell-card {
    min-width: 200px;
    max-width: 200px;
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.pz-upsell-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.pz-upsell-card .pz-upsell-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pz-upsell-card .pz-upsell-price {
    font-size: 16px;
    font-weight: 700;
    color: #c8973a;
    margin-bottom: 10px;
}

.pz-upsell-card:hover {
    border-color: #c8973a;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(200, 151, 58, 0.2);
}

.pz-upsell-add-btn {
    background: #333;
    color: white;
    border: none;
    padding: 10px 0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.pz-upsell-card .pz-upsell-add-btn {
    width: 100%;
}

.pz-upsell-add-btn:hover {
    background: #c8973a;
    transform: scale(1.05);
}

.pz-notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: linear-gradient(135deg, #c8973a 0%, #d4a644 100%);
    color: white;
    padding: 16px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 8px 24px rgba(200, 151, 58, 0.4);
    z-index: 10001;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
    pointer-events: none;
}

.pz-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.pz-form-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .pz-daily-special-section {
        padding: 25px 20px;
    }

    .pz-daily-special-section h2 {
        font-size: 28px;
    }

    .pz-daily-subsection-title {
        font-size: 22px;
        margin: 25px 0 15px 0;
    }

    .pz-daily-grid,
    .pz-daily-grid-soups,
    .pz-daily-grid-mains {
        grid-template-columns: 1fr;
    }

    .pz-daily-grid .pz-menu-item img,
    .pz-daily-grid-soups .pz-menu-item img,
    .pz-daily-grid-mains .pz-menu-item img {
        height: 220px !important;
    }

    #pz-menu-container {
        padding: 20px 10px 100px;
    }

    .pz-menu-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .pz-modal {
        width: 95%;
        padding: 20px;
        max-height: 80vh;
    }

    .pz-payment-options {
        flex-direction: column;
    }

    .pz-payment-btn {
        min-width: 100%;
    }

    .pz-btn-primary,
    .pz-btn-secondary {
        width: 100%;
    }

    .pz-form-actions {
        flex-direction: column;
    }

    .pz-form-actions .pz-btn-primary,
    .pz-form-actions .pz-btn-secondary {
        width: 100% !important;
        margin-bottom: 10px;
    }

    .pz-cart-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .pz-cart-table thead {
        display: none;
    }

    .pz-cart-table tbody,
    .pz-cart-table tr,
    .pz-cart-table td {
        display: block;
        width: 100%;
    }

    .pz-cart-table tr {
        margin-bottom: 15px;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        padding: 10px;
        background: white;
    }

    .pz-cart-table td {
        text-align: left !important;
        padding: 8px 10px !important;
        border: none !important;
        position: relative;
    }

    .pz-cart-table td:before {
        content: attr(data-label);
        font-weight: bold;
        display: inline-block;
        margin-right: 10px;
        color: #c8973a;
    }

    .pz-cart-table td:first-child {
        font-size: 16px;
        font-weight: bold;
        background: #fdf8ef;
        border-radius: 6px;
        margin-bottom: 5px;
    }

    .pz-upsell-slider-wrapper {
        gap: 5px !important;
    }

    .pz-slider-btn {
        width: 30px !important;
        height: 30px !important;
        font-size: 18px !important;
    }

    .pz-upsell-card {
        width: 170px !important;
        min-width: 170px !important;
        max-width: 170px !important;
        padding: 10px !important;
        margin: 0 auto !important;
        scroll-snap-align: center !important;
        box-sizing: border-box !important;
    }

    .pz-upsell-card img {
        width: 150px !important;
        height: 90px !important;
        object-fit: cover !important;
        display: block !important;
        margin: 0 auto 6px auto !important;
        border-radius: 8px !important;
    }

    .pz-upsell-card .pz-upsell-name {
        font-size: 12px !important;
        min-height: 24px !important;
        margin-bottom: 3px !important;
    }

    .pz-upsell-card .pz-upsell-price {
        font-size: 13px !important;
        margin-bottom: 5px !important;
    }

    .pz-upsell-add-btn {
        width: 130px !important;
        max-width: 130px !important;
        padding: 8px 0 !important;
        font-size: 12px !important;
        margin: 0 auto !important;
        display: block !important;
    }

    .pz-upsell-slider {
        gap: 15px !important;
        padding: 0 5px !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
    }

}

.cart-bounce {
    animation: cartBounce 0.6s ease !important;
}

@keyframes cartBounce {

    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.3) rotate(-10deg);
    }

    50% {
        transform: scale(1.2) rotate(10deg);
    }

    75% {
        transform: scale(1.25) rotate(-5deg);
    }
}

@media (max-width: 768px) {
    .pz-cart-button {
        padding: 10px 16px;
        font-size: 13px;
        min-width: auto;
        white-space: nowrap;
    }

    .pz-cart-badge {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 22px;
        height: 22px;
        font-size: 12px;
        padding: 0 6px;
        line-height: 1;
    }
}

/* ═══════════════════════════════════════════════════════════
   SYSTEM BUDOWANIA ZESTAWÓW - MEAL BUILDER
   ═══════════════════════════════════════════════════════════ */

/* Wyłącz iOS tap highlight */
.pz-meal-radio-item,
.pz-meal-checkbox-item,
.pz-qty-btn {
    -webkit-tap-highlight-color: transparent;
}

/* HOVER TYLKO NA DESKTOP (z myszką) - NIE na telefonach */
@media (hover: hover) and (pointer: fine) {
    .pz-meal-radio-item:hover:not(.active) {
        border-color: #c8973a;
        background: #fdf8ef;
        box-shadow: 0 2px 8px rgba(200, 151, 58, 0.15);
    }

    .pz-meal-checkbox-item:hover:not(.active) {
        border-color: #c8973a;
        background: #fdf8ef;
        box-shadow: 0 2px 8px rgba(200, 151, 58, 0.15);
    }
}

.pz-meal-builder-modal * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}


.pz-meal-builder-modal {
    max-width: 800px !important;
    max-height: 90vh;
    overflow-y: auto;
}

.pz-meal-builder-content {
    padding: 5px 0;
}

.pz-meal-base-product {
    background: linear-gradient(135deg, #c8973a 0%, #a67a2e 100%);
    color: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(200, 151, 58, 0.3);
}

.pz-meal-base-product h3 {
    margin: 0 0 15px 0;
    font-size: 32px;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.pz-meal-base-price {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pz-meal-step {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid #e0e0e0;
}

.pz-meal-step:last-of-type {
    border-bottom: none;
}

.pz-meal-step-title {
    color: #c8973a;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pz-meal-step-hint {
    color: #666 !important;
    font-size: 14px;
    margin: 8px 0;
    font-style: italic;
}

.pz-meal-step-warning {
    color: #2d5016;
    font-size: 13px;
    margin: 8px 0;
    padding: 8px 12px;
    background: #e8f5e0;
    border-left: 3px solid #2d5016;
    border-radius: 4px;
}

.pz-meal-radio-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pz-meal-radio-item {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 10px;
    /* ✅ NOWE - odstęp radio-tekst */
}

.pz-meal-radio-item input[type="radio"] {
    margin: 0;
    /* ✅ ZMIENIONE - gap robi robotę */
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.pz-meal-option-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    min-width: 0;
    /* ✅ NOWE - pozwala zawijać tekst */
    font-size: 16px;
    gap: 12px;
    /* ✅ NOWE - odstęp nazwa-cena */
}

/* ✅ NOWY STYL - kontrola długich nazw */
.pz-meal-option-content>span:first-child {
    flex: 1;
    min-width: 0;
    line-height: 1.4;
    word-break: break-word;
    /* łamie długie słowa */
}

.pz-meal-option-price {
    font-weight: 700;
    color: #c8973a;
    font-size: 15px;
    white-space: nowrap;
    /* ✅ NOWE - cena w 1 linii */
    flex-shrink: 0;
    /* ✅ NOWE - cena nie kurczy się */
    min-width: 55px;
    /* ✅ NOWE - min szerokość */
    text-align: right;
    /* ✅ NOWE - wyrównana do prawej */
}


/* ✅ ZACHOWANE - fajne podświetlenie active */
.pz-meal-radio-item.active {
    border-color: #c8973a;
    background: #faf3e4;
    box-shadow: 0 4px 15px rgba(200, 151, 58, 0.25);
}

/* ✅ ZACHOWANE - pogrubienie active */
.pz-meal-radio-item.active .pz-meal-option-content {
    font-weight: 600;
}

.pz-meal-checkbox-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-bottom: 15px;
}

.pz-meal-checkbox-item {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 8px;
    /* ✅ NOWE - odstęp checkbox-tekst */
    min-width: 0;
    /* ✅ NOWE - pozwala zawijać */
}

.pz-meal-checkbox-item input[type="checkbox"] {
    margin: 0;
    /* ✅ ZMIENIONE - gap robi robotę */
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
    /* ✅ NOWE - nie kurczy się */
}

/* ✅ NOWY STYL - label checkbox z kontrolą tekstu */
.pz-meal-checkbox-item label {
    flex: 1;
    min-width: 0;
    font-size: 14px;
    line-height: 1.3;
    word-break: break-word;
    cursor: pointer;
}


/* ✅ ZACHOWANE - fajne podświetlenie + pogrubienie active */
.pz-meal-checkbox-item.active {
    border-color: #c8973a;
    background: #faf3e4;
    font-weight: 600;
    box-shadow: 0 3px 12px rgba(200, 151, 58, 0.2);
}

.pz-meal-qty-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f5f5f5;
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 15px;
    font-weight: 600;
}

.pz-meal-inline-qty {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    /* ✅ NOWE - wrap na małych ekranach */
    min-width: 0;
    /* ✅ NOWE */
}

.pz-meal-inline-qty .pz-meal-option-price {
    font-weight: 700;
    color: #c8973a;
    font-size: 15px;
    min-width: 70px;
    white-space: nowrap;
    /* ✅ NOWE */
    flex-shrink: 0;
    /* ✅ NOWE */
}

.pz-meal-inline-qty .pz-meal-qty-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pz-meal-qty-control {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pz-meal-qty-control input[type="number"] {
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    border: 2px solid #c8973a;
    border-radius: 6px;
    padding: 0;
    line-height: 40px;
    background: white;
    box-sizing: border-box;
}

.pz-meal-qty-control input[type="number"]::-webkit-inner-spin-button,
.pz-meal-qty-control input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    display: none;
    margin: 0;
}

.pz-meal-qty-control input[type="number"] {
    -moz-appearance: textfield;
}

.pz-meal-qty-price {
    color: #c8973a;
    font-size: 15px;
}

.pz-meal-qty-small {
    gap: 8px;
}

.pz-meal-qty-small input[type="number"] {
    width: 40px;
    font-size: 16px;
    padding: 0;
    text-align: center;
    box-sizing: border-box;
}
.pz-meal-qty-control.pz-meal-qty-small .pz-qty-btn,
.pz-meal-qty-control .pz-qty-btn.pz-qty-decrease,
.pz-meal-qty-control .pz-qty-btn.pz-qty-increase {
    width: 28px !important;
    height: 28px !important;
    font-size: 18px !important;
    padding: 0 !important;
}

.pz-meal-summary {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border: 3px solid #c8973a;
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
}

.pz-meal-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 22px;
    margin-bottom: 20px;
}

/* ✅ ZACHOWANE - fajne duże pogrubienie */
.pz-meal-total-row strong {
    color: #c8973a;
    font-size: 32px;
    font-weight: 800;
    transition: transform 0.2s ease;
}

.pz-meal-add-btn {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* ✅ ZACHOWANE - fajny hover effect */
.pz-meal-add-btn:hover {
    box-shadow: 0 6px 20px rgba(200, 151, 58, 0.4);
}

/* ✅ POPRAWIONY BREAKPOINT - ujednolicenie Android z iPhone */
@media (max-width: 768px) {
    .pz-meal-builder-modal {
        width: 95% !important;
        max-height: 85vh;
    }

    .pz-meal-base-product {
        padding: 20px;
    }

    .pz-meal-base-product h3 {
        font-size: 20px;
        /* ✅ Jak na iPhone */
    }

    .pz-meal-base-price {
        font-size: 24px;
        /* ✅ Jak na iPhone */
    }

    /* ✅ Radio - własny design jak iPhone */
    .pz-meal-radio-item {
        padding: 10px 12px;
        border-radius: 6px;
        min-height: 44px;
    }

    .pz-meal-radio-item input[type="radio"] {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        width: 18px;
        height: 18px;
        border: 2px solid #c8973a;
        border-radius: 50%;
        background: white;
        margin: 0;
        position: relative;
        flex-shrink: 0;
        cursor: pointer;
    }

    .pz-meal-radio-item input[type="radio"]:checked {
        background: white;
        border-color: #c8973a;
    }

    .pz-meal-radio-item input[type="radio"]:checked::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #c8973a;
    }

    .pz-meal-option-content {
        font-size: 13px;
        gap: 8px;
    }

    .pz-meal-option-content>span:first-child {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 1.3;
    }

    .pz-meal-option-price {
        font-size: 13px;
        min-width: 48px;
    }

    /* ✅ Checkbox - własny design jak iPhone */
    .pz-meal-checkbox-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .pz-meal-checkbox-item {
        padding: 8px 10px;
        border-radius: 6px;
        min-height: 40px;
    }

    .pz-meal-checkbox-item input[type="checkbox"] {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        width: 16px;
        height: 16px;
        border: 2px solid #c8973a;
        border-radius: 4px;
        background: white;
        margin: 0;
        position: relative;
        flex-shrink: 0;
        cursor: pointer;
    }

    .pz-meal-checkbox-item input[type="checkbox"]:checked {
        background: #c8973a;
        border-color: #c8973a;
    }

    .pz-meal-checkbox-item input[type="checkbox"]:checked::after {
        content: '✓';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 11px;
        font-weight: bold;
        line-height: 1;
    }

    .pz-meal-checkbox-item label {
        font-size: 12px;
        line-height: 1.3;
    }

    /* ✅ Inline qty - kompaktowe jak iPhone */
    .pz-meal-inline-qty {
        flex-wrap: nowrap;
        gap: 5px;
    }

    .pz-meal-inline-qty>span:first-child {
        flex: 1;
        min-width: 0;
        font-size: 12px;
        line-height: 1.2;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .pz-meal-inline-qty .pz-meal-option-price {
        min-width: 45px;
        font-size: 12px;
        flex-shrink: 0;
    }

        .pz-meal-inline-qty input[type="number"],
        .pz-meal-qty-control input[type="number"] {
            all: unset;
            display: block;
            width: 36px;
            height: 30px;
            text-align: center;
            font-size: 14px;
            font-weight: 700;
            color: #333;
            border: 2px solid #c8973a;
            border-radius: 6px;
            background: white;
            box-sizing: border-box;
            cursor: text;
            -moz-appearance: textfield;
            line-height: 30px;
        }

    /* Usuń strzałki */
    .pz-meal-qty-control input[type="number"]::-webkit-inner-spin-button,
    .pz-meal-qty-control input[type="number"]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        display: none;
        margin: 0;
    }

    /* ✅ Przyciski - dokładnie jak iPhone */
    .pz-meal-qty-control .pz-qty-btn {
        width: 26px !important;
        height: 26px !important;
        font-size: 14px !important;
        border-radius: 5px !important;
        line-height: 1 !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .pz-meal-inline-qty .pz-meal-qty-control {
        gap: 3px;
    }

    .pz-meal-qty-control {
        gap: 4px;
    }

    .pz-meal-qty-row {
        flex-wrap: wrap;
        gap: 8px;
        padding: 10px 12px;
    }

    .pz-meal-total-row {
        font-size: 16px;
        flex-wrap: wrap;
    }

    .pz-meal-total-row strong {
        font-size: 24px;
    }

    .pz-meal-step-hint {
        font-size: 12px;
    }

    .pz-meal-step-warning {
        font-size: 11px;
        padding: 6px 10px;
    }

    .pz-meal-step-title {
        font-size: 16px;
    }
}

.pz-meal-option-note {
    font-weight: 700;
    color: #2d5016;
    font-size: 14px;
    margin-left: auto;
}



@keyframes pz-btn-shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* ═══════════════════════════════════════════════════════════
   SHINE ANIMATION - PRZYKŁAD NA PRZYCISKU "DODAJ DO KOSZYKA" W TRAKCIE ŁADOWANIA
   ═══════════════════════════════════════════════════════════ */

.pz-btn-primary.pz-loading {
    background: linear-gradient(90deg,
            #c8973a 0%,
            #c8973a 30%,
            #f5d080 50%,
            /* jasny błysk */
            #c8973a 70%,
            #c8973a 100%);
    background-size: 200% auto;
    animation: pz-btn-shimmer 1.2s linear infinite;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.85;
}


/* ═══════════════════════════════════════════════════════════
   BLIK ANIMATION - DEMO MODE
   ═══════════════════════════════════════════════════════════ */

@keyframes blikPulse {

    /* ✅ BEZ wcięcia */
    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

@keyframes blikBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

@keyframes blikScaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.pz-blik-overlay {
    animation: fadeIn 0.3s ease-in;
}

/* ═══════════════════════════════════════════════════════════
   RABAT NA ZESTAWY - SPÓJNY CYAN DESIGN
   ═══════════════════════════════════════════════════════════ */

.pz-cart-set-discount-widget {
    margin: 20px 0;
    animation: slideIn 0.3s ease;
}

/* ✅ STAN 1: BEZ RABATU (Neutralny Cyan) */
.pz-cart-discount-inactive {
    background: linear-gradient(135deg, #fdf8ef 0%, #faf3e4 100%);
    border: 2px solid #c8973a;
    border-radius: 12px;
    padding: 15px 20px;
    color: #a67a2e;
}

.pz-cart-discount-inactive .pz-discount-title {
    font-weight: 700;
    font-size: 16px;
    color: #a67a2e;
    margin-bottom: 10px;
}

.pz-cart-discount-inactive .pz-discount-progress {
    width: 100%;
    height: 8px;
    background: #e8d5a8;
    border-radius: 10px;
    overflow: hidden;
    margin: 10px 0;
}

.pz-cart-discount-inactive .pz-discount-bar {
    height: 100%;
    background: linear-gradient(90deg, #c8973a 0%, #a67a2e 100%);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.pz-cart-discount-inactive .pz-discount-hint {
    font-size: 13px;
    color: #a67a2e;
    margin-top: 8px;
    font-style: italic;
}

/* ✅ STAN 2: Z RABATEM AKTYWNYM (Cyan Gradient) */
.pz-cart-discount-active {
    background: linear-gradient(135deg, #faf3e4 0%, #e8d5a8 100%);
    border: 3px solid #c8973a;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(200, 151, 58, 0.2);
    animation: slideInActive 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pz-cart-discount-active .pz-discount-title {
    font-weight: 800;
    font-size: 18px;
    color: #a67a2e;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pz-cart-discount-active .pz-discount-title::before {
    content: '✅';
    font-size: 20px;
}

.pz-cart-discount-active .pz-discount-progress {
    width: 100%;
    height: 10px;
    background: #e8d5a8;
    border-radius: 10px;
    overflow: hidden;
    margin: 12px 0;
}

.pz-cart-discount-active .pz-discount-bar {
    height: 100%;
    background: linear-gradient(90deg, #c8973a 0%, #a67a2e 100%);
    border-radius: 10px;
    transition: width 0.3s ease;
    animation: progressFill 0.5s ease;
}

.pz-cart-discount-active .pz-discount-savings {
    font-size: 15px;
    color: #a67a2e;
    font-weight: 700;
    margin-top: 10px;
}

.pz-cart-discount-active .pz-discount-savings::before {
    content: '💰 ';
    margin-right: 5px;
}

/* Animacje */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInActive {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes progressFill {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

/* Responsive */
@media (max-width: 768px) {

    .pz-cart-discount-active,
    .pz-cart-discount-inactive {
        padding: 12px 15px;
    }

    .pz-cart-discount-active .pz-discount-title {
        font-size: 15px;
    }

    .pz-cart-discount-inactive .pz-discount-title {
        font-size: 14px;
    }
}

/* ============================================
   DODATEK: STYLE DLA NIEDOSTĘPNYCH POZYCJI
   ============================================ */

/* Pozycja niedostępna na stronie głównej */
.pz-item-unavailable {
    opacity: 0.55;
    background-color: #f5f5f5;
    pointer-events: none;
    cursor: not-allowed;
    border-color: #ccc;
}

.pz-item-unavailable:hover {
    transform: none !important;
    box-shadow: none !important;
    border-color: #ccc;
}

/* Placeholder zdjęcie - szare */
.pz-placeholder-image {
    filter: grayscale(100%);
    opacity: 0.35;
    background-color: #ddd;
}

/* Tekst "Danie wyprzedane" */
.pz-item-unavailable-text {
    color: #d32f2f;
    font-weight: 600;
    font-size: 15px;
    margin: 8px 0 0 0;
}

/* W builderze - DISABLED RADIO */
.pz-meal-radio-item.disabled,
.pz-meal-radio-item[data-disabled="true"] {
    opacity: 0.45;
    background-color: #f5f5f5;
    cursor: not-allowed;
    border-color: #ddd;
    pointer-events: none;
}

.pz-meal-radio-item.disabled input[type="radio"],
.pz-meal-radio-item[data-disabled="true"] input[type="radio"] {
    cursor: not-allowed;
    opacity: 0.5;
}

.pz-meal-radio-item.disabled:hover,
.pz-meal-radio-item[data-disabled="true"]:hover {
    border-color: #ddd;
    background-color: #f5f5f5;
    box-shadow: none;
}

.pz-meal-radio-item.disabled label,
.pz-meal-radio-item[data-disabled="true"] label {
    cursor: not-allowed;
}


/* ============================================
   WYPRZEDANE DANIA - OVERLAY "WYPRZEDANE"
   ============================================ */

/* Główny kontener dla wyprzedanego dania */
.pz-item-soldout {
    position: relative;
    opacity: 0.7;
    transition: all 0.3s ease;
}

/* Overlay z ciemnym tłem i napisem "WYPRZEDANE" */
.pz-item-soldout>div:first-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    pointer-events: none;
}

/* Badge "🔴 WYPRZEDANE" */
.pz-item-soldout>div:first-child>div {
    background: #d32f2f;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.5);
    animation: soldoutPulse 2s ease-in-out infinite;
}

/* Animacja pulsowania dla badge "WYPRZEDANE" */
@keyframes soldoutPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(211, 47, 47, 0.5);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(211, 47, 47, 0.7);
    }
}

/* Zdjęcie wyprzedanego dania - grayscale + ciemniejsze */
.pz-item-soldout img {
    filter: grayscale(70%) brightness(0.5);
}

/* Nazwa dania - szara */
.pz-item-soldout h3 {
    color: #999 !important;
}

/* Opis - jasnoszary */
.pz-item-soldout p {
    color: #bbb !important;
}

/* Cena - szara + przekreślona */
.pz-item-soldout span {
    color: #999 !important;
    text-decoration: line-through !important;
}

/* Zablokuj hover effect dla wyprzedanych dań */
.pz-item-soldout:hover {
    transform: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

.pz-item-soldout:hover img {
    transform: none !important;
}

/* Responsive - mniejszy badge na mobile */
@media (max-width: 768px) {
    .pz-item-soldout>div:first-child>div {
        padding: 12px 20px;
        font-size: 16px;
    }
}

/* ========================================
   BANNER ZAMKNIĘCIA RESTAURACJI - DOPASOWANY DO WTYCZKI
   ======================================== */

.pz-restaurant-closed-banner {
    background: linear-gradient(135deg, #a67a2e 0%, #c8973a 50%, #d4a644 100%);
    color: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: 0 8px 25px rgba(200, 151, 58, 0.4);
    animation: pulseBannerTurquoise 2s ease-in-out infinite;
    border: 3px solid rgba(255, 111, 0, 0.3);
    /* Pomarańczowa ramka */
}

.pz-closed-banner-icon {
    font-size: 48px;
    line-height: 1;
    filter: drop-shadow(0 2px 8px rgba(255, 111, 0, 0.6));
}

.pz-closed-banner-content {
    text-align: center;
    max-width: 600px;
}

.pz-closed-banner-content h2 {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    text-shadow:
        2px 2px 0 rgba(0, 0, 0, 0.2),
        0 0 20px rgba(255, 111, 0, 0.4);
    /* Pomarańczowy glow */
}

.pz-closed-banner-content p {
    margin: 0;
    font-size: 16px;
    opacity: 0.95;
    line-height: 1.5;
    color: #fff;
}

@keyframes pulseBannerTurquoise {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(200, 151, 58, 0.4);
        border-color: rgba(255, 111, 0, 0.3);
    }

    50% {
        transform: scale(1.01);
        box-shadow: 0 12px 35px rgba(200, 151, 58, 0.6);
        border-color: rgba(255, 111, 0, 0.6);
        /* Pomarańczowa ramka pulsuje */
    }
}

/* Responsywność na mobile */
@media (max-width: 768px) {
    .pz-restaurant-closed-banner {
        flex-direction: column;
        padding: 25px 20px;
        text-align: center;
    }

    .pz-closed-banner-content h2 {
        font-size: 22px;
    }

    .pz-closed-banner-content p {
        font-size: 14px;
    }
}

/* ===== CATEGORY NAV ===== */
#pz-cat-nav-sentinel {
    height: 1px;
    margin: 0;
}

.pz-cat-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #f7f7f7;
    border-bottom: 1px solid var(--white-alpha-20, rgba(0, 0, 0, 0.1));
    margin-bottom: 30px;
    border-radius: 12px;
    padding: 10px 8px;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.2s ease;
}

.pz-cat-nav--stuck {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.pz-cat-nav-arrow {
    flex-shrink: 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    color: var(--white, #1a1a1a);
    padding: 0 6px;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.pz-cat-nav-arrow:hover {
    opacity: 1;
}

.pz-cat-pills-wrapper {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
}

.pz-cat-pills-wrapper::-webkit-scrollbar {
    display: none;
}

.pz-cat-pill {
    flex-shrink: 0;
    background: none;
    border: 2px solid transparent;
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white, #1a1a1a);
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.pz-cat-pill:hover {
    background: var(--eerie-black-4, #eee);
}

.pz-cat-pill.active {
    background: var(--gold-crayola, #c8973a);
    color: #fff;
    font-weight: 700;
}

.pz-cat-modal-btn {
    flex-shrink: 0;
    background: none;
    border: 1px solid var(--white-alpha-20, rgba(0, 0, 0, 0.15));
    border-radius: 8px;
    width: 36px;
    height: 36px;
    font-size: 18px;
    cursor: pointer;
    color: var(--white, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.pz-cat-modal-btn:hover {
    background: var(--eerie-black-4, #eee);
}

/* Modal */
.pz-cat-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
}

.pz-cat-modal-overlay.active {
    display: flex;
}

.pz-cat-modal {
    background: var(--smoky-black-1, #fff);
    border-radius: 16px;
    width: 90%;
    max-width: 480px;
    max-height: 70vh;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.pz-cat-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px 16px;
    font-size: 18px;
    font-weight: 700;
    color: var(--white, #1a1a1a);
    border-bottom: 1px solid var(--white-alpha-20, rgba(0, 0, 0, 0.1));
}

.pz-cat-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--white, #1a1a1a);
    line-height: 1;
    opacity: 0.6;
}

.pz-cat-modal-close:hover {
    opacity: 1;
}

.pz-cat-modal-list {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.pz-cat-modal-item {
    padding: 14px 24px;
    cursor: pointer;
    font-size: 16px;
    color: var(--white, #1a1a1a);
    border-bottom: 1px solid var(--white-alpha-10, rgba(0, 0, 0, 0.06));
    transition: background 0.15s;
}

.pz-cat-modal-item:hover {
    background: var(--eerie-black-4, #f0f0f0);
}

.pz-cat-modal-item:last-child {
    border-bottom: none;
}

/* ===== CHECKBOX REGULAMIN ===== */
.pz-terms-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 4px 0 16px 0;
    padding: 12px 14px;
    background: #f9f9f9;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
}

.pz-terms-checkbox {
    width: 17px;
    height: 17px;
    min-width: 17px;
    margin-top: 2px;
    accent-color: #e74c3c;
    cursor: pointer;
    flex-shrink: 0;
}

.pz-terms-text {
    font-size: 13px;
    color: #555;
    line-height: 1.55;
    pointer-events: none;
}

.pz-terms-link {
    color: #e74c3c;
    text-decoration: underline;
    font-weight: 600;
    pointer-events: auto;
    cursor: pointer;
}

.pz-terms-link:hover {
    color: #c0392b;
    text-decoration: none;
}

#pz-app-v9 img.emoji {
    width: 1em !important;
    height: 1em !important;
    display: inline !important;
    vertical-align: -0.1em !important;
}

/* ── KUPON ──────────────────────────────────────────────────────────────── */
.pz-coupon-section {
    margin: 8px 0 0;
    padding: 10px 16px;
    border-top: 1px dashed #e0e0e0;
}

.pz-coupon-toggle-btn {
    background: none;
    border: none;
    color: #0097A7;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.pz-coupon-input-wrap {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.pz-coupon-input-wrap input {
    flex: 1;
    padding: 8px 10px;
    border: 1.5px solid #b0bec5;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.pz-coupon-input-wrap input:focus {
    outline: none;
    border-color: #0097A7;
}

.pz-coupon-apply-btn {
    background: #0097A7;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.pz-coupon-apply-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.pz-coupon-error {
    color: #c62828;
    font-size: 12px;
    margin-top: 6px;
    font-weight: 600;
}

.pz-coupon-applied {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #e8f5e9;
    border-radius: 6px;
    padding: 8px 12px;
    border: 1px solid #a5d6a7;
}

.pz-coupon-applied-msg {
    font-size: 13px;
    font-weight: 600;
    color: #2e7d32;
}

.pz-coupon-remove {
    background: none;
    border: none;
    color: #999;
    font-size: 16px;
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
}

.pz-coupon-remove:hover {
    color: #c62828;
}

/* ── NAPIWKI ──────────────────────────────────────────────────────────────── */
.pz-tip-section {
    padding: 12px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin: 4px 0;
}

.pz-tip-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text, #f0ece4);
    margin-bottom: 8px;
}

.pz-tip-buttons {
    display: flex;
    gap: 6px;
    flex-wrap: nowrap;
}

.pz-tip-btn {
    flex: 1;
    padding: 6px 4px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    line-height: 1.3;
    transition: all 0.15s ease;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text, #f0ece4);
}

.pz-tip-btn small {
    display: block;
    font-weight: 400;
    font-size: 11px;
    opacity: 0.75;
}

.pz-tip-btn:hover {
    border-color: #0097A7;
    color: #0097A7;
    background: rgba(0, 151, 167, 0.1);
}

.pz-tip-custom {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.pz-tip-quick {
    padding: 5px 10px;
    border: 1px solid #0097A7;
    border-radius: 6px;
    background: rgba(0, 151, 167, 0.15);
    color: #0097A7;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.pz-tip-quick:hover {
    background: #0097A7;
    color: #fff;
}

.pz-tip-applied {
    margin-top: 8px;
    font-size: 12px;
    color: #C8973A;
    font-weight: 600;
}