/* ============================================================
 * PURCHASE FLOW V2 — WUShop
 * Side-cart, Cart, Checkout, Thank-you
 * ============================================================ */

/* ── CSS Variables ── */
:root {
  --wu-primary: #4F46E5;
  --wu-primary-hover: #4338CA;
  --wu-gradient: linear-gradient(135deg, #4F46E5, #7C3AED, #EC4899);
  --wu-success: #059669;
  --wu-success-bg: #ECFDF5;
  --wu-info: #7C3AED;
  --wu-info-bg: #F5F3FF;
  --wu-danger: #DC2626;
  --wu-gray-50: #F9FAFB;
  --wu-gray-100: #F3F4F6;
  --wu-gray-200: #E5E7EB;
  --wu-gray-300: #D1D5DB;
  --wu-gray-400: #9CA3AF;
  --wu-gray-500: #6B7280;
  --wu-gray-700: #374151;
  --wu-gray-900: #111827;
  --wu-radius: 12px;
  --wu-radius-lg: 16px;
  --wu-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --wu-shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
}

/* ============================================================
 * SIDE CART DRAWER
 * ============================================================ */
.wu-sidecart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.wu-sidecart-overlay--open {
  opacity: 1;
  visibility: visible;
}

.wu-sidecart {
  position: fixed;
  right: -100%;
  top: 0;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: #fff;
  z-index: 99999;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}
.wu-sidecart--open {
  right: 0;
}

.wu-sidecart__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--wu-gray-200);
  flex-shrink: 0;
}
.wu-sidecart__header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--wu-gray-900);
}
.wu-sidecart__count {
  font-size: 14px;
  color: var(--wu-gray-400);
  font-weight: 400;
  margin-left: 8px;
}
.wu-sidecart__close {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--wu-gray-100);
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wu-gray-500);
  transition: background 0.2s;
}
.wu-sidecart__close:hover {
  background: var(--wu-gray-200);
}

.wu-sidecart__body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
  -webkit-overflow-scrolling: touch;
}

.wu-sidecart__empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--wu-gray-400);
}
.wu-sidecart__empty svg {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  stroke: var(--wu-gray-300);
}
.wu-sidecart__empty p {
  margin: 0;
  font-size: 15px;
}

/* Side cart item */
.wu-sidecart-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--wu-gray-100);
}
.wu-sidecart-item:last-child {
  border-bottom: none;
}
.wu-sidecart-item__img {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--wu-gray-50);
}
.wu-sidecart-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wu-sidecart-item__info {
  flex: 1;
  min-width: 0;
}
.wu-sidecart-item__title {
  font-size: 13px;
  font-weight: 500;
  color: var(--wu-gray-900);
  line-height: 1.3;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.wu-sidecart-item__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.wu-sidecart-item__price {
  font-size: 14px;
  font-weight: 700;
  color: var(--wu-gray-900);
}
.wu-sidecart-item__qty {
  font-size: 12px;
  color: var(--wu-gray-400);
}

/* Side cart footer */
.wu-sidecart__footer {
  flex-shrink: 0;
  padding: 16px 20px;
  border-top: 1px solid var(--wu-gray-200);
  background: var(--wu-gray-50);
}
.wu-sidecart__hints {
  margin-bottom: 12px;
}
.wu-sidecart__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  color: var(--wu-gray-700);
  margin-bottom: 12px;
}
.wu-sidecart__total strong {
  font-size: 20px;
  font-weight: 700;
  color: var(--wu-gray-900);
}

.wu-sidecart__checkout-btn {
  display: block;
  width: 100%;
  padding: 14px 0;
  text-align: center;
  background: var(--wu-gradient);
  color: #fff !important;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--wu-radius);
  text-decoration: none;
  transition: opacity 0.2s;
  margin-bottom: 8px;
}
.wu-sidecart__checkout-btn:hover {
  opacity: 0.9;
  color: #fff !important;
  text-decoration: none;
}

.wu-sidecart__continue {
  display: block;
  width: 100%;
  padding: 10px 0;
  text-align: center;
  background: transparent;
  border: 1px solid var(--wu-gray-200);
  color: var(--wu-gray-700);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--wu-radius);
  cursor: pointer;
  transition: background 0.2s;
}
.wu-sidecart__continue:hover {
  background: var(--wu-gray-100);
}

/* ============================================================
 * PROGRESS BARS (Shipping + Wholesale)
 * ============================================================ */
.wu-progress-hint {
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.4;
}
.wu-progress-hint--shipping {
  background: var(--wu-info-bg);
  color: var(--wu-info);
}
.wu-progress-hint--shipping.wu-progress-hint--done {
  background: var(--wu-success-bg);
  color: var(--wu-success);
}
.wu-progress-hint--wholesale {
  background: #FFF7ED;
  color: #C2410C;
}
.wu-progress-hint--wholesale.wu-progress-hint--done {
  background: var(--wu-success-bg);
  color: var(--wu-success);
}
.wu-progress-hint strong {
  font-weight: 700;
}

