/* ============================================================
   AUSSIE PEPTIDE LAB — CART.CSS
   Uses the same design tokens (colors, fonts, radius, shadow)
   defined in style.css :root. Spacing follows the site's
   50px vertical section rhythm and 60px/36px/24px/16px
   container padding scale used across index/category/pdp.
   ============================================================ */

/* ------------------------------------------------------------
   1. CART HERO (compact variant of the shared .cu-hero)
   ------------------------------------------------------------ */
.cart-hero {
  position: relative;
  min-height: 0;
}
.cart-hero-inner {
  min-height: 0;
  padding: 54px 0 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.cart-hero-title {
  margin-bottom: 0;
}
.cart-hero .cu-breadcrumb {
  justify-content: center;
}
.cart-hero-molecule {
  position: absolute;
  top: 10px;
  left: 30px;
  opacity: 0.9;
  pointer-events: none;
}

/* ------------------------------------------------------------
   2. TRUST STRIP
   ------------------------------------------------------------ */
.cart-trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 26px 0;
}
.cart-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cart-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cart-trust-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f3f0ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}
.cart-trust-item strong {
  display: block;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.cart-trust-item span {
  font-size: 12.5px;
  color: var(--text-muted);
}

/* ------------------------------------------------------------
   3. ORDER PROGRESS STEPPER (unique touch)
   ------------------------------------------------------------ */
.cart-progress-section {
  background: var(--light-bg);
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.cart-progress-track {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 640px;
  margin: 0 auto;
}
.cart-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.cps-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: var(--transition);
}
.cart-progress-step.is-active .cps-dot {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 16px rgba(106, 61, 232, 0.35);
}
.cps-label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.cart-progress-step.is-active .cps-label { color: var(--primary); }
.cps-line {
  flex: 1;
  height: 2px;
  min-width: 40px;
  background: var(--border);
  margin: 0 8px;
  margin-bottom: 24px;
}

/* ------------------------------------------------------------
   4. CART MAIN LAYOUT
   ------------------------------------------------------------ */
.cart-main-section {
  padding: 50px 0;
  background: var(--light-gray);
}
.cart-main-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

/* --- Items column head --- */
.cart-items-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.cart-items-title {
  font-family: var(--font-head);
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 800;
  color: var(--text-dark);
}
.cart-clear-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.cart-clear-btn:hover { color: #e03131; }

/* --- Cart item cards --- */
.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-item-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 76px 1.7fr 0.8fr 1fr 0.8fr 34px;
  align-items: center;
  gap: 16px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.cart-item-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.cart-item-img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  background: var(--light-bg);
  border-radius: var(--radius-md);
  padding: 8px;
}
.cart-item-name {
  font-family: var(--font-main);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.cart-item-meta {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.cart-item-stock {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 700;
  color: #17a367;
  background: #e8fbf2;
  padding: 3px 10px;
  border-radius: 20px;
}
.cip-label {
  display: none;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.cart-item-price,
.cart-item-qty,
.cart-item-total {
  display: flex;
  flex-direction: column;
}
.cip-value {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-dark);
}
.cit-value {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary);
}
.cart-qty-ctrl {
  transform: scale(0.92);
  transform-origin: left center;
}
.cart-item-remove {
  background: none;
  border: none;
  color: #c9ccd6;
  font-size: 15px;
  transition: var(--transition);
  justify-self: center;
}
.cart-item-remove:hover { color: #e03131; }
.cart-item-card.is-removing {
  opacity: 0;
  transform: translateX(24px) scale(0.98);
}

/* --- Free shipping progress --- */
.cart-ship-progress {
  margin-top: 18px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.csp-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f3f0ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.csp-body { flex: 1; }
.csp-text {
  font-size: 13.5px;
  color: var(--text-body);
  margin-bottom: 10px;
}
.csp-text strong { color: var(--text-dark); }
.csp-highlight { color: var(--primary); font-weight: 700; }
.csp-bar-track {
  height: 8px;
  border-radius: 20px;
  background: var(--light-gray);
  overflow: hidden;
}
.csp-bar-fill {
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  transition: width 0.4s ease;
}
.csp-bar-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 6px;
}

/* --- Actions row --- */
.cart-items-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.cart-btn-continue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 12px 22px;
  transition: var(--transition);
}
.cart-btn-continue:hover { background: var(--light-bg); color: var(--primary); }
.cart-btn-update {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary);
  background: #f3f0ff;
  border: none;
  border-radius: 30px;
  padding: 12px 22px;
  transition: var(--transition);
}
.cart-btn-update:hover { background: #e8e1ff; }
.cart-btn-update.is-spinning i { animation: cart-spin 0.6s linear; }
@keyframes cart-spin { to { transform: rotate(360deg); } }

/* ------------------------------------------------------------
   5. ORDER SUMMARY SIDEBAR (distinct, unique treatment)
   ------------------------------------------------------------ */
.cart-summary-col {
  position: sticky;
  top: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cart-summary-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 26px 24px;
  position: relative;
  overflow: hidden;
}
.cart-summary-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, var(--accent-pink) 100%);
}
.cart-summary-title {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: var(--text-body);
  margin-bottom: 12px;
}
.cart-summary-row i { color: #c9ccd6; font-size: 12px; margin-left: 3px; }
.cart-summary-muted { color: var(--text-muted); font-size: 12.5px; }
.cart-summary-divider {
  height: 1px;
  background: var(--border);
  margin: 14px 0;
}
.cart-summary-total {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0;
}
.cart-summary-total span:last-child {
  color: var(--primary);
  font-size: 19px;
}
.cart-summary-total small {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
}

.cart-discount {
  margin-top: 20px;
}
.cart-discount label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 8px;
}
.cart-discount-row {
  display: flex;
  gap: 8px;
}
.cart-discount-row input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 13px;
  font-family: var(--font-main);
  outline: none;
  transition: var(--transition);
}
.cart-discount-row input:focus { border-color: var(--primary); }
.cart-discount-row button {
  background: var(--dark-navy);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0 18px;
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
}
.cart-discount-row button:hover { background: var(--primary); }

