/* =====================================================================
   WOOCOMMERCE.CSS — Global dark-theme overrides for WooCommerce-native markup
   ---------------------------------------------------------------------
   The per-page templates wrap most output in custom .co-/.cart-/.shop-/.acc-
   classes, but a handful of elements are emitted directly by WooCommerce core
   (store notices, generic buttons, the password meter, the order-received /
   "thank you" page). Those default to WC's light/purple skin and break the
   dark gold/black design. This stylesheet re-skins ONLY those leak-through
   elements. Loaded on every WooCommerce page; depends on styles.css tokens and
   loads AFTER woocommerce-general so equal-specificity rules win by source order.
   ===================================================================== */

/* =====================================================================
   STORE NOTICES (info / message / error)
   Appears on cart, checkout, account, shop — anywhere wc_print_notices runs,
   plus the checkout coupon/login toggles which are .woocommerce-info notices.
   ===================================================================== */
.woocommerce-notices-wrapper:empty {
  margin: 0;
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error,
.woocommerce-noreviews,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-error,
.woocommerce ul.woocommerce-error {
  margin: 0 0 20px;
  padding: 14px 18px 14px 46px;
  position: relative;
  list-style: none;
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  background: var(--surface-2);
  color: var(--text);
  font-size: 13.5px;
  line-height: 1.55;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* Tint the left rail + icon per notice type */
.woocommerce-message,
.woocommerce .woocommerce-message {
  border-left-color: #6fcf97;
}

.woocommerce-error,
.woocommerce .woocommerce-error,
.woocommerce ul.woocommerce-error {
  border-left-color: #e06666;
  background: rgba(224, 102, 102, 0.08);
  color: #f3c0c0;
}

/* Leading icon (replaces WC's own ::before glyph, which uses its icon font) */
.woocommerce-info::before,
.woocommerce-message::before,
.woocommerce-error::before,
.woocommerce .woocommerce-info::before,
.woocommerce .woocommerce-message::before,
.woocommerce .woocommerce-error::before {
  content: "\f05a"; /* circle-info */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 18px;
  top: 15px;
  font-size: 15px;
  color: var(--gold);
  line-height: 1.2;
}

.woocommerce-message::before,
.woocommerce .woocommerce-message::before {
  content: "\f058"; /* circle-check */
  color: #6fcf97;
}

.woocommerce-error::before,
.woocommerce .woocommerce-error::before,
.woocommerce ul.woocommerce-error::before {
  content: "\f06a"; /* circle-exclamation */
  color: #e06666;
}

/* Multi-line validation lists: keep the single shared icon, indent rows */
.woocommerce-error li,
.woocommerce ul.woocommerce-error li {
  margin: 0;
  padding: 2px 0;
  list-style: none;
}

/* The inline "Update"/"View cart" button some notices carry */
.woocommerce-info .button,
.woocommerce-message .button,
.woocommerce-error .button {
  margin-left: 12px;
}

/* Notice links */
.woocommerce-info a,
.woocommerce-message a,
.woocommerce-error a,
.woocommerce .woocommerce-info a,
.woocommerce .woocommerce-message a,
.woocommerce .woocommerce-error a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.woocommerce-info a:hover,
.woocommerce-message a:hover,
.woocommerce-error a:hover {
  color: var(--gold-bright);
}

/* WC's plain "notice" (success message on order-received, verify-email gate) */
.woocommerce-notice,
.woocommerce .woocommerce-notice {
  margin: 0 0 22px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  background: var(--surface-2);
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
}

.woocommerce-notice--success {
  border-left-color: #6fcf97;
}

.woocommerce-notice--error {
  border-left-color: #e06666;
  background: rgba(224, 102, 102, 0.08);
  color: #f3c0c0;
}

/* =====================================================================
   GUEST "VERIFY YOUR EMAIL" GATE (shown when a logged-out visitor returns to
   an order link). Rendered bare by the [woocommerce_checkout] shortcode, so
   give it a centred container — but only when it is NOT our themed thankyou
   layout (main.cr), which already provides its own wrapper.
   ===================================================================== */
.woocommerce-order-received .woocommerce:not(:has(main.cr)) {
  max-width: 620px;
  margin: 0 auto;
  padding: clamp(36px, 6vw, 76px) 20px;
}

.woocommerce-verify-email {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  padding: 22px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.woocommerce-verify-email .form-row-wide,
.woocommerce-verify-email p {
  color: var(--text-muted);
}

/* =====================================================================
   GENERIC WOOCOMMERCE BUTTONS
   The custom templates use their own button classes; these rules catch the
   plain WC .button / .button.alt that core prints (Return to shop, View order,
   Update cart, Pay, Place order, etc.).
   ===================================================================== */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--hdr-line);
  border-radius: var(--radius);
  background: var(--surface-2);
  color: var(--text);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  line-height: 1.2;
  text-shadow: none;
  box-shadow: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce .button:hover {
  background: rgba(200, 162, 74, 0.12);
  border-color: var(--gold);
  color: var(--gold-bright);
}

/* Primary (alt) buttons → solid gold */
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt,
.woocommerce .button.alt {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce .button.alt:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--ink);
}

.woocommerce .button:focus-visible,
.woocommerce .button.alt:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
}

