/* ==========================================================================
   CART PAGE — WooCommerce cart shell (page-cart.php)
   Coins & Banknotes store — uses tokens from base.css
   ========================================================================== */

.cbn-cart-main {
  background: var(--soft-surface);
  overflow-x: clip;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.cbn-cart-hero {
  position: relative;
  padding: 64px 24px 48px;
  text-align: center;
}

.cbn-cart-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.cbn-cart-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
}

.cbn-cart-hero__orb--1 {
  width: min(380px, 75vw);
  height: min(380px, 75vw);
  background: radial-gradient(circle, rgba(0, 91, 150, 0.35) 0%, transparent 68%);
  opacity: 0.4;
  top: -100px;
  left: -60px;
  animation: cbn-float 10s ease-out infinite;
}

.cbn-cart-hero__orb--2 {
  width: min(340px, 70vw);
  height: min(340px, 70vw);
  background: radial-gradient(circle, rgba(45, 156, 219, 0.28) 0%, transparent 68%);
  opacity: 0.55;
  bottom: -80px;
  right: -40px;
  animation: cbn-float 12s ease-out infinite reverse;
}

.cbn-cart-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border-stroke) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-stroke) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.28;
  mask-image: linear-gradient(to bottom, black 0%, transparent 88%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 88%);
  animation: cbn-cart-grid-breathe 9s ease-in-out infinite;
}

@keyframes cbn-cart-grid-breathe {
  0%, 100% { opacity: 0.22; }
  50%       { opacity: 0.38; }
}

.cbn-cart-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

/* Breadcrumb */
.cbn-cart-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 28px;
}

.cbn-cart-breadcrumb a {
  color: var(--text-medium);
  text-decoration: none;
  transition: color 0.15s ease;
}

.cbn-cart-breadcrumb a:hover { color: var(--primary-blue); }

.cbn-cart-breadcrumb__sep { opacity: 0.4; user-select: none; }
.cbn-cart-breadcrumb__current {
  color: var(--text-dark);
  font-weight: var(--weight-semibold);
}

/* Badge */
.cbn-cart-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: var(--primary-blue);
  background: rgba(0, 91, 150, 0.08);
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.cbn-cart-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-blue);
  animation: cbn-pulse 2.4s ease-in-out infinite;
}

/* Title */
.cbn-cart-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: var(--weight-regular);
  color: var(--deep-navy);
  line-height: 1.2;
  margin: 0 0 16px;
}

.cbn-cart-hero__title em {
  font-style: italic;
  color: var(--primary-blue);
}

/* Lead */
.cbn-cart-hero__lead {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.6;
  margin: 0 auto 28px;
  max-width: 560px;
}

/* Browse link */
.cbn-cart-hero__browse { margin: 0; }

.cbn-cart-hero__browse-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: var(--weight-semibold);
  color: var(--primary-blue);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.cbn-cart-hero__browse-link:hover {
  color: var(--primary-hover);
  border-bottom-color: var(--primary-blue);
}

/* ==========================================================================
   STEP INDICATOR
   ========================================================================== */

.cbn-cart-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.cbn-cart-steps__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: var(--weight-semibold);
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cbn-cart-steps__item--active { color: var(--deep-navy); }

.cbn-cart-steps__item + .cbn-cart-steps__item::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--border-stroke);
  margin-right: 8px;
  border-radius: 1px;
}

.cbn-cart-steps__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-blue);
  animation: cbn-pulse 2s ease-in-out infinite;
}

.cbn-cart-steps__dot--done {
  background: var(--success);
  animation: none;
}

.cbn-cart-steps__dot--muted {
  background: var(--border-stroke);
  animation: none;
}

/* ==========================================================================
   BODY LAYOUT
   ========================================================================== */

.cbn-cart-body {
  padding: 0 24px 64px;
}

