/* ================================================================
   Outline Shop — WooCommerce CSS
   Covers: shop, single product, cart, checkout, my account
   ================================================================ */

/* ── WC Wrap ────────────────────────────────────────────────────── */
.outline-wc-wrap {
  padding-top: 3rem;
  padding-bottom: 5rem;
}

#sidebar {
  display: none;
}

/* WC notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-radius: 0.25rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  list-style: none;
}
.woocommerce-error { border-color: rgba(185,0,0,0.4); background: rgba(185,0,0,0.06); }
.woocommerce-message a,
.woocommerce-info a { color: var(--accent); }
.woocommerce-message a:hover,
.woocommerce-info a:hover { color: var(--accent-hover); }

.woocommerce-notices-wrapper {
  margin-bottom: 1rem;
}

.outline-shop-hero {
  position: relative;
  display: grid;
  gap: 1rem;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.75rem);
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 0.25rem;
  background:
    radial-gradient(circle at top right, rgba(185, 0, 0, 0.18), transparent 20rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.32);
}

.outline-shop-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  opacity: 0.8;
}

@media (min-width: 1024px) {
  .outline-shop-hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
    align-items: end;
  }
}

.outline-shop-hero__copy,
.outline-shop-hero__stats {
  position: relative;
  z-index: 1;
}

.outline-shop-hero__copy {
  max-width: 44rem;
}

.outline-shop-hero__title {
  margin-top: 1rem;
  font-size: clamp(2.9rem, 8vw, 6rem);
}

.outline-shop-hero__lead {
  max-width: 40rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.75;
}

.outline-shop-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.outline-shop-hero__stats {
  display: grid;
  gap: 0.85rem;
}

.outline-shop-stat {
  position: relative;
  overflow: hidden;
  padding: 1.1rem 1.15rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.25rem;
  background: rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.outline-shop-stat::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
}

.outline-shop-stat__label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.44);
}

.outline-shop-stat__value {
  display: block;
  margin-top: 0.55rem;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: #fff;
}

.outline-shop-stat__text {
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
  line-height: 1.6;
}

.outline-shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem 1rem;
  padding: 0.95rem 1.1rem;
  margin-bottom: 1.6rem;
  border: 1px solid var(--border);
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.outline-shop-toolbar .woocommerce-result-count {
  margin: 0;
}

.outline-shop-toolbar .woocommerce-ordering {
  margin-left: auto;
}

.outline-shop-toolbar .woocommerce-ordering select {
  min-width: 15rem;
}

@media (max-width: 640px) {
  .outline-shop-toolbar {
    align-items: stretch;
    padding: 0.9rem;
  }

  .outline-shop-toolbar .woocommerce-ordering {
    width: 100%;
    margin-left: 0;
  }

  .outline-shop-toolbar .woocommerce-ordering select {
    width: 100%;
    min-width: 0;
  }
}

.outline-shop-empty {
  margin-top: 1rem;
}

/* ── Shop page — header ─────────────────────────────────────────── */
.woocommerce-products-header {
  margin-bottom: 2.5rem;
}
.woocommerce-products-header__title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.92;
  color: #fff;
}

/* ── Shop page — result count + ordering ──────────────────────── */
.woocommerce-result-count {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.36);
  margin-bottom: 1.5rem;
}

.woocommerce-ordering select {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 0.25rem;
  color: rgba(255,255,255,0.7);
  padding: 0.5rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color 0.25s;
}
.woocommerce-ordering select:focus { border-color: rgba(255,255,255,0.28); }

/* ── Product grid ───────────────────────────────────────────────── */
ul.products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 640px)  { ul.products { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { ul.products { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

/* ── Product card ───────────────────────────────────────────────── */
ul.products li.product {
  position: relative;
  border-radius: 0.25rem;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

ul.products li.product::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.32), transparent);
  opacity: 0.8;
  z-index: 1;
}

ul.products li.product:hover {
  transform: translateY(-3px);
  border-color: var(--border-hover);
  box-shadow: 0 32px 90px rgba(0,0,0,0.38);
}

.outline-product-card__inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

/* Product image */
ul.products li.product a.woocommerce-loop-product__link,
.outline-product-card__media {
  position: relative;
  display: block;
}

.outline-product-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.24));
  pointer-events: none;
}

ul.products li.product img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}
ul.products li.product:hover img {
  transform: scale(1.03);
}

/* Card body */
.outline-product-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
  padding: 1.25rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.12));
}

.outline-product-card__eyebrow a {
  color: inherit;
}

ul.products li.product .woocommerce-loop-product__title,
ul.products li.product h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  padding: 1.25rem 1.25rem 0.5rem;
  margin: 0;
}

.outline-product-card__body .woocommerce-loop-product__title,
.outline-product-card__body h2 {
  padding: 0;
}

.outline-product-card__title a {
  color: inherit;
}

