/* Cart Preview Styles */
.cart-preview {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.cart-items {
    margin-bottom: 30px;
}

.cart-item {
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    background-color: #fff;
}

.cart-item-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
}

.cart-item h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #333;
}

.cart-item-price {
    font-size: 18px;
    font-weight: bold;
    color: #2196F3;
    margin-bottom: 5px;
}

.cart-item-quantity {
    color: #666;
    font-size: 14px;
}

.cart-summary {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.cart-summary .grid-x {
    margin-bottom: 10px;
}

.cart-summary .grid-x:last-child {
    margin-bottom: 0;
    padding-top: 10px;
    border-top: 1px solid #e0e0e0;
}

.cart-summary strong {
    color: #333;
}

.text-right {
    text-align: right;
}

/* Cart message styles */
.cart-message {
    width: 100%;
    padding: 12px 15px;
    margin: 15px 0;
    border-radius: 4px;
    font-weight: 500;
    animation: fadeIn 0.3s ease-in-out;
    border: 1px solid;
}

.cart-message.success {
    background-color: #dff0d8;
    color: #3c763d;
    border-color: #d6e9c6;
}

.cart-message.error {
    background-color: #f2dede;
    color: #a94442;
    border-color: #ebccd1;
}

.distinto-cdr {
    display: block;
    width: 50%;
    position: relative;
    background: #efefef;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 13px;
    float: left;
    margin: 0 0 10px;
}

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

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

@media (max-width: 640px) {
    .cart-preview {
        padding: 10px;
    }

    .cart-item {
        padding: 10px;
    }

    .cart-item h4 {
        font-size: 14px;
    }

    .cart-item-price {
        font-size: 16px;
    }
    
.distinto-cdr {
    display: block;
    width: calc(100% - 20px) !important;
    position: relative;
    background: #efefef;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 12px;
    float: left;
    margin:10px;
    margin-top: 0px;
    margin-bottom: 0px;
}
    
}



