/* ── Base ─────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: block;
  max-width: 100%;
}

/* ── Grain overlay ────────────────────────────────────── */
#bagira-grain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.032;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── Navigation ───────────────────────────────────────── */
#site-nav {
  transition:
    background 0.45s ease,
    border-color 0.45s ease,
    backdrop-filter 0.45s ease;
}
#site-nav.scrolled {
  background: rgba(23, 18, 16, 0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(237, 224, 208, 0.06);
}

.nav-link {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(237, 224, 208, 0.42);
  transition: color 0.25s ease;
  text-decoration: none;
}
.nav-link:hover {
  color: rgba(237, 224, 208, 0.85);
}
.nav-link.active {
  color: rgba(237, 224, 208, 0.85);
}

/* ── Footer links ─────────────────────────────────────── */
.footer-link {
  font-size: 0.75rem;
  color: rgba(237, 224, 208, 0.38);
  transition: color 0.25s;
  text-decoration: none;
  display: block;
}
.footer-link:hover {
  color: rgba(237, 224, 208, 0.72);
}

/* ── Event list rows ──────────────────────────────────── */
.event-row {
  display: flex;
  align-items: center;
  gap: 4%;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(237, 224, 208, 0.07);
  text-decoration: none;
  transition: border-color 0.3s;
  cursor: pointer;
}
.event-row:first-of-type {
  border-top: 1px solid rgba(237, 224, 208, 0.07);
}
.event-row:hover {
  border-color: rgba(237, 224, 208, 0.16);
}

.event-num {
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  color: rgba(154, 107, 60, 0.5);
  font-family: Inter, sans-serif;
  min-width: 2rem;
  flex-shrink: 0;
}
.event-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.25rem, 2.4vw, 1.9rem);
  line-height: 1.15;
  color: rgba(237, 224, 208, 0.88);
  transition: color 0.25s;
}
.event-row:hover .event-title {
  color: rgba(212, 169, 122, 0.9);
}

.event-meta {
  font-size: 0.7rem;
  color: rgba(237, 224, 208, 0.35);
  margin-top: 0.3rem;
}
.event-date {
  font-size: 0.7rem;
  color: rgba(237, 224, 208, 0.52);
  margin-bottom: 0.15rem;
  letter-spacing: 0.04em;
}
.event-price {
  font-size: 0.7rem;
  color: rgba(212, 169, 122, 0.72);
}
.event-tag {
  display: inline-block;
  font-size: 0.48rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(154, 107, 60, 0.25);
  color: rgba(154, 107, 60, 0.7);
  padding: 0.2rem 0.55rem;
  white-space: nowrap;
}

.event-arrow {
  font-size: 1rem;
  flex-shrink: 0;
  color: rgba(212, 169, 122, 0);
  transition:
    color 0.25s,
    transform 0.25s;
}
.event-row:hover .event-arrow {
  color: rgba(212, 169, 122, 0.75);
  transform: translateX(4px);
}

/* ── Section label ────────────────────────────────────── */
.section-label {
  font-size: 0.52rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(154, 107, 60, 0.85);
}

