/* ===============================
   MINI CART – PREMIUM & CLEAN
   =============================== */

/* Cart icon bubble */
.wcmenucart-count {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.wcmenucart-details.count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #0ea5e9;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 999px;
}

/* Dropdown container */
.current-shop-items-dropdown {
    width: 360px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    padding: 14px;
    border: 1px solid #e5e7eb;
}

/* Mini cart list */
.woocommerce-mini-cart {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Individual item */
.woocommerce-mini-cart-item {
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.woocommerce-mini-cart-item:last-child {
    border-bottom: none;
}

/* Grid layout */
.owp-grid-wrap {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Product image */
.owp-grid.thumbnail img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

/* Product content */
.owp-grid.content h3 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 4px;
}

.owp-grid.content h3 a {
    color: #111827;
    text-decoration: none;
}

.owp-grid.content h3 a:hover {
    color: #0ea5e9;
}

/* Quantity + price */
.woocommerce-mini-cart .quantity {
    font-size: 13px;
    color: #374151;
}

/* Remove button */
.woocommerce-mini-cart-item .remove {
    position: absolute;
    top: 6px;
    right: 0;
    background: #fee2e2;
    color: #b91c1c;
    width: 22px;
    height: 22px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
}

.woocommerce-mini-cart-item {
    position: relative;
}

/* Subtotal */
.woocommerce-mini-cart__total {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    color: #111827;
}

/* Buttons */
.woocommerce-mini-cart__buttons {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.woocommerce-mini-cart__buttons a {
    flex: 1;
    padding: 10px 0;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

/* View cart */
.woocommerce-mini-cart__buttons .wc-forward {
    background: #f3f4f6;
    color: #111827;
}

.woocommerce-mini-cart__buttons .wc-forward:hover {
    background: #e5e7eb;
}

/* Checkout button */
.woocommerce-mini-cart__buttons .checkout {
    background: #000000;
    color: #ffffff;
}

.woocommerce-mini-cart__buttons .checkout:hover {
    background: linear-gradient(135deg, #0ea5e9, #22c55e);
}

/* Mobile */
@media (max-width: 768px) {
    .current-shop-items-dropdown {
        width: 100%;
        border-radius: 12px;
    }
}
