/* ==========================================================================
   Artists Camp — WooCommerce (cart / checkout / my account / order received)

   Owned by the commerce track. Nothing here touches the designed pages: every
   rule is scoped to `body.ac-woo` (set by ac_woo_body_class) or to a
   `.woocommerce*` root that only exists on commerce pages.

   The vocabulary is the site's own — ink #111827, navy #243047, slate #516078,
   cloud #CDD4DF, hairline #E8ECF2, wash #F5F7FA, paper #FFF8EF, cobalt #2447C6,
   coral #FF5A5F → #D7374F, teal focus #00789E — with Space Grotesk on headings
   and the 8px / 28px-15px button idiom from CLASSES.md.
   ========================================================================== */

/* ── page shell ───────────────────────────────────────────────────────── */

body.ac-woo .ac-page__inner {
  max-width: 1140px;
}

body.ac-woo .ac-page__title {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 8px;
}

body.ac-woo .ac-page__content {
  font-size: 15.5px;
}

body.ac-woo .woocommerce {
  color: #111827;
}

body.ac-woo h2,
body.ac-woo h3 {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #111827;
}

body.ac-woo h3 {
  font-size: 19px;
  line-height: 1.15;
}

/* ── the site's own commerce furniture ────────────────────────────────── */

.ac-woo-reassure {
  font-size: 13px;
  line-height: 1.55;
  color: #8b97aa;
  max-width: 560px;
  margin: 0 0 26px;
}

.ac-woo-empty {
  font-size: 16px;
  line-height: 1.6;
  color: #516078;
  max-width: 520px;
  margin: 0 0 24px;
}

.ac-woo-thanks {
  background: #111827;
  border-radius: 16px;
  padding: clamp(22px, 3.5vw, 30px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 30px;
}

.ac-woo-thanks__title {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(22px, 3.4vw, 28px);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin: 0;
}

.ac-woo-thanks__copy {
  font-size: 14.5px;
  line-height: 1.55;
  color: #cdd4df;
  margin: 0;
  max-width: 520px;
}

.ac-woo-btn,
body.ac-woo .woocommerce a.button,
body.ac-woo .woocommerce button.button,
body.ac-woo .woocommerce input.button,
body.ac-woo .woocommerce a.button.alt,
body.ac-woo .woocommerce button.button.alt,
body.ac-woo .woocommerce input.button.alt,
body.ac-woo .woocommerce #respond input#submit {
  display: inline-block;
  font-family: "Inter", Arial, sans-serif;
  background: #2447c6;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 15px 28px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ac-woo-btn:hover,
body.ac-woo .woocommerce a.button:hover,
body.ac-woo .woocommerce button.button:hover,
body.ac-woo .woocommerce input.button:hover,
body.ac-woo .woocommerce a.button.alt:hover,
body.ac-woo .woocommerce button.button.alt:hover,
body.ac-woo .woocommerce input.button.alt:hover,
body.ac-woo .woocommerce #respond input#submit:hover {
  background: #111827;
  color: #ffffff;
}

/* The two money buttons wear the coral CTA the whole site uses. */
.ac-woo-btn--coral,
body.ac-woo .woocommerce .checkout-button,
body.ac-woo .woocommerce a.checkout-button.button,
body.ac-woo .woocommerce #place_order,
body.ac-woo .woocommerce button#place_order {
  background: #ff5a5f;
  color: #ffffff;
}

.ac-woo-btn--coral:hover,
body.ac-woo .woocommerce .checkout-button:hover,
body.ac-woo .woocommerce a.checkout-button.button:hover,
body.ac-woo .woocommerce #place_order:hover,
body.ac-woo .woocommerce button#place_order:hover {
  background: #d7374f;
  color: #ffffff;
}

body.ac-woo .woocommerce #place_order {
  width: 100%;
  margin-top: 6px;
}

/* Quiet, secondary buttons (update cart, apply coupon, return to shop). */
body.ac-woo .woocommerce button[name="update_cart"],
body.ac-woo .woocommerce button[name="apply_coupon"],
body.ac-woo .woocommerce .wc-backward,
body.ac-woo .woocommerce .return-to-shop .button {
  background: #ffffff;
  color: #243047;
  border: 1.5px solid #cdd4df;
  padding: 12px 22px;
  font-size: 14px;
}