/* ── Speaker portrait card ────────────────────────────── */
.speaker-card {
  text-decoration: none;
  display: block;
}
.speaker-card .portrait-name {
  transform: translateY(5px);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.speaker-card:hover .portrait-name {
  transform: translateY(0);
}

/* ── Scroll reveal ────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

[data-stagger-child] {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-stagger-child].revealed {
  opacity: 1;
  transform: none;
}

/* ── Button base ──────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: rgba(212, 169, 122, 1);
  color: #171210;
  padding: 0.9rem 2rem;
  text-decoration: none;
  transition:
    background 0.25s ease,
    transform 0.12s ease;
}
.btn-primary:hover {
  background: rgba(196, 149, 106, 1);
}
.btn-primary:active {
  transform: scale(0.97);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(237, 224, 208, 0.4);
  text-decoration: none;
  transition: color 0.25s ease;
  border: none;
  background: none;
  cursor: pointer;
}
.btn-ghost:hover {
  color: rgba(237, 224, 208, 0.8);
}

/* ── Keyframes ────────────────────────────────────────── */
@keyframes csSlideDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes stepFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ── Hide number input spinners ──────────────────────── */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

/* ── Form fields (checkout) ───────────────────────────── */
.inp {
  width: 100%;
  background: transparent;
  border-bottom: 1px solid rgba(154, 107, 60, 0.22);
  padding: 0.6rem 0;
  font-size: 0.8rem;
  color: rgba(237, 224, 208, 0.88);
  transition: border-color 0.25s;
}
.inp::placeholder {
  color: rgba(237, 224, 208, 0.18);
}
.inp:focus {
  outline: none;
  border-color: rgba(154, 107, 60, 0.55);
}

.lbl {
  display: block;
  font-size: 0.48rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(237, 224, 208, 0.45);
  margin-bottom: 0.4rem;
}

.radio-card {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(154, 107, 60, 0.14);
  cursor: pointer;
  transition: all 0.25s;
}
.radio-card:has(input:checked) {
  border-color: rgba(154, 107, 60, 0.45);
  background: rgba(154, 107, 60, 0.04);
}
.radio-card input {
  accent-color: #9a6b3c;
}

/* ── Hero image parallax base ─────────────────────────── */
.hero-img {
  will-change: transform;
}

/* ── Custom select ────────────────────────────────────── */
/* (driven by JS) */

/* ── Mobile menu ──────────────────────────────────────── */
#mobile-menu {
  transform: translateX(100%);
  transition: transform 0.48s cubic-bezier(0.16, 1, 0.3, 1);
  visibility: hidden;
}
#mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
@media (min-width: 768px) {
  #mobile-menu {
    display: none !important;
  }
}

.mobile-nav-link {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 9vw, 4.5rem);
  line-height: 1.05;
  color: rgba(237, 224, 208, 0.38);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.2s ease;
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: rgba(237, 224, 208, 0.9);
}

/* ── Thin divider line ────────────────────────────────── */
.rule {
  height: 1px;
  background: rgba(237, 224, 208, 0.07);
}

/* ── Pull quote ───────────────────────────────────────── */
.pull-quote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  font-style: italic;
  line-height: 1.25;
  color: rgba(237, 224, 208, 0.78);
}

.step-line {
  height: 1px;
  flex: 1;
  background: rgba(237, 224, 208, 0.07);
}
.step-line.done {
  background: rgba(154, 107, 60, 0.3);
}

/* ── WooCommerce container width ─────────────────────── */
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce,
.woocommerce-account .woocommerce {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
}

/* ── WooCommerce pages: always show nav ───────────────── */
.woocommerce-page #site-nav {
  background: rgba(23, 18, 16, 0.95);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(237, 224, 208, 0.06);
}

/* ── WooCommerce: base text ───────────────────────────── */
.woocommerce,
.woocommerce-page {
  color: rgba(237, 224, 208, 0.65);
}

/* ── Notices ──────────────────────────────────────────── */
.woocommerce .woocommerce-message,
.woocommerce-page .woocommerce-message {
  border-top: none !important;
  border-left: 3px solid rgba(154, 107, 60, 0.55) !important;
  background: rgba(32, 26, 20, 0.9) !important;
  color: rgba(237, 224, 208, 0.7) !important;
  font-size: 0.82rem;
  border-radius: 0 !important;
}
.woocommerce .woocommerce-error,
.woocommerce-page .woocommerce-error {
  border-top: none !important;
  border-left: 3px solid rgba(200, 60, 60, 0.55) !important;
  background: rgba(32, 26, 20, 0.9) !important;
  color: rgba(237, 224, 208, 0.7) !important;
  font-size: 0.82rem;
  border-radius: 0 !important;
  list-style: none;
  padding: 1rem 1.5rem !important;
}
.woocommerce .woocommerce-error li,
.woocommerce .woocommerce-message li {
  list-style: none;
}
.woocommerce .woocommerce-message .button {
  float: right;
}