.outline-product-card__excerpt {
  margin: 0;
  color: rgba(255,255,255,0.56);
  font-size: 0.92rem;
  line-height: 1.7;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.outline-product-card .star-rating {
  margin: 0;
  color: #ffce73;
}

ul.products li.product .price {
  display: block;
  padding: 0 1.25rem 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
ul.products li.product .price del { opacity: 0.4; margin-right: 0.4rem; }
ul.products li.product .price ins { text-decoration: none; color: var(--accent); }

.outline-product-card__body .price {
  padding: 0;
  margin-top: auto;
}

ul.products li.product .button {
  margin: auto 1.25rem 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  border-radius: 0.25rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  width: calc(100% - 2.5rem);
}
ul.products li.product .button:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.outline-product-card__body .button {
  width: 100%;
  margin: 0.25rem 0 0;
}

.outline-product-card__body .added_to_cart {
  margin-top: 0.65rem;
  color: rgba(255,255,255,0.62);
  font-size: 0.76rem;
}

/* Sale badge */
ul.products li.product .onsale {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 0.25rem;
  z-index: 2;
}

/* ── Single Product ─────────────────────────────────────────────── */
.single-product div.product {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .single-product div.product {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: start;
  }
}

/* Product images */
.single-product .woocommerce-product-gallery {
  border-radius: 0.25rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
}
.single-product .woocommerce-product-gallery .woocommerce-product-gallery__image img {
  width: 100%;
  object-fit: cover;
}
.single-product .woocommerce-product-gallery__trigger { display: none; }

/* Flex thumbnail strip */
.single-product .flex-control-thumbs {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem;
  border-top: 1px solid var(--border);
}
.single-product .flex-control-thumbs li { list-style: none; }
.single-product .flex-control-thumbs img {
  width: 4rem;
  height: 4rem;
  object-fit: cover;
  border-radius: 0.25rem;
  border: 1px solid transparent;
  opacity: 0.6;
  transition: opacity 0.2s, border-color 0.2s;
  cursor: pointer;
}
.single-product .flex-control-thumbs .flex-active { opacity: 1; border-color: var(--accent); }

/* Product summary */
.single-product .summary {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.single-product .product_title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.92;
  color: #fff;
}

.single-product .woocommerce-product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.single-product p.price,
.single-product span.price {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
  padding: 0.6rem 1rem;
  border-radius: 0.25rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
}
.single-product p.price del,
.single-product span.price del { opacity: 0.4; }
.single-product p.price ins,
.single-product span.price ins { text-decoration: none; color: var(--accent); }

.single-product .woocommerce-product-details__short-description {
  color: rgba(255,255,255,0.56);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Quantity + Add to cart */
.single-product form.cart {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.single-product .quantity {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 0.25rem;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}
.single-product .quantity input[type="number"] {
  width: 3.5rem;
  text-align: center;
  background: transparent;
  border: none;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  padding: 0.6rem 0;
  outline: none;
  -moz-appearance: textfield;
}
.single-product .quantity input[type="number"]::-webkit-inner-spin-button,
.single-product .quantity input[type="number"]::-webkit-outer-spin-button { appearance: none; }

.single-product button[name="add-to-cart"],
.single-product .single_add_to_cart_button {
  flex: 1;
  min-width: 12rem;
  padding: 0.85rem 1.75rem;
  border-radius: 0.25rem;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  cursor: pointer;
}
.single-product button[name="add-to-cart"]:hover,
.single-product .single_add_to_cart_button:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}
.single-product button[name="add-to-cart"]:active { transform: scale(0.98); }

/* Product meta (SKU, categories) */
.single-product .product_meta {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.single-product .product_meta span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.36);
  margin-bottom: 0.3rem;
}
.single-product .product_meta a { color: rgba(255,255,255,0.6); }
.single-product .product_meta a:hover { color: #fff; }

/* Product tabs */
.woocommerce-tabs {
  margin-top: 3rem;
  grid-column: 1 / -1;
}

.woocommerce-tabs ul.tabs {
  display: flex;
  gap: 0.25rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
  padding: 0;
  list-style: none;
}
.woocommerce-tabs ul.tabs li {
  margin: 0;
}
.woocommerce-tabs ul.tabs li a {
  display: block;
  padding: 0.6rem 1.25rem;
  border-radius: 0.25rem 0.25rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  transition: color 0.2s, background 0.2s;
}
.woocommerce-tabs ul.tabs li.active a {
  color: #fff;
  background: rgba(255,255,255,0.04);
}
.woocommerce-tabs ul.tabs li a:hover { color: rgba(255,255,255,0.8); }

.woocommerce-Tabs-panel {
  color: rgba(255,255,255,0.68);
  font-size: 0.95rem;
  line-height: 1.75;
}
.woocommerce-Tabs-panel h2 { display: none; }
.woocommerce-Tabs-panel table { width: 100%; border-collapse: collapse; }
.woocommerce-Tabs-panel table th,
.woocommerce-Tabs-panel table td {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  text-align: left;
}
.woocommerce-Tabs-panel table th {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.36);
  width: 10rem;
}

/* Related products */
.related.products h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1.5rem;
}

/* ── Quantity +/- buttons (injected by JS) ──────────────────────── */
.outline-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 0.25rem;
  background: rgba(255,255,255,0.03);
  overflow: hidden;
  gap: 0;
}
.outline-qty-btn {
  width: 2rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.56);
  font-size: 1.1rem;
  transition: color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.outline-qty-btn:hover { color: #fff; background: rgba(255,255,255,0.05); }

/* ── Cart ───────────────────────────────────────────────────────── */
.woocommerce-cart .woocommerce {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .woocommerce-cart .woocommerce {
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
    align-items: start;
  }
}

/* Cart heading */
.woocommerce-cart-form h2,
.cart_totals h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

table.shop_table {
  width: 100%;
  border-collapse: collapse;
}
table.shop_table thead tr th {
  padding: 0.6rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  text-align: left;
  border-bottom: 1px solid var(--border);
}
table.shop_table tbody tr td {
  padding: 1rem 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  vertical-align: middle;
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
}

/* Cart product image */
table.shop_table td.product-thumbnail img {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: cover;
  border-radius: 0.25rem;
  border: 1px solid var(--border);
}

/* Cart product name */
table.shop_table td.product-name a {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
}
table.shop_table td.product-name a:hover { color: rgba(255,255,255,0.7); }
table.shop_table td.product-name .variation {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.36);
  margin-top: 0.3rem;
}

/* Remove button */
table.shop_table a.remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.25rem;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
  font-size: 1.1rem;
  line-height: 1;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
table.shop_table a.remove:hover {
  border-color: rgba(185,0,0,0.5);
  background: rgba(185,0,0,0.1);
  color: var(--accent);
}

/* Cart quantity */
table.shop_table td.product-quantity input[type="number"] {
  width: 3.5rem;
  text-align: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 0.25rem;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  padding: 0.4rem;
  outline: none;
  -moz-appearance: textfield;
}
table.shop_table td.product-quantity input[type="number"]::-webkit-inner-spin-button,
table.shop_table td.product-quantity input[type="number"]::-webkit-outer-spin-button { appearance: none; }

/* Update cart button */
.actions .button[name="update_cart"] {
  padding: 0.65rem 1.5rem;
  border-radius: 0.25rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.actions .button[name="update_cart"]:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--border-hover);
  color: #fff;
}

/* Cart totals */
.cart_totals {
  border-radius: 0.25rem;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  padding: 1.5rem;
  position: sticky;
  top: 6rem;
}

.cart_totals .shop_table {
  margin-bottom: 1.25rem;
}
.cart_totals .shop_table th {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.36);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cart_totals .shop_table td {
  color: rgba(255,255,255,0.78);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-align: right;
}
.cart_totals .order-total td strong {
  color: #fff;
  font-size: 1.1rem;
}

.cart_totals .wc-proceed-to-checkout a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  border-radius: 0.25rem;
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.25s, border-color 0.25s;
}
.cart_totals .wc-proceed-to-checkout a:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

/* ── Checkout ───────────────────────────────────────────────────── */
.woocommerce-checkout .woocommerce {
  display: block;
}

.outline-checkout-form {
  display: block;
}

.outline-checkout-sequence {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.75rem;
}

@media (min-width: 768px) {
  .outline-checkout-sequence {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.outline-checkout-step {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border-radius: 0.25rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.outline-checkout-step.is-active {
  border-color: rgba(185,0,0,0.32);
  background: rgba(185,0,0,0.1);
  box-shadow: 0 18px 40px rgba(185,0,0,0.14);
}

.outline-checkout-step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.25rem;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.22);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
}

.outline-checkout-step-copy {
  display: grid;
  gap: 0.2rem;
}

.outline-checkout-step-copy strong {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}

.outline-checkout-step-copy span {
  color: rgba(255,255,255,0.56);
  font-size: 0.82rem;
  line-height: 1.5;
}

.outline-checkout-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .outline-checkout-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
    align-items: start;
  }
}