.woocommerce .button:disabled,
.woocommerce .button.disabled,
.woocommerce .button[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

/* =====================================================================
   GENERIC WOOCOMMERCE FORM FIELDS
   Catches inputs WC prints outside our custom .co-/.acc- markup
   (edit-address, lost-password, account details, extra checkout fields).
   ===================================================================== */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce .woocommerce-Address-fields input.input-text,
.woocommerce-account .woocommerce form input.input-text,
.woocommerce-account .woocommerce form textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(200, 162, 74, 0.22);
  border-radius: var(--radius);
  background: #1d1d1d;
  color: #f2f2f2;
  font-size: 15px;
  line-height: 1.4;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.woocommerce form .form-row textarea,
.woocommerce-account .woocommerce form textarea {
  min-height: 110px;
  padding: 12px 14px;
  resize: vertical;
}

.woocommerce form .form-row input.input-text::placeholder,
.woocommerce form .form-row textarea::placeholder {
  color: #a3a3a3;
  opacity: 1;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
  outline: none;
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 3px rgba(227, 195, 90, 0.22);
}

.woocommerce form .form-row label {
  color: var(--text);
  font-size: 12.5px;
  font-weight: 600;
}

.woocommerce form .required,
.woocommerce .required {
  color: var(--gold-bright);
  border: 0;
}

/* Password strength meter */
.woocommerce-password-strength {
  margin-top: 6px;
  padding: 6px 10px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  border: 1px solid var(--border);
}

.woocommerce-password-strength.strong {
  background: rgba(111, 207, 151, 0.12);
  color: #6fcf97;
  border-color: rgba(111, 207, 151, 0.4);
}

.woocommerce-password-strength.short,
.woocommerce-password-strength.bad {
  background: rgba(224, 102, 102, 0.1);
  color: #f0a0a0;
  border-color: rgba(224, 102, 102, 0.4);
}

.woocommerce-password-strength.good {
  background: rgba(227, 195, 90, 0.1);
  color: var(--gold-bright);
  border-color: var(--hdr-line);
}

.woocommerce-password-hint {
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 12px;
}

/* =====================================================================
   SELECT2 / selectWoo (country & state dropdowns) — dark theme
   WooCommerce enhances country/state <select>s into select2 widgets that ship a
   light skin. Re-skin the closed control AND the body-level dropdown to match
   the dark fields. The dropdown is appended to <body>, so these selectors are
   intentionally global (this file is frontend-only, so admin select2 is safe).
   ===================================================================== */
.co-field .select2-container,
.woocommerce-billing-fields .select2-container,
.woocommerce-shipping-fields .select2-container,
.woocommerce-address-fields .select2-container {
  width: 100% !important;
}

.select2-container--default .select2-selection--single {
  height: 52px;
  display: flex;
  align-items: center;
  padding: 0 4px;
  border: 1px solid rgba(200, 162, 74, 0.22);
  border-radius: var(--radius);
  background: #1d1d1d;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 0 26px 0 10px;
  color: #f2f2f2;
  line-height: 1.4;
  font-size: 15px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #a3a3a3;
}

/* Replace select2's default grey triangle with the same gold chevron the native
   selects use, so every checkout dropdown matches. */
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 50px;
  width: 34px;
  right: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%23c8a24a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 8px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 3px rgba(227, 195, 90, 0.22);
}

.select2-container--default .select2-selection--multiple {
  min-height: 52px;
  border: 1px solid rgba(200, 162, 74, 0.22);
  border-radius: var(--radius);
  background: #1d1d1d;
}

/* The body-level dropdown panel + options */
.select2-dropdown {
  border: 1px solid var(--hdr-line);
  border-radius: var(--radius);
  background: var(--surface-2);
  color: var(--text);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #1d1d1d;
  color: #f2f2f2;
  padding: 8px 10px;
}