/* ── Shop table (cart & order review) ────────────────── */
.woocommerce table.shop_table {
  border: none !important;
  border-collapse: collapse;
  width: 100%;
  color: rgba(237, 224, 208, 0.7);
}
.woocommerce table.shop_table thead th {
  font-size: 0.5rem !important;
  letter-spacing: 0.28em !important;
  text-transform: uppercase !important;
  color: rgba(154, 107, 60, 0.8) !important;
  font-weight: 400 !important;
  border: none !important;
  border-bottom: 1px solid rgba(237, 224, 208, 0.07) !important;
  padding: 0 0.5rem 1rem !important;
  background: transparent !important;
}
.woocommerce table.shop_table thead th:first-child {
  padding-left: 0 !important;
}
.woocommerce table.shop_table thead th:last-child {
  padding-right: 0 !important;
}
.woocommerce table.shop_table td {
  border: none !important;
  border-bottom: 1px solid rgba(237, 224, 208, 0.07) !important;
  padding: 1.4rem 0.5rem !important;
  vertical-align: middle !important;
  background: transparent !important;
  color: rgba(237, 224, 208, 0.65);
}
.woocommerce table.shop_table td:first-child {
  padding-left: 0 !important;
}
.woocommerce table.shop_table td:last-child {
  padding-right: 0 !important;
}

/* Thumbnail */
.woocommerce table.cart .product-thumbnail img {
  width: 60px !important;
  height: 60px !important;
  object-fit: cover !important;
  border: 1px solid rgba(237, 224, 208, 0.07) !important;
}

/* Product name */
.woocommerce table.cart td.product-name a {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-weight: 300 !important;
  font-size: 1.15rem !important;
  color: rgba(237, 224, 208, 0.88) !important;
  text-decoration: none;
}
.woocommerce table.cart td.product-name a:hover {
  color: rgba(212, 169, 122, 0.9) !important;
}
.woocommerce table.cart td.product-name .variation {
  font-size: 0.72rem;
  color: rgba(237, 224, 208, 0.32) !important;
  border: none !important;
  margin-top: 0.2rem;
}
.woocommerce table.cart td.product-name .variation dt,
.woocommerce table.cart td.product-name .variation dd {
  display: inline;
  margin: 0;
}

/* Prices */
.woocommerce table.cart td.product-price .amount,
.woocommerce table.cart td.product-subtotal .amount,
.woocommerce table.cart td.product-price,
.woocommerce table.cart td.product-subtotal {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-weight: 300 !important;
  font-size: 1.15rem !important;
  color: rgba(212, 169, 122, 0.82) !important;
}

/* Remove ×  */
.woocommerce table.cart td.product-remove a.remove {
  color: rgba(237, 224, 208, 0.2) !important;
  font-size: 1.4rem !important;
  background: transparent !important;
  width: auto !important;
  height: auto !important;
  line-height: 1 !important;
}
.woocommerce table.cart td.product-remove a.remove:hover {
  color: rgba(237, 224, 208, 0.6) !important;
  background: transparent !important;
}

/* Quantity input in cart table */
.woocommerce .quantity .qty {
  background: transparent !important;
  border: 1px solid rgba(237, 224, 208, 0.1) !important;
  border-radius: 0 !important;
  color: rgba(237, 224, 208, 0.88) !important;
  text-align: center;
  width: 58px !important;
  height: auto !important;
  padding: 0.4rem 0 !important;
  font-size: 0.85rem !important;
  box-shadow: none !important;
}

/* Cart actions row */
.woocommerce-cart-form .actions {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem !important;
  flex-wrap: wrap;
  gap: 0.75rem;
  border: none !important;
  background: transparent !important;
}
.woocommerce-cart-form .actions td {
  border: none !important;
  background: transparent !important;
  padding: 1.5rem 0 0 !important;
}

/* Coupon */
.woocommerce .coupon {
  display: flex !important;
  gap: 0.75rem;
  align-items: flex-end;
}
.woocommerce .coupon input[type="text"] {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(154, 107, 60, 0.22) !important;
  border-radius: 0 !important;
  color: rgba(237, 224, 208, 0.88) !important;
  padding: 0.55rem 0 !important;
  font-size: 0.8rem !important;
  height: auto !important;
  box-shadow: none !important;
}
.woocommerce .coupon input::placeholder {
  color: rgba(237, 224, 208, 0.18) !important;
}
.woocommerce .coupon input:focus {
  outline: none !important;
  border-color: rgba(154, 107, 60, 0.5) !important;
  box-shadow: none !important;
}