.outline-checkout-customer-details {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .outline-checkout-customer-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.outline-checkout-panel {
  border-radius: 0.25rem;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  padding: 1.5rem;
}

.outline-checkout-sidebar {
  align-self: start;
}

@media (min-width: 1024px) {
  .outline-checkout-sidebar {
    position: sticky;
    top: 6rem;
  }
}

.outline-checkout-panel .woocommerce-billing-fields,
.outline-checkout-panel .woocommerce-shipping-fields,
.outline-checkout-panel .woocommerce-additional-fields {
  display: block;
}

.outline-checkout-panel .create-account {
  margin-top: 1rem;
}

.woocommerce-checkout h3 {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

/* Form fields */
.woocommerce-checkout .form-row {
  margin-bottom: 1rem;
}
.woocommerce-checkout label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-bottom: 0.4rem;
}
.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout input[type="password"],
.woocommerce-checkout input[type="number"],
.woocommerce-checkout select,
.woocommerce-checkout textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 0.25rem;
  color: #fff;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  appearance: none;
}
.woocommerce-checkout input:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06);
}
.woocommerce-checkout input::placeholder,
.woocommerce-checkout textarea::placeholder { color: rgba(255,255,255,0.24); }
.woocommerce-checkout select option { background: #111; color: #fff; }

.woocommerce-checkout textarea { min-height: 6rem; resize: vertical; }

/* Two-column grid for address fields */
.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
  width: calc(50% - 0.5rem);
  display: inline-block;
  vertical-align: top;
}
.woocommerce-checkout .form-row-first { margin-right: 0.5rem; }
.woocommerce-checkout .form-row-last  { margin-left: 0.5rem; }
@media (max-width: 640px) {
  .woocommerce-checkout .form-row-first,
  .woocommerce-checkout .form-row-last {
    width: 100%;
    margin: 0 0 1rem 0;
    display: block;
  }
}

/* Order review */
#order_review_heading {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}

#order_review {
  border: 0;
  background: none;
  padding: 0;
  position: static;
}

#order_review table.shop_table th {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
#order_review table.shop_table td {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.72);
  font-size: 0.88rem;
  text-align: right;
}
#order_review table.shop_table .order-total td { color: #fff; font-weight: 600; }

/* Payment methods */
#payment {
  margin-top: 1.5rem;
}
#payment .payment_methods {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}
#payment .payment_methods li {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.25rem;
  margin-bottom: 0.5rem;
  background: rgba(255,255,255,0.02);
}
#payment .payment_methods li label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  text-transform: none;
  letter-spacing: 0;
}
#payment .payment_methods li input[type="radio"] { accent-color: var(--accent); }
#payment .payment_box {
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.48);
}

#place_order {
  width: 100%;
  padding: 0.95rem 1.75rem;
  border-radius: 0.25rem;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
#place_order:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}
#place_order:active { transform: scale(0.99); }

/* ── My Account ─────────────────────────────────────────────────── */
.woocommerce-account .woocommerce {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .woocommerce-account .woocommerce {
    grid-template-columns: 14rem minmax(0, 1fr);
    align-items: start;
  }
}

/* Account navigation */
.woocommerce-MyAccount-navigation {
  border-radius: 0.25rem;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  overflow: hidden;
  position: sticky;
  top: 6rem;
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0.5rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 0.6rem 0.875rem;
  border-radius: 0.25rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: background 0.2s, color 0.2s;
}
.woocommerce-MyAccount-navigation ul li a:hover {
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.86);
}
.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--is-active a {
  background: rgba(185,0,0,0.12);
  color: var(--accent);
  border: 1px solid rgba(185,0,0,0.2);
}

/* Account content */
.woocommerce-MyAccount-content {
  border-radius: 0.25rem;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  padding: 1.75rem;
}

.woocommerce-MyAccount-content p { color: rgba(255,255,255,0.68); font-size: 0.92rem; line-height: 1.7; }
.woocommerce-MyAccount-content h2 { font-size: 1.4rem; margin-bottom: 1rem; }
.woocommerce-MyAccount-content h3 { font-size: 1.1rem; margin: 1.5rem 0 0.75rem; }

/* Account orders table */
.woocommerce-MyAccount-content table.shop_table th {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  white-space: nowrap;
}
.woocommerce-MyAccount-content table.shop_table td {
  padding: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  vertical-align: middle;
}
.woocommerce-MyAccount-content table.shop_table a {
  color: var(--accent);
  transition: color 0.2s;
}
.woocommerce-MyAccount-content table.shop_table a:hover { color: var(--accent-hover); }

/* Order status badges */
.woocommerce-order-status,
mark.order-status {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 0.25rem;
  border: 1px solid;
  background: transparent;
}
.woocommerce-order-status.status-completed,
mark.order-status.status-completed {
  color: #4ade80;
  border-color: rgba(74,222,128,0.3);
  background: rgba(74,222,128,0.06);
}
.woocommerce-order-status.status-processing,
mark.order-status.status-processing {
  color: #60a5fa;
  border-color: rgba(96,165,250,0.3);
  background: rgba(96,165,250,0.06);
}
.woocommerce-order-status.status-on-hold,
mark.order-status.status-on-hold {
  color: rgba(255,255,255,0.5);
  border-color: var(--border);
  background: rgba(255,255,255,0.04);
}
.woocommerce-order-status.status-cancelled,
mark.order-status.status-cancelled {
  color: var(--accent);
  border-color: rgba(185,0,0,0.3);
  background: rgba(185,0,0,0.06);
}

/* Account form */
.woocommerce-MyAccount-content .woocommerce-EditAccountForm .form-row,
.woocommerce-MyAccount-content .woocommerce-address-fields .form-row {
  margin-bottom: 1rem;
}
.woocommerce-MyAccount-content label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.4rem;
}
.woocommerce-MyAccount-content input[type="text"],
.woocommerce-MyAccount-content input[type="email"],
.woocommerce-MyAccount-content input[type="tel"],
.woocommerce-MyAccount-content input[type="password"],
.woocommerce-MyAccount-content select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 0.25rem;
  color: #fff;
  padding: 0.7rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  appearance: none;
}
.woocommerce-MyAccount-content input:focus,
.woocommerce-MyAccount-content select:focus {
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.06);
}
.woocommerce-MyAccount-content input::placeholder { color: rgba(255,255,255,0.22); }
.woocommerce-MyAccount-content select option { background: #111; color: #fff; }

.woocommerce-MyAccount-content button[type="submit"],
.woocommerce-MyAccount-content .button {
  padding: 0.75rem 1.75rem;
  border-radius: 0.25rem;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
}
.woocommerce-MyAccount-content button[type="submit"]:hover,
.woocommerce-MyAccount-content .button:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.woocommerce-pagination {
  margin-top: 2.5rem;
}

.woocommerce-pagination ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.woocommerce-pagination .page-numbers a,
.woocommerce-pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.6rem;
  height: 2.6rem;
  padding: 0 0.85rem;
  border: 1px solid var(--border);
  border-radius: 0.25rem;
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.72);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.woocommerce-pagination .page-numbers a:hover,
.woocommerce-pagination .page-numbers .current {
  border-color: var(--accent);
  background: rgba(185,0,0,0.12);
  color: #fff;
}

