.cart-badge {
    position: absolute;
    top: 16px;
    right: -6px;
    display: inline-block !important;
    min-width: 18px;
    height: 18px;
    line-height: 18px !important;
    padding: 1px !important;
    margin-left: 5px;
    background: #00bdbf;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 9px;
    text-align: center;
    vertical-align: middle;
}

.cart-toast {
    position: fixed;
    right: 25px;
    bottom: 25px;
    padding: 14px 22px;
    background: #27ae60;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 999999;
    max-width: 320px;
}
.cart-toast-show {
    opacity: 1;
    transform: translateY(0);
}
.cart-toast-error {
    background: #c0392b;
}

.btn-cart {
    display: inline-block;
    padding: 12px 25px;
    background: #fff;
    color: #0a3d3f;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #00bdbf;
    cursor: pointer;
    margin-left: 10px;
}
.btn-cart:hover {
    background: #00fbfc;
    color: #0a3d3f;
    text-decoration: none;
}
.btn-cart i {
    margin-right: 6px;
}
.btn-cart.in-cart {
    background: #27ae60;
    color: #fff;
    border-color: #27ae60;
}

.korzina-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.korzina-card {
    display: flex;
    gap: 15px;
    background: #fff;
    border: 2px solid #00effe;
    border-radius: 12px;
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.korzina-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.korzina-card-image {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
}
.korzina-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.korzina-card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.korzina-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #0a3d3f;
    margin: 0 0 8px 0;
    line-height: 1.4;
}
.korzina-card-title a {
    color: #0a3d3f;
    text-decoration: none;
}
.korzina-card-title a:hover {
    color: #00bdbf;
    text-decoration: underline;
}
.korzina-card-meta {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}
.korzina-card-meta span {
    display: inline-block;
    margin-right: 12px;
}
.korzina-card-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.korzina-card-actions .btn-order {
    padding: 7px 16px;
    font-size: 14px;
}
.korzina-card-actions .btn-cart {
    padding: 7px 16px;
    font-size: 14px;
    margin-left: 0;
}
.korzina-empty {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border: 2px dashed #00effe;
    border-radius: 12px;
    margin: 30px 0;
}
.korzina-empty-icon {
    font-size: 64px;
    margin-bottom: 15px;
}
.korzina-empty-title {
    font-size: 22px;
    font-weight: 700;
    color: #0a3d3f;
    margin: 0 0 10px 0;
}
.korzina-empty-text {
    color: #666;
    font-size: 15px;
    margin: 0 0 20px 0;
}
.korzina-header-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}
.korzina-count {
    font-size: 15px;
    color: #666;
}
.btn-clear-cart {
    padding: 10px 20px;
    background: #fff;
    color: #c0392b;
    border: 2px solid #c0392b;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-clear-cart:hover {
    background: #c0392b;
    color: #fff;
}

@media (max-width: 768px) {
    .korzina-grid {
        grid-template-columns: 1fr;
    }
    .korzina-card {
        flex-direction: column;
    }
    .korzina-card-image {
        width: 100%;
        height: 180px;
    }
    .btn-cart {
        display: block;
        margin: 10px 0 0 0;
        text-align: center;
    }
}