body.ac-woo .woocommerce button[name="update_cart"]:hover,
body.ac-woo .woocommerce button[name="apply_coupon"]:hover,
body.ac-woo .woocommerce .wc-backward:hover,
body.ac-woo .woocommerce .return-to-shop .button:hover {
  background: #ffffff;
  color: #111827;
  border-color: #111827;
}

body.ac-woo .woocommerce button[name="update_cart"]:disabled,
body.ac-woo .woocommerce button[name="update_cart"][disabled] {
  opacity: 0.45;
  cursor: default;
}

/* ── notices ──────────────────────────────────────────────────────────── */

body.ac-woo .woocommerce-message,
body.ac-woo .woocommerce-info,
body.ac-woo .woocommerce-error,
body.ac-woo .woocommerce-notice {
  list-style: none;
  border: 0;
  border-radius: 12px;
  padding: 15px 18px;
  margin: 0 0 22px;
  font-size: 14.5px;
  line-height: 1.55;
  font-weight: 500;
  background: #f5f7fa;
  color: #243047;
}

body.ac-woo .woocommerce-message::before,
body.ac-woo .woocommerce-info::before,
body.ac-woo .woocommerce-error::before {
  display: none;
}

body.ac-woo .woocommerce-message {
  background: #ddf7ec;
  color: #0b7d58;
}

body.ac-woo .woocommerce-info {
  background: #ddf5fc;
  color: #00789e;
}

body.ac-woo .woocommerce-error {
  background: #ffe6e7;
  color: #d7374f;
}

body.ac-woo .woocommerce-error li,
body.ac-woo .woocommerce-message li,
body.ac-woo .woocommerce-info li {
  list-style: none;
  margin: 0;
}

body.ac-woo .woocommerce-message a,
body.ac-woo .woocommerce-info a,
body.ac-woo .woocommerce-error a {
  color: inherit;
  text-decoration: underline;
  font-weight: 600;
}

body.ac-woo .woocommerce-message .button,
body.ac-woo .woocommerce-info .button {
  padding: 9px 16px;
  font-size: 13.5px;
  border-radius: 8px;
  margin-left: 12px;
}

/* ── tables (cart + order review + order details) ─────────────────────── */

body.ac-woo .woocommerce table.shop_table {
  width: 100%;
  border: 1px solid #e8ecf2;
  border-radius: 16px;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  overflow: hidden;
  margin: 0 0 26px;
}

body.ac-woo .woocommerce table.shop_table th {
  font-family: "Inter", Arial, sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8b97aa;
  background: #f5f7fa;
  border: 0;
  padding: 13px 18px;
  text-align: left;
}

body.ac-woo .woocommerce table.shop_table td {
  border: 0;
  border-top: 1px solid #e8ecf2;
  padding: 18px;
  font-size: 14.5px;
  color: #243047;
  vertical-align: top;
}

body.ac-woo .woocommerce table.shop_table tbody tr:first-child td {
  border-top: 0;
}

body.ac-woo .woocommerce table.shop_table td.product-name a,
body.ac-woo .woocommerce table.shop_table td.product-name {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

body.ac-woo .woocommerce table.shop_table td.product-name a:hover {
  color: #d7374f;
}

/* The cohort dates + artist/guardian lines that ride each seat. */
body.ac-woo .woocommerce .variation,
body.ac-woo .woocommerce dl.variation,
body.ac-woo .woocommerce .wc-item-meta {
  font-family: "Inter", Arial, sans-serif;
  font-size: 12.5px;
  line-height: 1.5;
  color: #516078;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 8px;
}

body.ac-woo .woocommerce .variation dt,
body.ac-woo .woocommerce .wc-item-meta li strong,
body.ac-woo .woocommerce .wc-item-meta .wc-item-meta-label {
  font-weight: 700;
  color: #8b97aa;
  margin: 0;
  float: none;
  clear: none;
}

body.ac-woo .woocommerce .variation dd,
body.ac-woo .woocommerce .wc-item-meta li p,
body.ac-woo .woocommerce .wc-item-meta li {
  margin: 0;
  padding: 0;
  color: #516078;
}

body.ac-woo .woocommerce .wc-item-meta li {
  display: contents;
}

body.ac-woo .woocommerce .variation dd p {
  margin: 0;
}

body.ac-woo .woocommerce td.product-price,
body.ac-woo .woocommerce td.product-subtotal,
body.ac-woo .woocommerce td.product-total {
  font-weight: 600;
  color: #111827;
  white-space: nowrap;
}

body.ac-woo .woocommerce td.product-thumbnail img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

body.ac-woo .woocommerce a.remove {
  color: #8b97aa !important;
  font-size: 20px;
  line-height: 1;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  text-decoration: none;
}

body.ac-woo .woocommerce a.remove:hover {
  background: #ffe6e7;
  color: #d7374f !important;
}

/* one seat per line — the quantity box is informative, not a spinner */
body.ac-woo .woocommerce .quantity input.qty {
  width: 64px;
  padding: 9px 8px;
  border: 1.5px solid #cdd4df;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
  background: #ffffff;
}

/* ── coupon + actions row ─────────────────────────────────────────────── */

/* The actions row is a colspan'd <td>; it must stay a table cell or the
   browser wraps it in an anonymous cell and every column width goes wrong.
   The two groups inside it float instead. */
body.ac-woo .woocommerce .cart td.actions {
  display: table-cell;
  padding: 16px 18px;
  text-align: left;
}

body.ac-woo .woocommerce .cart td.actions::after {
  content: "";
  display: block;
  clear: both;
}

body.ac-woo .woocommerce .cart td.actions .coupon {
  float: left;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  max-width: 100%;
}

body.ac-woo .woocommerce .cart td.actions .coupon input#coupon_code {
  width: 190px;
  padding: 11px 14px;
  font-size: 14px;
}