/* Cart + Checkout refresh */
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
  display: block;
}

.outline-cart-hero,
.outline-checkout-hero {
  position: relative;
  display: grid;
  gap: 1rem;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.75rem);
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 0.25rem;
  background:
    radial-gradient(circle at top right, rgba(185,0,0,0.18), transparent 20rem),
    linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  box-shadow: 0 36px 100px rgba(0,0,0,0.32);
}

.outline-cart-hero::before,
.outline-checkout-hero::before,
.outline-cart-panel::before,
.outline-checkout-panel::before,
.outline-cart-note::before,
.outline-checkout-note::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.36), transparent);
  opacity: 0.85;
}

@media (min-width: 1024px) {
  .outline-cart-hero,
  .outline-checkout-hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
    align-items: end;
  }
}

.outline-cart-hero__copy,
.outline-cart-hero__stats,
.outline-checkout-hero__copy,
.outline-checkout-hero__stats {
  position: relative;
  z-index: 1;
}

.outline-cart-hero__copy,
.outline-checkout-hero__copy {
  max-width: 44rem;
}

.outline-cart-hero__title,
.outline-checkout-hero__title {
  margin-top: 1rem;
  font-size: clamp(2.9rem, 8vw, 6rem);
}

.outline-cart-hero__lead,
.outline-checkout-hero__lead {
  max-width: 40rem;
  margin: 1rem 0 0;
  color: rgba(255,255,255,0.64);
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.75;
}

.outline-cart-hero__actions,
.outline-checkout-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.outline-cart-hero__stats,
.outline-checkout-hero__stats {
  display: grid;
  gap: 0.85rem;
}

.outline-cart-stat,
.outline-checkout-stat {
  position: relative;
  overflow: hidden;
  padding: 1.1rem 1.15rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.25rem;
  background: rgba(0,0,0,0.26);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.outline-cart-stat__label,
.outline-checkout-stat__label,
.outline-cart-summary-head__eyebrow,
.outline-cart-note__eyebrow,
.outline-checkout-note__eyebrow,
.outline-panel-heading__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.44);
}

.outline-cart-stat__value,
.outline-checkout-stat__value {
  display: block;
  margin-top: 0.55rem;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: #fff;
}

.outline-cart-stat__value--price .amount,
.outline-checkout-stat__value--price .amount {
  color: inherit;
}

.outline-cart-stat__text,
.outline-checkout-stat__text {
  margin: 0.65rem 0 0;
  color: rgba(255,255,255,0.58);
  font-size: 0.92rem;
  line-height: 1.6;
}

.outline-cart-layout,
.outline-checkout-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .outline-cart-layout {
    grid-template-columns: minmax(0, 1.28fr) minmax(19rem, 0.72fr);
    align-items: start;
  }
}

.outline-cart-main,
.outline-cart-sidebar {
  display: grid;
  gap: 1.25rem;
}

.outline-cart-panel,
.outline-cart-note,
.outline-checkout-note,
.outline-checkout-panel {
  position: relative;
  overflow: hidden;
  border-radius: 0.25rem;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at top right, rgba(185,0,0,0.1), transparent 18rem),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.018));
  box-shadow: 0 28px 70px rgba(0,0,0,0.24);
}

.outline-cart-panel,
.outline-cart-note,
.outline-checkout-note,
.outline-checkout-panel {
  padding: 1.35rem;
}

@media (min-width: 768px) {
  .outline-cart-panel,
  .outline-cart-note,
  .outline-checkout-note,
  .outline-checkout-panel {
    padding: 1.5rem;
  }
}

.outline-cart-panel__top,
.outline-panel-heading,
.outline-cart-summary-head {
  position: relative;
  z-index: 1;
}

.outline-cart-panel__top {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.outline-cart-panel__copy {
  max-width: 42rem;
}

.outline-cart-panel__title,
.outline-panel-heading__title,
.outline-cart-note__title,
.outline-checkout-note__title {
  margin-top: 0.65rem;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1;
}

.outline-cart-panel__text,
.outline-panel-heading__text,
.outline-cart-summary-head p,
.outline-cart-note__text {
  margin: 0.7rem 0 0;
  color: rgba(255,255,255,0.58);
  font-size: 0.92rem;
  line-height: 1.7;
}

.outline-cart-panel__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.8rem 1.2rem;
  border-radius: 0.25rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.outline-cart-panel__link:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--border-hover);
  color: #fff;
}

.outline-cart-table-wrap {
  position: relative;
  overflow-x: auto;
  z-index: 1;
}

.outline-cart-form table.shop_table {
  min-width: 44rem;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
}

.outline-cart-form table.shop_table thead th {
  padding-top: 0;
  color: rgba(255,255,255,0.34);
}

.outline-cart-form table.shop_table tbody tr:not(:last-child) td {
  background: rgba(255,255,255,0.015);
}

.outline-cart-form table.shop_table tbody tr td:first-child {
  border-left: 1px solid rgba(255,255,255,0.05);
}

.outline-cart-form table.shop_table tbody tr td:last-child {
  border-right: 1px solid rgba(255,255,255,0.05);
}

.outline-cart-form table.shop_table tbody tr:first-child td {
  border-top: 1px solid rgba(255,255,255,0.05);
}

