/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
.cart-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.cart-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1rem;
  position: relative;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.cart-card-thumb img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.cart-card-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cart-card-title a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 1.1rem;
}

.cart-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-card-subtotal {
  font-weight: 600;
  margin-top: 0.5rem;
}

.remove-item {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 1.3rem;
  color: #888;
  text-decoration: none;
}

.remove-item:hover {
  color: #e60023;
}