.cbn-cart-body__container {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

@media (min-width: 960px) {
  .cbn-cart-body__container {
    grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
    gap: 40px;
  }
}

/* ==========================================================================
   ASIDE
   ========================================================================== */

.cbn-cart-aside { position: relative; }

.cbn-cart-aside__card {
  position: relative;
  z-index: 1;
  background: var(--bg-white);
  border: 1px solid var(--border-stroke);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
}

.cbn-cart-aside__title {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--deep-navy);
  margin: 0 0 20px;
  line-height: 1.2;
}

.cbn-cart-aside__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cbn-cart-aside__list li {
  display: flex;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.5;
}

.cbn-cart-aside__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(0, 91, 150, 0.08);
  color: var(--primary-blue);
}

.cbn-cart-aside__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  width: 100%;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: var(--weight-bold);
  color: #fff;
  text-decoration: none;
  background: var(--primary-blue);
  border-radius: 8px;
  border: 1px solid var(--primary-blue);
  box-shadow: 0 4px 12px rgba(0, 91, 150, 0.25);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.15s ease;
}

.cbn-cart-aside__cta:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  box-shadow: 0 6px 20px rgba(0, 91, 150, 0.35);
  color: #fff;
  transform: translateY(-1px);
}

.cbn-cart-aside__cta:active { transform: translateY(1px); }

.cbn-cart-aside__cta-arrow { transition: transform 0.2s ease; }
.cbn-cart-aside__cta:hover .cbn-cart-aside__cta-arrow { transform: translateX(4px); }

.cbn-cart-aside__glow {
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  width: 70%;
  height: 48px;
  background: radial-gradient(ellipse, rgba(0, 91, 150, 0.12) 0%, transparent 70%);
  filter: blur(8px);
  z-index: 0;
}

/* ==========================================================================
   CART FORM SHELL
   ========================================================================== */

.cbn-cart-form-shell {
  background: var(--bg-white);
  border: 1px solid var(--border-stroke);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  transition: box-shadow 0.3s ease;
}

@media (min-width: 960px) {
  .cbn-cart-form-shell { padding: 36px; }
}

.cbn-cart-form-shell:hover {
  box-shadow: 0 12px 40px rgba(0, 91, 150, 0.1);
}

/* ---- Reset Astra floats ---- */
.cbn-cart-form-shell .woocommerce-cart-form {
  float: none !important;
  width: 100% !important;
}

.cbn-cart-form-shell .cart-collaterals {
  float: none !important;
  width: 100% !important;
  margin-top: 32px;
}

.cbn-cart-form-shell::after {
  content: "";
  display: table;
  clear: both;
}

/* ---- Table ---- */
.cbn-cart-form-shell .shop_table,
.cbn-cart-form-shell table.cart {
  display: table !important;
  border: none;
  border-collapse: collapse;
  width: 100% !important;
  table-layout: auto !important;
  margin-bottom: 24px;
}

.cbn-cart-form-shell .shop_table thead  { display: table-header-group !important; }
.cbn-cart-form-shell .shop_table tbody  { display: table-row-group !important; }
.cbn-cart-form-shell .shop_table tr     { display: table-row !important; }

.cbn-cart-form-shell .shop_table thead th {
  display: table-cell !important;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  padding: 12px 14px;
  border-bottom: 2px solid var(--border-stroke);
  background: transparent;
  text-align: left;
  visibility: visible !important;
  opacity: 1 !important;
}

.cbn-cart-form-shell .shop_table thead th.product-remove    { width: 44px !important; }
.cbn-cart-form-shell .shop_table thead th.product-thumbnail { width: 90px !important; }
.cbn-cart-form-shell .shop_table thead th.product-name      { width: auto !important; }
.cbn-cart-form-shell .shop_table thead th.product-price,
.cbn-cart-form-shell .shop_table thead th.product-quantity,
.cbn-cart-form-shell .shop_table thead th.product-subtotal  { width: 120px !important; }

.cbn-cart-form-shell .shop_table tbody tr {
  border-bottom: 1px solid rgba(225, 232, 237, 0.5);
  transition: background 0.2s ease;
}