.outline-cart-form table.shop_table tbody tr:not(:last-child) td:first-child {
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

.outline-cart-form table.shop_table tbody tr:not(:last-child) td:last-child {
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.outline-cart-form table.shop_table td.product-price,
.outline-cart-form table.shop_table td.product-subtotal {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.outline-cart-form table.shop_table td.product-price .amount,
.outline-cart-form table.shop_table td.product-subtotal .amount {
  color: inherit;
}

.outline-cart-form table.shop_table td.actions {
  padding: 1.35rem 0 0;
  border: 0;
  background: transparent;
}

.outline-cart-form .actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1rem;
}

.outline-cart-form .coupon {
  display: flex;
  flex: 1 1 24rem;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.outline-cart-form .coupon .input-text,
.outline-cart-form .coupon input[type="text"] {
  flex: 1 1 14rem;
  min-height: 2.9rem;
  padding: 0.8rem 1rem;
  border-radius: 0.25rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: #fff;
}

.outline-cart-form .coupon .input-text::placeholder {
  color: rgba(255,255,255,0.28);
}

.outline-cart-form .coupon .button,
.outline-cart-form .actions > .button {
  min-height: 2.9rem;
  margin: 0;
  width: auto;
  padding: 0.8rem 1.25rem;
}

.outline-cart-note__list,
.outline-checkout-note__list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.outline-cart-note__list li,
.outline-checkout-note__list li {
  position: relative;
  padding-left: 1rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.65;
}

.outline-cart-note__list li::before,
.outline-checkout-note__list li::before {
  content: "";
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 0.25rem;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(185,0,0,0.42);
}

.outline-cart-collaterals {
  display: grid;
  gap: 1.25rem;
}

.outline-cart-collaterals .cart_totals {
  position: static;
  top: auto;
  margin: 0;
  padding: 1.35rem;
  box-shadow: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
}

.outline-cart-summary-head {
  margin-bottom: 1rem;
}

.outline-cart-summary-meta,
.outline-checkout-trust {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.outline-cart-summary-meta__item,
.outline-checkout-trust__item {
  display: grid;
  gap: 0.25rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.25rem;
  background: rgba(0,0,0,0.2);
}

.outline-cart-summary-meta__item strong,
.outline-checkout-trust__item strong {
  color: #fff;
  font-size: 0.9rem;
}

.outline-cart-summary-meta__item span,
.outline-checkout-trust__item span {
  color: rgba(255,255,255,0.56);
  font-size: 0.82rem;
  line-height: 1.55;
}

.cart_totals .shipping-calculator-button {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.24);
  text-underline-offset: 0.22em;
}

.cart_totals .shipping-calculator-button:hover {
  text-decoration-color: var(--accent);
}

.cart_totals .shipping-calculator-form {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.cart_totals .shipping-calculator-form .input-text,
.cart_totals .shipping-calculator-form select,
.cart_totals .shipping-calculator-form button {
  width: 100%;
  min-height: 2.85rem;
  padding: 0.75rem 1rem;
  border-radius: 0.25rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: #fff;
}

.cart_totals .shipping-calculator-form button {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.outline-cart-cross-sells .cross-sells {
  display: grid;
  gap: 1rem;
  padding: 1.45rem 1.5rem 1.6rem;
  border-radius: 0.25rem;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at top right, rgba(185,0,0,0.09), transparent 18rem),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
}

.outline-cart-cross-sells .cross-sells > h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.outline-cart-cross-sells .products {
  margin-top: 0.25rem;
}

.outline-checkout-panel .woocommerce-billing-fields > h3,
.outline-checkout-panel .woocommerce-shipping-fields > h3,
.outline-checkout-panel .woocommerce-additional-fields > h3 {
  display: none;
}

.outline-checkout-note {
  margin-bottom: 1rem;
}

.outline-checkout-panel--summary {
  background:
    radial-gradient(circle at top right, rgba(185,0,0,0.16), transparent 18rem),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.018));
}

.woocommerce-checkout .form-row {
  margin-bottom: 1.1rem;
}

.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout input[type="password"],
.woocommerce-checkout input[type="number"],
.woocommerce-checkout select,
.woocommerce-checkout textarea {
  min-height: 3rem;
  border-radius: 0.25rem;
}

.woocommerce-checkout .select2-container--default .select2-selection--single,
.woocommerce-checkout .select2-container--default .select2-selection--multiple {
  min-height: 3rem;
  border: 1px solid var(--border);
  border-radius: 0.25rem;
  background: rgba(255,255,255,0.04);
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 3rem;
  color: #fff;
  padding-left: 1rem;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 3rem;
  right: 0.55rem;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: rgba(255,255,255,0.28);
}

#order_review_heading {
  margin-bottom: 1.1rem;
}

#order_review table.shop_table {
  border-collapse: separate;
  border-spacing: 0;
}

#order_review table.shop_table tbody tr td,
#order_review table.shop_table tbody tr th {
  background: rgba(255,255,255,0.015);
}

#order_review table.shop_table tbody tr th:first-child,
#order_review table.shop_table tbody tr td:first-child {
  padding-left: 0.85rem;
}

#order_review table.shop_table tbody tr th:last-child,
#order_review table.shop_table tbody tr td:last-child {
  padding-right: 0.85rem;
}

#payment .payment_methods {
  display: grid;
  gap: 0.7rem;
}

#payment .payment_methods li {
  overflow: hidden;
  border-radius: 0.25rem;
  background: rgba(255,255,255,0.03);
}

#payment .payment_methods li label {
  padding: 0.95rem 1rem;
}

#payment .payment_box {
  padding: 0.1rem 1rem 1rem;
  color: rgba(255,255,255,0.56);
}

#place_order {
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .outline-cart-form table.shop_table {
    min-width: 38rem;
  }
}

@media (max-width: 640px) {
  .outline-cart-panel__top {
    align-items: start;
  }

  .outline-cart-form .actions,
  .outline-cart-form .coupon {
    flex-direction: column;
    align-items: stretch;
  }

  .outline-cart-form .coupon .input-text,
  .outline-cart-form .coupon .button,
  .outline-cart-form .actions > .button {
    width: 100%;
  }

  .outline-cart-form table.shop_table {
    min-width: 34rem;
  }
}

.outline-empty-cart {
  display: grid;
  gap: 1.25rem;
  margin-top: 1rem;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border: 1px solid var(--border);
  border-radius: 0.25rem;
  background:
    radial-gradient(circle at top right, rgba(185,0,0,0.16), transparent 18rem),
    linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.018));
  box-shadow: 0 30px 90px rgba(0,0,0,0.28);
}

@media (min-width: 960px) {
  .outline-empty-cart {
    grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
    align-items: center;
  }
}

.outline-empty-cart__title {
  margin-top: 0.9rem;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
}

.outline-empty-cart__lead {
  max-width: 38rem;
  margin: 1rem 0 0;
  color: rgba(255,255,255,0.62);
  font-size: clamp(0.98rem, 2vw, 1.12rem);
  line-height: 1.75;
}

.outline-empty-cart__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.outline-empty-cart__panel {
  display: grid;
}

.outline-empty-cart__card {
  padding: 1.2rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.25rem;
  background: rgba(0,0,0,0.24);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.outline-empty-cart__label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.44);
}

.outline-empty-cart__list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.outline-empty-cart__list li {
  position: relative;
  padding-left: 1rem;
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  line-height: 1.65;
}

.outline-empty-cart__list li::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 0.25rem;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(185,0,0,0.42);
}