.select2-container--default .select2-results__option {
  padding: 9px 12px;
  color: var(--text);
  background: transparent;
  font-size: 14px;
}

.select2-container--default .select2-results__option--highlighted,
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: rgba(200, 162, 74, 0.18);
  color: var(--gold-bright);
}

.select2-container--default .select2-results__option[aria-selected="true"],
.select2-container--default .select2-results__option[data-selected="true"] {
  background: rgba(200, 162, 74, 0.1);
  color: var(--gold);
}

/* =====================================================================
   ORDER RECEIVED / "THANK YOU" PAGE  (themed via woocommerce/checkout/thankyou.php)
   ===================================================================== */
.cr {
  padding-top: clamp(28px, 4vw, 52px);
  padding-bottom: clamp(48px, 6vw, 88px);
}

.cr-wrap {
  max-width: 760px;
  margin: 0 auto;
}

/* ---- Success hero ---- */
.cr-hero {
  text-align: center;
  margin-bottom: 30px;
}

.cr-hero-icon {
  display: inline-grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(111, 207, 151, 0.12);
  border: 1px solid rgba(111, 207, 151, 0.45);
  color: #6fcf97;
  font-size: 34px;
}

.cr-hero--error .cr-hero-icon {
  background: rgba(224, 102, 102, 0.12);
  border-color: rgba(224, 102, 102, 0.45);
  color: #e06666;
}

.cr-eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.cr-title {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
}

