/* Layout */
 .woocommerce-mini-cart .woocommerce-mini-cart-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid #eee; }
 .custom-mini-cart-item-image { flex: 0 0 90px; }
 .custom-mini-cart-item-image img { width: 90px; height: 90px; object-fit: cover; border-radius: 4px; }
 .custom-mini-cart-item-details { flex: 1; position: relative; }

 /* Header */
 .custom-mini-cart-header { display: flex; justify-content: space-between; align-items: center; padding: 16px; font-weight: 700; letter-spacing: 1px; font-size: 12px; }
 .custom-mini-cart-close { background: none; border: none; font-size: 20px; cursor: pointer; }

 /* Item details */
 .custom-mini-cart-item-name { font-weight: 700; margin-bottom: 4px; }
 .custom-mini-cart-item-meta { font-size: 12px; color: #888; margin-bottom: 8px; }
 .custom-mini-cart-item-price { font-weight: 700; font-size: 16px; margin-bottom: 10px; }
 .remove.remove_from_cart_button { position: absolute; top: 0; right: 0; }

 /* Quantity stepper */
 .custom-mini-cart-qty-stepper { display: flex; align-items: center; border: 1px solid #ccc; border-radius: 4px; width: fit-content; }
 .qty-btn { background: none; border: none; width: 32px; height: 32px; font-size: 18px; cursor: pointer; }
 .qty-value { padding: 0 10px; min-width: 30px; text-align: center; }

 /* Subtotal */
 .custom-mini-cart-subtotal { display: flex; justify-content: space-between; padding: 16px 0; font-size: 14px; }

 /* Buttons */
 .custom-mini-cart-buttons { display: flex; gap: 12px; padding-bottom: 16px; }
 .custom-mini-cart-btn { flex: 1; text-align: center; padding: 14px; font-weight: 700; font-size: 13px; letter-spacing: 1px; text-decoration: none; }
 .custom-mini-cart-btn--view { border: 2px solid #222; color: #222; background: #fff; }
 .custom-mini-cart-btn--checkout { background: #1a2e44; color: #fff; border: 2px solid #1a2e44; }