.wu-progress-track {
  background: var(--wu-gray-100);
  border-radius: 8px;
  height: 6px;
  overflow: hidden;
  margin-top: 6px;
}
.wu-progress-fill {
  height: 100%;
  background: var(--wu-gradient);
  border-radius: 8px;
  transition: width 0.4s ease;
  min-width: 2%;
}
.wu-progress-fill--done {
  background: var(--wu-success);
}

/* ============================================================
 * CART PAGE
 * ============================================================ */
.wv2-cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px 60px;
  align-items: start;
}

.wv2-cart-left {
  min-width: 0;
}

.wv2-cart-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wv2-cart-item {
  display: grid;
  grid-template-columns: 80px 1fr 120px 100px 40px;
  gap: 16px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--wu-gray-100);
}
.wv2-cart-item:first-child {
  padding-top: 0;
}
.wv2-cart-item:last-child {
  border-bottom: none;
}

.wv2-cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: var(--wu-radius);
  overflow: hidden;
  background: var(--wu-gray-50);
}
.wv2-cart-item-img img,
.wv2-cart-item-img a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--wu-radius);
}

.wv2-cart-item-info {
  min-width: 0;
}
.wv2-cart-item-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--wu-gray-900);
  margin-bottom: 4px;
  line-height: 1.4;
}
.wv2-cart-item-title a {
  color: inherit;
  text-decoration: none;
}
.wv2-cart-item-title a:hover {
  color: var(--wu-primary);
}
.wv2-cart-item-price {
  font-size: 13px;
  color: var(--wu-gray-500);
  margin-top: 4px;
}

/* Wholesale price styling in cart */
.wushop-cart-price del {
  color: var(--wu-gray-400);
  font-size: 12px;
  margin-right: 4px;
}
.wushop-cart-price ins {
  text-decoration: none;
  color: var(--wu-success);
  font-weight: 600;
}

/* Quantity stepper */
.wu-qty {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--wu-gray-200);
  border-radius: 12px;
  overflow: hidden;
}
.wu-qty__btn {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--wu-gray-50);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wu-primary);
  transition: background 0.15s;
  -webkit-user-select: none;
  user-select: none;
  padding: 0;
  line-height: 1;
}
.wu-qty__btn:hover {
  background: #EEF2FF;
}
.wu-qty__btn:active {
  background: var(--wu-gray-300);
}
.wu-qty__input {
  width: 48px;
  text-align: center;
  border: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--wu-gray-900);
  background: transparent;
  -moz-appearance: textfield;
}
.wu-qty__input::-webkit-outer-spin-button,
.wu-qty__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* WooCommerce default quantity overrides */
.wv2-cart-item-qty .quantity {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--wu-gray-200);
  border-radius: 12px;
  overflow: hidden;
}
.wv2-cart-item-qty .quantity input[type="number"] {
  width: 48px;
  height: 40px;
  text-align: center;
  border: none !important;
  font-size: 16px;
  font-weight: 700;
  color: var(--wu-gray-900);
  background: transparent !important;
  -moz-appearance: textfield;
  padding: 0 !important;
  margin: 0;
}
.wv2-cart-item-qty .quantity input[type="number"]::-webkit-outer-spin-button,
.wv2-cart-item-qty .quantity input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.wv2-cart-item-subtotal {
  font-size: 15px;
  font-weight: 700;
  color: var(--wu-gray-900);
  white-space: nowrap;
  text-align: right;
}

.wv2-cart-item-remove {
  justify-self: center;
}
.wv2-cart-item-remove .remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--wu-gray-50);
  color: var(--wu-gray-400) !important;
  font-size: 20px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.wv2-cart-item-remove .remove:hover {
  background: #FEE2E2;
  color: var(--wu-danger) !important;
}