.cbn-cart-form-shell .shop_table tbody tr:last-child { border-bottom: none; }
.cbn-cart-form-shell .shop_table tbody tr:hover      { background: var(--soft-surface); }

.cbn-cart-form-shell .shop_table tbody td {
  display: table-cell !important;
  padding: 16px 14px;
  vertical-align: middle !important;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  border: none;
}

/* Hide Astra's mobile responsive data-titles on desktop to prevent shifting */
.cbn-cart-form-shell .shop_table tbody td::before {
  display: none !important;
}

/* Thumbnail */
.cbn-cart-form-shell .product-thumbnail img {
  width: 70px !important;
  height: 70px !important;
  object-fit: contain;
  border-radius: 8px;
  background: var(--soft-surface);
  padding: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

/* Product name */
.cbn-cart-form-shell .product-name a {
  color: var(--deep-navy);
  font-weight: var(--weight-semibold);
  text-decoration: none;
  transition: color 0.15s ease;
}

.cbn-cart-form-shell .product-name a:hover { color: var(--primary-blue); }

/* Price / Subtotal */
.cbn-cart-form-shell .product-price,
.cbn-cart-form-shell .product-subtotal {
  font-weight: var(--weight-semibold);
  color: var(--deep-navy);
  white-space: nowrap;
}

/* Quantity */
.cbn-cart-form-shell .quantity .qty {
  width: 60px;
  height: 40px;
  text-align: center;
  border: 1px solid var(--border-stroke);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--deep-navy);
  background: var(--bg-white);
  transition: border-color 0.15s ease;
}

.cbn-cart-form-shell .quantity .qty:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 91, 150, 0.1);
  outline: none;
}

/* Remove button cell */
.cbn-cart-form-shell .shop_table .product-remove {
  text-align: center !important;
}

.cbn-cart-form-shell .product-remove a.remove {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  margin: 0 auto; /* Center inside the cell */
  border-radius: 10px !important; /* Modern squircle shape */
  background: var(--bg-white) !important;
  border: 1px solid var(--border-stroke) !important;
  color: transparent !important; /* Hide the poorly-aligned native text */
  font-size: 0 !important; 
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03) !important;
  transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

/* Draw a geometrically perfect cross */
.cbn-cart-form-shell .product-remove a.remove::before,
.cbn-cart-form-shell .product-remove a.remove::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background-color: #a0aec0; /* Soft grey */
  border-radius: 2px;
  transition: background-color 0.2s ease;
}

.cbn-cart-form-shell .product-remove a.remove::before { transform: translate(-50%, -50%) rotate(45deg); }
.cbn-cart-form-shell .product-remove a.remove::after { transform: translate(-50%, -50%) rotate(-45deg); }

/* Hover state */
.cbn-cart-form-shell .product-remove a.remove:hover {
  background: rgba(231, 76, 60, 0.08) !important;
  border-color: rgba(231, 76, 60, 0.2) !important;
  transform: translateY(-1px) scale(1.05) !important;
  box-shadow: 0 6px 16px rgba(231, 76, 60, 0.12) !important;
}

.cbn-cart-form-shell .product-remove a.remove:hover::before,
.cbn-cart-form-shell .product-remove a.remove:hover::after {
  background-color: #e74c3c; /* Turns vibrant red */
}

/* ---- Actions bar ---- */
.cbn-cart-form-shell .shop_table .actions {
  display: table-cell !important; /* MUST be table-cell to avoid breaking table layout */
  padding: 24px 14px !important;
  border-top: 2px solid var(--border-stroke);
  text-align: right; /* Align update cart to right */
}

.cbn-cart-form-shell .shop_table .actions::after {
  content: "";
  display: table;
  clear: both;
}

.cbn-cart-form-shell .shop_table .actions .coupon {
  display: inline-flex !important;
  float: left;
  align-items: center;
  gap: 12px;
}