/* ── Buttons ──────────────────────────────────────────── */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .button {
  background: rgba(212, 169, 122, 1) !important;
  color: #171210 !important;
  font-size: 0.6rem !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  padding: 0.9rem 2rem !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  display: inline-block;
  transition: background 0.25s !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce .button:hover {
  background: rgba(196, 149, 106, 1) !important;
  color: #171210 !important;
}
.woocommerce a.button.disabled,
.woocommerce a.button:disabled {
  opacity: 0.4 !important;
  cursor: not-allowed !important;
}

/* ── Cart totals box ──────────────────────────────────── */
.woocommerce .cart_totals,
.woocommerce-page .cart_totals {
  float: none !important;
  width: 100% !important;
  max-width: 440px !important;
  margin-left: auto !important;
  margin-top: 3rem !important;
  background: #201a14 !important;
  border: 1px solid rgba(237, 224, 208, 0.07) !important;
  padding: 2rem !important;
  border-radius: 0 !important;
}
.woocommerce .cart_totals h2,
.woocommerce-page .cart_totals h2 {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-weight: 300 !important;
  font-size: 1.3rem !important;
  color: rgba(237, 224, 208, 0.88) !important;
  margin-bottom: 1.2rem !important;
  border-bottom: 1px solid rgba(237, 224, 208, 0.07);
  padding-bottom: 0.75rem;
}
.woocommerce .cart_totals table th {
  font-size: 0.5rem !important;
  letter-spacing: 0.26em !important;
  text-transform: uppercase !important;
  color: rgba(154, 107, 60, 0.8) !important;
  font-weight: 400 !important;
  border-top: none !important;
  border-bottom: 1px solid rgba(237, 224, 208, 0.07) !important;
  padding: 0.75rem 0 !important;
  background: transparent !important;
  text-align: left !important;
  vertical-align: middle !important;
}
.woocommerce .cart_totals table td {
  border-top: none !important;
  border-bottom: 1px solid rgba(237, 224, 208, 0.07) !important;
  padding: 0.75rem 0 !important;
  background: transparent !important;
  text-align: right !important;
  color: rgba(237, 224, 208, 0.6) !important;
  vertical-align: middle !important;
}
.woocommerce .cart_totals table .order-total th,
.woocommerce .cart_totals table .order-total td {
  border-bottom: none !important;
  padding-top: 1.25rem !important;
}
.woocommerce .cart_totals table .order-total td .amount,
.woocommerce .cart_totals table .order-total td strong {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 1.8rem !important;
  font-weight: 300 !important;
  color: rgba(212, 169, 122, 0.9) !important;
}
.woocommerce .cart_totals .wc-proceed-to-checkout {
  margin-top: 1.5rem !important;
  padding: 0 !important;
}
.woocommerce .cart_totals .wc-proceed-to-checkout a.checkout-button {
  display: block !important;
  text-align: center !important;
  width: 100% !important;
}
.woocommerce .cart_totals .amount {
  color: rgba(237, 224, 208, 0.6);
}

/* Cross-sells */
.cross-sells h2 {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-weight: 300 !important;
  font-size: 1.5rem !important;
  color: rgba(237, 224, 208, 0.88) !important;
  margin: 3rem 0 1rem !important;
}

/* ── Checkout form ────────────────────────────────────── */
.woocommerce-checkout h3 {
  /*
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-weight: 300 !important;
  font-size: 1.5rem !important;
  color: rgba(237, 224, 208, 0.88) !important;
  margin-bottom: 1.5rem !important;
  border-bottom: 1px solid rgba(237, 224, 208, 0.07);
  padding-bottom: 0.75rem;
  */
}
.woocommerce form .form-row label,
.woocommerce-checkout .form-row label {
  font-size: 0.48rem !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: rgba(237, 224, 208, 0.42) !important;
  margin-bottom: 0.4rem !important;
  font-weight: 400 !important;
}
.woocommerce form .form-row label .required {
  color: rgba(154, 107, 60, 0.7) !important;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row select {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(154, 107, 60, 0.22) !important;
  border-radius: 0 !important;
  color: rgba(237, 224, 208, 0.88) !important;
  padding: 0.6rem 0 !important;
  font-size: 0.82rem !important;
  height: auto !important;
  box-shadow: none !important;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce-checkout .form-row input.input-text:focus {
  outline: none !important;
  border-color: rgba(154, 107, 60, 0.52) !important;
  box-shadow: none !important;
}
.woocommerce form .form-row input.input-text::placeholder {
  color: rgba(237, 224, 208, 0.16) !important;
}

/* Select2 overrides */
.select2-container--default .select2-selection--single {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(154, 107, 60, 0.22) !important;
  border-radius: 0 !important;
  color: rgba(237, 224, 208, 0.88) !important;
  height: auto !important;
  padding: 0.55rem 0 !important;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: rgba(237, 224, 208, 0.88) !important;
  padding: 0 !important;
  line-height: 1.4 !important;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  top: 4px !important;
}
.select2-dropdown {
  background: #201a14 !important;
  border: 1px solid rgba(154, 107, 60, 0.22) !important;
  border-radius: 0 !important;
}
.select2-container--default .select2-results__option {
  color: rgba(237, 224, 208, 0.65) !important;
}
.select2-container--default .select2-results__option--highlighted {
  background: rgba(154, 107, 60, 0.2) !important;
}

/* Order review table */
.woocommerce-checkout-review-order-table tfoot tr th,
.woocommerce-checkout-review-order-table tfoot tr td {
  color: rgba(237, 224, 208, 0.6);
}
.woocommerce-checkout-review-order-table tfoot tr.order-total td .amount {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: rgba(212, 169, 122, 0.9) !important;
}

/* Payment box */
.woocommerce-checkout #payment {
  background: #201a14 !important;
  border-radius: 0 !important;
  border: 1px solid rgba(237, 224, 208, 0.07) !important;
}
.woocommerce-checkout #payment ul.payment_methods {
  border-bottom: 1px solid rgba(237, 224, 208, 0.07) !important;
  padding: 1.25rem 1.5rem !important;
}
.woocommerce-checkout #payment ul.payment_methods li label {
  font-size: 0.82rem !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: rgba(237, 224, 208, 0.72) !important;
}
.woocommerce-checkout #payment div.payment_box {
  background: rgba(23, 18, 16, 0.5) !important;
  color: rgba(237, 224, 208, 0.45) !important;
  font-size: 0.78rem !important;
}
.woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: rgba(23, 18, 16, 0.5) !important;
}
.woocommerce-checkout #payment .place-order {
  padding: 1.5rem !important;
  background: transparent !important;
  border-top: 1px solid rgba(237, 224, 208, 0.07) !important;
}
.woocommerce-checkout #payment #place_order {
  width: 100% !important;
  display: block !important;
  text-align: center !important;
}

