.cart-preview {
    width: 100%;
    font-family: Microsoft YaHei;
}

.cart-preview-content {
    padding: 20px;
    max-height: 400px; /* ak bude veľa produktov, scroll */
    overflow-y: auto;
}

.cart-preview h2 {
    font-size: 22px;
    margin-bottom: 15px;
    font-family: Bookman old style;
}

.cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.cart-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
}

.cart-item span {
    margin-right: 10px;
}

.cart-item-details {
    flex: 1;
    margin-left: 15px; /* menej odsadenia než pôvodne */
}

.cart-item-details span {
    display: block;
}

.cart-item-price {
    font-weight: bold;
}

.total {
    font-weight: bold;
    font-size: 18px;
    text-align: right;
    margin-top: 20px;
}

.doprava {
    margin-bottom: 10px;
    padding-bottom: 10px;
}
