/* MAIN */
.custom-mini-cart {
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
}

/* HEADER */
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    font-weight: 600;
}

.cart-header h3 {
    font-size: 14px;
    letter-spacing: 1px;
}

/* COUNT */
.cart-count {
    background: #e85d8e;
    color: #fff;
    padding: 3px 8px;
    border-radius: 20px;
}

/* ITEMS */
.cart-items {
    padding: 20px;
    flex: 1;
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.cart-img img {
    width: 80px;
    border: 1px solid #eee;
    padding: 5px;
}

/* INFO */
.cart-info h4 {
    font-size: 16px;
    margin: 0;
}

.row-top {
    display: flex;
    justify-content: space-between;
}

/* REMOVE */
.remove {
    color: #999;
    text-decoration: none;
}

.remove:hover {
    color: #000;
}

/* QTY */
.qty {
    font-size: 12px;
    color: #666;
    display: block;
    margin-top: 5px;
}

/* PRICE */
.price {
    color: #e85d8e;
    font-weight: 600;
    display: block;
    margin-top: 5px;
}

/* TOTALS */
.cart-totals {
    padding: 20px;
    border-top: 1px solid #eee;
}

.cart-totals div {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}

.cart-totals .highlight {
    color: #e85d8e;
    font-weight: 600;
}

/* BUTTONS */
.cart-buttons {
    display: flex;
}

.cart-buttons a {
    flex: 1;
    padding: 16px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-size: 13px;
}

/* LEFT BUTTON */
.view-cart {
    background: #111;
}

/* RIGHT BUTTON */
.checkout {
    background: #e85d8e;
}