/* Cart actions (coupon + update) */
.wv2-cart-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 20px 0 0;
  border-top: 1px solid var(--wu-gray-100);
  margin-top: 4px;
}
.wv2-cart-actions .coupon {
  display: flex;
  gap: 8px;
  flex: 1;
  min-width: 250px;
}
.wv2-cart-actions .coupon input {
  flex: 1;
  padding: 10px 14px !important;
  border: 1px solid var(--wu-gray-200) !important;
  border-radius: var(--wu-radius) !important;
  font-size: 14px !important;
  outline: none;
  transition: border-color 0.2s;
}
.wv2-cart-actions .coupon input:focus {
  border-color: var(--wu-primary) !important;
}
.wv2-cart-actions .coupon button,
.wv2-cart-actions > button {
  padding: 10px 20px !important;
  border: 1px solid var(--wu-gray-200) !important;
  border-radius: var(--wu-radius) !important;
  background: #fff !important;
  color: var(--wu-gray-700) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.wv2-cart-actions .coupon button:hover,
.wv2-cart-actions > button:hover {
  background: var(--wu-gray-50) !important;
  border-color: var(--wu-gray-300) !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Cart summary */
.wv2-cart-summary {
  position: sticky;
  top: 100px;
  align-self: start;
  background: var(--wu-gray-50);
  border-radius: var(--wu-radius-lg);
  padding: 0;
}

.wv2-cart-summary .cart_totals {
  background: #fff;
  border: 1px solid var(--wu-gray-200);
  border-radius: var(--wu-radius-lg);
  padding: 28px;
  box-shadow: var(--wu-shadow);
}
.wv2-cart-summary .cart_totals h2 {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 700;
  color: var(--wu-gray-900);
}

.wv2-cart-summary .shop_table {
  width: 100%;
  border: none !important;
  border-collapse: collapse;
}
.wv2-cart-summary .shop_table tr {
  border: none !important;
}
.wv2-cart-summary .shop_table th,
.wv2-cart-summary .shop_table td {
  padding: 12px 0;
  border: none !important;
  font-size: 14px;
  border-bottom: 1px solid var(--wu-gray-100) !important;
  background: none !important;
}
.wv2-cart-summary .shop_table th {
  font-weight: 500;
  color: var(--wu-gray-500);
  text-align: left;
}
.wv2-cart-summary .shop_table td {
  text-align: right;
  color: var(--wu-gray-900);
  font-weight: 500;
}
.wv2-cart-summary .shop_table .order-total th,
.wv2-cart-summary .shop_table .order-total td {
  font-size: 20px;
  font-weight: 700;
  border-bottom: none !important;
  padding-top: 16px;
  color: var(--wu-gray-900);
}

/* Cart hints in summary — purple accent, no red */
.wushop-cart-hints {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 16px;
  padding: 0;
  border: none;
  background: transparent;
}
.wushop-cart-hints__item {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.4;
  background: var(--wu-info-bg);
  color: var(--wu-info);
}
.wushop-cart-hints__item strong {
  color: inherit;
}
.wushop-cart-hints__item--active {
  background: var(--wu-success-bg);
  color: var(--wu-success);
}

/* Proceed to checkout */
.wc-proceed-to-checkout {
  padding: 0 !important;
}
.wc-proceed-to-checkout .checkout-button,
.wc-proceed-to-checkout a {
  display: block;
  width: 100%;
  padding: 16px 0 !important;
  text-align: center;
  background: var(--wu-gradient) !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  border-radius: var(--wu-radius) !important;
  text-decoration: none;
  border: none !important;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  margin-top: 20px;
  letter-spacing: 0.01em;
}
.wc-proceed-to-checkout .checkout-button:hover,
.wc-proceed-to-checkout a:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(79,70,229,0.3) !important;
}

/* Free shipping progress */
.wv2-free-shipping-bar {
  background: var(--wu-info-bg);
  border-radius: var(--wu-radius);
  padding: 14px 16px;
  margin-bottom: 16px;
}
.wv2-free-shipping-text {
  font-size: 13px;
  color: var(--wu-info);
  line-height: 1.4;
}
.wv2-free-shipping-done {
  font-size: 13px;
  color: var(--wu-success);
  font-weight: 600;
}
.wv2-progress-track {
  background: var(--wu-gray-200);
  border-radius: 8px;
  height: 6px;
  overflow: hidden;
  margin-top: 8px;
}
.wv2-progress-fill {
  height: 100%;
  background: var(--wu-gradient);
  border-radius: 8px;
  transition: width 0.4s ease;
  min-width: 2%;
}

/* ============================================================
 * CART EMPTY
 * ============================================================ */
.wv2-cart-empty {
  text-align: center;
  padding: 60px 20px 80px;
  max-width: 400px;
  margin: 0 auto;
}
.wv2-cart-empty-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--wu-info-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wv2-cart-empty-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--wu-primary);
}
.wv2-cart-empty h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--wu-gray-900);
  margin: 0 0 8px;
}
.wv2-cart-empty p {
  font-size: 15px;
  color: var(--wu-gray-500);
  margin: 0 0 24px;
}

/* Gradient button */
.wv2-btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--wu-gradient);
  color: #fff !important;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--wu-radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.wv2-btn-gradient:hover {
  opacity: 0.9;
  color: #fff !important;
  text-decoration: none;
}

/* ============================================================
 * CHECKOUT PAGE
 * ============================================================ */
.wu-checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px 60px;
}

/* Step indicators */
.wu-checkout-steps {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
}
.wu-checkout-step {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--wu-gray-400);
  position: relative;
}
.wu-checkout-step__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--wu-gray-200);
  color: var(--wu-gray-500);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wu-checkout-step--active {
  color: var(--wu-primary);
}
.wu-checkout-step--active .wu-checkout-step__num {
  background: var(--wu-primary);
  color: #fff;
}
.wu-checkout-step + .wu-checkout-step::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--wu-gray-200);
}

/* Checkout form sections */
.wu-checkout-section {
  background: #fff;
  border: 1px solid var(--wu-gray-200);
  border-radius: var(--wu-radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}
.wu-checkout-section h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--wu-gray-900);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wu-checkout-section h3 svg {
  width: 20px;
  height: 20px;
  stroke: var(--wu-primary);
}