.cart-checkout-btn {
  width: 100%;
  margin-top: 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  box-shadow: 0 10px 26px rgba(106, 61, 232, 0.3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.cart-checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(106, 61, 232, 0.4);
}

.cart-pay-methods {
  margin-top: 20px;
  text-align: center; display: none;
}
.cpm-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.cpm-icons {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.cpm-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  background: var(--light-gray);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 10px;
}
.cpm-visa { color: #1a1f71; }
.cpm-mc i { color: #eb001b; font-size: 16px; }
.cpm-amex { color: #016fd0; }
.cpm-apple i { font-size: 13px; }

/* --- Safe hands card --- */
.cart-safe-card {
  background: var(--dark-navy);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  color: #fff;
}
.csc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.csc-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.csc-head h3 {
  font-family: var(--font-main);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.3;
}
.csc-list { list-style: none; }
.csc-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 10px;
}
.csc-list li:last-child { margin-bottom: 0; }
.csc-list li i { color: #2ecc71; font-size: 13px; }

/* ------------------------------------------------------------
   6. NEED HELP BANNER
   ------------------------------------------------------------ */
.cart-help-banner {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 26px 0;
}
.chb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.chb-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.chb-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f3f0ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.chb-left h3 {
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.chb-left p {
  font-size: 12.5px;
  color: var(--text-muted);
}
.chb-mid {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  font-size: 18px;
}
.chb-mid strong {
  display: block;
  font-family: var(--font-main);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
}
.chb-mid span {
  font-size: 12px;
  color: var(--text-muted);
}
.chb-btn {
  display: inline-flex;
  align-items: center;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  border-radius: 30px;
  padding: 11px 26px;
  transition: var(--transition);
}
.chb-btn:hover { background: var(--primary); color: #fff; }

/* ------------------------------------------------------------
   7. YOU MAY ALSO LIKE
   ------------------------------------------------------------ */
.cart-related-section {
  padding: 50px 0 60px;
  background: var(--light-gray);
}
.cart-related-title {
  text-align: center;
  margin-bottom: 32px;
}
.cart-related-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* ============================================================
   RESPONSIVE — matches site breakpoints: 1200 / 992 / 768 / 576 / 400
   ============================================================ */

/* XL — <=1200px */
@media (max-width: 1200px) {
  .cart-main-layout { grid-template-columns: 1fr 340px; gap: 24px; }
  .cart-item-card {
    grid-template-columns: 66px 1.6fr 0.9fr 1fr 0.9fr 30px;
    gap: 12px;
    padding: 16px;
  }
  .cart-related-grid { grid-template-columns: repeat(3, 1fr); }
}

/* LG — <=992px (tablet: summary drops below items) */
@media (max-width: 992px) {
  .cart-hero-molecule { display: none; }
  .cart-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 16px; }
  .cart-main-layout { grid-template-columns: 1fr; }
  .cart-summary-col { position: static; }
  .cart-related-grid { grid-template-columns: repeat(2, 1fr); }
  .cart-progress-track { max-width: 480px; }
  .cps-label { font-size: 11px; }
}

/* MD — <=768px (cart item cards stack) */
@media (max-width: 768px) {
  .cart-hero-inner { padding: 40px 0 34px; gap: 10px; }
  .cart-trust-strip { padding: 20px 0; }
  .cart-trust-grid { grid-template-columns: 1fr; gap: 14px; }
  .cart-trust-item { gap: 12px; }

  .cart-progress-section { padding: 20px 0; }
  .cps-dot { width: 36px; height: 36px; font-size: 13px; }
  .cps-line { min-width: 20px; margin: 0 4px; margin-bottom: 20px; }
  .cps-label { font-size: 10px; }

  .cart-main-section { padding: 34px 0; }
  .cart-item-card {
    grid-template-columns: 60px 1fr;
    grid-template-areas:
      "img name"
      "price qty"
      "total remove";
    row-gap: 10px;
  }
  .cart-item-img { grid-area: img; width: 60px; height: 60px; }
  .cart-item-info { grid-area: name; }
  .cip-label { display: block; }
  .cart-item-price { grid-area: price; }
  .cart-item-qty { grid-area: qty; align-items: flex-end; }
  .cart-item-total { grid-area: total; }
  .cart-item-remove { grid-area: remove; justify-self: end; }
  .cart-qty-ctrl { transform-origin: right center; }

  .cart-ship-progress { flex-direction: column; align-items: flex-start; }
  .cart-items-actions { flex-direction: column-reverse; align-items: stretch; }
  .cart-btn-continue, .cart-btn-update { justify-content: center; }

  .chb-inner { flex-direction: column; align-items: flex-start; }
  .chb-btn { align-self: stretch; text-align: center; justify-content: center; }

  .cart-related-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* SM — <=576px */
@media (max-width: 576px) {
  .cart-hero-title { font-size: 28px !important; }
  .cart-trust-item strong { font-size: 13px; }
  .cart-summary-card, .cart-safe-card { padding: 20px 16px; }
  .cart-item-card { padding: 14px; }
  .cart-related-grid { grid-template-columns: 1fr; }
  .cpm-icons { gap: 6px; }
  .cpm-badge { font-size: 9.5px; padding: 5px 8px; }
}

/* XS — <=400px */
@media (max-width: 400px) {
  .cart-progress-track { max-width: 100%; }
  .cps-line { min-width: 12px; }
  .cart-item-name { font-size: 14px; }
  .cart-checkout-btn { font-size: 13.5px; padding: 13px 16px; }
}

/* ======================================================
   SLIDE-OUT CART DRAWER
====================================================== */
.pa-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 21, 35, 0.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 1200;
}
.pa-drawer-overlay.is-open { opacity: 1; }
body.pa-drawer-lock { overflow: hidden; }

.pa-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100vw);
  background: #fff;
  z-index: 1201;
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -24px 0 60px rgba(11, 21, 35, 0.25);
}
.pa-cart-drawer.is-open { transform: translateX(0); }

.pa-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: var(--dark-navy, #0b1523);
  color: #fff;
}
.pa-drawer-head h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
  margin: 0;
  color: #fff;
}
.pa-drawer-head h3 i { color: var(--primary-light, #7c52ef); }
.pa-drawer-close {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  transition: all 0.2s;
}
.pa-drawer-close:hover { background: rgba(255,255,255,0.1); color: #fff; }

.pa-drawer-note {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  font-size: 12px;
  font-weight: 600;
  color: #6b5c9e;
  background: #f0eeff;
  border-bottom: 1px solid #e2dcf7;
}

.pa-drawer-body {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

/* Woo mini-cart internals, restyled */
.pa-drawer-body .woocommerce-mini-cart {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  flex: 1;
}
.pa-drawer-body .woocommerce-mini-cart-item {
  display: grid;
  grid-template-columns: 24px 64px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 22px;
  border-bottom: 1px solid var(--border, #e2e5ee);
  position: relative;
}
.pa-drawer-body .woocommerce-mini-cart-item a.remove_from_cart_button {
  order: -1;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: #b6bcc9 !important;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  transition: all 0.2s;
}
.pa-drawer-body .woocommerce-mini-cart-item a.remove_from_cart_button:hover { background: #fee2e2; color: #dc2626 !important; }
.pa-drawer-body .woocommerce-mini-cart-item a:not(.remove_from_cart_button) {
  display: contents;
  color: var(--text-dark, #1a1a2e);
  font-weight: 700;
  font-size: 13.5px;
}
.pa-drawer-body .woocommerce-mini-cart-item img {
  width: 64px; height: 64px;
  object-fit: contain;
  background: #f6f6fb;
  border: 1px solid var(--border, #e2e5ee);
  border-radius: 10px;
  padding: 6px;
}
.pa-drawer-body .woocommerce-mini-cart-item .quantity {
  grid-column: 3;
  font-size: 12.5px;
  color: var(--text-muted, #777);
  font-weight: 600;
}
.pa-drawer-body .woocommerce-mini-cart-item .quantity .woocommerce-Price-amount { color: var(--primary, #6a3de8); font-weight: 800; }
.pa-drawer-body .woocommerce-mini-cart__empty-message {
  margin: auto;
  padding: 40px 22px;
  text-align: center;
  font-size: 14.5px;
  color: var(--text-muted, #777);
  font-weight: 600;
}

.pa-drawer-body .woocommerce-mini-cart__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 16px 22px 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark, #1a1a2e);
  border-top: 2px solid var(--border, #e2e5ee);
}
.pa-drawer-body .woocommerce-mini-cart__total .woocommerce-Price-amount { font-size: 18px; font-weight: 900; color: var(--primary, #6a3de8); }

.pa-drawer-body .woocommerce-mini-cart__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 12px 22px 22px;
}
.pa-drawer-body .woocommerce-mini-cart__buttons a.button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  border: 1.5px solid var(--primary, #6a3de8);
  color: var(--primary, #6a3de8);
  background: #fff;
  transition: all 0.2s;
}
.pa-drawer-body .woocommerce-mini-cart__buttons a.button:hover { background: #f0eeff; }
.pa-drawer-body .woocommerce-mini-cart__buttons a.button.checkout {
  background: var(--primary, #6a3de8);
  color: #fff;
  order: -1;
}
.pa-drawer-body .woocommerce-mini-cart__buttons a.button.checkout:hover { background: var(--primary-dark, #5228d4); }
.pa-drawer-body .widget_shopping_cart_content { display: flex; flex-direction: column; min-height: 100%; }

/* ---- Drawer items v2: deterministic flex layout (mini-cart.php override) ---- */
.pa-drawer-body .woocommerce-mini-cart-item.pa-mci {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  grid-template-columns: none;
}
.pa-mci-thumb { flex-shrink: 0; }
.pa-drawer-body .pa-mci-thumb img {
  width: 60px; height: 60px;
  object-fit: contain;
  background: #f6f6fb;
  border: 1px solid var(--border, #e2e5ee);
  border-radius: 10px;
  padding: 6px;
}
.pa-mci-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.pa-drawer-body .pa-mci-info .pa-mci-name {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark, #1a1a2e);
  line-height: 1.35;
  text-decoration: none;
}
.pa-drawer-body .pa-mci-info .pa-mci-name:hover { color: var(--primary, #6a3de8); }
.pa-drawer-body .pa-mci-info .quantity {
  font-size: 12.5px;
  color: var(--text-muted, #777);
  font-weight: 600;
}
.pa-drawer-body .pa-mci .remove_from_cart_button {
  order: 0;
  flex-shrink: 0;
  align-self: flex-start;
}
.pa-drawer-body .woocommerce-mini-cart__empty-message { line-height: 2; }
.pa-drawer-body .woocommerce-mini-cart__empty-message i { font-size: 26px; color: #d8d3ee; }
.pa-mci-empty-link { color: var(--primary, #6a3de8); font-weight: 700; text-decoration: underline; }

/* ======================================================
   CART PAGE POLISH
====================================================== */
/* Horizontal quantity stepper */
.cart-qty-ctrl {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--border, #e2e5ee);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.cart-qty-ctrl .cart-qty-minus,
.cart-qty-ctrl .cart-qty-plus {
  width: 34px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-muted, #777);
  background: var(--light-gray, #f4f5f8);
  transition: all 0.2s;
}
.cart-qty-ctrl .cart-qty-minus:hover,
.cart-qty-ctrl .cart-qty-plus:hover { background: var(--primary, #6a3de8); color: #fff; }
.cart-qty-ctrl .quantity { margin: 0; }
.cart-qty-ctrl input.cart-qty-input {
  width: 46px; height: 38px;
  border: none;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dark, #1a1a2e);
  -moz-appearance: textfield;
}
.cart-qty-ctrl input.cart-qty-input::-webkit-outer-spin-button,
.cart-qty-ctrl input.cart-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.cart-qty-ctrl input:focus { outline: none; }

/* Discount code row */
.cart-coupon { display: flex; gap: 10px; }
.cart-coupon .input-text {
  flex: 1;
  max-width: 260px;
  padding: 11px 14px;
  border: 1.5px solid var(--border, #e2e5ee);
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--font-main);
}
.cart-coupon .input-text:focus { outline: none; border-color: var(--primary, #6a3de8); }
.cart-coupon .button {
  padding: 11px 22px;
  border-radius: 8px;
  border: 1.5px solid var(--primary, #6a3de8);
  background: #fff;
  color: var(--primary, #6a3de8);
  font-weight: 700;
  font-size: 13.5px;
  transition: all 0.2s;
}
.cart-coupon .button:hover { background: var(--primary, #6a3de8); color: #fff; }

/* Summary card: brand accent + clean total + button */
.cart-summary-card { border-top: 4px solid var(--primary, #6a3de8) !important; background-image: none !important; }
.cart-summary-total { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.cart-checkout-btn, .cart-summary-card a.checkout-button { text-decoration: none !important; }

/* ======================================================
   CHECKOUT — premium two-column layout
====================================================== */
.woocommerce-checkout .checkout-hero { margin-bottom: 0; }

form.woocommerce-checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 44px;
  align-items: start;
  max-width: 1300px;
  margin: 34px auto 60px;
  padding: 0 20px;
}
form.woocommerce-checkout #customer_details { grid-column: 1; }
form.woocommerce-checkout #order_review_heading,
form.woocommerce-checkout #order_review { grid-column: 2; }

form.woocommerce-checkout #order_review_heading {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark, #1a1a2e);
  font-family: var(--font-head);
}
form.woocommerce-checkout #order_review {
  position: sticky;
  top: 96px;
  background: #fff;
  border: 1px solid var(--border, #e2e5ee);
  border-top: 4px solid var(--primary, #6a3de8);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 10px 34px rgba(13, 27, 42, 0.08);
}

/* Billing fields */
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout #customer_details h3 {
  font-size: 20px;
  font-weight: 800;
  font-family: var(--font-head);
  color: var(--text-dark, #1a1a2e);
  margin-bottom: 18px;
  padding-left: 12px;
  border-left: 4px solid var(--primary, #6a3de8);
}
.woocommerce-checkout .form-row label { font-size: 13px; font-weight: 700; color: var(--text-dark, #1a1a2e); margin-bottom: 5px; }
.woocommerce-checkout .form-row .input-text,
.woocommerce-checkout .form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border, #e2e5ee);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-main);
  transition: border-color 0.2s;
  background: #fff;
}
.woocommerce-checkout .form-row .input-text:focus,
.woocommerce-checkout .form-row select:focus { outline: none; border-color: var(--primary, #6a3de8); box-shadow: 0 0 0 3px rgba(106, 61, 232, 0.12); }

/* Order table inside the sticky card */
#order_review table.shop_table { width: 100%; border: none; font-size: 14px; }
#order_review table.shop_table th, #order_review table.shop_table td { padding: 10px 0; border-bottom: 1px solid var(--border, #e2e5ee); }
#order_review table.shop_table tfoot .order-total td, #order_review table.shop_table tfoot .order-total th { font-size: 16px; font-weight: 900; color: var(--primary, #6a3de8); border-bottom: none; }

/* Payment box */
#order_review #payment { background: var(--light-bg, #f8f9ff); border-radius: 10px; margin-top: 14px; }
#order_review #payment .payment_methods { border-bottom: 1px solid var(--border, #e2e5ee) !important; }
#order_review #payment .payment_box { background: #eef0fb !important; border-radius: 8px; font-size: 13px; }
#order_review #payment .payment_box::before { border-bottom-color: #eef0fb !important; }

/* Place order button: large, on-brand */
#order_review #place_order {
  width: 100%;
  padding: 15px;
  font-size: 15px;
  font-weight: 800;
  background: var(--primary, #6a3de8);
  color: #fff;
  border: none;
  border-radius: 10px;
  transition: background 0.2s, transform 0.2s;
  font-family: var(--font-main);
}
#order_review #place_order:hover { background: var(--primary-dark, #5228d4); transform: translateY(-1px); }

/* Trust strip under place order */
.pa-checkout-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: center;
  margin-top: 14px;
}
.pa-checkout-trust span { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--text-muted, #777); }
.pa-checkout-trust i { color: var(--primary, #6a3de8); }

/* Coupon banner above the form */
.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
  max-width: 1300px;
  margin: 20px auto 0;
  border-radius: 10px;
}

@media (max-width: 1100px) {
  form.woocommerce-checkout { grid-template-columns: 1fr; }
  form.woocommerce-checkout #order_review_heading,
  form.woocommerce-checkout #order_review { grid-column: 1; position: static; }
}

/* Checkout grid: pin the order card beside the form, not under it */
form.woocommerce-checkout #customer_details { grid-row: 1 / 3; }
form.woocommerce-checkout #order_review_heading { grid-row: 1; align-self: end; text-align: left; margin-top: 0; }
form.woocommerce-checkout #order_review { grid-row: 2; }

/* Billing columns: full width inside the left grid column */
.woocommerce-checkout #customer_details .col2-set,
.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 { width: 100%; float: none; }
.woocommerce-checkout .form-row { width: 100%; }
.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last { width: 48.5%; display: inline-block; vertical-align: top; }
.woocommerce-checkout .form-row-first { margin-right: 2.5%; }

/* Woo notice icon glitch on the coupon banner */
.woocommerce-checkout .woocommerce-info::before { display: none; }

/* Trust strip: clean stacked rows inside the payment card */
.pa-checkout-trust { flex-direction: column; align-items: flex-start; gap: 8px; margin-top: 16px; padding: 14px 4px 0; border-top: 1px solid var(--border, #e2e5ee); }
.pa-checkout-trust span { font-size: 12.5px; white-space: nowrap; }

/* ======================================================
   LAB-SUPPLY ADD-ONS (cart page + drawer)
====================================================== */
.pa-addons { margin: 22px 0 4px; }
.pa-addons-cart {
  padding: 20px;
  background: var(--light-bg, #f8f9ff);
  border: 1px solid var(--border, #e2e5ee);
  border-radius: 14px;
}
.pa-addons-head { margin-bottom: 14px; }
.pa-addons-title { display: flex; align-items: center; gap: 8px; font-family: var(--font-head); font-size: 15.5px; font-weight: 800; color: var(--text-dark, #1a1a2e); }
.pa-addons-title i { width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; background: var(--primary, #6a3de8); color: #fff; border-radius: 50%; font-size: 10px; }
.pa-addons-sub { display: block; margin-top: 3px; margin-left: 30px; font-size: 12.5px; color: var(--text-muted, #777); }

.pa-addons-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.pa-addon-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--border, #e2e5ee);
  border-radius: 12px;
  transition: border-color .2s, box-shadow .2s;
}
.pa-addon-card:hover { border-color: #cdbef5; box-shadow: 0 6px 18px rgba(106,61,232,.08); }
.pa-addon-thumb { flex-shrink: 0; width: 52px; height: 52px; }
.pa-addon-thumb img { width: 52px; height: 52px; object-fit: contain; background: #f6f6fb; border-radius: 8px; padding: 4px; }
.pa-addon-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.pa-addon-name { font-size: 13px; font-weight: 700; color: var(--text-dark, #1a1a2e); line-height: 1.3; text-decoration: none; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pa-addon-name:hover { color: var(--primary, #6a3de8); }
.pa-addon-dose { font-size: 11.5px; color: var(--text-muted, #777); }
.pa-addon-price { font-size: 13.5px; font-weight: 800; color: var(--primary, #6a3de8); }
.pa-addon-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--primary, #6a3de8);
  background: #fff;
  border: 1.5px solid var(--primary, #6a3de8);
  border-radius: 8px;
  transition: all .2s;
  text-decoration: none;
}
.pa-addon-btn:hover { background: var(--primary, #6a3de8); color: #fff; }
.pa-addon-btn.is-loading { opacity: .6; pointer-events: none; }

/* Drawer variant of the add-on strip */
.pa-drawer-addons { border-top: 1px solid var(--border, #e2e5ee); padding: 14px 22px; background: var(--light-bg, #f8f9ff); }
.pa-drawer-addons .pa-addons { margin: 0; }
.pa-drawer-addons .pa-addons-title { font-size: 13px; margin-bottom: 10px; }
.pa-drawer-addons .pa-addons-list { grid-template-columns: 1fr; }
.pa-drawer-addons .pa-addon-btn span { display: inline; }
.pa-drawer-addons:empty { display: none; }

@media (max-width: 700px) {
  .pa-addons-list { grid-template-columns: 1fr; }
}

/* ======================================================
   CART PAGE — readability + organisation pass
====================================================== */
.cart-items-title { font-family: var(--font-head); font-weight: 800; letter-spacing: -0.01em; }
.cart-item-card {
  display: grid;
  grid-template-columns: 84px minmax(0,1fr) auto auto;
  grid-template-areas: "img info qty total";
  align-items: center;
  gap: 18px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--border, #e2e5ee);
  border-radius: 14px;
  margin-bottom: 12px;
  position: relative;
}
.cart-item-img { grid-area: img; }
.cart-item-img img { width: 84px; height: 84px; object-fit: contain; background: #f6f6fb; border-radius: 10px; padding: 6px; }
.cart-item-info { grid-area: info; min-width: 0; }
.cart-item-name { font-family: var(--font-head); font-size: 16px; font-weight: 800; line-height: 1.3; margin: 0 0 4px; }
.cart-item-name a { color: var(--text-dark, #1a1a2e); text-decoration: none; }
.cart-item-name a:hover { color: var(--primary, #6a3de8); }
.cart-item-meta { font-size: 12.5px; color: var(--text-muted, #777); margin-bottom: 6px; }
.cart-item-price { grid-area: unset; font-size: 13px; color: var(--text-muted, #777); font-weight: 600; }
.cart-item-stock { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; color: #0c8b82; }
.cart-item-stock i { font-size: 10px; }
.cart-item-qty { grid-area: qty; }
.cart-item-total { grid-area: total; text-align: right; }
.cart-item-total .cit-value { font-family: var(--font-head); font-size: 17px; font-weight: 800; color: var(--primary, #6a3de8); }
.cart-item-remove {
  position: absolute;
  top: 12px; right: 12px;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  color: #c2c7d2;
  border-radius: 8px;
  font-size: 13px;
  transition: all .2s;
}
.cart-item-remove:hover { background: #fee2e2; color: #dc2626; }

/* Order summary card: cleaner header + total, kill pink gradient */
.cart-summary-card::before { background: var(--primary, #6a3de8) !important; height: 4px !important; }
.cart-summary-title { font-family: var(--font-head); }
.cart-summary-total span:last-child { font-family: var(--font-head); }
.cart-checkout-btn { background: var(--primary, #6a3de8) !important; border-radius: 10px !important; font-family: var(--font-main); }
.cart-checkout-btn:hover { background: var(--primary-dark, #5228d4) !important; }

@media (max-width: 640px) {
  .cart-item-card { grid-template-columns: 64px 1fr; grid-template-areas: "img info" "qty total"; gap: 12px; }
  .cart-item-img img { width: 64px; height: 64px; }
  .cart-item-total { text-align: left; }
}

/* Add-on cards: allow 2-line names, tighter thumb, hide redundant unit price */
.pa-addon-name { white-space: normal; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; line-height: 1.25; }
.pa-addon-thumb, .pa-addon-thumb img { width: 46px; height: 46px; }
.pa-addon-dose { display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.cart-item-card .cart-item-price { display: none; }

/* ======================================================
   CHECKOUT — order review items with thumbnails
====================================================== */
.pa-review-items { list-style: none; margin: 0 0 14px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.pa-review-item { display: flex; align-items: center; gap: 12px; }
.pa-review-thumb { position: relative; flex-shrink: 0; }
.pa-review-thumb img { width: 54px; height: 54px; object-fit: contain; background: #f6f6fb; border: 1px solid var(--border, #e2e5ee); border-radius: 10px; padding: 5px; }
.pa-review-qty {
  position: absolute;
  top: -7px; right: -7px;
  min-width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 5px;
  background: var(--primary, #6a3de8);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  border-radius: 999px;
  border: 2px solid #fff;
}
.pa-review-info { flex: 1; min-width: 0; }
.pa-review-name { display: block; font-size: 13.5px; font-weight: 700; color: var(--text-dark, #1a1a2e); line-height: 1.3; }
.pa-review-meta { font-size: 12px; color: var(--text-muted, #777); }
.pa-review-meta p { margin: 0; }
.pa-review-price { flex-shrink: 0; font-size: 14px; font-weight: 800; color: var(--text-dark, #1a1a2e); }

.pa-review-totals { width: 100%; border: none; border-top: 1px solid var(--border, #e2e5ee); margin-top: 6px; }
.pa-review-totals th, .pa-review-totals td { padding: 9px 0; border: none; font-size: 13.5px; }
.pa-review-totals th { text-align: left; font-weight: 600; color: var(--text-muted, #777); }
.pa-review-totals td { text-align: right; font-weight: 700; color: var(--text-dark, #1a1a2e); }
.pa-review-totals .order-total th { font-size: 15px; font-weight: 800; color: var(--text-dark, #1a1a2e); padding-top: 12px; border-top: 2px solid var(--border, #e2e5ee); }
.pa-review-totals .order-total td { font-size: 18px; font-weight: 900; color: var(--primary, #6a3de8); padding-top: 12px; border-top: 2px solid var(--border, #e2e5ee); }

/* ======================================================
   ORDER RECEIVED / THANK-YOU PAGE
====================================================== */
.pa-thankyou { font-family: var(--font-main); }
.pa-ty-hero {
  background: linear-gradient(135deg, #0b1523 0%, #1a1440 60%, #2a1a5e 100%);
  padding: 56px 0 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pa-ty-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(124,82,239,.35), transparent 60%);
  pointer-events: none;
}
.pa-ty-hero .container { position: relative; z-index: 1; }
.pa-ty-badge {
  width: 74px; height: 74px;
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  background: #fff;
  color: #16a34a;
  border-radius: 50%;
  font-size: 30px;
  box-shadow: 0 0 0 8px rgba(255,255,255,0.12), 0 14px 40px rgba(22,163,74,.35);
  animation: pa-ty-pop .5s cubic-bezier(.22,1,.36,1);
}
.pa-ty-badge-fail { color: #dc2626; box-shadow: 0 0 0 8px rgba(255,255,255,0.1), 0 14px 40px rgba(220,38,38,.3); }
@keyframes pa-ty-pop { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.pa-ty-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: #c4b5fd; margin-bottom: 12px;
}
.pa-ty-dot { width: 7px; height: 7px; border-radius: 50%; background: #7c52ef; }
.pa-ty-title { font-family: var(--font-head); font-size: clamp(26px, 4vw, 38px); font-weight: 800; color: #fff; margin: 0 0 10px; letter-spacing: -0.02em; }
.pa-ty-lede { font-size: 15.5px; color: #cbd5e1; max-width: 620px; margin: 0 auto; line-height: 1.7; }
.pa-ty-lede strong { color: #fff; }
.pa-ty-hero .pa-ty-actions { margin-top: 24px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.pa-ty-body { padding: 44px 0 64px; background: var(--light-bg, #f8f9ff); }
.pa-ty-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 28px; align-items: start; max-width: 1080px; margin: 0 auto; }

.pa-ty-overview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border, #e2e5ee);
  border: 1px solid var(--border, #e2e5ee);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
}
.pa-ty-ov { background: #fff; padding: 16px 18px; }
.pa-ty-ov-lbl { display: block; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--text-muted, #777); margin-bottom: 5px; }
.pa-ty-ov-val { font-family: var(--font-head); font-size: 15px; font-weight: 800; color: var(--text-dark, #1a1a2e); }
.pa-ty-ov-total { color: var(--primary, #6a3de8); }

.pa-ty-notice {
  display: flex; gap: 12px;
  padding: 16px 18px;
  background: #fff7ed; border: 1px solid #fed7aa; border-radius: 12px;
  margin-bottom: 20px;
}
.pa-ty-notice i { color: #ea580c; font-size: 18px; margin-top: 2px; }
.pa-ty-notice strong { display: block; color: #9a3412; font-size: 14px; margin-bottom: 3px; }
.pa-ty-notice p { margin: 0; font-size: 13px; color: #7c2d12; line-height: 1.6; }

.pa-ty-card { background: #fff; border: 1px solid var(--border, #e2e5ee); border-radius: 14px; padding: 22px; margin-bottom: 20px; }
.pa-ty-card-title { display: flex; align-items: center; gap: 9px; font-family: var(--font-head); font-size: 16px; font-weight: 800; color: var(--text-dark, #1a1a2e); margin: 0 0 16px; }
.pa-ty-card-title i { color: var(--primary, #6a3de8); font-size: 15px; }

.pa-ty-items { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.pa-ty-item { display: flex; align-items: center; gap: 14px; }
.pa-ty-item-thumb { position: relative; flex-shrink: 0; }
.pa-ty-item-thumb img { width: 58px; height: 58px; object-fit: contain; background: #f6f6fb; border: 1px solid var(--border, #e2e5ee); border-radius: 10px; padding: 5px; }
.pa-ty-item-qty { position: absolute; top: -7px; right: -7px; min-width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; padding: 0 5px; background: var(--primary, #6a3de8); color: #fff; font-size: 11px; font-weight: 800; border-radius: 999px; border: 2px solid #fff; }
.pa-ty-item-info { flex: 1; min-width: 0; }
.pa-ty-item-name { display: block; font-size: 14px; font-weight: 700; color: var(--text-dark, #1a1a2e); }
.pa-ty-item-meta { font-size: 12px; color: var(--text-muted, #777); }
.pa-ty-item-price { flex-shrink: 0; font-weight: 800; font-size: 14px; color: var(--text-dark, #1a1a2e); }

.pa-ty-totals { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--border, #e2e5ee); }
.pa-ty-total-row { display: flex; justify-content: space-between; font-size: 13.5px; padding: 5px 0; color: var(--text-body, #444); }
.pa-ty-total-row span:last-child { font-weight: 700; color: var(--text-dark, #1a1a2e); }
.pa-ty-total-order { padding-top: 10px; margin-top: 4px; border-top: 2px solid var(--border, #e2e5ee); }
.pa-ty-total-order span { font-family: var(--font-head); font-size: 17px !important; font-weight: 900 !important; }
.pa-ty-total-order span:last-child { color: var(--primary, #6a3de8) !important; }

.pa-ty-address { font-style: normal; font-size: 13.5px; line-height: 1.8; color: var(--text-body, #444); }

.pa-ty-side { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 96px; }
.pa-ty-side-title { font-family: var(--font-head); font-size: 15px; font-weight: 800; color: var(--text-dark, #1a1a2e); margin: 0 0 16px; }
.pa-ty-steps-card, .pa-ty-support-card { background: #fff; border: 1px solid var(--border, #e2e5ee); border-radius: 14px; padding: 20px; }
.pa-ty-steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; position: relative; }
.pa-ty-steps::before { content: ""; position: absolute; left: 15px; top: 8px; bottom: 8px; width: 2px; background: var(--border, #e2e5ee); }
.pa-ty-steps li { display: flex; gap: 12px; position: relative; }
.pa-ty-step-ic { flex-shrink: 0; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: #fff; border: 2px solid var(--border, #e2e5ee); color: var(--text-muted, #777); border-radius: 50%; font-size: 12px; z-index: 1; }
.pa-ty-steps li.is-done .pa-ty-step-ic { background: #16a34a; border-color: #16a34a; color: #fff; }
.pa-ty-steps li div { display: flex; flex-direction: column; padding-top: 4px; }
.pa-ty-steps li strong { font-size: 13.5px; font-weight: 700; color: var(--text-dark, #1a1a2e); }
.pa-ty-steps li span { font-size: 12px; color: var(--text-muted, #777); }

.pa-ty-support-card { text-align: center; }
.pa-ty-support-card i { font-size: 24px; color: var(--primary, #6a3de8); margin-bottom: 8px; }
.pa-ty-support-card strong { display: block; font-size: 14.5px; color: var(--text-dark, #1a1a2e); margin-bottom: 4px; }
.pa-ty-support-card p { font-size: 12.5px; color: var(--text-muted, #777); margin: 0 0 14px; line-height: 1.6; }

.pa-ty-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 22px; font-size: 14px; font-weight: 800; border-radius: 10px; text-decoration: none; transition: all .2s; font-family: var(--font-main); }
.pa-ty-btn-primary { background: var(--primary, #6a3de8); color: #fff; border: none; }
.pa-ty-btn-primary:hover { background: var(--primary-dark, #5228d4); color: #fff; transform: translateY(-1px); }
.pa-ty-btn-ghost { background: #fff; color: var(--primary, #6a3de8); border: 1.5px solid var(--primary, #6a3de8); }
.pa-ty-btn-ghost:hover { background: #f0eeff; }
.pa-ty-continue { width: 100%; }
.pa-ty-support-card .pa-ty-btn-ghost { width: 100%; }

.pa-ty-trust { display: flex; flex-direction: column; gap: 8px; padding: 4px 6px; }
.pa-ty-trust span { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: var(--text-muted, #777); }
.pa-ty-trust i { color: var(--primary, #6a3de8); width: 16px; text-align: center; }

@media (max-width: 900px) {
  .pa-ty-grid { grid-template-columns: 1fr; }
  .pa-ty-side { position: static; }
  .pa-ty-overview { grid-template-columns: repeat(2, 1fr); }
}

/* ======================================================
   CHECKOUT v2 — premium form controls
====================================================== */
/* Billing panel becomes a card */
form.woocommerce-checkout #customer_details {
  background: #fff;
  border: 1px solid var(--border, #e2e5ee);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 30px rgba(13, 27, 42, 0.05);
}

/* Labels */
.woocommerce-checkout .form-row { margin-bottom: 16px; }
.woocommerce-checkout .form-row label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text-dark, #1a1a2e);
  margin-bottom: 6px;
  display: block;
}
.woocommerce-checkout .form-row label .required { color: #dc2626; text-decoration: none; }
.woocommerce-checkout .form-row .optional { font-weight: 500; color: var(--text-muted, #999); font-size: 11.5px; }

/* Inputs & selects: tall, soft, focusable */
.woocommerce-checkout .form-row .input-text,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
  height: 48px;
  padding: 0 16px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-dark, #1a1a2e);
  background: #fafbfe;
  border: 1.5px solid #dfe3ee;
  border-radius: 10px;
  box-shadow: inset 0 1px 2px rgba(13, 27, 42, 0.03);
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
  width: 100%;
}
.woocommerce-checkout .form-row textarea { height: auto; padding: 12px 16px; }
.woocommerce-checkout .form-row .input-text::placeholder { color: #a6adbf; font-weight: 400; }
.woocommerce-checkout .form-row .input-text:hover,
.woocommerce-checkout .form-row select:hover { border-color: #c3b8ec; }
.woocommerce-checkout .form-row .input-text:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--primary, #6a3de8);
  box-shadow: 0 0 0 4px rgba(106, 61, 232, 0.12);
}
/* Filled-state confidence tick line */
.woocommerce-checkout .form-row.woocommerce-validated .input-text,
.woocommerce-checkout .form-row.woocommerce-validated select { border-color: #7ac2a5; background: #fff; }
.woocommerce-checkout .form-row.woocommerce-invalid .input-text,
.woocommerce-checkout .form-row.woocommerce-invalid select { border-color: #ef8a8a; background: #fffafa; }

/* Native selects get a custom chevron */
.woocommerce-checkout .form-row select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%236a3de8' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

/* Select2 (country/state) to match */
.woocommerce-checkout .select2-container--default .select2-selection--single {
  height: 48px;
  background: #fafbfe;
  border: 1.5px solid #dfe3ee;
  border-radius: 10px;
}
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered { line-height: 45px; padding-left: 16px; font-size: 14.5px; font-weight: 500; color: var(--text-dark, #1a1a2e); }
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow { height: 46px; right: 8px; }
.woocommerce-checkout .select2-container--open .select2-selection--single { border-color: var(--primary, #6a3de8); box-shadow: 0 0 0 4px rgba(106,61,232,.12); }

/* Billing heading inside the card */
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout #customer_details h3 { margin-top: 0; }

/* Coupon banner: subtle branded pill */
.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
  background: #f0edfd;
  border: 1px solid #ddd4f8;
  color: #4c3b93;
  font-weight: 600;
  border-left: 4px solid var(--primary, #6a3de8);
}
.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info a { color: var(--primary, #6a3de8); font-weight: 800; }

/* Field-group rhythm inside billing card */
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper { display: block; }

/* =========================================================================
   AUTH — Login / Register + My Account dashboard
   ========================================================================= */
.pa-auth { padding: 40px 0 72px; background: var(--light-bg, #f8f9ff); min-height: 60vh; }
.pa-auth-head { text-align: center; max-width: 640px; margin: 0 auto 28px; }
.pa-auth-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; font-size: 11.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--primary, #6a3de8); background: #ede8fd; border: 1px solid #d6ccf5; margin-bottom: 14px; }
.pa-auth-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary, #6a3de8); }
.pa-auth-title { font-family: var(--font-head); font-size: clamp(26px, 3.4vw, 34px); font-weight: 800; color: var(--text-dark, #1a1a2e); margin: 0 0 8px; letter-spacing: -0.02em; }
.pa-auth-lede { font-size: 15px; color: var(--text-muted, #777); margin: 0; line-height: 1.7; }

.pa-auth-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 980px; margin: 0 auto; }
.pa-auth-card { background: #fff; border: 1px solid var(--border, #e2e5ee); border-radius: 18px; padding: 28px; box-shadow: 0 12px 34px rgba(13,27,42,.06); }
.pa-auth-card-head { margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid var(--border, #e2e5ee); }
.pa-auth-card-head h2 { font-family: var(--font-head); font-size: 22px; font-weight: 800; margin: 0 0 4px; color: var(--text-dark, #1a1a2e); }
.pa-auth-card-head p { font-size: 13.5px; color: var(--text-muted, #777); margin: 0; line-height: 1.6; }

.pa-auth-form { display: flex; flex-direction: column; gap: 16px; }
.pa-auth-field { display: block; }
.pa-auth-label { display: block; font-size: 12.5px; font-weight: 700; color: var(--text-dark, #1a1a2e); margin-bottom: 6px; }
.pa-auth-label .req { color: #dc2626; }
.pa-auth-input {
  width: 100%; height: 48px; padding: 0 16px;
  font-size: 14.5px; font-weight: 500; font-family: var(--font-main);
  color: var(--text-dark, #1a1a2e);
  background: #fafbfe; border: 1.5px solid #dfe3ee; border-radius: 10px;
  transition: border-color .18s, background .18s, box-shadow .18s;
}
.pa-auth-input:hover { border-color: #c3b8ec; }
.pa-auth-input:focus { outline: none; background: #fff; border-color: var(--primary, #6a3de8); box-shadow: 0 0 0 4px rgba(106,61,232,.12); }
.pa-auth-input::placeholder { color: #a6adbf; font-weight: 400; }

.pa-auth-pwd-wrap { position: relative; display: block; }
.pa-auth-pwd-wrap .pa-auth-input { padding-right: 46px; }
.pa-auth-pwd-toggle {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: none; color: var(--text-muted, #777);
  cursor: pointer; border-radius: 7px;
}
.pa-auth-pwd-toggle:hover { background: #f0edfd; color: var(--primary, #6a3de8); }

.pa-auth-strength { display: block; margin-top: 6px; height: 20px; position: relative; }
.pa-auth-strength-bar { position: absolute; left: 0; top: 0; height: 4px; width: 0; background: #dfe3ee; border-radius: 2px; transition: width .2s, background .2s; }
.pa-auth-strength-label { position: absolute; right: 0; top: 6px; font-size: 11px; font-weight: 700; color: var(--text-muted, #777); letter-spacing: .02em; }

.pa-auth-row-between { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 13px; }
.pa-auth-check { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-size: 13px; color: var(--text-body, #444); }
.pa-auth-check input { position: absolute; opacity: 0; width: 0; height: 0; }
.pa-auth-check-box { width: 18px; height: 18px; border: 1.5px solid #cdd4e3; border-radius: 5px; display: inline-flex; align-items: center; justify-content: center; background: #fff; transition: all .15s; }
.pa-auth-check input:checked + .pa-auth-check-box { background: var(--primary, #6a3de8); border-color: var(--primary, #6a3de8); }
.pa-auth-check input:checked + .pa-auth-check-box::after { content: ""; width: 5px; height: 9px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg) translate(-1px, -1px); }
.pa-auth-check input:focus + .pa-auth-check-box { box-shadow: 0 0 0 3px rgba(106,61,232,.18); }
.pa-auth-forgot { font-size: 13px; font-weight: 700; color: var(--primary, #6a3de8); text-decoration: none; }
.pa-auth-forgot:hover { text-decoration: underline; }

.pa-auth-consent { padding: 12px 14px; background: #f7f5ff; border: 1px solid #e2dcf7; border-radius: 10px; }
.pa-auth-consent .pa-auth-check { align-items: flex-start; }
.pa-auth-consent .pa-auth-check-box { margin-top: 2px; flex-shrink: 0; }
.pa-auth-consent a { color: var(--primary, #6a3de8); text-decoration: underline; }

.pa-auth-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%; height: 50px; padding: 0 20px;
  font-size: 14.5px; font-weight: 800; font-family: var(--font-main);
  color: #fff; background: var(--primary, #6a3de8);
  border: none; border-radius: 10px; cursor: pointer;
  transition: background .2s, transform .2s;
  margin-top: 6px;
}
.pa-auth-submit:hover { background: var(--primary-dark, #5228d4); transform: translateY(-1px); }
.pa-auth-submit-ghost { background: #fff; color: var(--primary, #6a3de8); border: 1.5px solid var(--primary, #6a3de8); }
.pa-auth-submit-ghost:hover { background: #f0edfd; color: var(--primary-dark, #5228d4); }

.pa-hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }

.pa-auth-trust {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 24px;
  list-style: none; padding: 0; margin: 28px auto 0; max-width: 620px;
  font-size: 12.5px; color: var(--text-muted, #777);
}
.pa-auth-trust li { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.pa-auth-trust i { color: var(--primary, #6a3de8); }

/* Woo error notices inside our layout */
.pa-auth .woocommerce-error, .pa-auth .woocommerce-message, .pa-auth .woocommerce-info {
  max-width: 980px; margin: 0 auto 20px; padding: 14px 18px;
  border-radius: 12px; border: 1px solid #fecaca; background: #fef2f2; color: #7f1d1d;
  font-size: 14px; list-style: none;
}
.pa-auth .woocommerce-message { background: #ecfdf5; border-color: #a7f3d0; color: #065f46; }
.pa-auth .woocommerce-info { background: #f0edfd; border-color: #d6ccf5; color: var(--primary-dark, #4c1d95); }

@media (max-width: 780px) {
  .pa-auth-grid { grid-template-columns: 1fr; }
  .pa-auth-card { padding: 22px; border-radius: 14px; }
}

/* =========================================================================
   MY ACCOUNT DASHBOARD
   ========================================================================= */
.pa-dash { max-width: 980px; margin: 0 auto; padding: 32px 0 64px; }
.pa-dash-hero { text-align: left; margin-bottom: 26px; }
.pa-dash-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; font-size: 11.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--primary, #6a3de8); background: #ede8fd; border: 1px solid #d6ccf5; margin-bottom: 12px; }
.pa-dash-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary, #6a3de8); }
.pa-dash-title { font-family: var(--font-head); font-size: clamp(26px, 3.4vw, 34px); font-weight: 800; color: var(--text-dark, #1a1a2e); margin: 0 0 8px; letter-spacing: -0.02em; }
.pa-dash-lede { font-size: 14.5px; color: var(--text-muted, #777); margin: 0; }
.pa-dash-lede a { color: var(--primary, #6a3de8); font-weight: 700; text-decoration: none; margin-left: 4px; }
.pa-dash-lede a:hover { text-decoration: underline; }

.pa-dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 22px; }
.pa-dash-stat { background: #fff; border: 1px solid var(--border, #e2e5ee); border-radius: 14px; padding: 18px; text-align: center; }
.pa-dash-stat-num { display: block; font-family: var(--font-head); font-size: 24px; font-weight: 800; color: var(--primary, #6a3de8); line-height: 1.1; }
.pa-dash-stat-lbl { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--text-muted, #777); margin-top: 6px; }

.pa-dash-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 30px; }
.pa-dash-card { display: block; padding: 20px; background: #fff; border: 1px solid var(--border, #e2e5ee); border-radius: 14px; text-decoration: none; color: inherit; transition: all .2s; }
.pa-dash-card:hover { border-color: #cdbef5; box-shadow: 0 12px 30px rgba(106,61,232,.08); transform: translateY(-2px); color: inherit; }
.pa-dash-ic { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; background: #f0edfd; color: var(--primary, #6a3de8); border-radius: 11px; font-size: 17px; margin-bottom: 10px; }
.pa-dash-card h3 { font-family: var(--font-head); font-size: 15.5px; font-weight: 800; color: var(--text-dark, #1a1a2e); margin: 0 0 4px; }
.pa-dash-card p { font-size: 13px; color: var(--text-muted, #777); margin: 0; line-height: 1.5; }

.pa-dash-recent { background: #fff; border: 1px solid var(--border, #e2e5ee); border-radius: 14px; padding: 22px; margin-bottom: 22px; }
.pa-dash-recent-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.pa-dash-recent-head h3 { font-family: var(--font-head); font-size: 16px; font-weight: 800; color: var(--text-dark, #1a1a2e); margin: 0; }
.pa-dash-recent-head a { font-size: 12.5px; font-weight: 700; color: var(--primary, #6a3de8); text-decoration: none; }
.pa-dash-order-list { list-style: none; padding: 0; margin: 0; }
.pa-dash-order { display: grid; grid-template-columns: 1fr auto auto; gap: 14px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border, #e2e5ee); }
.pa-dash-order:last-child { border-bottom: none; }
.pa-dash-order-main { min-width: 0; }
.pa-dash-order-num { display: block; font-weight: 800; font-size: 13.5px; color: var(--text-dark, #1a1a2e); }
.pa-dash-order-date { display: block; font-size: 12px; color: var(--text-muted, #777); margin-top: 2px; }
.pa-dash-order-status { padding: 4px 10px; font-size: 11.5px; font-weight: 800; border-radius: 999px; background: #eef0f6; color: var(--text-muted, #777); text-transform: capitalize; }
.pa-dash-status-completed { background: #ecfdf5; color: #065f46; }
.pa-dash-status-processing { background: #fef3c7; color: #92400e; }
.pa-dash-status-on-hold, .pa-dash-status-pending { background: #f0edfd; color: var(--primary-dark, #4c1d95); }
.pa-dash-status-cancelled, .pa-dash-status-failed { background: #fee2e2; color: #7f1d1d; }
.pa-dash-order-view { padding: 7px 14px; font-size: 12.5px; font-weight: 700; color: var(--primary, #6a3de8); background: #f7f5ff; border: 1px solid #d6ccf5; border-radius: 8px; text-decoration: none; }
.pa-dash-order-view:hover { background: var(--primary, #6a3de8); color: #fff; }

.pa-dash-empty { padding: 40px 24px; text-align: center; background: #fff; border: 1px dashed var(--border, #e2e5ee); border-radius: 14px; margin-bottom: 22px; }
.pa-dash-empty h3 { font-family: var(--font-head); font-size: 17px; margin: 0 0 6px; color: var(--text-dark, #1a1a2e); }
.pa-dash-empty p { color: var(--text-muted, #777); margin: 0 0 16px; }
.pa-dash-cta { display: inline-flex; align-items: center; padding: 11px 22px; background: var(--primary, #6a3de8); color: #fff; border-radius: 10px; text-decoration: none; font-weight: 800; font-size: 14px; }
.pa-dash-cta:hover { background: var(--primary-dark, #5228d4); color: #fff; }

.pa-dash-security { display: flex; gap: 12px; align-items: flex-start; padding: 16px 18px; background: #f0edfd; border: 1px solid #d6ccf5; border-radius: 12px; }
.pa-dash-security i { color: var(--primary, #6a3de8); font-size: 17px; margin-top: 2px; flex-shrink: 0; }
.pa-dash-security strong { display: block; font-size: 13.5px; color: var(--primary-dark, #4c1d95); margin-bottom: 3px; }
.pa-dash-security span { font-size: 12.5px; color: var(--text-body, #444); line-height: 1.55; }

/* Woo My Account navigation on subpages (orders, addresses etc.) */
.woocommerce-MyAccount-navigation ul { list-style: none; padding: 0; margin: 0; background: #fff; border: 1px solid var(--border, #e2e5ee); border-radius: 14px; overflow: hidden; }
.woocommerce-MyAccount-navigation li { border-bottom: 1px solid var(--border, #e2e5ee); }
.woocommerce-MyAccount-navigation li:last-child { border-bottom: none; }
.woocommerce-MyAccount-navigation li a { display: block; padding: 13px 18px; color: var(--text-body, #444); text-decoration: none; font-weight: 600; font-size: 14px; transition: all .15s; }
.woocommerce-MyAccount-navigation li a:hover { background: #f7f5ff; color: var(--primary, #6a3de8); }
.woocommerce-MyAccount-navigation li.is-active a { background: #f0edfd; color: var(--primary-dark, #4c1d95); border-left: 3px solid var(--primary, #6a3de8); padding-left: 15px; }

@media (max-width: 640px) {
  .pa-dash-stats { grid-template-columns: 1fr; }
  .pa-dash-grid { grid-template-columns: 1fr; }
  .pa-dash-order { grid-template-columns: 1fr auto; }
  .pa-dash-order-view { grid-column: 2; }
  .pa-dash-order-status { grid-column: 1 / 3; justify-self: start; }
}


.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-EditAccountForm input, .woocommerce-form-login input.input-text,
.woocommerce-form-register input.input-text {
  width: 100%; border: 1.5px solid #e2e8f0; border-radius: 12px; padding: 11px 15px;
  font-size: 14px; outline: none; transition: border-color .2s; background: #fff;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus { border-color: #1a8cba; }
.woocommerce form .form-row { margin-bottom: 14px; }
.woocommerce form .form-row label { font-size: 13px; font-weight: 600; color: #334155; margin-bottom: 5px; display: inline-block; }
.woocommerce button.button, .woocommerce a.button {
  background: #0f172a; color: #fff; border: none; border-radius: 999px; padding: 12px 26px;
  font-weight: 700; font-size: 14px; cursor: pointer; transition: background .2s;
  text-decoration: none; display: inline-block;
}
.woocommerce button.button:hover, .woocommerce a.button:hover { background: #1a8cba; color: #fff; }