/* ── Broad input override (catches woocommerce-form-coupon etc.) ── */
.woocommerce input[type="text"],
.woocommerce input[type="email"],
.woocommerce input[type="tel"],
.woocommerce input[type="password"],
.woocommerce input[type="search"],
.woocommerce textarea,
.woocommerce-page input[type="text"],
.woocommerce-page input[type="email"],
.woocommerce-page input[type="tel"],
.woocommerce-page input[type="password"] {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(154, 107, 60, 0.22) !important;
  color: rgba(237, 224, 208, 0.88) !important;
  padding: 0.55rem 0 !important;
  font-size: 0.82rem !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  -webkit-appearance: none !important;
  outline: none !important;
}
.woocommerce input[type="text"]::placeholder,
.woocommerce input[type="email"]::placeholder,
.woocommerce input[type="tel"]::placeholder,
.woocommerce-page input[type="text"]::placeholder {
  color: rgba(237, 224, 208, 0.18) !important;
}
.woocommerce input[type="text"]:focus,
.woocommerce input[type="email"]:focus,
.woocommerce-page input[type="text"]:focus {
  border-bottom-color: rgba(154, 107, 60, 0.52) !important;
  box-shadow: none !important;
  outline: none !important;
}

/* ── Broad button override ────────────────────────────── */
.woocommerce button[type="submit"],
.woocommerce input[type="submit"],
.woocommerce-page button[type="submit"],
.woocommerce-page input[type="submit"],
.woocommerce button[name="apply_coupon"],
.woocommerce button[name="update_cart"],
.woocommerce a.checkout-button,
.woocommerce .wc-proceed-to-checkout a {
  background: rgba(212, 169, 122, 1) !important;
  background-color: rgba(212, 169, 122, 1) !important;
  color: #171210 !important;
  font-size: 0.6rem !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  padding: 0.85rem 2rem !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  font-weight: 400 !important;
  cursor: pointer !important;
  display: inline-block;
  transition: background-color 0.25s !important;
}
.woocommerce button[type="submit"]:hover,
.woocommerce input[type="submit"]:hover,
.woocommerce button[name="apply_coupon"]:hover,
.woocommerce a.checkout-button:hover,
.woocommerce .wc-proceed-to-checkout a:hover {
  background: rgba(196, 149, 106, 1) !important;
  background-color: rgba(196, 149, 106, 1) !important;
  color: #171210 !important;
}