/* Clean form fields */
.wu-checkout-layout .woocommerce-checkout .form-row {
  margin-bottom: 14px;
}
.wu-checkout-layout .woocommerce-checkout .form-row label {
  font-size: 13px;
  font-weight: 500;
  color: var(--wu-gray-700);
  margin-bottom: 4px;
  display: block;
}
.wu-checkout-layout .woocommerce-checkout .form-row input.input-text,
.wu-checkout-layout .woocommerce-checkout .form-row textarea,
.wu-checkout-layout .woocommerce-checkout .form-row select,
.wu-checkout-layout .woocommerce-checkout .form-row .select2-container .select2-selection {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--wu-gray-200);
  border-radius: var(--wu-radius);
  font-size: 14px;
  color: var(--wu-gray-900);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.wu-checkout-layout .woocommerce-checkout .form-row input.input-text:focus,
.wu-checkout-layout .woocommerce-checkout .form-row textarea:focus,
.wu-checkout-layout .woocommerce-checkout .form-row select:focus {
  border-color: var(--wu-primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Two-column form fields in checkout */
.wu-checkout-layout #customer_details {
  display: block;
}
.wu-checkout-layout #customer_details .col-1,
.wu-checkout-layout #customer_details .col-2 {
  width: 100%;
  float: none;
  padding: 0;
  margin: 0;
}

/* Checkout order review sidebar */
.wu-checkout-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.wu-checkout-order-summary {
  background: #fff;
  border: 1px solid var(--wu-gray-200);
  border-radius: var(--wu-radius-lg);
  padding: 24px;
  box-shadow: var(--wu-shadow);
}
.wu-checkout-order-summary h3 {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  color: var(--wu-gray-900);
}

/* Order review table */
.wu-checkout-order-summary .woocommerce-checkout-review-order-table,
.wu-checkout-layout .woocommerce-checkout-review-order-table {
  width: 100%;
  border: none;
  border-collapse: collapse;
}
.wu-checkout-layout .woocommerce-checkout-review-order-table thead th {
  font-size: 13px;
  font-weight: 500;
  color: var(--wu-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 0;
  border-bottom: 1px solid var(--wu-gray-200);
}
.wu-checkout-layout .woocommerce-checkout-review-order-table tbody td,
.wu-checkout-layout .woocommerce-checkout-review-order-table tfoot td,
.wu-checkout-layout .woocommerce-checkout-review-order-table tfoot th {
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--wu-gray-100);
}
.wu-checkout-layout .woocommerce-checkout-review-order-table tbody .product-name {
  font-weight: 500;
  color: var(--wu-gray-700);
}
.wu-checkout-layout .woocommerce-checkout-review-order-table tbody .product-total {
  text-align: right;
  font-weight: 600;
  color: var(--wu-gray-900);
}
.wu-checkout-layout .woocommerce-checkout-review-order-table tfoot .order-total th,
.wu-checkout-layout .woocommerce-checkout-review-order-table tfoot .order-total td {
  font-size: 18px;
  font-weight: 700;
  color: var(--wu-gray-900);
  border-bottom: none;
  padding-top: 14px;
}

/* Payment methods */
.wu-checkout-layout .wc_payment_methods {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.wu-checkout-layout .wc_payment_methods li {
  border: 1px solid var(--wu-gray-200);
  border-radius: var(--wu-radius);
  padding: 14px 16px;
  margin-bottom: 8px;
  transition: border-color 0.2s;
}
.wu-checkout-layout .wc_payment_methods li.wc_payment_method {
  background: #fff;
}
.wu-checkout-layout .wc_payment_methods li input[type="radio"] {
  accent-color: var(--wu-primary);
}
.wu-checkout-layout .wc_payment_methods .payment_box {
  padding: 12px 0 0 28px;
  font-size: 13px;
  color: var(--wu-gray-500);
}

/* Place order button */
.wu-checkout-layout #place_order,
.wu-checkout-layout .woocommerce-checkout-payment .button {
  display: block;
  width: 100%;
  padding: 16px 0;
  text-align: center;
  background: var(--wu-gradient);
  color: #fff !important;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--wu-radius);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.wu-checkout-layout #place_order:hover {
  opacity: 0.9;
}

/* ============================================================
 * THANK YOU PAGE
 * ============================================================ */
.wu-thankyou {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 16px 80px;
  text-align: center;
}
.wu-thankyou__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--wu-success-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wu-thankyou__icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--wu-success);
  stroke-width: 3;
}
.wu-thankyou h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--wu-gray-900);
  margin: 0 0 8px;
}
.wu-thankyou__order {
  font-size: 16px;
  color: var(--wu-gray-500);
  margin: 0 0 8px;
}
.wu-thankyou__message {
  font-size: 15px;
  color: var(--wu-gray-500);
  margin: 0 0 28px;
  line-height: 1.5;
}

