/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/.pnpm/css-loader@6.11.0_webpack@5.108.4/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/.pnpm/postcss-loader@6.2.1_postcss@8.5.19_webpack@5.108.4/node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/.pnpm/sass-loader@16.0.8_sass@1.101.0_webpack@5.108.4/node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./widgets/cart-items/style.scss ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/**
 * Styling for the Cart Items Elementor widget (gws-cart-items) — the
 * line-items list + subtotal/checkout footer for the custom mini-cart
 * pattern (see class-gws-elementor-widget-cart-items.php's docblock).
 * `.gws-cart-items`/`.gws-cart-summary` selectors here match the markup
 * GWS_Render_Cart_Items_List_Markup()/GWS_Render_Cart_Summary_Markup()
 * (inc/woocommerce.php) produce, both on initial load and after every
 * fragment refresh from a stepper click — same elements either way, so
 * no separate "post-update" styling is needed.
 */
.gws-cart-items__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gws-cart-items__empty {
  margin: 0;
  opacity: 0.7;
}

.gws-cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: start;
}

.gws-cart-item__media {
  display: block;
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: 4px;
}

.gws-cart-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gws-cart-item__details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.gws-cart-item__title {
  text-decoration: none;
  color: inherit;
  font-weight: 600;
}

.gws-cart-item__price {
  opacity: 0.7;
  font-size: 0.9em;
}

.gws-cart-item__subtotal {
  font-weight: 600;
  white-space: nowrap;
}

.gws-cart-item__qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

.gws-cart-item__qty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8em;
  height: 1.8em;
  border: 1px solid currentColor;
  background: none;
  border-radius: 4px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.gws-cart-item__qty-btn svg {
  width: 0.9em;
  height: 0.9em;
}

.gws-cart-item__qty-value {
  min-width: 1.5em;
  text-align: center;
}

.gws-cart-item__remove {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  font-size: 0.9em;
}

.gws-cart-item__remove svg {
  width: 1em;
  height: 1em;
}

.gws-cart-items-widget .is-busy {
  opacity: 0.5;
  pointer-events: none;
}

.gws-cart-summary {
  margin-top: 20px;
}

.gws-cart-summary__subtotal {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-bottom: 12px;
}

.gws-cart-summary__actions {
  display: flex;
  gap: 12px;
}

.gws-cart-summary__actions a {
  flex: 1;
  text-align: center;
  padding: 0.75em 1em;
  text-decoration: none;
  border-radius: 4px;
}

.gws-cart-summary__view-cart {
  border: 1px solid currentColor;
}

.gws-cart-summary__checkout {
  background: var(--gws-cart-checkout-bg, #000);
  color: var(--gws-cart-checkout-color, #fff);
}

/*# sourceMappingURL=style-style.css.map*/