/* ================================================================
   Woo Blocks Cart / Checkout
   ================================================================ */

body.woocommerce-cart .outline-prose,
body.woocommerce-checkout .outline-prose {
  max-width: none;
}

body.woocommerce-cart .wp-block-woocommerce-cart,
body.woocommerce-checkout .wp-block-woocommerce-checkout {
  width: 100%;
  max-width: none;
  color: #fff;
}

body.woocommerce-cart .wp-block-woocommerce-cart ul,
body.woocommerce-cart .wp-block-woocommerce-cart ol,
body.woocommerce-checkout .wp-block-woocommerce-checkout ul,
body.woocommerce-checkout .wp-block-woocommerce-checkout ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

body.woocommerce-cart .wp-block-woocommerce-cart li + li,
body.woocommerce-checkout .wp-block-woocommerce-checkout li + li {
  margin-top: 0;
}

body.woocommerce-cart .wc-block-components-sidebar-layout,
body.woocommerce-checkout .wc-block-components-sidebar-layout {
  align-items: flex-start;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin: 0;
}

body.woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main,
body.woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-sidebar,
body.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main,
body.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar {
  width: 100%;
  max-width: none;
  padding: 0;
}

@media (min-width: 980px) {
  body.woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main,
  body.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main {
    flex: 0 0 calc(64% - 0.75rem);
    width: calc(64% - 0.75rem);
  }

  body.woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-sidebar,
  body.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar {
    flex: 0 0 calc(36% - 0.75rem);
    width: calc(36% - 0.75rem);
  }
}

body.woocommerce-cart .wc-block-cart,
body.woocommerce-checkout .wc-block-checkout {
  padding-top: 0;
}

body.woocommerce-cart .wp-block-woocommerce-cart-line-items-block,
body.woocommerce-cart .wp-block-woocommerce-cart-order-summary-block,
body.woocommerce-cart .wp-block-woocommerce-proceed-to-checkout-block,
body.woocommerce-cart .wp-block-woocommerce-cart-express-payment-block,
body.woocommerce-cart .wp-block-woocommerce-cart-accepted-payment-methods-block,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block,
body.woocommerce-checkout .wp-block-woocommerce-checkout-contact-information-block,
body.woocommerce-checkout .wp-block-woocommerce-checkout-shipping-method-block,
body.woocommerce-checkout .wp-block-woocommerce-checkout-pickup-options-block,
body.woocommerce-checkout .wp-block-woocommerce-checkout-shipping-address-block,
body.woocommerce-checkout .wp-block-woocommerce-checkout-billing-address-block,
body.woocommerce-checkout .wp-block-woocommerce-checkout-shipping-methods-block,
body.woocommerce-checkout .wp-block-woocommerce-checkout-payment-block,
body.woocommerce-checkout .wp-block-woocommerce-checkout-additional-information-block,
body.woocommerce-checkout .wp-block-woocommerce-checkout-order-note-block,
body.woocommerce-checkout .wp-block-woocommerce-checkout-terms-block,
body.woocommerce-checkout .wp-block-woocommerce-checkout-actions-block,
body.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block {
  position: relative;
  overflow: hidden;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.25rem;
  background:
    radial-gradient(circle at top right, rgba(185,0,0,0.12), transparent 17rem),
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018));
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
}

body.woocommerce-cart .wp-block-woocommerce-cart-line-items-block::before,
body.woocommerce-cart .wp-block-woocommerce-cart-order-summary-block::before,
body.woocommerce-cart .wp-block-woocommerce-proceed-to-checkout-block::before,
body.woocommerce-cart .wp-block-woocommerce-cart-express-payment-block::before,
body.woocommerce-cart .wp-block-woocommerce-cart-accepted-payment-methods-block::before,
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block::before,
body.woocommerce-checkout .wp-block-woocommerce-checkout-contact-information-block::before,
body.woocommerce-checkout .wp-block-woocommerce-checkout-shipping-method-block::before,
body.woocommerce-checkout .wp-block-woocommerce-checkout-pickup-options-block::before,
body.woocommerce-checkout .wp-block-woocommerce-checkout-shipping-address-block::before,
body.woocommerce-checkout .wp-block-woocommerce-checkout-billing-address-block::before,
body.woocommerce-checkout .wp-block-woocommerce-checkout-shipping-methods-block::before,
body.woocommerce-checkout .wp-block-woocommerce-checkout-payment-block::before,
body.woocommerce-checkout .wp-block-woocommerce-checkout-additional-information-block::before,
body.woocommerce-checkout .wp-block-woocommerce-checkout-order-note-block::before,
body.woocommerce-checkout .wp-block-woocommerce-checkout-terms-block::before,
body.woocommerce-checkout .wp-block-woocommerce-checkout-actions-block::before,
body.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.32), transparent);
}

body.woocommerce-cart .wp-block-woocommerce-cart-line-items-block,
body.woocommerce-checkout .wp-block-woocommerce-checkout-contact-information-block,
body.woocommerce-checkout .wp-block-woocommerce-checkout-shipping-address-block,
body.woocommerce-checkout .wp-block-woocommerce-checkout-billing-address-block,
body.woocommerce-checkout .wp-block-woocommerce-checkout-payment-block {
  margin-bottom: 1rem;
}