/* ── My Account ───────────────────────────────────────── */
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(237, 224, 208, 0.07);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li {
  border-bottom: 1px solid rgba(237, 224, 208, 0.07);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child {
  border-bottom: none;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(237, 224, 208, 0.42);
  text-decoration: none;
  transition: color 0.2s;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
  color: rgba(237, 224, 208, 0.85);
}

/* ── WooCommerce Blocks: float label fix ──────────────── */
.wc-block-components-form
  .wc-block-components-text-input
  input:-webkit-autofill
  + label,
.wc-block-components-form .wc-block-components-text-input.is-active label,
.wc-block-components-text-input input:-webkit-autofill + label,
.wc-block-components-text-input.is-active label {
  top: 0;
}

.wc-block-components-form .wc-block-components-text-input label,
.wc-block-components-text-input label {
  left: 0;
}

.wc-blocks-components-select .wc-blocks-components-select__select {
  background: rgb(23 18 16 / var(--tw-bg-opacity, 1));
  border: 1px solid rgba(154, 107, 60, 0.22) !important;
}

.wc-blocks-components-select .wc-blocks-components-select__container {
  background: none;
}

.wc-blocks-components-select .wc-blocks-components-select__select {
  color: rgba(237, 224, 208, 0.88) !important;
}

.wc-block-components-textarea {
  background-color: transparent;
  border: 1px solid rgba(154, 107, 60, 0.22) !important;
  color: rgba(237, 224, 208, 0.88) !important;
}

.wc-block-components-textarea:focus {
  background-color: transparent;
  border: 1px solid rgba(154, 107, 60, 0.4) !important;
  color: rgba(237, 224, 208, 0.88) !important;
}

.wc-block-components-textarea:focus-visible {
  outline: none;
}

/* ══════════════════════════════════════════════════════════
   My Account — login / register page
   ══════════════════════════════════════════════════════════ */

/* Two-column layout */
.woocommerce-account .col2-set {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 5rem !important;
  float: none !important;
  width: 100% !important;
}
@media (max-width: 720px) {
  .woocommerce-account .col2-set {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }
}
.woocommerce-account .col2-set .col-1,
.woocommerce-account .col2-set .col-2 {
  float: none !important;
  width: 100% !important;
}

/* Section headings */
.woocommerce-account h2 {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 300 !important;
  font-size: 2.2rem !important;
  color: rgba(237, 224, 208, 0.92) !important;
  margin-bottom: 2rem !important;
  line-height: 1.1 !important;
}

/* Divider under headings */
.woocommerce-account h2::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(237, 224, 208, 0.07);
  margin-top: 1rem;
}

/* Labels */
.woocommerce-account .woocommerce-form__label,
.woocommerce-account label {
  display: block !important;
  font-size: 0.48rem !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: rgba(154, 107, 60, 0.85) !important;
  margin-bottom: 0.5rem !important;
  font-family: Inter, system-ui, sans-serif !important;
}