.cbn-cart-form-shell .shop_table .actions .coupon input#coupon_code,
.cbn-cart-form-shell .shop_table .actions .coupon button[name="apply_coupon"],
.cbn-cart-form-shell .shop_table .actions button[name="update_cart"] {
  -webkit-appearance: none !important;
  appearance: none !important;
  height: 48px !important;
  min-height: 48px !important;
  max-height: 48px !important;
  width: 180px !important;
  min-width: 180px !important;
  max-width: 100% !important;
  padding: 0 16px !important;
  font-size: 13px !important;
  font-family: var(--font-body) !important;
  font-weight: var(--weight-semibold) !important;
  border-radius: 8px !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  outline: none !important;
}

/* Ensure text is centered in the buttons */
.cbn-cart-form-shell .shop_table .actions .coupon button[name="apply_coupon"],
.cbn-cart-form-shell .shop_table .actions button[name="update_cart"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
}

.cbn-cart-form-shell .shop_table .actions .coupon .input-text {
  border: 1px solid var(--border-stroke) !important;
  background: var(--soft-surface) !important;
  color: var(--text-dark) !important;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  box-shadow: none !important;
}

.cbn-cart-form-shell .shop_table .actions .coupon .input-text:focus {
  border-color: var(--primary-blue) !important;
  box-shadow: 0 0 0 3px rgba(0, 91, 150, 0.1) !important;
}

.cbn-cart-form-shell .shop_table .actions .coupon .input-text::placeholder {
  color: var(--text-light);
}

.cbn-cart-form-shell .shop_table .actions .coupon .button,
.cbn-cart-form-shell .shop_table .actions > .button {
  background: var(--primary-blue) !important;
  color: #fff !important;
  border: 1px solid var(--primary-blue) !important;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.3s ease, transform 0.15s ease, box-shadow 0.3s ease;
  white-space: nowrap;
  display: inline-block !important;
}

.cbn-cart-form-shell .shop_table .actions .coupon .button:hover,
.cbn-cart-form-shell .shop_table .actions > .button:hover {
  background: var(--primary-hover) !important;
  border-color: var(--primary-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 91, 150, 0.25);
}

/* Disabled Update Cart Button */
.cbn-cart-form-shell .shop_table .actions > .button:disabled,
.cbn-cart-form-shell .shop_table .actions > .button[disabled] {
  background: var(--text-light) !important;
  border-color: var(--text-light) !important;
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ---- Cart Totals (Modern Card) ---- */
.cbn-cart-form-shell .cart_totals {
  border: 1px solid var(--border-stroke);
  border-radius: 16px;
  background: var(--bg-white);
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.cbn-cart-form-shell .cart_totals h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: var(--weight-bold);
  color: var(--deep-navy);
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--soft-surface);
}

.cbn-cart-form-shell .cart_totals table {
  display: table !important;
  border: none;
  width: 100%;
  border-collapse: collapse;
}

.cbn-cart-form-shell .cart_totals table th,
.cbn-cart-form-shell .cart_totals table td {
  padding: 16px 0;
  border-bottom: 1px solid var(--soft-surface);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  background: transparent;
  vertical-align: middle;
}

.cbn-cart-form-shell .cart_totals table th {
  font-weight: var(--weight-semibold);
  color: var(--text-medium);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.05em;
  width: 40%;
}

.cbn-cart-form-shell .cart_totals table td {
  text-align: right;
  font-weight: var(--weight-semibold);
}

.cbn-cart-form-shell .cart_totals table tr:last-child th,
.cbn-cart-form-shell .cart_totals table tr:last-child td { border-bottom: none; }

.cbn-cart-form-shell .cart_totals .order-total td,
.cbn-cart-form-shell .cart_totals .order-total th {
  padding-top: 24px;
}

.cbn-cart-form-shell .cart_totals .order-total td {
  font-size: 22px;
  font-weight: var(--weight-bold);
  color: var(--primary-blue);
}

