/* Cart Item Styles */
.minicart-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.minicart-item:hover {
    background: #f8f9fa;
}

.minicart-item .thumbnail {
    width: 80px;
    height: 80px;
    margin-left: 15px;
    flex-shrink: 0;
}

.minicart-item .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.minicart-item .product-content {
    flex: 1;
    min-width: 0;
}

.minicart-item .title {
    font-size: 14px;
    margin-bottom: 5px;
}

.minicart-item .title a {
    color: #333;
    text-decoration: none;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.minicart-item .quantity {
    color: #666;
    font-size: 13px;
}

.minicart-item .price {
    color: #28a745;
    font-weight: 600;
}

.minicart-item .close-btn {
    margin-right: 10px;
}

.minicart-item .close-btn button {
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.minicart-item .close-btn button:hover {
    background: #dc3545;
    color: #fff;
    transform: rotate(90deg);
}

/* Empty Cart State */
.empty-cart {
    text-align: center;
    padding: 30px 15px;
}

.empty-cart-content {
    color: #666;
}

.empty-cart-content i {
    font-size: 48px;
   
    margin-bottom: 15px;
}

/* Cart Footer */
.rbt-minicart-footer {
    padding: 15px;

    border-top: 1px solid #eee;
}

.rbt-cart-subttotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.favorite-btn {
    position: absolute;
    left: 10px;
    bottom: 10px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.favorite-btn i {
    color: #ff6b6b;
    font-size: 16px;
    transition: all 0.3s ease;
}

.favorite-btn:hover {
    transform: scale(1.1);
    background: #ff6b6b;
}

.favorite-btn:hover i {
    color: white;
}

.favorite-btn.active {
    background: #ff6b6b;
}

.favorite-btn.active i {
    color: white;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.favorite-btn.animate i {
    animation: heartbeat 0.5s ease-in-out;
}

.rbt-card-img {
    position: relative;
    overflow: hidden;
}