.wu-thankyou__details {
  text-align: left;
  background: #fff;
  border: 1px solid var(--wu-gray-200);
  border-radius: var(--wu-radius-lg);
  padding: 24px;
  margin-bottom: 28px;
  box-shadow: var(--wu-shadow);
}
.wu-thankyou__details h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--wu-gray-900);
}
.wu-thankyou__details-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--wu-gray-100);
  font-size: 14px;
}
.wu-thankyou__details-row:last-child {
  border-bottom: none;
}
.wu-thankyou__details-label {
  color: var(--wu-gray-500);
}
.wu-thankyou__details-value {
  color: var(--wu-gray-900);
  font-weight: 600;
}
.wu-thankyou__details-total {
  font-size: 18px;
  font-weight: 700;
  color: var(--wu-gray-900);
  padding-top: 14px;
}

.wu-thankyou__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--wu-gradient);
  color: #fff !important;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--wu-radius);
  text-decoration: none;
  transition: opacity 0.2s;
}
.wu-thankyou__btn:hover {
  opacity: 0.9;
  color: #fff !important;
  text-decoration: none;
}

/* Failed order styling */
.wu-thankyou--failed .wu-thankyou__icon {
  background: #FEE2E2;
}
.wu-thankyou--failed .wu-thankyou__icon svg {
  stroke: var(--wu-danger);
}

/* Order items in thankyou */
.wu-thankyou-items {
  margin-bottom: 16px;
}
.wu-thankyou-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--wu-gray-100);
}
.wu-thankyou-item:last-child {
  border-bottom: none;
}
.wu-thankyou-item__name {
  flex: 1;
  font-size: 14px;
  color: var(--wu-gray-700);
}
.wu-thankyou-item__qty {
  font-size: 13px;
  color: var(--wu-gray-400);
}
.wu-thankyou-item__total {
  font-size: 14px;
  font-weight: 600;
  color: var(--wu-gray-900);
}

/* WooCommerce order details table in thankyou */
.wu-thankyou .woocommerce-order-overview {
  list-style: none;
  padding: 0;
  margin: 0;
}
.wu-thankyou .woocommerce-order-overview li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--wu-gray-100);
  font-size: 14px;
  color: var(--wu-gray-500);
}
.wu-thankyou .woocommerce-order-overview li strong {
  color: var(--wu-gray-900);
}
.wu-thankyou .woocommerce-order-overview li:last-child {
  border-bottom: none;
}

/* WooCommerce native tables in thankyou */
.wu-thankyou .woocommerce-table {
  width: 100%;
  border-collapse: collapse;
}
.wu-thankyou .woocommerce-table th,
.wu-thankyou .woocommerce-table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--wu-gray-100);
  font-size: 14px;
  text-align: left;
}
.wu-thankyou .woocommerce-table th {
  color: var(--wu-gray-500);
  font-weight: 500;
}
.wu-thankyou .woocommerce-table td {
  color: var(--wu-gray-900);
}

/* ============================================================
 * RESPONSIVE — MOBILE FIRST
 * ============================================================ */
@media (max-width: 768px) {
  /* Cart page */
  .wv2-cart-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 16px 12px 40px;
  }
  .wv2-cart-item {
    grid-template-columns: 64px 1fr;
    gap: 10px;
    padding: 14px 0;
  }
  .wv2-cart-item-img {
    width: 64px;
    height: 64px;
    grid-row: 1 / 3;
  }
  .wv2-cart-item-info {
    grid-column: 2;
  }
  .wv2-cart-item-qty {
    grid-column: 2;
  }
  .wv2-cart-item-subtotal {
    grid-column: 2;
    text-align: left;
  }
  .wv2-cart-item-remove {
    position: absolute;
    right: 0;
    top: 14px;
  }
  .wv2-cart-item {
    position: relative;
  }

  .wv2-cart-summary {
    position: static;
  }
  .wv2-cart-summary .cart_totals {
    border-radius: var(--wu-radius);
  }

  .wv2-cart-actions {
    flex-direction: column;
  }
  .wv2-cart-actions .coupon {
    width: 100%;
    min-width: unset;
  }
  .wv2-cart-actions > button {
    width: 100%;
  }

  /* Checkout */
  .wu-checkout-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 16px 12px 40px;
  }
  .wu-checkout-sidebar {
    position: static;
  }
  .wu-checkout-steps {
    flex-wrap: wrap;
    gap: 4px;
  }
  .wu-checkout-step {
    padding: 8px 10px;
    font-size: 13px;
  }

  /* Side cart */
  .wu-sidecart {
    width: 100vw;
  }

  /* Thank you */
  .wu-thankyou {
    padding: 24px 12px 60px;
  }
  .wu-thankyou h1 {
    font-size: 22px;
  }
}

/* ============================================================
 * WOOCOMMERCE NOTICE OVERRIDES
 * ============================================================ */
.woocommerce-message,
.woocommerce-info {
  border-left-color: var(--wu-primary) !important;
  background: var(--wu-info-bg) !important;
  color: var(--wu-gray-700) !important;
}
.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--wu-primary) !important;
}
.woocommerce-error {
  border-left-color: var(--wu-danger) !important;
}

/* Hide default WooCommerce cart styling conflicts */
.woocommerce table.shop_table {
  border: none;
}
.woocommerce table.shop_table td {
  border-top: none;
}

