.woo-mini-cart-container {
    position: relative;
    display: inline-block;
}

.woo-mini-cart-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.woo-mini-cart-icon {
    font-size: 20px;
    margin-right: 5px;
}

.woo-mini-cart-count {
    background-color: #ff0000;
    color: #ffffff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.woo-mini-cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: #ffffff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: none;
    padding: 15px;
}

.woo-mini-cart-container:hover .woo-mini-cart-dropdown {
    display: block;
}

.woo-mini-cart-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.woo-mini-cart-item {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.woo-mini-cart-item-image {
    width: 60px;
    margin-right: 10px;
}

.woo-mini-cart-item-image img {
    width: 100%;
    height: auto;
}

.woo-mini-cart-item-details {
    flex: 1;
}

.woo-mini-cart-item-title {
    margin: 0 0 5px 0;
    font-size: 14px;
}

.woo-mini-cart-item-price-qty {
    font-size: 13px;
    color: #666;
}

.woo-mini-cart-item-remove .remove {
    color: #ff0000;
    text-decoration: none;
    font-size: 18px;
    line-height: 1;
}

.woo-mini-cart-empty {
    margin: 0;
    text-align: center;
    padding: 10px 0;
}
.woo-mini-cart-list {
  max-height: 350px;
  overflow-y: auto;
  margin-bottom: 15px;
}
.woo-mini-cart-item-title a {
  text-decoration: none;
  color: #3c3c3c;
  font-size: 14px;
  font-weight: 500;
}
.woo-mini-cart-subtotal {
    text-align: right;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.woo-mini-cart-footer {
    display: flex;
    justify-content: space-between;
}

.woo-mini-cart-footer .button {
    padding: 8px 15px;
    font-size: 13px;
    text-decoration: none;
}

.woo-mini-cart-footer .button.view-cart {
    background: #f5f5f5;
    color: #333;
}

.woo-mini-cart-footer .button.checkout {
    background: #000;
    color: #fff;
}