/* CheckoutWC Side Cart Coupon Styles */

.cfw-side-cart-coupons-wrap {
  margin: 12px 0;
}

.cfw-side-cart-coupons-headline {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #222;
}

.cfw-side-cart-coupon {
  display: inline-flex;
  align-items: center;
  background: var( --lt-gray, #edefee);
  border-radius: 2em;
  padding: 4px 12px 4px 8px;
  margin: 4px 4px 0 0;
  font-size: 15px;
  color: #333;
  position: relative;
  font-family: 'Museo-Sans', Arial, sans-serif;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.cfw-side-cart-coupon > span:first-child {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding-left: 0.2em;
  padding-right: 0.2em;
}

.cfw-side-cart-coupon > span:first-child::before {
  /* content: "🏷️"; */
  font-size: 1.2em;
  line-height: 1;
  margin-right: 1rem;
}

.cfw-side-cart-coupon .cfw-remove-coupon {
  color: var( --btn-bg-color ) !important;
  margin-left: 10px !important;
  text-decoration: none !important;
  font-weight: bold !important;
  font-size: 24px !important;
  cursor: pointer !important;
  line-height: 1 !important;
  transition: color 0.2s !important;
  background: none !important;
  border: none !important;
  padding: 0 4px !important;
  display: inline-block !important;
  align-items: initial !important;
  position: static !important;
}

.cfw-side-cart-coupon .cfw-remove-coupon:hover {
  color: #900 !important;
}

.cfw-side-cart-coupons-headline{
    font-size: 16px;
    font-weight: 400;
}

.cfw-remove-coupon {
  position: relative;
}

/* Remove any duplicate tag emoji that might appear after the remove button */
.cfw-remove-coupon::after {
  content: none !important;
}

/* Hide no-JS fallback forms by default (they show only when JS is disabled) */
.cfw-coupon-remove-form,
.cfw-remove-coupon-nojs {
  display: none !important;
}

/* More specific selectors to ensure the fallback is hidden */
.cfw-side-cart-coupon .cfw-coupon-remove-form,
.cfw-side-cart-coupon .cfw-remove-coupon-nojs {
  display: none !important;
}
/* Ensure our elements do not block pointer/touch events outside their bounds */
#cfw-side-cart-coupons-wrap,
#cfw-side-cart-coupons,
#cfw-coupon-loading,
#cfw-coupon-error {
  touch-action: manipulation;
}