/* Inputs */
.woocommerce-account input[type="text"],
.woocommerce-account input[type="email"],
.woocommerce-account input[type="password"] {
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(154, 107, 60, 0.22) !important;
  border-radius: 0 !important;
  padding: 0.65rem 0 !important;
  font-size: 0.85rem !important;
  color: rgba(237, 224, 208, 0.88) !important;
  box-shadow: none !important;
  outline: none !important;
  transition: border-color 0.25s !important;
}
.woocommerce-account input[type="text"]:focus,
.woocommerce-account input[type="email"]:focus,
.woocommerce-account input[type="password"]:focus {
  border-bottom-color: rgba(154, 107, 60, 0.55) !important;
  outline: none !important;
  box-shadow: none !important;
}
.woocommerce-account input[type="text"]::placeholder,
.woocommerce-account input[type="email"]::placeholder,
.woocommerce-account input[type="password"]::placeholder {
  color: rgba(237, 224, 208, 0.18) !important;
}

/* Form rows */
.woocommerce-account .form-row {
  margin-bottom: 1.5rem !important;
  padding: 0 !important;
}

/* Remember me checkbox row */
.woocommerce-account .woocommerce-form__label-for-checkbox {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.05em !important;
  text-transform: none !important;
  color: rgba(237, 224, 208, 0.38) !important;
  cursor: pointer !important;
}
.woocommerce-account input[type="checkbox"] {
  accent-color: rgba(154, 107, 60, 0.9) !important;
  width: 0.85rem !important;
  height: 0.85rem !important;
}

/* Buttons */
.woocommerce-account .woocommerce-button,
.woocommerce-account .button,
.woocommerce-account input[type="submit"] {
  background: rgba(212, 169, 122, 1) !important;
  color: #171210 !important;
  font-size: 0.6rem !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  padding: 0.9rem 2.5rem !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  cursor: pointer !important;
  transition: background 0.25s !important;
  font-family: Inter, system-ui, sans-serif !important;
  font-weight: 400 !important;
  display: inline-block !important;
}
.woocommerce-account .woocommerce-button:hover,
.woocommerce-account .button:hover,
.woocommerce-account input[type="submit"]:hover {
  background: rgba(196, 149, 106, 1) !important;
  color: #171210 !important;
}

/* Lost password link */
.woocommerce-account .woocommerce-LostPassword a,
.woocommerce-account .lost_password a {
  font-size: 0.6rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: rgba(237, 224, 208, 0.28) !important;
  text-decoration: none !important;
  transition: color 0.2s !important;
}
.woocommerce-account .woocommerce-LostPassword a:hover,
.woocommerce-account .lost_password a:hover {
  color: rgba(237, 224, 208, 0.65) !important;
}

/* Privacy / helper text */
.woocommerce-account .woocommerce-privacy-policy-text,
.woocommerce-account .woocommerce-form__label p,
.woocommerce-account p {
  font-size: 0.72rem !important;
  color: rgba(237, 224, 208, 0.32) !important;
  line-height: 1.8 !important;
  margin-bottom: 1.25rem !important;
}
.woocommerce-account .woocommerce-privacy-policy-text a,
.woocommerce-account p a {
  color: rgba(154, 107, 60, 0.7) !important;
  text-decoration: none !important;
}
.woocommerce-account .woocommerce-privacy-policy-text a:hover,
.woocommerce-account p a:hover {
  color: rgba(154, 107, 60, 1) !important;
}

/* Error / notice messages */
.woocommerce-account .woocommerce-error,
.woocommerce-account .woocommerce-message,
.woocommerce-account .woocommerce-info {
  background: rgba(23, 18, 16, 0.6) !important;
  border-left: 3px solid rgba(154, 107, 60, 0.6) !important;
  color: rgba(237, 224, 208, 0.75) !important;
  padding: 1rem 1.25rem !important;
  margin-bottom: 1.5rem !important;
  font-size: 0.78rem !important;
  list-style: none !important;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.woocommerce-account .woocommerce-error::before,
.woocommerce-account .woocommerce-error li::before {
  display: none !important;
}