body.woocommerce-cart .wc-block-components-panel,
body.woocommerce-cart .wc-block-components-totals-coupon,
body.woocommerce-cart .wc-block-components-totals-item,
body.woocommerce-checkout .wc-block-components-panel,
body.woocommerce-checkout .wc-block-components-totals-coupon,
body.woocommerce-checkout .wc-block-components-totals-item {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.woocommerce-cart .wc-block-components-checkout-step__title,
body.woocommerce-cart .wc-block-cart__totals-title,
body.woocommerce-checkout .wc-block-components-checkout-step__title,
body.woocommerce-checkout .wc-block-cart__totals-title,
body.woocommerce-checkout .wc-block-components-panel__button,
body.woocommerce-cart .wc-block-components-panel__button {
  color: #fff;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

body.woocommerce-checkout .wc-block-components-checkout-step__heading-container,
body.woocommerce-checkout .wc-block-components-panel__button[aria-expanded="true"],
body.woocommerce-cart .wc-block-components-panel__button[aria-expanded="true"] {
  margin-bottom: 0.95rem;
}

body.woocommerce-cart .wc-block-components-checkout-step__description,
body.woocommerce-cart .wc-block-components-panel__button,
body.woocommerce-cart .wc-block-components-radio-control__description,
body.woocommerce-cart .wc-block-components-radio-control__secondary-description,
body.woocommerce-cart .wc-block-components-totals-item__description,
body.woocommerce-checkout .wc-block-components-checkout-step__description,
body.woocommerce-checkout .wc-block-components-panel__button,
body.woocommerce-checkout .wc-block-components-radio-control__description,
body.woocommerce-checkout .wc-block-components-radio-control__secondary-description,
body.woocommerce-checkout .wc-block-components-totals-item__description {
  color: rgba(255,255,255,0.58);
}

body.woocommerce-cart .wc-block-components-product-name,
body.woocommerce-checkout .wc-block-components-product-name {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  max-width: none !important;
}

body.woocommerce-cart .wc-block-cart-item__prices,
body.woocommerce-cart .wc-block-components-product-metadata,
body.woocommerce-checkout .wc-block-components-product-metadata,
body.woocommerce-checkout .wc-block-components-formatted-money-amount,
body.woocommerce-cart .wc-block-components-formatted-money-amount {
  color: rgba(255,255,255,0.72);
}

body.woocommerce-cart .wc-block-components-form .wc-block-components-text-input input[type="text"],
body.woocommerce-cart .wc-block-components-form .wc-block-components-text-input input[type="email"],
body.woocommerce-cart .wc-block-components-form .wc-block-components-text-input input[type="tel"],
body.woocommerce-cart .wc-block-components-form .wc-block-components-text-input input[type="number"],
body.woocommerce-cart .wc-block-components-textarea,
body.woocommerce-cart .wc-blocks-components-select .wc-blocks-components-select__container,
body.woocommerce-cart .wc-blocks-components-select .wc-blocks-components-select__select,
body.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input[type="text"],
body.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input[type="email"],
body.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input[type="tel"],
body.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input[type="number"],
body.woocommerce-checkout .wc-block-components-textarea,
body.woocommerce-checkout .wc-blocks-components-select .wc-blocks-components-select__container,
body.woocommerce-checkout .wc-blocks-components-select .wc-blocks-components-select__select {
  border-radius: 0.25rem !important;
  border-color: rgba(255,255,255,0.14) !important;
  background: rgba(255,255,255,0.05) !important;
  color: #fff !important;
  box-shadow: none !important;
}

body.woocommerce-cart .wc-block-components-form .wc-block-components-text-input input[type="text"],
body.woocommerce-cart .wc-block-components-form .wc-block-components-text-input input[type="email"],
body.woocommerce-cart .wc-block-components-form .wc-block-components-text-input input[type="tel"],
body.woocommerce-cart .wc-block-components-form .wc-block-components-text-input input[type="number"],
body.woocommerce-cart .wc-block-components-textarea,
body.woocommerce-cart .wc-blocks-components-select .wc-blocks-components-select__select,
body.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input[type="text"],
body.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input[type="email"],
body.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input[type="tel"],
body.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input[type="number"],
body.woocommerce-checkout .wc-block-components-textarea,
body.woocommerce-checkout .wc-blocks-components-select .wc-blocks-components-select__select {
  min-height: 3.15rem;
}

body.woocommerce-cart .wc-block-components-text-input label,
body.woocommerce-cart .wc-blocks-components-select .wc-blocks-components-select__label,
body.woocommerce-checkout .wc-block-components-text-input label,
body.woocommerce-checkout .wc-blocks-components-select .wc-blocks-components-select__label {
  color: rgba(255,255,255,0.44) !important;
}

body.woocommerce-cart .wc-block-components-text-input input::placeholder,
body.woocommerce-cart .wc-block-components-textarea::placeholder,
body.woocommerce-checkout .wc-block-components-text-input input::placeholder,
body.woocommerce-checkout .wc-block-components-textarea::placeholder {
  color: rgba(255,255,255,0.28) !important;
}

body.woocommerce-cart .wc-block-components-form .wc-block-components-text-input input:focus,
body.woocommerce-cart .wc-block-components-textarea:focus,
body.woocommerce-cart .wc-blocks-components-select .wc-blocks-components-select__select:focus,
body.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-textarea:focus,
body.woocommerce-checkout .wc-blocks-components-select .wc-blocks-components-select__select:focus {
  border-color: rgba(255,255,255,0.24) !important;
  box-shadow: 0 0 0 3px rgba(185,0,0,0.14) !important;
}

body.woocommerce-cart .wc-blocks-components-select .wc-blocks-components-select__expand,
body.woocommerce-checkout .wc-blocks-components-select .wc-blocks-components-select__expand {
  fill: rgba(255,255,255,0.74);
}

body.woocommerce-cart .wc-block-components-text-input input:-webkit-autofill,
body.woocommerce-checkout .wc-block-components-text-input input:-webkit-autofill {
  -webkit-text-fill-color: #fff;
  box-shadow: 0 0 0 1000px rgba(17,17,17,0.92) inset;
}

body.woocommerce-cart .wc-block-components-checkbox label,
body.woocommerce-cart .wc-block-components-radio-control__option,
body.woocommerce-checkout .wc-block-components-checkbox label,
body.woocommerce-checkout .wc-block-components-radio-control__option {
  color: rgba(255,255,255,0.82);
}

body.woocommerce-cart .wc-block-components-checkbox .wc-block-components-checkbox__input[type="checkbox"],
body.woocommerce-checkout .wc-block-components-checkbox .wc-block-components-checkbox__input[type="checkbox"] {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.24);
}

body.woocommerce-cart .wc-block-components-checkbox .wc-block-components-checkbox__mark,
body.woocommerce-checkout .wc-block-components-checkbox .wc-block-components-checkbox__mark {
  fill: var(--accent);
}

body.woocommerce-cart .wc-block-components-radio-control--highlight-checked,
body.woocommerce-checkout .wc-block-components-radio-control--highlight-checked {
  border-radius: 0.25rem;
}

body.woocommerce-cart .wc-block-components-radio-control--highlight-checked:after,
body.woocommerce-checkout .wc-block-components-radio-control--highlight-checked:after {
  border-color: rgba(255,255,255,0.12);
  border-radius: 0.25rem;
}

body.woocommerce-cart .wc-block-components-radio-control__option,
body.woocommerce-checkout .wc-block-components-radio-control__option {
  border-radius: 0.25rem;
  transition: background 0.2s ease, color 0.2s ease;
}

body.woocommerce-cart .wc-block-components-radio-control__option:hover,
body.woocommerce-checkout .wc-block-components-radio-control__option:hover {
  background: rgba(255,255,255,0.03);
}

body.woocommerce-cart .wc-block-components-radio-control__option--checked-option-highlighted,
body.woocommerce-checkout .wc-block-components-radio-control__option--checked-option-highlighted,
body.woocommerce-cart div.wc-block-components-radio-control-accordion-option--checked-option-highlighted,
body.woocommerce-checkout div.wc-block-components-radio-control-accordion-option--checked-option-highlighted {
  background: rgba(185,0,0,0.08);
}

body.woocommerce-cart .wc-block-components-radio-control .wc-block-components-radio-control__input,
body.woocommerce-checkout .wc-block-components-radio-control .wc-block-components-radio-control__input {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.28);
}