body.ac-woo .woocommerce .cart td.actions button[name="update_cart"] {
  float: right;
}

body.ac-woo .woocommerce .cart td.product-quantity {
  font-weight: 600;
  color: #243047;
}

body.ac-woo .woocommerce .cart .actions .coupon label {
  font-size: 13px;
  font-weight: 600;
  color: #516078;
}

/* ── totals panel ─────────────────────────────────────────────────────── */

body.ac-woo .woocommerce .cart-collaterals {
  width: 100%;
}

body.ac-woo .woocommerce .cart_totals {
  float: none;
  width: 100%;
  max-width: 460px;
  margin-left: auto;
  background: #111827;
  border-radius: 16px;
  padding: clamp(20px, 3vw, 28px);
}

body.ac-woo .woocommerce .cart_totals h2 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #ffb000;
  margin: 0 0 14px;
}

body.ac-woo .woocommerce .cart_totals table.shop_table {
  background: transparent;
  border: 0;
  margin: 0 0 18px;
  border-radius: 0;
}

body.ac-woo .woocommerce .cart_totals table.shop_table th,
body.ac-woo .woocommerce .cart_totals table.shop_table td {
  background: transparent;
  border-top: 1px solid #243047;
  padding: 11px 0;
  font-size: 14.5px;
  text-transform: none;
  letter-spacing: normal;
}

body.ac-woo .woocommerce .cart_totals table.shop_table th {
  color: #8b97aa;
  font-weight: 500;
  font-size: 14.5px;
}

body.ac-woo .woocommerce .cart_totals table.shop_table td {
  color: #ffffff;
  font-weight: 600;
  text-align: right;
}

body.ac-woo .woocommerce .cart_totals tr.order-total td .amount,
body.ac-woo .woocommerce .cart_totals tr.order-total td bdi {
  color: #ffb000;
  font-weight: 700;
  font-size: 19px;
}

body.ac-woo .woocommerce .cart_totals .wc-proceed-to-checkout {
  padding: 0;
}

body.ac-woo .woocommerce .cart_totals .checkout-button {
  display: block;
  width: 100%;
  font-size: 16px;
}

body.ac-woo .woocommerce .cart_totals .woocommerce-shipping-destination,
body.ac-woo .woocommerce .cart_totals .shipping-calculator-button {
  color: #8b97aa;
  font-size: 12.5px;
}

/* ── forms ────────────────────────────────────────────────────────────── */

body.ac-woo .woocommerce form .form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  margin: 0 0 16px;
}

body.ac-woo .woocommerce form .form-row label {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

body.ac-woo .woocommerce form .form-row label .required {
  color: #d7374f;
  text-decoration: none;
  border: 0;
}

body.ac-woo .woocommerce form .form-row .description,
body.ac-woo .woocommerce form .form-row small {
  font-size: 12.5px;
  line-height: 1.5;
  color: #8b97aa;
}

body.ac-woo .woocommerce form .form-row input.input-text,
body.ac-woo .woocommerce form .form-row textarea,
body.ac-woo .woocommerce form .form-row select,
body.ac-woo .woocommerce input#coupon_code,
body.ac-woo .woocommerce .select2-container .select2-selection--single {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 15px;
  border: 1.5px solid #cdd4df;
  border-radius: 8px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.4;
  color: #111827;
  background: #ffffff;
  outline: none;
  height: auto;
}

body.ac-woo .woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 1.4;
  padding: 0;
  color: #111827;
}