.cr-lead {
  margin: 0 auto;
  max-width: 520px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ---- Order received — "Gold Receipt": hero total + meta ledger ----
   The order summary leads with the Total as a large gold focal figure, then
   lists the meta (order no / date / email / payment method) as full-width
   key:value ledger rows. A block-flow stack is orphan-proof for any item count
   (4 or 5). Border overrides beat WooCommerce's leaked
   ".woocommerce ul.order_details li { float:left; border-right:1px dashed }"
   (0,2,2) via (0,3,2) + source order. */
.cr-overview {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;                       /* children own their padding */
  display: block;                   /* drop the auto-fit pill grid */
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  overflow: hidden;                 /* clip children to the rounded corners */
}

/* Neutralize WooCommerce's defaults on each item. WC only sets float:left,
   margin/padding, forced uppercase and a dashed border-RIGHT — so we zero just
   those (not border-top/bottom), leaving our own dividers free to render. */
ul.cr-overview.order_details li {
  display: block;
  width: auto;
  float: none;
  margin: 0;
  border-right: 0;                  /* kill the leaking dashed divider */
  text-transform: none;             /* WC forces uppercase; show values as-is */
}
/* NOTE: padding is intentionally NOT set here. WC sets padding-left:0 /
   padding-right:2em on these li (0,2,2); the hero + ledger rules below carry it
   at (0,3,2) so their horizontal padding wins instead of being zeroed. */

/* ---- HERO: the order total as the focal figure (0,3,2 beats WC + reset) ---- */
ul.cr-overview.order_details li.cr-ov-hero {
  padding: 24px 24px 22px;
  background: linear-gradient(180deg, rgba(200, 162, 74, 0.10), rgba(200, 162, 74, 0.02));
  border-bottom: 1px solid var(--hdr-line);
  text-align: center;
}

.cr-overview li.cr-ov-hero .cr-ov-label {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.cr-overview li.cr-ov-hero strong,
.cr-overview li.cr-ov-hero strong .amount {
  display: block;
  color: var(--gold-bright);
  font-size: clamp(30px, 6vw, 40px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.01em;
  word-break: break-word;
}

/* ---- META LEDGER: order no / date / email / payment (0,3,2 beats WC + reset) ---- */
ul.cr-overview.order_details li:not(.cr-ov-hero) {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);   /* hairline between rows */
}

/* No divider under the final row (it sits against the card's own border). */
ul.cr-overview.order_details li:last-child {
  border-bottom: 0;
}

.cr-overview li:not(.cr-ov-hero) .cr-ov-label {
  flex: 0 0 auto;
  color: var(--text-muted);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Value — right-aligned, takes remaining width and WRAPS so a long email
   ("dev-email@wpengine.local") can never bleed past the card. */
.cr-overview li:not(.cr-ov-hero) strong {
  flex: 1 1 auto;
  min-width: 0;                     /* lets the unbreakable token break */
  color: var(--text);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.45;
  text-align: right;
  overflow-wrap: anywhere;
  word-break: break-word;           /* legacy fallback */
}

/* ---- Gateway note (Cash on Delivery) — gold-rail callout under the receipt.
   The orphaned "<p>Pay with cash upon delivery.</p>" is output-buffered in
   thankyou.php and re-homed here, mirroring the house .woocommerce-info style. */
.cr-gateway-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 14px 0 28px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  background: var(--surface-2);
  color: var(--text);
}

.cr-gateway-note__icon {
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--gold);
  font-size: 15px;
  line-height: 1.4;
}

.cr-gateway-note__body {
  flex: 1 1 auto;
  min-width: 0;
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.cr-gateway-note__body p {
  margin: 0;
}

.cr-gateway-note__body p + p {
  margin-top: 6px;
}

/* Narrow screens: stack each ledger row label-over-value. */
@media (max-width: 480px) {
  .cr-overview li.cr-ov-hero {
    padding: 18px 18px 16px;
  }

  .cr-overview li:not(.cr-ov-hero) {
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    padding: 12px 18px;
  }

  .cr-overview li:not(.cr-ov-hero) strong {
    text-align: left;
  }
}

/* ---- WC order details + customer details tables ---- */
.woocommerce-order .woocommerce-order-details,
.woocommerce-order .woocommerce-customer-details {
  margin-top: 26px;
}

.woocommerce-order .woocommerce-column__title,
.woocommerce-order .woocommerce-order-details__title,
.woocommerce-order .woocommerce-customer-details h2,
.woocommerce-order h2 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.woocommerce-order table.woocommerce-table--order-details,
.woocommerce-order table.shop_table {
  width: 100%;
  margin: 0 0 22px;
  border: 1px solid var(--border);
  border-radius: 12px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  background: var(--surface);
  color: var(--text);
}

.woocommerce-order table.shop_table th,
.woocommerce-order table.shop_table td {
  padding: 13px 18px;
  border: 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  text-align: left;
  vertical-align: top;
}

.woocommerce-order table.shop_table thead th {
  background: var(--header-bg-2);
  color: var(--text-muted);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.woocommerce-order table.shop_table tbody tr:last-child td {
  border-bottom: 1px solid var(--border);
}

.woocommerce-order table.shop_table tfoot th,
.woocommerce-order table.shop_table tfoot td {
  background: rgba(255, 255, 255, 0.015);
  font-weight: 700;
}

.woocommerce-order table.shop_table tfoot tr:last-child th,
.woocommerce-order table.shop_table tfoot tr:last-child td {
  border-bottom: 0;
  color: var(--text);
}

.woocommerce-order table.shop_table tfoot tr:last-child .amount {
  color: var(--gold-bright);
  font-size: 16px;
  font-weight: 800;
}

.woocommerce-order table.shop_table a {
  color: var(--text);
  font-weight: 600;
}

.woocommerce-order table.shop_table a:hover {
  color: var(--gold);
}

.woocommerce-order table.shop_table .amount {
  color: var(--gold);
  font-weight: 700;
}

.woocommerce-order .product-quantity {
  color: var(--text-muted);
}

/* Downloads table / order-again etc. */
.woocommerce-order .order-again .button {
  margin-top: 6px;
}

/* ---- Customer (billing / shipping) address columns ---- */
.woocommerce-order .woocommerce-customer-details .woocommerce-columns--addresses,
.woocommerce-order .col2-set {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  width: 100%;
  margin: 0;
}

.woocommerce-order .woocommerce-customer-details .col-1,
.woocommerce-order .woocommerce-customer-details .col-2 {
  width: auto;
  float: none;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}

.woocommerce-order .woocommerce-customer-details address {
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--text);
  font-size: 14px;
  font-style: normal;
  line-height: 1.7;
}

.woocommerce-order .woocommerce-customer-details__email,
.woocommerce-order .woocommerce-customer-details__phone {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 13.5px;
}

/* ---- Footer actions on the thank-you page ---- */
.cr-foot-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 30px 0 0;
}

.cr-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 22px 0 0;
}

.cr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 26px;
  border-radius: var(--radius);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.cr-btn--primary {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--ink);
}

.cr-btn--primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--ink);
}

.cr-btn--ghost {
  background: var(--surface-2);
  border: 1px solid var(--hdr-line);
  color: var(--text);
}

.cr-btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.cr-btn:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
}

@media (max-width: 600px) {
  .cr-foot-actions .cr-btn,
  .cr-actions .cr-btn {
    flex: 1 1 100%;
  }
}