body.woocommerce-cart .wc-block-components-radio-control .wc-block-components-radio-control__input:checked:before,
body.woocommerce-checkout .wc-block-components-radio-control .wc-block-components-radio-control__input:checked:before {
  background: var(--accent);
}

body.woocommerce-cart .wc-block-components-button:not(.is-link),
body.woocommerce-checkout .wc-block-components-button:not(.is-link) {
  min-height: 3rem;
  padding: 0.9rem 1.3rem;
  border: 1px solid var(--accent);
  border-radius: 0.25rem;
  background: var(--accent);
  color: #fff;
  box-shadow: none !important;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

body.woocommerce-cart .wc-block-components-button:not(.is-link):hover,
body.woocommerce-checkout .wc-block-components-button:not(.is-link):hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
}

body.woocommerce-cart .wc-block-components-button:not(.is-link).outlined,
body.woocommerce-cart .wc-block-components-button:not(.is-link).is-style-outline,
body.woocommerce-checkout .wc-block-components-button:not(.is-link).outlined,
body.woocommerce-checkout .wc-block-components-button:not(.is-link).is-style-outline {
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #fff;
}

body.woocommerce-cart .wc-block-components-button:not(.is-link).outlined:hover,
body.woocommerce-cart .wc-block-components-button:not(.is-link).is-style-outline:hover,
body.woocommerce-checkout .wc-block-components-button:not(.is-link).outlined:hover,
body.woocommerce-checkout .wc-block-components-button:not(.is-link).is-style-outline:hover {
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.1);
}

body.woocommerce-checkout .wc-block-components-checkout-place-order-button,
body.woocommerce-cart .wc-block-cart__submit-button {
  width: 100%;
}

body.woocommerce-cart table.wc-block-cart-items {
  border-collapse: separate;
  border-spacing: 0;
}

body.woocommerce-cart .wc-block-cart-items__header th {
  color: rgba(255,255,255,0.44);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.18em;
}

body.woocommerce-cart .wc-block-cart__main .wc-block-cart-items td {
  border-color: rgba(255,255,255,0.08);
}

body.woocommerce-cart .wc-block-cart-item__image img {
  border-radius: 0.25rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

body.woocommerce-cart .wc-block-components-quantity-selector {
  border-color: rgba(255,255,255,0.12);
  border-radius: 0.25rem;
  background: rgba(255,255,255,0.04);
}

body.woocommerce-cart .wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input,
body.woocommerce-cart .wc-block-components-quantity-selector .wc-block-components-quantity-selector__button {
  color: #fff;
}

body.woocommerce-cart .wc-block-cart-item__remove-link {
  color: rgba(255,255,255,0.46);
  text-decoration: none;
}

body.woocommerce-cart .wc-block-cart-item__remove-link:hover {
  color: #fff;
}

body.woocommerce-cart .wc-block-components-totals-wrapper,
body.woocommerce-checkout .wc-block-components-totals-wrapper {
  border-top-color: rgba(255,255,255,0.08);
}

body.woocommerce-cart .wc-block-components-totals-item,
body.woocommerce-checkout .wc-block-components-totals-item {
  color: rgba(255,255,255,0.72);
}

body.woocommerce-cart .wc-block-components-totals-footer-item,
body.woocommerce-checkout .wc-block-components-totals-footer-item {
  margin-top: 0.35rem;
  padding-top: 1rem;
}

body.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
body.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__value,
body.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
body.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

body.woocommerce-cart .wc-block-components-totals-coupon__form,
body.woocommerce-checkout .wc-block-components-totals-coupon__form {
  gap: 0.75rem;
}

body.woocommerce-cart .wc-block-components-totals-shipping__change-address-button,
body.woocommerce-cart .wc-block-components-totals-shipping__change-address__link,
body.woocommerce-checkout .wc-block-components-totals-shipping__change-address-button,
body.woocommerce-checkout .wc-block-components-totals-shipping__change-address__link,
body.woocommerce-checkout .wc-block-components-address-card__edit,
body.woocommerce-checkout .wc-block-components-address-form__address_2-toggle {
  color: rgba(255,255,255,0.68);
  text-decoration-color: rgba(255,255,255,0.28);
}

body.woocommerce-cart .wc-block-components-totals-shipping__change-address-button:hover,
body.woocommerce-cart .wc-block-components-totals-shipping__change-address__link:hover,
body.woocommerce-checkout .wc-block-components-totals-shipping__change-address-button:hover,
body.woocommerce-checkout .wc-block-components-totals-shipping__change-address__link:hover,
body.woocommerce-checkout .wc-block-components-address-card__edit:hover,
body.woocommerce-checkout .wc-block-components-address-form__address_2-toggle:hover {
  color: #fff;
}

body.woocommerce-cart .wc-block-components-notice-banner,
body.woocommerce-checkout .wc-block-components-notice-banner {
  border-radius: 0.25rem;
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.82);
}

body.woocommerce-cart .wc-block-components-notice-banner > svg,
body.woocommerce-checkout .wc-block-components-notice-banner > svg {
  background: rgba(255,255,255,0.14);
  fill: #fff;
}

body.woocommerce-cart .wc-block-components-notice-banner > .wc-block-components-button,
body.woocommerce-checkout .wc-block-components-notice-banner > .wc-block-components-button {
  color: inherit !important;
}

body.woocommerce-cart .wc-block-components-notice-banner.is-error,
body.woocommerce-checkout .wc-block-components-notice-banner.is-error {
  border-color: rgba(185,0,0,0.44);
  background: rgba(185,0,0,0.1);
  color: #ffd9d9;
}

body.woocommerce-cart .wp-block-woocommerce-empty-cart-block {
  display: grid;
  gap: 1rem;
}

body.woocommerce-cart .wc-block-cart__empty-cart__title {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  text-align: left;
}

body.woocommerce-cart .wc-block-cart__empty-cart__title.with-empty-cart-icon:before {
  margin: 0 0 1.25rem;
  color: var(--accent);
}

body.woocommerce-cart .wc-block-grid__products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 1rem;
}

body.woocommerce-cart .wc-block-grid__product {
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.25rem;
  background: rgba(255,255,255,0.03);
}

body.woocommerce-cart .wc-block-grid__product-title {
  color: #fff;
  font-size: 1rem;
}

body.woocommerce-cart .wc-block-grid__product-price {
  color: rgba(255,255,255,0.68);
}

@media (max-width: 979px) {
  body.woocommerce-cart .wc-block-components-sidebar,
  body.woocommerce-checkout .wc-block-components-sidebar {
    margin-top: 0;
  }
}