body.ac-woo .woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  right: 10px;
}

body.ac-woo .woocommerce form .form-row input.input-text:focus,
body.ac-woo .woocommerce form .form-row textarea:focus,
body.ac-woo .woocommerce form .form-row select:focus,
body.ac-woo .woocommerce input#coupon_code:focus {
  border-color: #00789e;
}

body.ac-woo .woocommerce form .form-row.woocommerce-invalid input.input-text,
body.ac-woo .woocommerce form .form-row.woocommerce-invalid select {
  border-color: #d7374f;
}

body.ac-woo .woocommerce form .form-row.woocommerce-validated input.input-text {
  border-color: #cdd4df;
}

body.ac-woo .woocommerce form .form-row-first,
body.ac-woo .woocommerce form .form-row-last {
  width: 100%;
  float: none;
}

/* the guardian pair reads as one designed block */
body.ac-woo .woocommerce form .form-row.ac-woo-guardian {
  background: #fff1cc;
  border-radius: 12px;
  padding: 14px 16px;
}

body.ac-woo .woocommerce form .form-row.ac-woo-guardian label {
  color: #9a6200;
}

body.ac-woo .woocommerce form .form-row.ac-woo-guardian .description {
  color: #9a6200;
  opacity: 0.85;
}

body.ac-woo .woocommerce form.checkout_coupon,
body.ac-woo .woocommerce form.login,
body.ac-woo .woocommerce form.register {
  border: 1px solid #e8ecf2;
  border-radius: 16px;
  background: #ffffff;
  padding: clamp(18px, 3vw, 26px);
  margin: 0 0 24px;
}

body.ac-woo .woocommerce form .form-row.woocommerce-form-row--wide,
body.ac-woo .woocommerce form p.form-row-wide {
  width: 100%;
}

body.ac-woo .woocommerce .woocommerce-form__label-for-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  font-size: 14px;
  color: #243047;
}

body.ac-woo .woocommerce .woocommerce-form__input-checkbox {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: #2447c6;
}

/* ── checkout layout ──────────────────────────────────────────────────── */

/* Two columns: details on the left spanning both rows, "Your order" heading
   and the review/payment panel stacked on the right. Named areas (rather than
   auto-placement) because the heading and the review are siblings of the
   details block, and auto-placement would drop each onto its own new row. */
body.ac-woo .woocommerce form.checkout.woocommerce-checkout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  grid-template-rows: auto auto 1fr;
  grid-template-areas:
    "ac-notice  ac-notice"
    "ac-details ac-heading"
    "ac-details ac-review";
  column-gap: clamp(24px, 4vw, 44px);
  row-gap: 0;
  align-items: start;
}

body.ac-woo .woocommerce form.checkout .woocommerce-NoticeGroup {
  grid-area: ac-notice;
  min-width: 0;
}

body.ac-woo .woocommerce form.checkout #customer_details {
  grid-area: ac-details;
  min-width: 0;
}

body.ac-woo .woocommerce form.checkout h3#order_review_heading {
  grid-area: ac-heading;
  min-width: 0;
}

body.ac-woo .woocommerce form.checkout .woocommerce-checkout-review-order {
  grid-area: ac-review;
  min-width: 0;
}

body.ac-woo .woocommerce form.checkout #customer_details .col-1,
body.ac-woo .woocommerce form.checkout #customer_details .col-2 {
  float: none;
  width: 100%;
}

body.ac-woo .woocommerce form.checkout h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #d7374f;
  margin: 0 0 14px;
  font-family: "Inter", Arial, sans-serif;
}

body.ac-woo .woocommerce form.checkout h3#order_review_heading {
  color: #d7374f;
  margin-bottom: 14px;
}

body.ac-woo .woocommerce .woocommerce-billing-fields,
body.ac-woo .woocommerce .woocommerce-additional-fields {
  background: #ffffff;
  border: 1px solid #e8ecf2;
  border-radius: 16px;
  padding: clamp(18px, 3vw, 26px);
  margin: 0 0 22px;
}

