/* =============================== */
/* EMPTY CART                      */
/* =============================== */

.ezb-cart-empty {
    max-width: 640px;
    margin: 80px auto;
    padding: 48px 32px;
    text-align: center;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
}

.ezb-cart-empty-icon {
    margin-bottom: 8px;
    font-size: 3rem;
    opacity: 0.6;
}

.ezb-cart-empty-title {
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #222;
}

.ezb-cart-empty-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 16px;
    line-height: 1;
    color: #666;
}

.ezb-cart-empty-description {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ezb-cart-empty-description p {
    margin-bottom: 0;
}

.ezb-cart-empty-cta {
    display: inline-block;
    width: 240px;
    margin: 0 auto;
    padding: 14px 26px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    color: #fff;
    background: var(--ez-primary) !important;
    border-radius: 12px;
    transition: background 0.2s ease;
}

.ezb-cart-empty-cta:hover {
    background: #0055d4;
}

/* =============================== */
/* CART PAGE                       */
/* =============================== */

.ezb-cart-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 24px;
}

.ezb-cart-title {
    margin-bottom: 24px;
    font-size: 2rem;
    font-weight: 700;
}

/* =============================== */
/* CART ITEMS                      */
/* =============================== */

.ezb-cart-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ezb-cart-item {
    position: relative;
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 32px;
    padding: 16px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
}

.ezb-cart-item-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.ezb-cart-item-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ezb-cart-item-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.ezb-cart-item-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.ezb-cart-remove {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 0;
    font-size: 1.1rem;
    color: #999;
    background: none;
    border: none;
    cursor: pointer;
}

.ezb-cart-remove:hover {
    color: #d00;
}

.ezb-cart-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    color: #666;
}

.ezb-cart-item-addons {
    font-size: 0.85rem;
    color: #333;
}

.ezb-cart-addon {
    display: flex;
    justify-content: space-between;
    margin-top: 4px;
}

.ezb-cart-item-price {
    margin-top: auto;
    font-weight: 700;
    white-space: nowrap;
}

/* =============================== */
/* CART FOOTER                     */
/* =============================== */

.ezb-cart-footer {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.ezb-cart-clear {
    font-size: 0.9rem;
    color: #999;
    background: none;
    border: none;
    cursor: pointer;
}

.ezb-cart-clear:hover {
    color: #d00;
}

.ezb-cart-summary {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.ezb-cart-total {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    font-size: 24px;
    font-weight: 700;
}

.ezb-cart-actions {
    display: flex;
    gap: 12px;
    margin-left: auto;
}

/* BUTTONS */
.ezb-btn-primary {
    padding: 12px 20px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: var(--ez-primary) !important;
    border-radius: 12px;
}

.ezb-btn-primary:hover {
    background: #0055d4;
}

.ezb-btn-secondary {
    padding: 12px 20px;
    font-weight: 600;
    text-decoration: none;
    color: #333;
    background: #f2f2f2;
    border-radius: 12px;
}

.ezb-timer{
    font-size: 0.85rem;
    color: red;
}

.ezb-cart-item-timer{
    font-size: 0.85rem;
    color: gray; !important;
}

.ezb-cart-item-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    text-align: right;
}

.ezb-cart-item-price-value {
    font-size: 16px;
    font-weight: 600;
}

.ezb-cart-item-expired-badge {
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    color: #b42318;
    background: #fdeaea;
    border-radius: 6px;
}
.ezb-btn-disabled {
    color: #9ca3af;
    background: #e5e7eb !important;
    border: none;
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.85;
}

/* ako koristiš hover stilove na .ezb-btn-primary */
.ezb-btn-disabled:hover {
    color: #9ca3af;
    background: #e5e7eb;
}

/* optional – mali UX detalj */
.ezb-btn-disabled::after {
    content: '';
}

.ezb-cart-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    padding: 14px 16px;
    font-size: 14px;
    line-height: 1.4;
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
    border-radius: 10px;
}

.ezb-cart-alert--warning {
    color: #7a4a00;
    background: #fff7e6;
    border: 1px solid #ffd28a;
}

.ezb-cart-alert-icon {
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 18px;
    line-height: 1;
}

.ezb-cart-alert-text {
    flex: 1;
}

.ezb-cart-error-banner {
    width: 100%;
    margin: 0 0 24px 0;
    padding: 12px 16px;
    background: #fff6e5;
    border: 1px solid #ffd699;
    border-radius: 10px;
}

.ezb-cart-error-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.ezb-cart-error-icon {
    font-size: 18px;
    line-height: 1;
}

.ezb-cart-error-text {
    font-size: 14px;
    font-weight: 500;
    color: #8a5a00;
}

/* RESPONSIVENESS */
@media (max-width: 768px) {
    .ezb-cart-empty {
        max-width: calc(100% - 32px);
        margin: 64px auto;
        padding: 24px 16px;
        border-radius: 12px;
    }

    .ezb-cart-item {
        grid-template-columns: unset;
        grid-template-areas:
        "content content"
        "image price";
        gap: unset;
        row-gap: 48px;
    }

    .ezb-cart-remove {
        top: 0;
        right: 0;
    }

    .ezb-cart-item-content {
        grid-area: content;
        position: relative;
    }

    .ezb-cart-item-content::before {
        content: '';
        position: absolute;
        bottom: -24px;
        left: 0;
        width: 100%;
        height: 0.4px;
        background-color: var(--bs-body-color);
        opacity: 0.2;
    }

    .ezb-cart-item-image {
        width: 128px;
    }

    .ezb-cart-item-image {
        grid-area: image;
    }

    .ezb-cart-item-image img {
        border-radius: 6px;
    }

    .ezb-cart-item-price {
        grid-area: price;
    }

    .ezb-cart-item-title {
        width: calc(100% - 48px);
    }
}

@media (max-width: 576px) {
    .ezb-cart-actions {
        flex-direction: column;
        width: 100%;
        margin-left: unset;
    }

    .ezb-cart-actions a,
    .ezb-cart-actions button {
        flex-grow: 1;
        text-align: center;
    }
}
