/* AzarBo — WordPress / WooCommerce bridges */
.custom-logo-link { display: inline-flex; }
.custom-logo { max-height: 48px; width: auto; }

.lx-pdp-buy form.cart {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.65rem;
  width: auto;
  flex: 0 1 auto;
  min-width: 0;
  margin: 0;
}
.lx-pdp-buy form.cart .quantity {
  margin: 0;
}
.lx-pdp-buy form.cart .single_add_to_cart_button,
.lx-pdp-buy form.cart .button {
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  min-height: 46px;
  height: 46px;
  border: 0;
  border-radius: 12px;
  background: var(--grad-gold);
  color: #fff;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  padding: 0 1.35rem;
}
.lx-pdp-buy .variations {
  width: 100%;
  margin-bottom: 0.5rem;
}
.lx-pdp-buy .variations select {
  width: 100%;
  min-height: 38px;
  border: 1px solid var(--line, #e5ded2);
  border-radius: 10px;
  font-family: inherit;
  padding: 0.35rem 0.75rem;
}

.woocommerce ul.products,
.lx-products.products {
  display: contents;
}

.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error {
  border-radius: 12px;
  border: 1px solid var(--line, #e5ded2);
  background: var(--ivory, #faf7f2);
}

/* Account — shell handles grid */
.woocommerce-account .woocommerce {
  display: block;
  max-width: 1100px;
  margin-inline: auto;
  padding: 1.25rem 1.25rem 3rem;
}
.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line, #e5ded2);
  border-radius: 14px;
  overflow: hidden;
}
.woocommerce-MyAccount-navigation a {
  display: block;
  padding: 0.85rem 1rem;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--line, #e5ded2);
  font-weight: 600;
  font-size: 0.9rem;
}
.woocommerce-MyAccount-navigation li:last-child a { border-bottom: 0; }
.woocommerce-MyAccount-navigation .is-active a,
.woocommerce-MyAccount-navigation a:hover {
  background: var(--ivory, #faf7f2);
  color: var(--saffron-deep, #C49212);
}
.woocommerce-MyAccount-content {
  background: #fff;
  border: 1px solid var(--line, #e5ded2);
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
}

.azarbo-account-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin: 1.25rem 0;
}
.azarbo-account-stats > div {
  background: var(--ivory, #faf7f2);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
}
.azarbo-account-stats strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
}
.azarbo-account-stats span {
  font-size: 0.78rem;
  color: var(--ink-muted, #6b645c);
}
.azarbo-account-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.azarbo-account-recent ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.azarbo-account-recent li {
  border-bottom: 1px dashed var(--line, #e5ded2);
  padding: 0.65rem 0;
}
.azarbo-account-recent a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  font-weight: 600;
}
.azarbo-account-recent small { color: var(--ink-muted, #6b645c); font-weight: 500; }

/* Login */
.azarbo-login-page {
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(201, 138, 42, 0.18), transparent 50%),
    linear-gradient(180deg, #1b1713 0%, #2a221c 100%);
  display: grid;
  place-items: center;
  padding: 1.5rem;
}
.azarbo-login-card {
  width: min(100%, 420px);
  background: #fff;
  border-radius: 18px;
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  text-align: center;
}
.azarbo-login-brand {
  display: inline-block;
  margin-bottom: 1rem;
  color: inherit;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.25rem;
}
.azarbo-login-brand img { max-height: 48px; width: auto; }
.azarbo-login h1 {
  font-size: 1.35rem;
  margin: 0 0 0.4rem;
}
.azarbo-login-lead {
  color: #6b645c;
  font-size: 0.9rem;
  margin: 0 0 1.25rem;
  line-height: 1.7;
}
.azarbo-login-form {
  display: grid;
  gap: 0.55rem;
  text-align: start;
}
.azarbo-login-form label {
  font-size: 0.8rem;
  font-weight: 700;
}
.azarbo-login-form input {
  min-height: 46px;
  border: 1px solid #e5ded2;
  border-radius: 12px;
  padding: 0.5rem 0.85rem;
  font-family: inherit;
  font-size: 1rem;
}
.azarbo-login-form .btn-gold,
.azarbo-login-form .btn-ghost {
  min-height: 46px;
  justify-content: center;
}
.azarbo-login-back {
  border: 0;
  background: transparent;
  color: #6b645c;
  font-family: inherit;
  cursor: pointer;
  padding: 0.35rem;
}
.azarbo-login-msg {
  min-height: 1.4em;
  font-size: 0.85rem;
  margin: 0.85rem 0 0;
}
.azarbo-login-msg.is-error { color: #b42318; }
.azarbo-login-note {
  margin: 1rem 0 0;
  font-size: 0.72rem;
  color: #8a8078;
}

@media (max-width: 900px) {
  .woocommerce-account .woocommerce { grid-template-columns: 1fr; }
  .azarbo-account-stats { grid-template-columns: repeat(2, 1fr); }
}

.lx-cart-count[hidden],
.lx-cart-count:empty,
.cart-count[hidden] {
  display: none !important;
}
.lx-price,
.lx-price strong,
.lx-price del,
.lx-amazing-price,
.lx-amazing-price strong,
.lx-amazing-price del,
.lx-pdp-price,
.woocommerce-Price-amount,
.woocommerce .price,
.amount {
  font-family: var(--font, 'Peyda', Tahoma, sans-serif) !important;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}
.lx-price strong,
.lx-price .current,
.lx-amazing-price strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}
.lx-price del,
.lx-price .old,
.lx-amazing-price del {
  font-size: 0.7rem;
  color: #9A9185;
  text-decoration: line-through;
}
.lx-pdp-price .lx-price .current {
  display: block;
  font-size: 1.22rem;
  font-weight: 800;
  text-decoration: none;
}
.lx-pdp-price .lx-price .old {
  display: inline-block;
  margin-top: 0.15rem;
  font-size: 0.82rem;
  color: var(--mist, #9a9185);
  text-decoration: line-through;
}

/* ---------- Card icon button — never show text ---------- */
.lx-card-go,
a.lx-card-go.add_to_cart_button {
  font-size: 0 !important;
  line-height: 0 !important;
  text-indent: 0 !important;
  overflow: hidden;
  color: #fff !important;
  width: var(--go, 2.75rem) !important;
  height: var(--go, 2.75rem) !important;
  min-width: var(--go, 2.75rem);
  min-height: var(--go, 2.75rem);
  padding: 0 !important;
  border-radius: 50% !important;
  display: grid !important;
  place-items: center !important;
}
.lx-card-go svg {
  width: 1.05rem !important;
  height: 1.05rem !important;
  display: block;
  pointer-events: none;
}
.lx-card-go.loading::after,
.lx-card-go.added::after {
  font-size: 0 !important;
}
.lx-card .added_to_cart {
  display: none !important;
}

/* ---------- PDP purchase form ---------- */
.lx-pdp-buy {
  display: flex !important;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.65rem;
  width: 100%;
}
.lx-pdp-buy form.cart {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.65rem;
  margin: 0;
  width: auto;
  min-width: 0;
}
.lx-pdp-buy .quantity,
.lx-pdp-buy .lx-qty {
  margin: 0;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: stretch;
  order: 1;
}
.lx-pdp-buy .quantity .qty,
.lx-pdp-buy input.qty,
.lx-pdp-buy .lx-qty input.qty {
  width: 2.75rem;
  min-height: 46px;
  height: 46px;
  text-align: center;
  border: 1px solid var(--line, #e5ded2);
  border-radius: 12px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  background: #fff;
  -moz-appearance: textfield;
}
.lx-pdp-buy .lx-qty {
  border: 1px solid var(--line, #e5ded2);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.lx-pdp-buy .lx-qty button {
  width: 36px;
  min-height: 46px;
  border: 0;
  background: transparent;
  font-size: 1.05rem;
  cursor: pointer;
  color: var(--ink, #1a1520);
}
.lx-pdp-buy .lx-qty input.qty {
  border: 0;
  border-radius: 0;
  width: 2.5rem;
  min-height: 46px;
  height: 46px;
}
.lx-pdp-buy .quantity .qty::-webkit-outer-spin-button,
.lx-pdp-buy .quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.lx-pdp-buy .stock,
.lx-pdp-buy .availability {
  display: none !important;
}
.lx-pdp-buy form.cart .single_add_to_cart_button,
.lx-pdp-buy form.cart .button,
.lx-pdp-buy .single_add_to_cart_button {
  flex: 0 0 auto;
  order: 2;
  width: auto;
  max-width: none;
  min-width: 0;
  min-height: 46px;
  height: 46px;
  border: 0;
  border-radius: 12px !important;
  background: var(--grad-gold);
  color: #fff !important;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0 1.35rem;
  box-shadow: var(--shadow-btn, 0 6px 18px rgba(107, 45, 139, 0.28));
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lx-pdp-buy .single_add_to_cart_button:hover {
  filter: brightness(1.06);
}
.lx-pdp-buy .lx-pdp-wish {
  order: 3;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line, #e5ded2);
  border-radius: 12px;
  background: #fff;
  color: var(--ink, #1a1520);
  display: grid;
  place-items: center;
  align-self: center;
}
.lx-pdp-buy .lx-pdp-wish svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 560px) {
  .lx-pdp-buy {
    flex-wrap: wrap;
  }
  .lx-pdp-buy form.cart {
    flex: 1 1 auto;
    width: 100%;
  }
  .lx-pdp-buy .single_add_to_cart_button {
    flex: 1 1 auto;
    order: 2;
  }
  .lx-pdp-buy .lx-pdp-wish {
    order: 3;
  }
}

/* ---------- Related products ---------- */
.lx-related .lx-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.lx-related .lx-products:has(.lx-card:nth-child(1):last-child) {
  grid-template-columns: repeat(1, minmax(0, 280px));
}
.lx-related .lx-products:has(.lx-card:nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.lx-related .lx-products:has(.lx-card:nth-child(3):last-child) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.lx-related .woocommerce,
.lx-related .products,
.lx-related .related {
  display: contents;
}
.lx-related h2:not(.lx-head h2) {
  display: none;
}
@media (max-width: 980px) {
  .lx-related .lx-products { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .lx-related .lx-products { grid-template-columns: 1fr; }
}

/* ---------- Cart lines ---------- */
.lx-cart-lines {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.lx-cart-line {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 0.85rem;
  padding: 0.85rem;
  border: 1px solid var(--line, #e5ded2);
  border-radius: 12px;
  background: #fff;
}
.lx-cart-line-media {
  border-radius: 10px;
  overflow: hidden;
  background: var(--ivory, #faf7f2);
  aspect-ratio: 1;
}
.lx-cart-line-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lx-cart-line-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 0;
}
.lx-cart-line-top {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: flex-start;
}
.lx-cart-line-top h3 {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.45;
}
.lx-cart-line-top h3 a {
  color: inherit;
  text-decoration: none;
}
.lx-cart-line-price {
  margin-top: 0.2rem;
  font-size: 0.82rem;
}
.lx-cart-remove {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--ink-muted, #6b645c);
  flex-shrink: 0;
}
.lx-cart-remove:hover { color: var(--barberry, #9b1b33); background: var(--barberry-soft, #f8e8ea); }
.lx-cart-remove svg { width: 16px; height: 16px; }
.lx-cart-line-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.lx-cart-line-total {
  font-size: 0.95rem;
  font-weight: 800;
}
.lx-cart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--line, #e5ded2);
}
.lx-cart-actions .coupon {
  display: flex;
  flex: 1;
  gap: 0.4rem;
  min-width: 220px;
}
.lx-cart-actions .coupon input {
  flex: 1;
  min-height: 42px;
  border: 1px solid var(--line, #e5ded2);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-family: inherit;
}
.lx-cart-totals-wrap .cart_totals > h2,
.lx-panel .cart_totals > h2 { margin: 0 0 1rem; font-size: 1.05rem; font-weight: 800; }
.lx-cart-totals-wrap .shop_table,
.woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
}
.lx-cart-totals-wrap .shop_table th,
.lx-cart-totals-wrap .shop_table td,
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  padding: 0.5rem 0;
  border: 0;
  font-size: 0.88rem;
}
.lx-cart-totals-wrap .shop_table th,
.woocommerce-checkout-review-order-table th {
  text-align: start;
  font-weight: 600;
  color: var(--ink-muted, #6b645c);
}
.lx-cart-totals-wrap .shop_table td,
.woocommerce-checkout-review-order-table td {
  text-align: end;
  font-weight: 700;
}
.lx-cart-totals-wrap .order-total th,
.lx-cart-totals-wrap .order-total td,
.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
  padding-top: 0.85rem;
  border-top: 1px solid var(--line, #e5ded2);
  font-size: 0.95rem;
  color: var(--ink, #1b1713);
}
.woocommerce-shipping-totals ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: end;
}
.wc-proceed-to-checkout { margin-top: 0.65rem; }
.wc-proceed-to-checkout .btn-gold,
.wc-proceed-to-checkout .checkout-button,
.wc-proceed-to-checkout a.checkout-button.button.alt {
  width: 100%;
  justify-content: center;
  display: inline-flex !important;
  align-items: center;
  min-height: 46px;
  border-radius: 999px !important;
  background: var(--grad-gold) !important;
  color: #fff !important;
  font-weight: 700 !important;
  text-decoration: none;
  border: 0 !important;
  box-shadow: none !important;
}
.woocommerce-message {
  max-width: 1100px;
  margin: 1rem auto 0;
  border-radius: 12px !important;
  border-color: var(--line, #e5ded2) !important;
  background: #fff !important;
}
.woocommerce-cart .cart-collaterals .woocommerce-shipping-calculator,
.woocommerce-cart .shipping-calculator-form {
  display: none !important;
}
.lx-cart-line-price .old { display: none; }
.lx-cart-line-total .woocommerce-Price-amount {
  font-size: 0.95rem;
  font-weight: 800;
}

/* ---------- Checkout fields ---------- */
.woocommerce-checkout .form-row {
  margin: 0 0 0.85rem;
  padding: 0;
}
.woocommerce-checkout .form-row label {
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  display: block;
}
.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .select2-selection,
.woocommerce-checkout .select2-container .select2-selection--single {
  min-height: 44px !important;
  height: 44px !important;
  border: 1px solid var(--line, #e5ded2) !important;
  border-radius: 8px !important;
  font-family: inherit !important;
  font-size: 0.9rem;
  padding: 0.55rem 0.8rem;
  background: #fff;
  box-shadow: none !important;
  outline: none !important;
}
.woocommerce-checkout .form-row textarea { min-height: 96px !important; height: auto !important; }
.woocommerce-checkout .select2-container {
  width: 100% !important;
}
.woocommerce-checkout .select2-container .select2-selection--single {
  display: flex !important;
  align-items: center;
  padding: 0 0.8rem !important;
}
.woocommerce-checkout .select2-container .select2-selection__rendered {
  line-height: 1.3 !important;
  padding: 0 !important;
  color: inherit !important;
}
.woocommerce-checkout .select2-container .select2-selection__arrow {
  height: 42px !important;
  top: 1px !important;
}
.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row textarea:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .select2-container--focus .select2-selection,
.woocommerce-checkout .select2-container--open .select2-selection,
.woocommerce-checkout .select2-container--focus .select2-selection--single,
.lx-checkout-coupon-form input:focus,
.lx-summary-coupon-row input:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: var(--line, #e5ded2) !important;
}
.woocommerce-checkout #payment {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin-top: 1rem;
}
.woocommerce-checkout #payment ul.payment_methods {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: 0.55rem;
}
.woocommerce-checkout #payment ul.payment_methods > li {
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line, #e5ded2);
  border-radius: 10px;
  background: #fff;
}
.woocommerce-checkout #payment div.form-row {
  padding: 0;
  margin-top: 0.85rem;
}
.woocommerce-checkout #place_order,
.woocommerce-checkout .button.alt {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--grad-gold) !important;
  color: #fff !important;
  font-family: inherit;
  font-weight: 800;
  font-size: 0.95rem;
}
.woocommerce-billing-fields > h3,
.woocommerce-shipping-fields > h3,
.woocommerce-additional-fields > h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 1rem;
}

/* Hide default WC empty-cart message duplication */
.cart-empty.woocommerce-info,
.woocommerce-info.wc-empty-cart-message { display: none !important; }

/* Flash sale currency after pseudo — avoid double */
.lx-amazing-price strong .lx-currency { font-size: 0.72em; margin-inline-start: 0.15rem; }
.lx-amazing-price strong::after { content: none !important; }

/* Quantity inputs in cart */
.lx-cart-line .quantity .qty {
  width: 3.5rem;
  min-height: 36px;
  text-align: center;
  border: 1px solid var(--line, #e5ded2);
  border-radius: 8px;
  font-family: inherit;
  font-weight: 700;
}

/* WooCommerce Blocks fallback polish */
.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout {
  max-width: 1100px;
  margin-inline: auto;
  padding: 1.5rem 1.25rem 3rem;
  font-family: var(--font, 'Peyda', Tahoma, sans-serif);
}
.wp-block-woocommerce-cart-order-summary-block,
.wp-block-woocommerce-checkout-order-summary-block {
  border: 1px solid var(--line, #e5ded2) !important;
  border-radius: 12px !important;
  padding: 1rem !important;
  background: #fff;
}
.wc-block-components-button {
  border-radius: 999px !important;
  font-family: inherit !important;
}
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button {
  background: var(--grad-gold) !important;
  color: #fff !important;
}

/* ---------- Qty +/- ---------- */
.lx-qty,
.quantity.lx-qty {
  display: inline-flex !important;
  align-items: center;
  border: 1px solid var(--line, #e5ded2);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
  margin: 0 !important;
  width: auto !important;
}
.lx-qty-btn {
  width: 34px;
  height: 42px;
  border: 0;
  background: transparent;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink, #1b1713);
  cursor: pointer;
  line-height: 1;
  font-family: inherit;
}
.lx-qty-btn:hover { background: rgba(184, 120, 26, 0.1); }
.lx-qty input.qty {
  width: 2.2rem !important;
  min-width: 2.2rem;
  min-height: 42px;
  border: 0 !important;
  border-radius: 0 !important;
  text-align: center;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  background: transparent;
  padding: 0 !important;
  -moz-appearance: textfield;
  box-shadow: none !important;
}
.lx-qty input.qty::-webkit-outer-spin-button,
.lx-qty input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.lx-pdp-buy {
  display: flex !important;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.65rem;
  width: 100%;
}
.lx-pdp-buy form.cart {
  display: flex;
  flex: 0 1 auto;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.65rem;
  margin: 0;
  width: auto;
  min-width: 0;
}
.lx-pdp-buy .single_add_to_cart_button {
  flex: 0 0 auto;
  order: 2;
  width: auto;
}
.lx-pdp-buy .lx-qty { order: 1; }
.lx-pdp-buy .lx-pdp-wish { order: 3; flex-shrink: 0; }

.lx-wish.is-on,
.lx-pdp-wish.is-on {
  color: var(--barberry, #9b1b33) !important;
  opacity: 1 !important;
  transform: none !important;
}
.lx-wish.is-on svg,
.lx-pdp-wish.is-on svg { fill: currentColor; }

.lx-review-form {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--line, #e5ded2);
}
.lx-review-form .comment-reply-title,
.lx-review-form #reply-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 1rem;
}
.lx-review-comment-form,
.lx-review-form form { display: grid; gap: 0.75rem; }
.lx-review-form .lx-field label,
.lx-review-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.lx-review-form input[type="text"],
.lx-review-form input[type="email"],
.lx-review-form select,
.lx-review-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line, #e5ded2);
  border-radius: 10px;
  padding: 0.55rem 0.8rem;
  font-family: inherit;
  font-size: 0.9rem;
  background: #fff;
}
.lx-review-form textarea { min-height: 120px; resize: vertical; }
.lx-review-form .btn-gold,
.lx-review-form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.5rem 1.4rem;
  border: 0;
  border-radius: 999px;
  background: var(--grad-gold) !important;
  color: #fff !important;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
}
.lx-reviews-empty { color: var(--ink-muted, #6b645c); margin: 0; }

.lx-cart-summary h2 {
  text-align: start;
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 800;
}
.lx-cart-summary .shop_table,
.lx-cart-summary .woocommerce-shipping-destination,
.lx-cart-summary .shipping-calculator-button,
.lx-cart-summary .woocommerce-shipping-totals { display: none !important; }

.woocommerce-form-coupon-toggle,
.woocommerce-form-coupon-toggle .woocommerce-info {
  display: none !important;
}
.lx-checkout-layout #place_order {
  background: var(--grad-gold) !important;
  border-radius: 999px !important;
}

.lx-filters .lx-filter-group label em {
  margin-inline-start: auto;
  font-size: 0.75rem;
  color: var(--ink-muted, #6b645c);
  font-style: normal;
}
.lx-filter-submit {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
  min-height: 42px;
}
.lx-filter-reset {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  margin-top: 0.85rem;
  min-height: 40px;
}
.lx-filter-reset[hidden] { display: none !important; }
.lx-price-filter { display: grid; gap: 0.65rem; }
.lx-price-filter-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.lx-price-filter-inputs label {
  display: grid !important;
  gap: 0.25rem;
  padding: 0 !important;
  font-size: 0.75rem;
  color: var(--ink-muted, #6b645c);
}
.lx-price-filter-inputs input {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--line, #e5ded2);
  border-radius: 8px;
  padding: 0.4rem 0.65rem;
  font: inherit;
  font-size: 0.84rem;
  background: #fff;
  box-shadow: none;
  outline: none;
}
.lx-price-filter-inputs input:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--line, #e5ded2);
}
.lx-price-range {
  width: 100%;
  accent-color: var(--saffron-deep, #C49212);
}
.lx-dual-range {
  position: relative;
  height: 28px;
  margin: 0.35rem 0 0.15rem;
  direction: ltr;
}
.lx-dual-range-track {
  position: absolute;
  inset-inline: 0;
  top: 50%;
  height: 4px;
  margin-top: -2px;
  border-radius: 999px;
  background: var(--line, #e5ded2);
  pointer-events: none;
}
.lx-dual-range-track::before {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline-start: var(--from, 0%);
  inset-inline-end: calc(100% - var(--to, 100%));
  background: linear-gradient(90deg, var(--saffron-deep), var(--saffron));
  border-radius: inherit;
}
.lx-dual-range-input {
  position: absolute;
  inset-inline: 0;
  top: 0;
  width: 100%;
  height: 28px;
  margin: 0;
  background: transparent;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}
.lx-dual-range-input::-webkit-slider-runnable-track {
  height: 4px;
  background: transparent;
}
.lx-dual-range-input::-moz-range-track {
  height: 4px;
  background: transparent;
}
.lx-dual-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  margin-top: -7px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: var(--saffron-deep, #C49212);
  box-shadow: 0 2px 8px rgba(27, 23, 19, 0.2);
  pointer-events: auto;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.lx-dual-range-input::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: var(--saffron-deep, #C49212);
  box-shadow: 0 2px 8px rgba(27, 23, 19, 0.2);
  pointer-events: auto;
  cursor: pointer;
}
.lx-dual-range-input.is-max { z-index: 3; }
.lx-shop-main.is-loading {
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.15s;
}
.lx-shop-empty .btn-gold {
  width: auto !important;
  min-width: 9rem;
  margin-inline: auto;
  display: inline-flex;
}
.lx-shop-toolbar {
  background: #fff;
  border: 1px solid var(--line, #e5ded2);
  border-radius: 14px;
  padding: 0.65rem 0.9rem;
  margin-bottom: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.lx-shop-count,
.lx-shop-toolbar .woocommerce-result-count {
  margin: 0;
  font-size: 0.86rem;
  color: var(--ink-muted, #6b645c);
  font-weight: 600;
}
.lx-shop-sort .woocommerce-ordering { margin: 0; }
.lx-shop-sort select.orderby {
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  min-height: 40px;
  padding: 0.4rem 2rem 0.4rem 0.9rem;
  border: 1px solid var(--line, #e5ded2);
  border-radius: 999px;
  background: var(--ivory, #faf7f2);
  color: var(--ink, #1b1713);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b645c' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 0.85rem center;
  cursor: pointer;
}
.lx-shop-empty {
  text-align: center;
  padding: 2rem 1.25rem;
}
.lx-shop-empty p {
  margin: 0 0 1rem;
}
.lx-shop-empty .btn-gold,
.lx-panel.lx-shop-empty .btn-gold {
  width: auto !important;
  min-width: 9rem;
  max-width: max-content;
  margin-inline: auto;
  display: inline-flex;
  justify-content: center;
}

/* Parent must NOT be 2-col — shell owns the grid */
.woocommerce-account .woocommerce {
  display: block !important;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.75rem 1.25rem 3.5rem;
}
.woocommerce-MyAccount-navigation {
  background: #fff;
  border: 1px solid var(--line, #e5ded2);
  border-radius: 14px;
  overflow: hidden;
  height: fit-content;
  position: sticky;
  top: 5.5rem;
}
.woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; }
.woocommerce-MyAccount-navigation a {
  display: block;
  padding: 0.9rem 1.1rem;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--line, #e5ded2);
  font-weight: 600;
  font-size: 0.9rem;
}
.woocommerce-MyAccount-navigation li:last-child a { border-bottom: 0; }
.woocommerce-MyAccount-navigation .is-active a,
.woocommerce-MyAccount-navigation a:hover {
  background: var(--ivory, #faf7f2);
  color: var(--saffron-deep, #C49212);
}
.woocommerce-MyAccount-content {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  min-width: 0;
}
.azarbo-account-dash,
.azarbo-wishlist {
  background: #fff;
  border: 1px solid var(--line, #e5ded2);
  border-radius: 16px;
  padding: 1.35rem 1.35rem 1.5rem;
  box-shadow: 0 10px 28px rgba(27, 23, 19, 0.04);
}
.azarbo-account-hero { margin-bottom: 1.15rem; }
.azarbo-account-hero h2 {
  margin: 0.15rem 0 0;
  font-size: 1.45rem;
  font-weight: 800;
}
.azarbo-account-meta {
  margin: 0.35rem 0 0;
  color: var(--ink-muted, #6b645c);
  font-size: 0.88rem;
}
.azarbo-account-stats {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
  width: 100%;
}
.azarbo-stat {
  background: var(--ivory, #faf7f2);
  border-radius: 12px;
  padding: 1rem 0.75rem;
  text-align: center;
  min-width: 0;
}
.azarbo-stat strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.2;
  word-break: break-word;
}
.azarbo-stat span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: var(--ink-muted, #6b645c);
  font-weight: 600;
}
.azarbo-account-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.35rem;
}
.azarbo-account-recent h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 800;
}
.azarbo-account-recent ul { list-style: none; margin: 0; padding: 0; }
.azarbo-account-recent li {
  border-bottom: 1px dashed var(--line, #e5ded2);
  padding: 0.7rem 0;
}
.azarbo-account-recent a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
  font-weight: 600;
}
.azarbo-wishlist-empty { text-align: center; padding: 2rem 1rem; }

@media (max-width: 900px) {
  .woocommerce-account .woocommerce { display: block !important; }
  .azarbo-account-shell { grid-template-columns: 1fr !important; }
  .woocommerce-MyAccount-navigation { position: static; }
  .azarbo-account-stats { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .lx-pdp-buy { flex-wrap: wrap; gap: 0.55rem; }
  .lx-pdp-buy form.cart { width: 100%; flex: 1 1 auto; }
  .lx-pdp-buy .single_add_to_cart_button { flex: 1 1 auto; order: 2; }
}


/* Hide WC default star picker & cookies when we use select */
.lx-review-form p.stars,
.lx-review-form .comment-form-rating > p.stars,
.lx-review-form .comment-form-cookies-consent {
  display: none !important;
}
.lx-review-form .comment-form-rating select#rating {
  display: block !important;
  max-width: 220px;
}
.lx-reviews .woocommerce-noreviews { display: none; }


/* Force gold checkout CTA (override WC purple .button.alt) */
a.checkout-button.button.alt,
a.checkout-button.button.alt.wc-forward,
.wc-proceed-to-checkout .button.alt,
.woocommerce-cart .wc-proceed-to-checkout a.button {
  background: var(--grad-gold) !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 999px !important;
  box-shadow: none !important;
  min-height: 46px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.lx-cart-actions .btn-ghost,
.lx-cart-actions button {
  min-height: 42px !important;
  border-radius: 999px !important;
  font-family: inherit !important;
}
.lx-cart-line .lx-qty {
  transform: scale(0.92);
  transform-origin: right center;
}
.lx-cart-line .lx-qty-btn { height: 36px; width: 30px; }
.lx-cart-line .lx-qty input.qty { min-height: 36px; }


/* Trust strip polish */
.lx-trust {
  border-block: 1px solid var(--line, #e5ded2);
  background: #fff;
  padding: 0.85rem 0;
}
.lx-trust-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  align-items: stretch;
}
.lx-trust-item {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  padding: 0.75rem 1rem !important;
  border-inline-start: 1px solid var(--line, #e5ded2);
}
.lx-trust-item:first-child { border-inline-start: 0 !important; }
.lx-trust-item svg {
  width: 22px !important;
  height: 22px !important;
  color: var(--saffron, #E8B820) !important;
  flex-shrink: 0;
  margin-top: 0 !important;
}
.lx-trust-item strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 800;
}
.lx-trust-item span {
  display: block;
  font-size: 0.72rem;
  color: var(--ink-muted, #6b645c);
}
@media (max-width: 900px) {
  .lx-trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .lx-trust-item:nth-child(2n+1) { border-inline-start: 0 !important; }
}

/* Card add button stays gold when added */
.lx-card-go.added,
.lx-card-go.is-added,
a.lx-card-go.add_to_cart_button.added,
a.lx-card-go.add_to_cart_button.is-added {
  background: var(--grad-gold) !important;
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(184, 120, 26, 0.35) !important;
}
.lx-card-go.added svg,
.lx-card-go.is-added svg { stroke: #fff; }

/* Cart layout — summary column wide enough for Persian prices */
.lx-cart-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 24rem) !important;
  gap: 1.25rem !important;
  align-items: start !important;
}
.lx-cart-totals-wrap,
.lx-cart-summary,
.woocommerce-cart .cart-collaterals,
.woocommerce-page .cart-collaterals,
.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals,
.lx-cart-totals-wrap .cart_totals {
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0;
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .lx-cart-layout { grid-template-columns: 1fr !important; }
}

.lx-cart-summary > h2,
.lx-cart-totals-wrap .cart_totals > h2 {
  text-align: start !important;
  margin: 0 0 1rem !important;
}

.lx-summary-coupon {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0 0 1.1rem;
  padding: 0.75rem;
  background: var(--ivory, #faf7f2);
  border: 1px solid var(--line, #e5ded2);
  border-radius: 12px;
}
.lx-summary-coupon label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-muted, #6b645c);
}
.lx-summary-coupon-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.45rem;
  align-items: stretch;
}
.lx-summary-coupon-row input.input-text,
.lx-summary-coupon input[type="text"] {
  flex: 1 1 auto;
  width: auto !important;
  min-width: 0 !important;
  height: 42px;
  border: 1px solid var(--line, #e5ded2) !important;
  border-radius: 10px !important;
  padding: 0 0.75rem !important;
  background: #fff !important;
  font: inherit;
  box-shadow: none !important;
}
.lx-coupon-apply {
  flex: 0 0 auto;
  height: 42px;
  padding: 0 1.1rem;
  border: 0;
  border-radius: 10px;
  background: var(--ink, #1b1713);
  color: #fff;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.lx-coupon-apply:hover { opacity: 0.9; }

.lx-summary-rows {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.lx-cart-summary .lx-summary-row {
  display: flex !important;
  flex-wrap: nowrap !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 0.75rem !important;
  width: 100%;
  padding: 0.45rem 0 !important;
  font-size: 0.86rem;
  color: var(--ink-muted, #6b645c);
}
.lx-cart-summary .lx-summary-k {
  flex: 0 0 auto;
  white-space: nowrap;
}
.lx-cart-summary .lx-summary-v,
.lx-cart-summary .lx-summary-v .woocommerce-Price-amount,
.lx-cart-summary .lx-summary-v bdi,
.lx-cart-summary .lx-summary-v .amount {
  display: inline !important;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  font-weight: 700;
  color: var(--ink, #1b1713);
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  max-width: none !important;
}
.lx-cart-summary .lx-summary-row.is-total {
  margin-top: 0.35rem;
  padding-top: 0.85rem !important;
  border-top: 1px solid var(--line, #e5ded2);
  color: var(--ink, #1b1713);
}
.lx-cart-summary .lx-summary-row.is-total .lx-summary-k {
  font-weight: 700;
  color: var(--ink, #1b1713);
}
.lx-cart-summary .lx-summary-row.is-total .lx-summary-v,
.lx-cart-summary .lx-summary-row.is-total .woocommerce-Price-amount {
  font-size: 1.05rem;
  font-weight: 800;
}

.lx-summary-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.9rem;
  width: 100%;
}
.lx-summary-actions .wc-proceed-to-checkout {
  width: 100%;
  margin: 0;
}
.lx-summary-actions .btn-gold,
.lx-summary-actions .btn-ghost,
.lx-summary-actions a.checkout-button,
.lx-panel .lx-summary-actions .btn-gold,
.lx-panel .lx-summary-actions .btn-ghost {
  width: 100% !important;
  margin: 0 !important;
  min-height: 46px;
  padding-inline: 0.55rem;
  font-size: 0.8rem;
  white-space: nowrap;
}

/* Checkout coupon above order summary */
.lx-checkout-coupon {
  margin: 0 0 1.1rem;
  max-width: none;
}
.lx-checkout-aside .lx-checkout-coupon-toggle,
.lx-checkout-coupon-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  background: var(--ivory, #faf7f2);
  border: 1px solid var(--line, #e5ded2);
  border-radius: 12px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink, #1b1713);
  cursor: pointer;
  text-align: start;
}
.lx-checkout-coupon-toggle svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--saffron-deep, #C49212);
}
.lx-checkout-coupon-form {
  display: none;
  margin-top: 0.65rem;
  gap: 0.5rem;
}
.lx-checkout-coupon-form.is-open {
  display: flex !important;
  flex-wrap: wrap;
}
.lx-checkout-coupon-form input {
  flex: 1;
  min-width: 160px;
  min-height: 44px;
  border: 1px solid var(--line, #e5ded2);
  border-radius: 8px;
  padding: 0.45rem 0.9rem;
  font: inherit;
  box-shadow: none;
  outline: none;
}
.lx-checkout-coupon-form .lx-coupon-apply {
  min-height: 44px;
  height: 44px;
  border-radius: 8px;
  padding-inline: 1.1rem;
}
.woocommerce-form-coupon-toggle,
.woocommerce-checkout > .woocommerce-form-coupon-toggle,
form.checkout + .woocommerce-form-coupon,
.woocommerce-shipping-fields,
#ship-to-different-address {
  display: none !important;
}

/* Checkout — billing fields single column (no side-by-side name/notes) */
.lx-checkout-layout.is-single {
  display: grid !important;
  grid-template-columns: minmax(0, 1.15fr) minmax(22rem, 24rem) !important;
  gap: 1.25rem !important;
  max-width: 1100px;
  margin-inline: auto;
  align-items: start;
}
@media (max-width: 900px) {
  .lx-checkout-layout.is-single {
    grid-template-columns: 1fr !important;
    max-width: 720px;
  }
}
.lx-checkout-fields .col2-set,
.lx-checkout-fields .col-1,
.lx-checkout-fields .col-2 {
  width: 100% !important;
  float: none !important;
  clear: both !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  display: block !important;
}
.woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 0.85rem;
}
.woocommerce-billing-fields__field-wrapper .form-row,
.woocommerce-shipping-fields__field-wrapper .form-row,
.lx-checkout-fields .form-row {
  width: 100% !important;
  float: none !important;
  clear: none !important;
  margin: 0 !important;
}
.woocommerce-billing-fields__field-wrapper .form-row-wide,
.woocommerce-shipping-fields__field-wrapper .form-row-wide {
  grid-column: 1 / -1;
}
.woocommerce-billing-fields__field-wrapper .form-row-first,
.woocommerce-billing-fields__field-wrapper .form-row-last,
.woocommerce-shipping-fields__field-wrapper .form-row-first,
.woocommerce-shipping-fields__field-wrapper .form-row-last {
  width: 100% !important;
  float: none !important;
  clear: none !important;
  margin: 0 !important;
  display: block !important;
}
@media (max-width: 560px) {
  .woocommerce-billing-fields__field-wrapper,
  .woocommerce-shipping-fields__field-wrapper {
    grid-template-columns: 1fr;
  }
}
#billing_country_field { display: none !important; }

/* Account shell — full width side-by-side */
.azarbo-account-shell {
  display: grid !important;
  grid-template-columns: 16.5rem minmax(0, 1fr) !important;
  gap: 1.35rem !important;
  width: 100% !important;
  align-items: start !important;
}
.azarbo-account-nav {
  background: #fff;
  border: 1px solid var(--line, #e5ded2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(27, 23, 19, 0.04);
  position: sticky;
  top: 5.5rem;
  height: fit-content;
}
.azarbo-account-nav-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 1rem;
  background: linear-gradient(145deg, #f7f1e6, #efe4d2);
  border-bottom: 1px solid var(--line, #e5ded2);
}
.azarbo-account-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--grad-gold);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.azarbo-account-nav-head strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.3;
}
.azarbo-account-nav-head small {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.72rem;
  color: var(--ink-muted, #6b645c);
}
.azarbo-account-nav ul {
  list-style: none;
  margin: 0;
  padding: 0.4rem;
  background: transparent;
  border: 0;
}
.azarbo-account-nav li { margin: 0; }
.azarbo-account-nav a {
  display: flex !important;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 0.8rem !important;
  border-radius: 10px;
  border: 0 !important;
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.15s, color 0.15s;
}
.azarbo-account-nav a:hover {
  background: var(--ivory, #faf7f2);
  color: var(--saffron-deep, #C49212);
}
.azarbo-account-nav .is-active a,
.azarbo-account-nav a[aria-current="page"] {
  background: linear-gradient(145deg, rgba(107, 45, 139, 0.12), rgba(232, 184, 32, 0.1));
  color: var(--saffron-deep, #4E1F68);
  box-shadow: inset 0 0 0 1px rgba(107, 45, 139, 0.2);
}
.azarbo-nav-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--ivory, #faf7f2);
  color: var(--saffron-deep, #C49212);
  flex-shrink: 0;
}
.azarbo-nav-icon svg { width: 16px; height: 16px; }
.azarbo-account-nav .is-active .azarbo-nav-icon,
.azarbo-account-nav a[aria-current="page"] .azarbo-nav-icon {
  background: var(--grad-gold);
  color: #fff;
}
.azarbo-account-nav .woocommerce-MyAccount-navigation-link--customer-logout a {
  color: var(--barberry, #D32F45);
}
.azarbo-account-shell .woocommerce-MyAccount-navigation {
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  position: sticky;
  top: 5.5rem;
  height: fit-content;
  padding: 0;
}
.azarbo-account-shell .woocommerce-MyAccount-content {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  min-width: 0 !important;
}
.azarbo-account-dash,
.azarbo-wishlist {
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid var(--line, #e5ded2);
  border-radius: 16px;
  padding: 1.35rem 1.35rem 1.5rem;
  box-shadow: 0 10px 28px rgba(27, 23, 19, 0.04);
}
.azarbo-account-stats {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0.65rem !important;
}
.azarbo-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  text-decoration: none;
  color: inherit;
  background: var(--ivory, #faf7f2);
  border-radius: 12px;
  padding: 1rem 0.65rem;
  text-align: center;
  min-width: 0;
  transition: transform 0.15s, box-shadow 0.15s;
}
a.azarbo-stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(27, 23, 19, 0.06);
}
.azarbo-stat-ico {
  width: 32px;
  height: 32px;
  margin-bottom: 0.2rem;
  color: var(--saffron-deep, #C49212);
}
.azarbo-stat-ico svg { width: 100%; height: 100%; }
.azarbo-stat strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
}
.azarbo-stat span:last-child {
  display: block;
  font-size: 0.72rem !important;
  color: var(--ink-muted, #6b645c);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.azarbo-account-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 1rem;
  margin-top: 0.25rem;
}
.azarbo-account-card {
  background: var(--ivory, #faf7f2);
  border: 1px solid var(--line, #e5ded2);
  border-radius: 14px;
  padding: 1rem 1.05rem 1.1rem;
}
.azarbo-account-card > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.azarbo-account-card > header h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
}
.azarbo-account-card > header a {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--saffron-deep, #C49212);
  text-decoration: none;
}
.azarbo-account-orders {
  list-style: none;
  margin: 0;
  padding: 0;
}
.azarbo-account-orders li + li {
  border-top: 1px dashed var(--line, #e5ded2);
}
.azarbo-account-orders a {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "id status" "date total";
  gap: 0.15rem 0.75rem;
  padding: 0.7rem 0;
  text-decoration: none;
  color: inherit;
}
.azarbo-order-id { grid-area: id; font-weight: 800; font-size: 0.88rem; }
.azarbo-account-orders small { grid-area: date; color: var(--ink-muted, #6b645c); font-size: 0.75rem; }
.azarbo-account-orders strong { grid-area: total; justify-self: end; font-size: 0.86rem; }
.azarbo-order-status {
  grid-area: status;
  justify-self: end;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: rgba(184, 120, 26, 0.12);
  color: var(--saffron-deep, #C49212);
}
.azarbo-account-empty {
  text-align: center;
  padding: 1.25rem 0.5rem;
}
.azarbo-account-empty p {
  margin: 0 0 0.85rem;
  color: var(--ink-muted, #6b645c);
  font-size: 0.88rem;
}
.azarbo-account-perks ul {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.azarbo-account-perks li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}
.azarbo-account-perks li > span {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  color: var(--saffron-deep, #C49212);
}
.azarbo-account-perks li svg { width: 100%; height: 100%; }
.azarbo-account-perks strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 800;
}
.azarbo-account-perks small {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.74rem;
  color: var(--ink-muted, #6b645c);
  line-height: 1.45;
}
.azarbo-account-perks .btn-ghost {
  width: 100%;
  justify-content: center;
}

.azarbo-wish-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.azarbo-wish-list li {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.75rem;
  background: var(--ivory, #faf7f2);
  border: 1px solid var(--line, #e5ded2);
  border-radius: 14px;
}
.azarbo-wish-thumb {
  display: block;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.azarbo-wish-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.azarbo-wish-body a {
  text-decoration: none;
  color: inherit;
}
.azarbo-wish-body strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.45;
}
.azarbo-wish-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 0.55rem;
  margin-top: 0.3rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--saffron-deep, #C49212);
}
.azarbo-wish-price .old {
  color: var(--ink-muted, #6b645c);
  font-weight: 500;
  font-size: 0.75rem;
  text-decoration: line-through;
}
.azarbo-wish-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.azarbo-wish-actions .btn-gold {
  min-height: 40px;
  padding: 0.4rem 0.95rem;
  font-size: 0.8rem;
  width: auto;
  margin: 0;
}
.azarbo-wish-actions .lx-wish {
  position: static;
  opacity: 1;
  transform: none;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  box-shadow: none;
  border: 1px solid var(--line, #e5ded2);
  background: #fff;
  color: var(--barberry, #9b1d3a);
}

.azarbo-address-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.15rem;
  background: var(--ivory, #faf7f2);
  border: 1px solid var(--line, #e5ded2);
  border-radius: 14px;
}
.azarbo-address-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #fff;
  color: var(--saffron-deep, #C49212);
  display: grid;
  place-items: center;
}
.azarbo-address-icon svg { width: 22px; height: 22px; }
.azarbo-address-body h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 800;
}
.azarbo-address-body p,
.azarbo-address-body address {
  margin: 0;
  font-style: normal;
  color: var(--ink-muted, #6b645c);
  font-size: 0.86rem;
  line-height: 1.7;
}
.azarbo-address-card .btn-gold,
.azarbo-address-card .btn-ghost {
  width: auto;
  margin: 0;
  white-space: nowrap;
}

.azarbo-account-form .form-row {
  margin: 0 0 0.9rem;
  width: 100% !important;
  float: none !important;
}
.azarbo-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.azarbo-form-grid .form-row { margin-bottom: 0.9rem; }
.azarbo-account-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.azarbo-account-form .required { color: #b42318; }
.azarbo-account-form input.input-text,
.azarbo-account-form textarea,
.azarbo-account-form select,
.azarbo-account-form .select2-selection {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line, #e5ded2) !important;
  border-radius: 10px !important;
  padding: 0.55rem 0.9rem;
  font: inherit;
  background: #fff;
  box-shadow: none !important;
}
.azarbo-account-form small {
  display: block;
  margin-top: 0.35rem;
  color: var(--ink-muted, #6b645c);
  font-size: 0.75rem;
}
.azarbo-password-box {
  margin: 0.2rem 0 1.15rem;
  padding: 0.9rem 1rem 0.35rem;
  background: var(--ivory, #faf7f2);
  border: 1px solid var(--line, #e5ded2);
  border-radius: 12px;
}
.azarbo-password-box summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 0.88rem;
  margin-bottom: 0.65rem;
  list-style: none;
}
.azarbo-password-box summary::-webkit-details-marker { display: none; }
.azarbo-form-submit { margin: 0.15rem 0 0; }
.azarbo-form-submit .btn-gold {
  min-width: 12rem;
  min-height: 46px;
  width: auto;
}
.azarbo-account-form .show-password-input,
.azarbo-account-form .display-password { display: none !important; }
.azarbo-account-empty .btn-gold {
  width: auto;
  min-width: 10rem;
}
.azarbo-account-form .woocommerce-address-fields__field-wrapper .form-row-first,
.azarbo-account-form .woocommerce-address-fields__field-wrapper .form-row-last {
  width: 100% !important;
  float: none !important;
}

@media (max-width: 900px) {
  .azarbo-account-shell { grid-template-columns: 1fr !important; }
  .azarbo-account-shell .woocommerce-MyAccount-navigation,
  .azarbo-account-nav { position: static; }
  .azarbo-account-stats { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .azarbo-account-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .azarbo-form-grid { grid-template-columns: 1fr; }
  .azarbo-address-card {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .azarbo-address-card a.btn-gold,
  .azarbo-address-card a.btn-ghost {
    grid-column: 1 / -1;
    width: 100%;
  }
  .azarbo-wish-list li {
    grid-template-columns: 4.5rem minmax(0, 1fr);
  }
  .azarbo-wish-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }
}

/* Luxury star picker */
.lx-stars-pick {
  display: inline-flex;
  gap: 0.2rem;
  direction: ltr;
  margin: 0.35rem 0 0.5rem;
}
.lx-stars-pick button {
  border: 0;
  background: transparent;
  font-size: 1.65rem;
  line-height: 1;
  color: #d5cfc4;
  cursor: pointer;
  padding: 0.1rem;
  transition: color 0.15s, transform 0.15s;
}
.lx-stars-pick button.is-on,
.lx-stars-pick button:hover {
  color: var(--saffron);
}
.lx-stars-pick button:hover { transform: scale(1.08); }
.lx-review-form {
  background: #fff;
  border: 1px solid var(--line, #e5ded2);
  border-radius: 14px;
  padding: 1.15rem 1.2rem 1.25rem;
  margin-top: 1.25rem;
}
.lx-review-form .comment-form-rating select#rating,
.lx-review-form #rating,
.lx-review-form select#rating,
.lx-review-form p.stars,
.lx-review-form .comment-form-rating > p.stars,
.lx-review-form .comment-form-cookies-consent {
  display: none !important;
}
.lx-review-form .form-submit { margin: 0.35rem 0 0; }
.lx-review-form .btn-gold,
.lx-review-form input[type="submit"] {
  border-radius: 999px !important;
  min-height: 44px;
  padding-inline: 1.35rem;
}
.lx-review-form .lx-field label,
.lx-review-form label {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.lx-review-form textarea,
.lx-review-form input[type="text"],
.lx-review-form input[type="email"] {
  width: 100%;
  border: 1px solid var(--line, #e5ded2);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  background: #fff;
  font: inherit;
  min-height: 48px;
}
.lx-review-form textarea { min-height: 120px; resize: vertical; }

/* Search modal with hidden attr still needs is-open */
.search-modal[hidden] { display: none !important; }
.search-modal.is-open { display: flex !important; }
.overlay[hidden] { display: none !important; }
.overlay.is-open { display: block; opacity: 1; pointer-events: auto; }

/* ========== Blog / Magazine ========== */
.lx-blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 16.5rem;
  gap: 1.5rem;
  padding: 0 0 3.5rem;
  align-items: start;
}
.lx-blog-layout.is-single {
  grid-template-columns: minmax(0, 1.35fr) 16rem;
}
.lx-blog-aside {
  position: sticky;
  top: 5.5rem;
  display: grid;
  gap: 1rem;
}
.lx-blog-widget {
  background: #fff;
  border: 1px solid var(--line, #e5ded2);
  border-radius: 16px;
  padding: 1.1rem 1.05rem 1.15rem;
  box-shadow: 0 10px 28px rgba(27, 23, 19, 0.04);
}
.lx-blog-widget h3 {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  font-weight: 800;
}
.lx-blog-widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}
.lx-blog-widget li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0.4rem 0.45rem;
  border-radius: 10px;
}
.lx-blog-widget li a:hover {
  background: var(--ivory, #faf7f2);
  color: var(--saffron-deep, #C49212);
}
.lx-blog-widget li em {
  font-style: normal;
  font-size: 0.74rem;
  color: var(--ink-muted, #6b645c);
  font-weight: 600;
}
.lx-blog-recent li a {
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0.5rem 0.35rem;
}
.lx-blog-recent .thumb {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--ivory, #faf7f2);
}
.lx-blog-recent .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lx-blog-recent .txt {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}
.lx-blog-recent strong {
  font-size: 0.82rem;
  line-height: 1.45;
  font-weight: 700;
}
.lx-blog-recent small {
  font-size: 0.72rem;
  color: var(--ink-muted, #6b645c);
}

.lx-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin-top: 0.85rem;
  font-size: 0.84rem;
  color: var(--ink-muted, #6b645c);
  font-weight: 600;
}
.lx-article-meta time { color: inherit; }
.lx-article {
  padding: 0 !important;
  overflow: hidden;
}
.lx-article-cover {
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ivory, #faf7f2);
}
.lx-article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lx-article-content {
  padding: 1.5rem 1.5rem 1.25rem;
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--ink, #1b1713);
}
.lx-article-content > *:first-child { margin-top: 0; }
.lx-article-content h2,
.lx-article-content h3,
.lx-article-content h4 {
  margin: 1.75rem 0 0.75rem;
  line-height: 1.4;
  font-weight: 800;
}
.lx-article-content p { margin: 0 0 1.1rem; }
.lx-article-content ul,
.lx-article-content ol {
  margin: 0 0 1.1rem;
  padding-inline-start: 1.25rem;
}
.lx-article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
.lx-article-content blockquote {
  margin: 1.35rem 0;
  padding: 1rem 1.15rem;
  border-inline-start: 3px solid var(--saffron-deep, #C49212);
  background: var(--ivory, #faf7f2);
  border-radius: 0 12px 12px 0;
  font-weight: 600;
}
.lx-article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.82rem;
}
.lx-article-tags span {
  font-weight: 700;
  color: var(--ink-muted, #6b645c);
}
.lx-article-tags a {
  text-decoration: none;
  color: var(--saffron-deep, #C49212);
  background: rgba(184, 120, 26, 0.1);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
}
.lx-article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--line, #e5ded2);
  margin-top: 0.25rem;
  padding-top: 1.25rem;
}
.lx-article-nav a {
  display: grid;
  gap: 0.25rem;
  text-decoration: none;
  color: inherit;
  padding: 0.85rem 1rem;
  background: var(--ivory, #faf7f2);
  border-radius: 12px;
  border: 1px solid var(--line, #e5ded2);
}
.lx-article-nav a:hover {
  border-color: rgba(184, 120, 26, 0.35);
}
.lx-article-nav small {
  font-size: 0.72rem;
  color: var(--ink-muted, #6b645c);
  font-weight: 600;
}
.lx-article-nav strong {
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.45;
}
.lx-article-nav .is-next { text-align: start; }

.lx-blog-comments {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--line, #e5ded2);
  margin-top: 0.5rem;
  padding-top: 1.35rem;
}
.lx-blog-comments-title {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 800;
}
.lx-blog-comment-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.lx-blog-comment {
  list-style: none;
}
.lx-blog-comment > article {
  background: var(--ivory, #faf7f2);
  border: 1px solid var(--line, #e5ded2);
  border-radius: 12px;
  padding: 0.95rem 1rem;
}
.lx-blog-comment header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.55rem;
}
.lx-blog-comment header img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
.lx-blog-comment header strong {
  display: block;
  font-size: 0.88rem;
}
.lx-blog-comment header time {
  font-size: 0.72rem;
  color: var(--ink-muted, #6b645c);
}
.lx-blog-comment-body {
  font-size: 0.9rem;
  line-height: 1.7;
}
.lx-blog-comment-body p { margin: 0 0 0.5rem; }
.lx-blog-comment-reply a {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--saffron-deep, #C49212);
}
.lx-blog-comment-form {
  margin-top: 0.5rem;
}
.lx-blog-comment-form .comment-reply-title {
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 0.85rem;
}
.lx-blog-comment-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.lx-blog-comment-form input[type="text"],
.lx-blog-comment-form input[type="email"],
.lx-blog-comment-form input[type="url"],
.lx-blog-comment-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line, #e5ded2);
  border-radius: 8px;
  padding: 0.55rem 0.85rem;
  font: inherit;
  background: #fff;
  margin-bottom: 0.75rem;
  box-shadow: none;
  outline: none;
}
.lx-blog-comment-form textarea { min-height: 110px; }
.lx-blog-comment-form .form-submit { margin: 0; }
.lx-blog-comment-form .btn-gold {
  width: auto;
  min-width: 9rem;
}

.lx-related-posts { padding-top: 2.5rem; padding-bottom: 3rem; }
.lx-blog-empty {
  text-align: center;
  padding: 2.5rem 1.25rem;
}
.lx-blog-empty p { margin: 0 0 1rem; color: var(--ink-muted, #6b645c); }
.lx-blog-empty .btn-gold {
  width: auto;
  display: inline-flex;
  margin-inline: auto;
}
.lx-search-heading {
  margin: 1.5rem 0 0.85rem;
  font-size: 1.1rem;
  font-weight: 800;
}
.lx-search-heading:first-child { margin-top: 0; }

.lx-pagination,
.navigation.pagination {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.75rem;
}
.lx-pagination .page-numbers,
.navigation.pagination .page-numbers {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--line, #e5ded2);
  background: #fff;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.86rem;
}
.lx-pagination .page-numbers.current,
.navigation.pagination .page-numbers.current {
  background: var(--grad-gold);
  border-color: transparent;
  color: #fff;
}

.lx-page-hero .lx-kicker a {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 980px) {
  .lx-blog-layout,
  .lx-blog-layout.is-single {
    grid-template-columns: 1fr;
  }
  .lx-blog-aside { position: static; }
  .lx-posts {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 640px) {
  .lx-posts {
    grid-template-columns: 1fr !important;
  }
  .lx-article-content { padding: 1.15rem 1.05rem; }
  .lx-article-tags,
  .lx-article-nav,
  .lx-blog-comments {
    padding-inline: 1.05rem;
  }
  .lx-article-nav { grid-template-columns: 1fr; }
}

/* ========== Thank you + Orders ========== */
.lx-thankyou {
  max-width: 820px;
  margin: 0 auto 3rem;
  display: grid;
  gap: 1.15rem;
}
.lx-thankyou-hero {
  text-align: center;
  padding: 2rem 1.5rem 1.75rem !important;
}
.lx-thankyou-check {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.85rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--grad-gold);
  color: #fff;
}
.lx-thankyou-check svg { width: 28px; height: 28px; }
.lx-thankyou-hero h1 {
  margin: 0.25rem 0 0.5rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
}
.lx-thankyou-hero .lead {
  margin: 0 auto;
  max-width: 42ch;
  color: var(--ink-muted, #6b645c);
  font-size: 0.92rem;
}
.lx-thankyou-overview {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
  gap: 0.65rem;
}
.lx-thankyou-overview li {
  background: #fff;
  border: 1px solid var(--line, #e5ded2);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  box-shadow: 0 8px 22px rgba(27, 23, 19, 0.04);
}
.lx-thankyou-overview span {
  display: block;
  font-size: 0.74rem;
  color: var(--ink-muted, #6b645c);
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.lx-thankyou-overview strong {
  font-size: 0.92rem;
  font-weight: 800;
  word-break: break-word;
}
.lx-thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
}
.lx-thankyou-actions .btn-gold,
.lx-thankyou-actions .btn-ghost {
  width: auto;
  min-width: 9rem;
  margin: 0;
}
.lx-thankyou-body {
  display: grid;
  gap: 1rem;
}
.lx-thankyou-body .woocommerce-order-details,
.lx-thankyou-body .woocommerce-customer-details,
.lx-thankyou-body .woocommerce-bacs-bank-details {
  margin: 0;
}
.lx-thankyou-body > h2,
.lx-thankyou-body .wc-bacs-bank-details-heading {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  font-weight: 800;
}
.woocommerce-bacs-bank-details,
.wc-bacs-bank-details-account-name {
  background: #fff;
  border: 1px solid var(--line, #e5ded2);
  border-radius: 16px;
  padding: 1.15rem 1.2rem;
  box-shadow: 0 8px 22px rgba(27, 23, 19, 0.04);
}
.woocommerce-bacs-bank-details ul.wc-bacs-bank-details {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.woocommerce-bacs-bank-details ul.wc-bacs-bank-details li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0.65rem;
  background: var(--ivory, #faf7f2);
  border-radius: 10px;
  font-size: 0.86rem;
}

.azarbo-orders-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.azarbo-order-card {
  background: var(--ivory, #faf7f2);
  border: 1px solid var(--line, #e5ded2);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  display: grid;
  gap: 0.75rem;
}
.azarbo-order-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}
.azarbo-order-card-top .azarbo-order-id {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: inherit;
  text-decoration: none;
}
.azarbo-order-card-top time {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: var(--ink-muted, #6b645c);
}
.azarbo-order-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  font-size: 0.84rem;
  color: var(--ink-muted, #6b645c);
}
.azarbo-order-card-meta strong {
  color: var(--ink, #1b1713);
  font-size: 0.95rem;
}
.azarbo-order-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.azarbo-order-card-actions .btn-gold,
.azarbo-order-card-actions .btn-ghost {
  width: auto;
  min-height: 40px;
  padding-inline: 1rem;
  margin: 0;
  font-size: 0.82rem;
}
.azarbo-orders-pagination {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.azarbo-view-order > .azarbo-order-status {
  display: inline-flex;
  margin-top: 0.75rem;
}
.azarbo-order-notes ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.azarbo-order-notes li small {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--ink-muted, #6b645c);
  font-size: 0.74rem;
}

.lx-order-panel,
.lx-order-address-card {
  margin-top: 1rem;
}
.lx-order-panel-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.lx-order-panel-head h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
}
.lx-order-address-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--ivory, #faf7f2);
  color: var(--saffron-deep, #C49212);
  display: grid;
  place-items: center;
}
.lx-order-address-ico svg { width: 18px; height: 18px; }
.lx-order-lines {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.lx-order-line {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.65rem;
  background: var(--ivory, #faf7f2);
  border-radius: 12px;
}
.lx-order-line-thumb {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.lx-order-line-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lx-order-line-body strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
}
.lx-order-line-body a {
  color: inherit;
  text-decoration: none;
}
.lx-order-line-qty {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: var(--ink-muted, #6b645c);
}
.lx-order-line-total {
  font-weight: 800;
  font-size: 0.88rem;
  white-space: nowrap;
}
.lx-order-totals {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--line, #e5ded2);
  display: grid;
  gap: 0.45rem;
}
.lx-order-total-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.88rem;
}
.lx-order-total-row.is-total {
  margin-top: 0.35rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--line, #e5ded2);
  font-size: 1rem;
}
.lx-order-total-row.is-total strong {
  color: var(--saffron-deep, #C49212);
}
.lx-order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}
.lx-order-address-card address {
  font-style: normal;
  line-height: 1.8;
  font-size: 0.9rem;
  color: var(--ink, #1b1713);
}
.lx-order-contact {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0.55rem 0 0;
  color: var(--ink-muted, #6b645c);
  font-size: 0.86rem;
}
.lx-order-contact svg {
  width: 16px;
  height: 16px;
  color: var(--saffron-deep, #C49212);
  flex-shrink: 0;
}

.woocommerce-account .woocommerce-info,
.azarbo-account-shell .woocommerce-info {
  background: var(--ivory, #faf7f2) !important;
  border: 1px solid var(--line, #e5ded2) !important;
  border-radius: 12px !important;
  color: inherit !important;
  padding: 0.85rem 1rem !important;
  margin-bottom: 1rem !important;
}
.woocommerce-account .woocommerce-info .button,
.azarbo-account-shell .woocommerce-info .button {
  background: var(--grad-gold) !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 999px !important;
  min-height: 38px;
  padding: 0.4rem 1rem !important;
  font-weight: 700 !important;
}

@media (max-width: 560px) {
  .lx-order-line {
    grid-template-columns: 3rem minmax(0, 1fr);
  }
  .lx-order-line-total {
    grid-column: 2;
    justify-self: start;
  }
}