body.ac-woo .woocommerce .woocommerce-checkout-review-order {
  position: sticky;
  top: 96px;
}

body.ac-woo .woocommerce .woocommerce-checkout-review-order-table {
  border-radius: 16px 16px 0 0;
  margin-bottom: 0;
}

body.ac-woo .woocommerce .woocommerce-checkout-review-order-table tfoot th,
body.ac-woo .woocommerce .woocommerce-checkout-review-order-table tfoot td {
  background: #f5f7fa;
  border-top: 1px solid #e8ecf2;
  font-size: 14.5px;
  text-transform: none;
  letter-spacing: normal;
  color: #243047;
  font-weight: 600;
  padding: 13px 18px;
}

body.ac-woo .woocommerce .woocommerce-checkout-review-order-table tfoot .order-total th,
body.ac-woo .woocommerce .woocommerce-checkout-review-order-table tfoot .order-total td {
  background: #111827;
  color: #ffffff;
  border-top: 0;
}

body.ac-woo .woocommerce .woocommerce-checkout-review-order-table tfoot .order-total td .amount,
body.ac-woo .woocommerce .woocommerce-checkout-review-order-table tfoot .order-total td bdi {
  color: #ffb000;
  font-weight: 700;
  font-size: 19px;
}

/* ── payment box ──────────────────────────────────────────────────────── */

body.ac-woo .woocommerce #payment,
body.ac-woo .woocommerce-checkout #payment {
  background: #ffffff;
  border: 1px solid #e8ecf2;
  border-top: 0;
  border-radius: 0 0 16px 16px;
  padding: clamp(18px, 3vw, 24px);
}

body.ac-woo .woocommerce #payment ul.payment_methods {
  border-bottom: 1px solid #e8ecf2;
  padding: 0 0 14px;
  margin: 0 0 16px;
  list-style: none;
}

body.ac-woo .woocommerce #payment ul.payment_methods li {
  list-style: none;
  margin: 0 0 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: #111827;
}

body.ac-woo .woocommerce #payment ul.payment_methods li img {
  max-height: 22px;
  vertical-align: middle;
  margin-left: 8px;
}

body.ac-woo .woocommerce #payment div.payment_box {
  background: #f5f7fa;
  border-radius: 12px;
  padding: 15px 16px;
  margin: 10px 0 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: #516078;
  font-weight: 400;
}

body.ac-woo .woocommerce #payment div.payment_box::before {
  border-bottom-color: #f5f7fa;
}

body.ac-woo .woocommerce #payment .woocommerce-privacy-policy-text,
body.ac-woo .woocommerce .woocommerce-terms-and-conditions-wrapper {
  font-size: 12.5px;
  line-height: 1.55;
  color: #8b97aa;
}

body.ac-woo .woocommerce .woocommerce-terms-and-conditions-wrapper a {
  color: #2447c6;
  font-weight: 600;
}

body.ac-woo .woocommerce .wc-stripe-elements-field,
body.ac-woo .woocommerce .wc-stripe-elements-container,
body.ac-woo .woocommerce #wc-stripe-upe-element,
body.ac-woo .woocommerce .wc-payment-form .form-row {
  border-radius: 8px;
}

/* ── order received / thank you ───────────────────────────────────────── */

body.ac-woo .woocommerce .woocommerce-order-overview,
body.ac-woo .woocommerce ul.order_details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  border: 0;
}

body.ac-woo .woocommerce ul.order_details li {
  background: #ffffff;
  border: 1px solid #e8ecf2;
  border-radius: 12px;
  padding: 14px 18px;
  margin: 0;
  border-right: 1px solid #e8ecf2;
  float: none;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8b97aa;
  flex: 1 1 auto;
}

body.ac-woo .woocommerce ul.order_details li strong {
  display: block;
  margin-top: 6px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  color: #111827;
}

body.ac-woo .woocommerce .woocommerce-order p,
body.ac-woo .woocommerce .woocommerce-thankyou-order-received {
  font-size: 16px;
  line-height: 1.6;
  color: #516078;
}

/* ── my account ───────────────────────────────────────────────────────── */

body.ac-woo .woocommerce-account .woocommerce {
  display: grid;
  grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: start;
}

body.ac-woo .woocommerce-MyAccount-navigation {
  float: none;
  width: 100%;
}

body.ac-woo .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #ffffff;
  border: 1px solid #e8ecf2;
  border-radius: 16px;
  overflow: hidden;
}