/* Shipping method radios in cart/checkout */
.woocommerce-shipping-methods {
  list-style: none;
  padding: 0;
  margin: 0;
}
.woocommerce-shipping-methods li {
  padding: 6px 0;
  font-size: 14px;
}
.woocommerce-shipping-methods li input[type="radio"] {
  accent-color: var(--wu-primary);
}

/* Body scroll lock when side cart open */
body.wu-sidecart-open {
  overflow: hidden;
}

/* ============================================================
 * CART PAGE V3 — Interactive Layout
 * ============================================================ */
.wu-cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 60px;
  align-items: start;
}
.wu-cart-left { min-width: 0; }

/* Cart Item Card */
.wu-cart-item {
  display: grid;
  grid-template-columns: 80px 1fr 140px 100px 40px;
  gap: 16px;
  align-items: center;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--wu-gray-100);
  margin-bottom: 12px;
  transition: all 0.3s ease;
}
.wu-cart-item--wholesale {
  border-color: #F59E0B;
  background: #FFFBEB;
}
.wu-cart-item--wholesale .wu-cart-item__price-current {
  color: #D97706 !important;
}
.wu-cart-item--wholesale .wu-cart-item__price-type {
  color: #92400E;
  background: #FEF3C7;
}

/* Image */
.wu-cart-item__img {
  width: 80px;
  height: 80px;
  border-radius: var(--wu-radius);
  overflow: hidden;
  background: var(--wu-gray-50);
  flex-shrink: 0;
}
.wu-cart-item__img img,
.wu-cart-item__img a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--wu-radius);
}

/* Info */
.wu-cart-item__info { min-width: 0; }
.wu-cart-item__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--wu-gray-900);
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.wu-cart-item__name a {
  color: inherit;
  text-decoration: none;
}
.wu-cart-item__name a:hover {
  color: var(--wu-primary);
}
.wu-cart-item__price {
  display: flex;
  align-items: center;
  gap: 8px;
}
.wu-cart-item__price-current {
  font-size: 15px;
  font-weight: 700;
  color: var(--wu-gray-900);
}
.wu-cart-item__price-type {
  font-size: 11px;
  font-weight: 500;
  color: var(--wu-gray-400);
  background: var(--wu-gray-100);
  padding: 2px 8px;
  border-radius: 6px;
  text-transform: lowercase;
}

/* Quantity Stepper */
.wu-cart-item__qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 2px solid var(--wu-gray-200);
  border-radius: 12px;
  overflow: hidden;
}
.wu-qty-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: var(--wu-gray-50);
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  color: var(--wu-primary);
  transition: all 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-user-select: none;
  user-select: none;
  padding: 0;
  line-height: 1;
}
.wu-qty-btn:hover { background: #EEF2FF; }
.wu-qty-btn:active { background: var(--wu-gray-200); }
.wu-qty-input {
  width: 48px;
  height: 44px;
  text-align: center;
  border: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--wu-gray-900);
  background: transparent;
  -moz-appearance: textfield;
  outline: none;
}
.wu-qty-input::-webkit-outer-spin-button,
.wu-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Subtotal */
.wu-cart-item__subtotal {
  font-size: 16px;
  font-weight: 700;
  color: var(--wu-gray-900);
  text-align: right;
  white-space: nowrap;
}

/* Remove */
.wu-cart-item__remove {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--wu-gray-50);
  border-radius: 10px;
  font-size: 20px;
  color: var(--wu-gray-400);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}
.wu-cart-item__remove:hover {
  background: #FEF2F2;
  color: var(--wu-danger);
}

/* Remove animation */
.wu-cart-item--removing {
  opacity: 0;
  transform: translateX(-20px);
  max-height: 0;
  padding: 0 20px;
  margin: 0;
  overflow: hidden;
  border: none;
  transition: all 0.35s ease;
}

/* ── Cart Summary (Right) ── */
.wu-cart-summary {
  position: sticky;
  top: 80px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--wu-gray-100);
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* Progress bars */
.wu-cart-progress { margin-bottom: 20px; }
.wu-cart-progress__item { margin-bottom: 14px; }
.wu-cart-progress__item:last-child { margin-bottom: 0; }
.wu-cart-progress__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--wu-gray-700);
  margin-bottom: 4px;
}
.wu-cart-progress__bar {
  height: 8px;
  background: var(--wu-gray-100);
  border-radius: 8px;
  overflow: hidden;
  margin: 6px 0;
}
.wu-cart-progress__fill--shipping {
  background: linear-gradient(135deg, #4F46E5, #7C3AED);
  height: 100%;
  border-radius: 8px;
  transition: width 0.5s ease;
  min-width: 2%;
}
.wu-cart-progress__fill--wholesale {
  background: linear-gradient(135deg, #F59E0B, #EAB308);
  height: 100%;
  border-radius: 8px;
  transition: width 0.5s ease;
  min-width: 2%;
}
.wu-cart-progress__status {
  font-size: 13px;
  color: var(--wu-gray-500);
  transition: color 0.3s;
}
.wu-cart-progress__status--done {
  color: #059669;
  font-weight: 600;
}

/* Wholesale banner */
.wu-cart-wholesale-active {
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  color: #92400E;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  text-align: center;
  font-size: 15px;
  margin-bottom: 16px;
}
.wu-cart-wholesale-active--animate {
  animation: wu-pulse 2s ease-in-out;
}
@keyframes wu-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

/* Totals */
.wu-cart-totals { margin-top: 20px; }
.wu-cart-totals__row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 15px;
  color: var(--wu-gray-700);
}
.wu-cart-totals__row--total {
  border-top: 2px solid #1E1B4B;
  padding-top: 16px;
  margin-top: 8px;
  font-size: 20px;
  font-weight: 800;
  color: #1E1B4B;
}

/* Checkout button */
.wu-cart-checkout-btn {
  display: block;
  width: 100%;
  padding: 16px;
  text-align: center;
  background: var(--wu-gradient);
  color: #fff !important;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 20px;
  transition: all 0.2s;
}
.wu-cart-checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79,70,229,0.3);
  color: #fff !important;
  text-decoration: none;
}