/* ---- Checkout Buttons (Standardized Heights & Widths) ---- */
.cbn-cart-form-shell .wc-proceed-to-checkout {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px; /* Uniform gap between primary and PayPal buttons */
}

/* Base style for all checkout buttons and their wrappers */
.cbn-cart-form-shell .wc-proceed-to-checkout > * {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 54px !important;
  min-height: 54px !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

/* Hide PayPal containers on the cart page */
.cbn-cart-form-shell .wc-proceed-to-checkout .paypal-buttons,
.cbn-cart-form-shell .wc-proceed-to-checkout .paypal-buttons iframe,
.cbn-cart-form-shell .wc-proceed-to-checkout [id^="ppc-button"],
.cbn-cart-form-shell .wc-proceed-to-checkout .wcppec-checkout-buttons {
  display: none !important;
}

/* The Primary WooCommerce Checkout Button */
.cbn-cart-form-shell .wc-proceed-to-checkout a.checkout-button {
  padding: 0 24px !important;
  font-size: 15px !important;
  font-weight: var(--weight-bold) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  color: #fff !important;
  background: var(--primary-blue) !important;
  border: none !important;
  box-shadow: 0 6px 16px rgba(0, 91, 150, 0.2) !important;
  transition: background 0.3s ease, transform 0.15s ease, box-shadow 0.3s ease !important;
  text-decoration: none !important;
}

.cbn-cart-form-shell .wc-proceed-to-checkout a.checkout-button:hover {
  background: var(--primary-hover) !important;
  box-shadow: 0 8px 24px rgba(0, 91, 150, 0.3) !important;
  transform: translateY(-2px) !important;
}

/* Force PayPal iframes to fill the container perfectly */
.cbn-cart-form-shell .wc-proceed-to-checkout iframe {
  height: 100% !important;
  min-height: 54px !important;
}

/* ---- WooCommerce notices ---- */
.cbn-cart-form-shell .woocommerce-message,
.cbn-cart-form-shell .woocommerce-info,
.cbn-cart-form-shell .woocommerce-error {
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  padding: 14px 18px;
  margin-bottom: 20px;
  border-width: 2px;
}

/* Hide Astra page title on this template */
.page-template-page-cart .entry-header,
.page-template-page-cart .page-title {
  display: none !important;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 959px) {
  .cbn-cart-aside { order: 2; }
  .cbn-cart-form-shell { order: 1; }
}

@media (max-width: 768px) {
  .cbn-cart-hero { padding: 40px 16px 32px; }
  .cbn-cart-form-shell { padding: 20px; }
  .cbn-cart-aside__card { padding: 20px; }

  .cbn-cart-form-shell .shop_table thead { display: none !important; }

  .cbn-cart-form-shell .shop_table tbody tr {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-stroke);
  }

  .cbn-cart-form-shell .shop_table tbody td { padding: 4px 0; }

  .cbn-cart-form-shell .product-thumbnail { flex: 0 0 60px; }
  .cbn-cart-form-shell .product-name      { flex: 1 1 calc(100% - 110px); }
  .cbn-cart-form-shell .product-remove    { flex: 0 0 32px; order: -1; }

  .cbn-cart-form-shell .product-price,
  .cbn-cart-form-shell .product-quantity,
  .cbn-cart-form-shell .product-subtotal  { flex: 1 1 auto; text-align: center; }

  .cbn-cart-form-shell .shop_table .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cbn-cart-form-shell .shop_table .actions .coupon {
    flex-direction: column;
    width: 100%;
  }

  .cbn-cart-form-shell .shop_table .actions .coupon .input-text {
    min-width: 100% !important;
  }
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes cbn-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}

@keyframes cbn-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.35); opacity: 0.6; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .cbn-cart-hero__orb--1,
  .cbn-cart-hero__orb--2,
  .cbn-cart-hero__badge-dot,
  .cbn-cart-steps__dot,
  .cbn-cart-hero__grid { animation: none; }
}
