/* Custom Mini Cart Styles */
.custom-mini-cart-container {
    padding: 20px;
    max-width: 400px;
    font-family: 'Arial', sans-serif;
    position: relative;
}

.custom-mini-cart-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    font-weight: bold;
}

.custom-mini-cart-title {
  font-family: 'Cal Sans', sans-serif;
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
}

.custom-mini-cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.custom-mini-cart-item-image {
    width: 60px;
    height: 60px;
    margin-right: 15px;
}

.custom-mini-cart-item-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

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

.custom-mini-cart-item-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.custom-mini-cart-item-meta {
    font-size: 12px;
    color: #666;
}

.custom-mini-cart-item-quantity {
    font-size: 14px;
    color: #333;
}

.custom-mini-cart-item-price {
    font-weight: bold;
    margin-left: 10px;
}

.custom-mini-cart-item-remove {
    color: #ff0000;
    cursor: pointer;
    font-size: 20px;
    margin-left: 10px;
}

.custom-mini-cart-total {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    font-weight: bold;
    font-size: 18px;
    padding: 10px 0;
    border-top: 1px solid #eee;
}

.custom-mini-cart-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.custom-mini-cart-checkout-button {
    background-color: #ffcc00;
    color: #333;
    border: none;
    padding: 12px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    border-radius: 4px;
    text-decoration: none;
    display: block;
    font-size: 16px;
}

.custom-mini-cart-view-cart {
    text-align: center;
    margin-top: 10px;
}

.custom-mini-cart-view-cart a {
    color: #333;
    text-decoration: none;
}

.custom-mini-cart-empty {
    text-align: center;
    padding: 30px 0;
}

/* Quantity display with product count */
.custom-mini-cart-item-quantity-display {
    display: flex;
    align-items: center;
}

.custom-mini-cart-item-count {
    background-color: #f5f5f5;
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 5px;
}

/* Product meta styling */
.custom-mini-cart-item-meta-text {
    display: block;
    font-style: italic;
    color: #666;
    font-size: 12px;
}

/* Graduation type styling */
.mini-cart-item-meta {
    font-size: 12px;
    color: #666;
    margin: 3px 0;
}

.mini-cart-meta-key {
    font-weight: bold;
}

/* Cart note */
.custom-mini-cart-note {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
    text-align: center;
}