/* Cart actions (coupon) */
.wu-cart-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 20px 0 0;
  border-top: 1px solid var(--wu-gray-100);
  margin-top: 4px;
}
.wu-cart-actions .coupon {
  display: flex;
  gap: 8px;
  flex: 1;
  min-width: 250px;
}
.wu-cart-actions .coupon input {
  flex: 1;
  padding: 10px 14px !important;
  border: 1px solid var(--wu-gray-200) !important;
  border-radius: var(--wu-radius) !important;
  font-size: 14px !important;
  outline: none;
  transition: border-color 0.2s;
}
.wu-cart-actions .coupon input:focus {
  border-color: var(--wu-primary) !important;
}
.wu-cart-actions .coupon button {
  padding: 10px 20px !important;
  border: 1px solid var(--wu-gray-200) !important;
  border-radius: var(--wu-radius) !important;
  background: #fff !important;
  color: var(--wu-gray-700) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.wu-cart-actions .coupon button:hover {
  background: var(--wu-gray-50) !important;
  border-color: var(--wu-gray-300) !important;
}

/* ── V3 Cart Mobile ── */
@media (max-width: 900px) {
  .wu-cart-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 16px 12px 40px;
  }
  .wu-cart-summary { position: static; }
  .wu-cart-item {
    grid-template-columns: 64px 1fr;
    gap: 10px;
    padding: 16px;
    position: relative;
  }
  .wu-cart-item__img {
    width: 64px;
    height: 64px;
    grid-row: 1 / 2;
  }
  .wu-cart-item__info {
    grid-column: 2;
  }
  .wu-cart-item__qty {
    grid-column: 1 / -1;
    justify-self: start;
  }
  .wu-cart-item__subtotal {
    grid-column: 1 / -1;
    text-align: right;
    font-weight: 700;
  }
  .wu-cart-item__remove {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
  .wu-cart-actions .coupon {
    min-width: unset;
    width: 100%;
  }
}

/* ===========================================================
   CHECKOUT: Premium Polish
   =========================================================== */

/* Steps — thinner line, elegant */
.wu-checkout-steps {
  max-width: 500px !important;
  margin: 0 auto 32px !important;
  justify-content: center !important;
}
.wu-checkout-step {
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #9CA3AF !important;
}
.wu-checkout-step--active {
  color: #4F46E5 !important;
  font-weight: 600 !important;
}
.wu-checkout-step__num {
  width: 32px !important;
  height: 32px !important;
  font-size: 14px !important;
}
.wu-checkout-step + .wu-checkout-step::before {
  width: 32px !important;
  background: #E5E7EB !important;
  left: -16px !important;
}

/* Sections — cards with breathing room */
.wu-checkout-section {
  border-radius: 20px !important;
  padding: 28px !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04) !important;
  border: 1px solid #F3F4F6 !important;
}

/* Inputs — airy, bottom-border style */
.wu-checkout-layout .woocommerce-checkout .form-row input.input-text,
.wu-checkout-layout .woocommerce-checkout .form-row textarea,
.wu-checkout-layout .woocommerce-checkout .form-row select {
  border: none !important;
  border-bottom: 2px solid #E5E7EB !important;
  border-radius: 0 !important;
  background: #FAFAFA !important;
  padding: 12px 14px !important;
  font-size: 15px !important;
}
.wu-checkout-layout .woocommerce-checkout .form-row input.input-text:focus,
.wu-checkout-layout .woocommerce-checkout .form-row textarea:focus,
.wu-checkout-layout .woocommerce-checkout .form-row select:focus {
  border-bottom-color: #4F46E5 !important;
  background: #fff !important;
  box-shadow: none !important;
}

/* Hide country if Russia-only */
.wu-checkout-layout #billing_country_field,
.wu-checkout-layout #shipping_country_field {
  display: none !important;
}