body.ac-woo .woocommerce-MyAccount-navigation ul li {
  margin: 0;
  border-bottom: 1px solid #e8ecf2;
}

body.ac-woo .woocommerce-MyAccount-navigation ul li:last-child {
  border-bottom: 0;
}

body.ac-woo .woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 13px 18px;
  font-size: 14.5px;
  font-weight: 600;
  color: #243047;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

body.ac-woo .woocommerce-MyAccount-navigation ul li a:hover {
  background: #f5f7fa;
  color: #111827;
}

body.ac-woo .woocommerce-MyAccount-navigation ul li.is-active a {
  background: #111827;
  color: #ffffff;
}

body.ac-woo .woocommerce-MyAccount-content {
  float: none;
  width: 100%;
  min-width: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #243047;
}

body.ac-woo .woocommerce-MyAccount-content > p:first-child {
  font-size: 16px;
  color: #516078;
}

body.ac-woo .woocommerce-Address {
  background: #ffffff;
  border: 1px solid #e8ecf2;
  border-radius: 16px;
  padding: 20px;
  width: 100%;
}

body.ac-woo .woocommerce-Address address {
  font-style: normal;
  font-size: 14.5px;
  line-height: 1.6;
  color: #516078;
}

/* ── login / register columns ─────────────────────────────────────────── */

body.ac-woo .woocommerce .u-columns.col2-set {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(18px, 3vw, 32px);
}

body.ac-woo .woocommerce .u-columns .col-1,
body.ac-woo .woocommerce .u-columns .col-2 {
  float: none;
  width: 100%;
}

body.ac-woo .woocommerce .woocommerce-LostPassword a,
body.ac-woo .woocommerce .lost_password a {
  font-size: 13.5px;
  color: #2447c6;
  font-weight: 600;
}

/* ── product pages (not linked from the design, but must not look raw) ── */

.woocommerce div.product .product_title {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: #111827;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: #111827;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 700;
  font-size: 24px;
}

.woocommerce div.product .woocommerce-product-details__short-description {
  font-size: 16px;
  line-height: 1.6;
  color: #516078;
}

.woocommerce div.product form.cart .variations td,
.woocommerce div.product form.cart .variations th {
  padding: 8px 0;
  vertical-align: middle;
}

.woocommerce div.product form.cart .variations select {
  padding: 12px 14px;
  border: 1.5px solid #cdd4df;
  border-radius: 8px;
  font-size: 15px;
  background: #ffffff;
  min-width: 240px;
}

.woocommerce div.product form.cart .button {
  background: #ff5a5f;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 15px 28px;
  font-size: 16px;
  font-weight: 600;
}

.woocommerce div.product form.cart .button:hover {
  background: #d7374f;
  color: #ffffff;
}

.woocommerce div.product .stock {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 999px;
  padding: 5px 12px;
  display: inline-block;
}

.woocommerce div.product .stock.in-stock {
  color: #0b7d58;
  background: #ddf7ec;
}

.woocommerce div.product .stock.out-of-stock {
  color: #d7374f;
  background: #ffe6e7;
}

/* ── responsive ───────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  body.ac-woo .woocommerce form.checkout.woocommerce-checkout {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    grid-template-areas:
      "ac-notice"
      "ac-details"
      "ac-heading"
      "ac-review";
    row-gap: 8px;
  }

  body.ac-woo .woocommerce .woocommerce-checkout-review-order {
    position: static;
  }

  body.ac-woo .woocommerce-account .woocommerce {
    grid-template-columns: minmax(0, 1fr);
  }

  body.ac-woo .woocommerce .cart_totals {
    max-width: none;
  }
}

@media (max-width: 640px) {
  body.ac-woo .woocommerce table.shop_table {
    display: block;
    overflow-x: auto;
  }

  body.ac-woo .woocommerce .cart td.actions .coupon,
  body.ac-woo .woocommerce .cart td.actions button[name="update_cart"] {
    float: none;
    width: 100%;
  }

  body.ac-woo .woocommerce .cart td.actions .coupon {
    margin-bottom: 12px;
  }

  body.ac-woo .woocommerce .cart td.actions .coupon input#coupon_code {
    flex: 1 1 auto;
    width: auto;
  }
}

/* "1 seat" replaces the empty quantity cell (seats are sold individually). */
body.ac-woo .woocommerce .ac-woo-qty {
  font-size: 13.5px;
  font-weight: 600;
  color: #243047;
}