/* Summary — receipt style */
.wu-checkout-order-summary {
  border-radius: 20px !important;
  padding: 28px !important;
}
.wu-checkout-layout .woocommerce-checkout-review-order-table tfoot .order-total th,
.wu-checkout-layout .woocommerce-checkout-review-order-table tfoot .order-total td {
  font-size: 22px !important;
  padding-top: 16px !important;
}

/* Payment — fintech style */
.wu-checkout-layout .wc_payment_methods li {
  border-radius: 14px !important;
  border: 1px solid #F3F4F6 !important;
  padding: 16px 20px !important;
}
.wu-checkout-layout .wc_payment_methods li:has(input:checked) {
  border-color: #4F46E5 !important;
  background: #F5F3FF !important;
}

/* Place order button */
.wu-checkout-layout #place_order {
  padding: 18px 0 !important;
  font-size: 17px !important;
  border-radius: 14px !important;
  letter-spacing: 0.3px !important;
  background: linear-gradient(135deg, #4F46E5, #7C3AED, #EC4899) !important;
  margin-top: 16px !important;
}
.wu-checkout-layout #place_order:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(79,70,229,0.3) !important;
  opacity: 1 !important;
}

/* Trust badge under payment button */
.wu-checkout-layout .woocommerce-terms-and-conditions-wrapper {
  text-align: center !important;
  margin-top: 12px !important;
}
.wu-checkout-layout .woocommerce-terms-and-conditions-wrapper .woocommerce-privacy-policy-text {
  font-size: 12px !important;
  color: #9CA3AF !important;
}

/* Remove noise */
.wu-checkout-layout .woocommerce-additional-fields__field-wrapper {
  margin-top: 0 !important;
}
.wu-checkout-layout h3#ship-to-different-address {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #6B7280 !important;
}

/* Mobile */
@media (max-width: 900px) {
  .wu-checkout-layout {
    grid-template-columns: 1fr !important;
  }
  .wu-checkout-sidebar {
    position: static !important;
  }
}

/* ===== Side-cart: Remove button ===== */
.wu-sidecart-item {
  position: relative;
}
.wu-sidecart-item__remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  color: #D1D5DB;
  font-size: 20px;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.2s;
  padding: 0;
  line-height: 1;
}
.wu-sidecart-item__remove:hover {
  color: #4F46E5;
  background: #F5F3FF;
}

/* ===== FORCE: Side-cart vertical list ===== */
.wu-sidecart__body {
  display: block !important;
}
.wu-sidecart-item {
  display: flex !important;
  flex-direction: row !important;
  gap: 12px !important;
  padding: 12px 0 !important;
  border-bottom: 1px solid #F3F4F6 !important;
  position: relative !important;
  width: 100% !important;
}
.wu-sidecart-item__img {
  width: 64px !important;
  height: 64px !important;
  flex-shrink: 0 !important;
  border-radius: 10px !important;
  overflow: hidden !important;
}
.wu-sidecart-item__info {
  flex: 1 !important;
  min-width: 0 !important;
}
.wu-sidecart-item__remove {
  position: absolute !important;
  top: 12px !important;
  right: 0 !important;
}

/* ===========================================================
   NUCLEAR: Side-cart item list — ALWAYS vertical
   =========================================================== */
#wu-sidecart-body {
  display: block !important;
  flex-direction: unset !important;
  flex-wrap: unset !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}
#wu-sidecart-body > .wu-sidecart-item {
  display: grid !important;
  grid-template-columns: 64px 1fr 28px !important;
  gap: 12px !important;
  align-items: start !important;
  padding: 14px 0 !important;
  border-bottom: 1px solid #F3F4F6 !important;
  width: 100% !important;
  box-sizing: border-box !important;
  position: relative !important;
}
#wu-sidecart-body > .wu-sidecart-item .wu-sidecart-item__img {
  width: 64px !important;
  height: 64px !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
}
#wu-sidecart-body > .wu-sidecart-item .wu-sidecart-item__img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
#wu-sidecart-body > .wu-sidecart-item .wu-sidecart-item__info {
  min-width: 0 !important;
  overflow: hidden !important;
}
#wu-sidecart-body > .wu-sidecart-item .wu-sidecart-item__remove {
  width: 28px !important;
  height: 28px !important;
  border: 1px solid #E5E7EB !important;
  background: #fff !important;
  color: #9CA3AF !important;
  font-size: 16px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: static !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
}
#wu-sidecart-body > .wu-sidecart-item .wu-sidecart-item__remove:hover {
  color: #4F46E5 !important;
  border-color: #4F46E5 !important;
  background: #F5F3FF !important;
}


/* ===========================================================
   ABSOLUTE NUCLEAR: Side-cart items MUST be vertical
   This overrides EVERYTHING
   =========================================================== */
html body .wu-sidecart .wu-sidecart__body {
  display: block !important;
  flex-direction: unset !important;
  overflow-x: hidden !important;
}
html body .wu-sidecart .wu-sidecart__body .wu-sidecart-item {
  display: flex !important;
  flex-direction: row !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  float: none !important;
  clear: both !important;
}
