/* =========================================================
   AURÉA PARIS — brand design system
   Applies site-wide: homepage (Elementor), shop, single
   product, cart, checkout, blog — so branding stays
   consistent no matter which page the visitor lands on.
   ========================================================= */

:root {
  --cream: #F5F2EC;
  --cream-2: #EDE8DF;
  --hero-bg: #EAE6DF;
  --sand: #DDD3C4;
  --ink: #1A1A1A;
  --ink-soft: #4b4741;
  --gold: #B8935A;
  --gold-line: #c9ab7d;
  --line: rgba(26, 26, 26, .12);
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Jost', sans-serif;

  /* Astra's default Global Color Palette is blue (#046bd2) and is what tabs,
     links, form focus rings, pagination etc. fall back to wherever we haven't
     explicitly restyled a component. Overriding it here recolors all of that
     to the brand's black/white/gold palette in one place instead of chasing
     every individual selector. */
  --ast-global-color-0: var(--gold);
  --ast-global-color-1: #9c7943;
  --ast-global-color-5: var(--cream-2);
}

/* ---------- base typography ---------- */
body,
.woocommerce,
.entry-content {
  font-family: var(--sans);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.6;
  background: var(--cream);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: .01em;
}

a {
  color: inherit;
}

a:hover {
  color: var(--gold);
}

.aurea-eyebrow {
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}

/* ---------- reveal-on-scroll (used by custom.js) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s cubic-bezier(.16, 1, .3, 1), transform .9s cubic-bezier(.16, 1, .3, 1)
}

.reveal.in {
  opacity: 1;
  transform: none
}

@media(prefers-reduced-motion:reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none
  }
}

/* ---------- luxury button (mirrors mockup "Shop Now") ---------- */
.aurea-btn,
.elementor-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce #respond input#submit,
.woocommerce input.button {
  display: inline-block;
  background: var(--ink) !important;
  color: #fff !important;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 15px 40px !important;
  font-weight: 500;
  border: none !important;
  border-radius: 0 !important;
  position: relative;
  overflow: hidden;
  transition: color .4s;
  cursor: pointer;
}

.aurea-btn:hover,
.elementor-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce input.button:hover {
  background: var(--gold) !important;
  color: #fff !important;
}

/* ---------- section heads ---------- */
.aurea-sec-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4.6vw, 50px);
  line-height: 1.05
}

/* ---------- product / woocommerce card styling ---------- */
.woocommerce ul.products li.product,
.aurea-card {
  background: var(--cream);
  border: 1px solid var(--line);
  position: relative;
  transition: .45s cubic-bezier(.16, 1, .3, 1);
  padding: 0 !important;
}

.woocommerce ul.products li.product:hover,
.aurea-card:hover {
  box-shadow: 0 34px 54px -40px rgba(0, 0, 0, .45);
  transform: translateY(-5px);
}

.woocommerce ul.products li.product img {
  border-radius: 0 !important;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.woocommerce ul.products li.product .price {
  color: var(--ink);
  font-size: 16px;
  font-family: var(--sans);
}

.woocommerce ul.products li.product .price del {
  color: #a89c88;
  font-size: 13px
}

.woocommerce ul.products li.product .price ins {
  color: var(--ink);
  text-decoration: none
}

.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--sans) !important;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .01em;
}

/* WooCommerce's own product loops (related/cross-sell/upsell/shop archive)
   don't wrap their title/price/button in a padded container the way our
   custom Featured Products widget does — give them the same inset here so
   text never sits flush against the card edge while the image does. */
.woocommerce ul.products li.product .ast-woo-product-category,
.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price {
  padding-left: 20px !important;
  padding-right: 20px !important;
  box-sizing: border-box;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100%;
  display: block
}

/* Buttons get the same side inset as the title/price above them instead of
   sitting flush with the card edge (client feedback: needs breathing room
   from the left edge to match the rest of the card content). */
.woocommerce ul.products li.product>a.button,
.woocommerce ul.products li.product .add_to_cart_button {
  width: calc(100% - 40px) !important;
  margin: 0 20px 20px !important;
  box-sizing: border-box;
  padding-left: 12px !important;
  padding-right: 12px !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.woocommerce span.onsale {
  background: rgba(245, 242, 236, .92) !important;
  color: var(--ink) !important;
  font-size: 9.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 0;
  padding: 6px 11px;
  min-height: 0;
  min-width: 0;
  line-height: normal;
}

/* ---------- single product ---------- */
.woocommerce div.product .product_title {
  font-family: var(--serif);
  font-weight: 500
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 26px
}

.woocommerce div.product .stock {
  color: var(--ink-soft)
}

/* ---------- single product: layout & section separation ---------- */
.woocommerce div.product {
  padding-top: clamp(24px, 4vw, 48px)
}

.woocommerce div.product .woocommerce-product-gallery {
  position: relative;
  background: var(--cream-2);
  border: 1px solid var(--line)
}

.woocommerce div.product .summary.entry-summary>* {
  margin-bottom: 18px
}

/* Larger, more prominent product image — client feedback: the image should
   dominate the layout rather than sit in an even 50/50 split with the
   summary. No position:sticky here: WooCommerce's template nests the tabs
   and related-products blocks as siblings of the gallery inside the same
   #product wrapper, so a sticky gallery's containing block would extend
   through them too and visually overlap that content while scrolling.
   Desktop-only: mobile already stacks these at 100% width. */
@media(min-width:1024px) {
  .woocommerce div.product div.images.woocommerce-product-gallery {
    width: 58% !important
  }

  .woocommerce div.product div.summary.entry-summary {
    width: 38% !important
  }
}

.aurea-gallery-zoom-hint {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--ink);
  pointer-events: none;
  z-index: 5;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .14)
}

/* Quantity stepper (+/- buttons injected by custom.js) */
.quantity {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--line);
  background: var(--cream);
  vertical-align: middle
}

.quantity .qty {
  width: 50px;
  text-align: center;
  border: none !important;
  background: none !important;
  font-family: var(--sans);
  font-size: 14px;
  -moz-appearance: textfield
}

.quantity .qty::-webkit-outer-spin-button,
.quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0
}

.aurea-qty-btn {
  width: 38px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 16px;
  color: var(--ink);
  transition: .25s
}

.aurea-qty-btn:hover {
  background: var(--ink);
  color: #fff
}

/* Description / Reviews tabs — a single rule under the tab labels is the
   only divider; no border on the wrapper itself, to avoid framing the tab
   row with two close-together lines. */
.woocommerce-tabs.wc-tabs-wrapper,
.woocommerce-tabs.tabs-wrapper {
  clear: both;
  margin-top: clamp(40px, 6vw, 72px) !important;
  padding: 0 !important;
  border-top: none !important
}

/* WooCommerce nests the tabs and related-products blocks as siblings of the
   floated gallery/summary columns inside the same #product wrapper, with no
   clearfix of its own — clear both here so they always sit below the
   columns instead of overlapping whichever column is taller. */
.related.products {
  clear: both
}

.woocommerce-tabs ul.tabs {
  border-bottom: 1px solid var(--line);
  margin: 0 0 28px !important;
  padding-bottom: 0
}

.woocommerce-tabs ul.tabs li {
  background: none !important;
  border: none !important;
  margin: 0 28px 0 0 !important
}

.woocommerce-tabs ul.tabs li a {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft) !important;
  padding: 0 0 14px !important
}

.woocommerce-tabs ul.tabs li.active a {
  color: var(--ink) !important;
  border-bottom: 2px solid var(--gold)
}

.woocommerce-tabs .panel {
  max-width: 640px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-soft)
}

.aurea-tab-placeholder {
  font-style: italic;
  color: #a89c88
}

/* Related products: contrasting card to separate it from the tabs above */
.related.products {
  margin-top: clamp(40px, 6vw, 72px);
  padding: clamp(32px, 5vw, 56px) clamp(20px, 4vw, 40px);
  background: var(--cream-2);
  border: 1px solid var(--line)
}

.related.products>h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 3.4vw, 36px);
  margin-bottom: 32px
}

/* ---------- cart / checkout tables ---------- */
.woocommerce table.shop_table {
  border: 1px solid var(--line);
  border-radius: 0
}

.woocommerce table.shop_table th {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}

.woocommerce-checkout #payment,
.woocommerce-cart-form,
.cart-collaterals .cart_totals {
  background: var(--cream-2);
  border: 1px solid var(--line);
}

/* Keep the terms/privacy text and the Place Order row inset by the same
   amount, regardless of which WooCommerce payment template state renders
   (e.g. no payment gateways configured, as in this dev environment). */
.woocommerce-checkout #payment .woocommerce-terms-and-conditions-wrapper,
.woocommerce-checkout #payment .form-row.place-order,
.woocommerce-checkout #payment .woocommerce-privacy-policy-text {
  padding-left: 24px !important;
  padding-right: 24px !important;
  box-sizing: border-box;
}

/* ---------- sticky header shadow (added by custom.js on scroll) ---------- */
.aurea-header-scrolled {
  box-shadow: 0 8px 30px -26px rgba(0, 0, 0, .6)
}

/* ---------- back to top ---------- */
.aurea-to-top {
  position: fixed;
  right: 22px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: .4s;
  z-index: 180;
  display: grid;
  place-items: center;
  font-size: 16px;
}

.aurea-to-top.on {
  opacity: 1;
  visibility: visible
}

.aurea-to-top:hover {
  background: var(--gold)
}

/* ---------- toast (used by newsletter / add-to-cart JS) ---------- */
.aurea-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--ink);
  color: #fff;
  padding: 14px 26px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 400;
  transition: .45s cubic-bezier(.16, 1, .3, 1);
  border-left: 3px solid var(--gold);
}

.aurea-toast.show {
  transform: translateX(-50%) translateY(0)
}

/* =========================================================
   Header / Footer (Elementor Theme Builder templates)
   ========================================================= */
.aurea-topbar {
  background: var(--ink);
  color: #efe9dd;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  position: relative;
  max-height: 100px;
  overflow: hidden;
  transition: max-height .4s ease, opacity .3s ease
}

.aurea-topbar.aurea-topbar-dismissed {
  max-height: 0;
  opacity: 0;
  pointer-events: none
}

.aurea-topbar .e-con {
  padding-top: 11px !important;
  padding-bottom: 11px !important;
  padding-right: 46px !important
}

.aurea-topbar-track {
  position: relative;
  height: 15px;
  width: 100%;
  max-width: 460px;
}

.aurea-topbar-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  color: #efe9dd !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease
}

.aurea-topbar-item.active {
  opacity: 1;
  visibility: visible
}

.aurea-topbar-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #efe9dd;
  opacity: .65;
  cursor: pointer;
  font-size: 12px;
  padding: 6px;
  line-height: 1;
  transition: opacity .3s
}

.aurea-topbar-close:hover {
  opacity: 1
}

.aurea-topbar-item i,
.aurea-topbar-item svg.e-font-icon-svg {
  color: var(--gold-line);
  fill: var(--gold-line);
  width: 13px;
  height: 13px;
  flex-shrink: 0
}

.aurea-header {
  background: rgba(245, 242, 236, .92);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 200;
  transition: box-shadow .4s
}

.aurea-header.aurea-header-scrolled {
  box-shadow: 0 8px 30px -26px rgba(0, 0, 0, .6)
}

/* JS-driven pin (see custom.js): position:sticky can't hold once the header
   sits inside a Theme-Builder wrapper only as tall as the header itself. */
.aurea-header.aurea-header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0
}

.aurea-brand-name {
  font-family: var(--serif) !important;
  font-size: clamp(22px, 3vw, 30px) !important;
  letter-spacing: .18em;
  font-weight: 500;
  text-align: center;
  line-height: 1
}

.aurea-brand-sub {
  font-size: 10px !important;
  letter-spacing: .6em;
  text-align: center;
  padding-left: .6em;
  font-family: var(--sans) !important
}

.aurea-header-icon {
  font-size: 17px;
  color: var(--ink);
  transition: .3s
}

.aurea-header-icon svg.e-font-icon-svg {
  width: 17px;
  height: 17px;
  fill: currentColor
}

.aurea-header-icon:hover {
  color: var(--gold)
}

/* Toggle (☰) is always visible — desktop and mobile — matching the client mockup.
   Clicking it opens the full drawer with every nav link. No separate horizontal
   nav row and no header social-icons row (kept out per mockup). */
.aurea-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.aurea-burger span {
  width: 24px;
  height: 1.6px;
  background: #1A1A1A;
  display: block;
}

.aurea-header-social {
  display: none;
}

.aurea-nav-menu {
  display: none;
}

.aurea-nav-menu nav {
  display: flex;
  justify-content: center
}

.aurea-nav-menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(20px, 3vw, 40px);
  list-style: none;
  padding: 13px 0;
  margin: 0
}

.aurea-nav-menu a {
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  padding-bottom: 4px;
  color: var(--ink)
}

.aurea-nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: .4s
}

.aurea-nav-menu a:hover::after {
  width: 100%
}

.aurea-nav-menu .current-menu-item>a {
  color: var(--gold)
}

/* Mobile drawer + scrim: always in the DOM, toggled by custom.js via inline transform/opacity */
.aurea-drawer a:hover {
  color: var(--gold)
}

.aurea-cart-count {
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  border-radius: 50%;
  min-width: 17px;
  height: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500
}

footer.aurea-footer {
  background: var(--ink);
  color: #c4bdb0;
  font-size: 13.5px
}

.aurea-footer .aurea-fname {
  font-family: var(--serif) !important;
  font-size: 29px !important;
  letter-spacing: .16em;
  color: #fff !important
}

.aurea-footer .aurea-fsub {
  font-size: 10px !important;
  letter-spacing: .55em;
  color: #fff !important;
  opacity: .7
}

.aurea-footer p.aurea-blurb {
  max-width: 300px;
  line-height: 1.7;
  color: #c4bdb0
}

.aurea-footer h5 {
  color: #fff !important;
  font-size: 12px !important;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 600 !important;
  font-family: var(--sans) !important
}

.aurea-footer .aurea-flinks {
  list-style: none;
  padding: 0;
  margin: 0
}

.aurea-footer .aurea-flinks li {
  margin-bottom: 11px
}

.aurea-footer .aurea-flinks a {
  color: #c4bdb0;
  transition: .3s
}

.aurea-footer .aurea-flinks a:hover {
  color: var(--gold-line);
  padding-left: 5px
}

.aurea-footer .aurea-fsoc a {
  width: 37px;
  height: 37px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: .35s;
  color: #fff
}

.aurea-footer .aurea-fsoc a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff
}

.aurea-footer .aurea-contact-li {
  display: flex;
  gap: 11px;
  margin-bottom: 13px;
  align-items: flex-start;
  color: #c4bdb0
}

.aurea-footer .aurea-contact-li i {
  color: var(--gold-line);
  margin-top: 3px
}

.aurea-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 12px;
  color: #c4bdb0
}

/* =========================================================
   Homepage sections
   ========================================================= */
.aurea-hero {
  position: relative;
  min-height: min(80vh, 660px);
  overflow: hidden;
  background: var(--hero-bg);
  display: flex;
  align-items: center
}

.aurea-hero-eyebrow {
  color: var(--gold) !important
}

.aurea-hero h1 {
  font-size: clamp(40px, 6.6vw, 74px) !important;
  line-height: 1.04 !important;
  margin: 16px 0 18px !important
}

.aurea-hero p.aurea-lead {
  font-size: clamp(14px, 1.5vw, 16.5px);
  max-width: 380px;
  color: var(--ink-soft)
}

.aurea-usp {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line)
}

.aurea-usp-item {
  text-align: center
}

.aurea-usp-item i {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 14px;
  display: block
}

.aurea-usp-item svg.e-font-icon-svg {
  width: 28px;
  height: 28px;
  fill: var(--gold);
  margin: 0 auto 14px;
  display: block
}

.aurea-usp-item h4 {
  font-size: 12px !important;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600 !important;
  margin-bottom: 8px !important;
  font-family: var(--sans) !important
}

.aurea-usp-item p {
  font-size: 13px;
  color: var(--ink-soft);
  max-width: 200px;
  margin: 0 auto
}

.aurea-view-all {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500
}

.aurea-view-all:hover {
  color: var(--gold)
}

.aurea-science {
  background: var(--cream-2)
}

.aurea-ing-list li {
  border-bottom: 1px solid var(--line);
  padding: 12px 0
}

.aurea-ing-list .elementor-icon-list-icon i {
  color: var(--gold)
}

.aurea-concern-card {
  position: relative;
  height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden
}

.aurea-concern-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 15, .5);
  transition: .4s;
  pointer-events: none
}

.aurea-concern-card:hover::after {
  background: rgba(20, 18, 15, .62)
}

.aurea-concern-card .elementor-image-box-content {
  position: relative;
  z-index: 2
}

.aurea-concern-card h3 {
  font-size: 27px !important;
  color: #fff !important
}

.aurea-concern-card p {
  color: #ece7de !important
}

.aurea-concern-card .elementor-image-box-content span {
  color: #fff !important;
  border-bottom-color: #fff !important
}

.aurea-process {
  background: var(--ink);
  color: #e9e3d7
}

.aurea-process .aurea-eyebrow {
  color: var(--gold-line) !important
}

.aurea-process h2 {
  color: #fff !important
}

.aurea-process-step {
  border: 1px solid rgba(255, 255, 255, .14);
  transition: .5s;
  padding: 32px 24px
}

.aurea-process-step:hover {
  background: rgba(184, 147, 90, .1);
  border-color: var(--gold)
}

.aurea-process-step i {
  color: var(--gold-line) !important;
  font-size: 24px
}

.aurea-process-step svg.e-font-icon-svg {
  width: 24px;
  height: 24px;
  fill: var(--gold-line) !important;
  display: block;
  margin-bottom: 4px
}

.aurea-process-step h4 {
  color: #fff !important;
  font-size: 21px !important;
  font-family: var(--serif) !important
}

.aurea-process-step p {
  color: #c4bdb0
}

.aurea-stats {
  background: var(--cream-2)
}

.aurea-stats .elementor-counter-number-wrapper {
  font-family: var(--serif) !important;
  font-size: clamp(44px, 5.6vw, 68px) !important;
  color: var(--ink) !important;
  font-weight: 500 !important
}

.aurea-stats .elementor-counter-title {
  font-size: 11.5px !important;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-soft) !important
}

.aurea-testi .elementor-testimonial-content {
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  color: var(--ink-soft)
}

.aurea-testi {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 12px
}

.aurea-journal {
  background: var(--cream-2)
}

.aurea-news {
  background: var(--sand)
}

.aurea-news h2 {
  margin: 10px 0 12px !important
}

.aurea-news p {
  color: var(--ink-soft);
  max-width: 400px
}

/* =========================================================
   Inner-page banner (About / Contact / The Science / Shop by Concern)
   ========================================================= */
.aurea-page-hero {
  position: relative;
  min-height: min(38vh, 320px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--hero-bg);
  background-size: cover;
  background-position: center;
  padding: 48px 24px;
}

.aurea-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(245, 242, 236, .55);
  pointer-events: none;
}

.aurea-page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.aurea-page-hero h1 {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
  margin: 10px 0 14px;
}

.aurea-page-hero p {
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto;
}

.aurea-page-hero-crumb {
  margin-top: 20px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft)
}

.aurea-page-hero-crumb a:hover {
  color: var(--gold)
}

.aurea-page-hero-crumb span {
  margin: 0 6px
}

/* =========================================================
   Contact form widget
   ========================================================= */
.aurea-contact-form-wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 20px 24px 90px;
  text-align: center
}

.aurea-contact-form-wrap h3 {
  font-size: 22px;
  margin-bottom: 20px
}

.aurea-contact-form-wrap .aurea-btn {
  align-self: center
}

.aurea-contact-info {
  max-width: 1240px;
  margin: 0 auto;
  padding: 46px 24px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 34px;
  text-align: center
}

.aurea-contact-info i {
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
  font-size: 18px
}

.aurea-contact-info b {
  font-weight: 500;
  font-size: 14px
}

.aurea-contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.aurea-contact-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px
}

.aurea-contact-form input,
.aurea-contact-form textarea {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 15px 16px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  width: 100%;
  box-sizing: border-box;
  resize: vertical
}

.aurea-contact-form input:focus,
.aurea-contact-form textarea:focus {
  outline: none;
  border-color: var(--gold)
}

.aurea-contact-form button {
  align-self: center
}

.aurea-contact-form input,
.aurea-contact-form textarea {
  text-align: left
}

@media(min-width:600px) {
  .aurea-contact-row {
    grid-template-columns: 1fr 1fr
  }
}

/* =========================================================
   Mobile refinements — extra breathing room + clearer section
   separation on small screens (client feedback: "more spacing,
   clearer section separation... more premium feel" on mobile).
   ========================================================= */
@media(max-width:680px) {

  .aurea-topbar {
    font-size: 12.5px;
    letter-spacing: .1em
  }

  .aurea-topbar .e-con {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
    padding-right: 44px !important
  }

  .aurea-topbar-track {
    height: 18px
  }

  .aurea-topbar-item i,
  .aurea-topbar-item svg.e-font-icon-svg {
    width: 15px;
    height: 15px
  }

  .aurea-topbar-close {
    font-size: 14px
  }

  .aurea-hero,
  .aurea-page-hero {
    min-height: min(72vh, 560px);
    text-align: left;
    justify-content: flex-start
  }

  .aurea-page-hero {
    text-align: center
  }

  .woocommerce div.product {
    padding-top: 28px
  }

  .woocommerce div.product .woocommerce-product-gallery {
    margin-bottom: 8px
  }

  .woocommerce div.product .summary.entry-summary {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--line)
  }

  .related.products,
  .woocommerce-tabs.wc-tabs-wrapper,
  .woocommerce-tabs.tabs-wrapper {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px
  }

  .aurea-usp,
  .aurea-process,
  .aurea-stats,
  .aurea-news,
  .aurea-journal,
  .related.products {
    padding-top: 40px !important;
    padding-bottom: 40px !important
  }

  /* Section heading rows carry a 40px inline margin-bottom for desktop —
     tighten it on mobile so it doesn't stack on top of the reduced section
     padding above. */
  .aurea-sec-heading-row {
    margin-bottom: 24px !important
  }

  .woocommerce ul.products {
    gap: 20px !important
  }

  .woocommerce ul.products li.product {
    box-shadow: 0 20px 40px -32px rgba(0, 0, 0, .3)
  }

  .aurea-toast {
    left: 16px;
    right: 16px;
    transform: translateY(120px);
    text-align: center
  }

  .aurea-toast.show {
    transform: translateY(0)
  }

  /* Client mockup: on mobile, quantity sits below Add to Cart (not beside
     it), and Add to Cart runs full-width with the price inside its label. */
  .woocommerce div.product form.cart {
    display: flex;
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 12px
  }

  .woocommerce div.product form.cart .quantity {
    width: 100%;
    justify-content: center
  }

  .woocommerce div.product form.cart .quantity .qty {
    flex: 1
  }

  .woocommerce div.product .single_add_to_cart_button {
    width: 100%;
    text-align: center
  }
}

/* =========================================================
   Product card actions — Quick View + Wishlist as icon buttons that
   reveal on card hover (matches Astra's own hover-to-reveal pattern),
   Add to Cart stays as the one always-visible, centered button.
   ========================================================= */
.woocommerce ul.products li.product>a.button,
.woocommerce ul.products li.product .add_to_cart_button,
.aurea-card .add_to_cart_button {
  text-align: center
}

.aurea-card .add_to_cart_button {
  display: block;
  width: 100%;
  box-sizing: border-box
}

/* WooCommerce appends a "View cart" link after a successful AJAX add —
   Quick View + the header cart icon already cover that, so keep the card
   free of a second, easily-mistaken-for-empty button. */
.woocommerce ul.products li.product a.added_to_cart {
  display: none
}

.aurea-card-hover-actions {
  position: absolute;
  top: 62px;
  right: 14px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s
}

.woocommerce ul.products li.product:hover .aurea-card-hover-actions,
.aurea-card:hover .aurea-card-hover-actions,
.aurea-card-hover-actions:has(.aurea-wishlist-btn.active) {
  opacity: 1;
  visibility: visible;
  transform: none
}

/* Touch devices have no hover — keep the icons reachable without it. */
@media (hover: none) {
  .aurea-card-hover-actions {
    opacity: 1;
    visibility: visible;
    transform: none
  }
}

/* Astra's own on-card "Add to cart" bag icon — restyled to match our
   Quick View / Wishlist circles and stacked directly above them, on the
   same right edge, with the same 8px gap. */
.woocommerce ul.products li.product .ast-on-card-button {
  position: absolute !important;
  top: 14px !important;
  right: 14px !important;
  left: auto !important;
  bottom: auto !important;
  width: 40px !important;
  height: 40px !important;
  min-width: 0 !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, .92) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .14);
  transition: opacity .3s ease, transform .3s ease, background .3s;
  transform: translateY(-6px);
  margin-right: 0px !important ;
}
.woocommerce ul.products li.product .ast-on-card-button:hover {
  background-color: #1A1A1A !important;
}
.ast-on-card-button .ahfb-svg-iconset {
  background-color: unset !important;
}

.woocommerce ul.products li.product:hover .ast-on-card-button {
  transform: none
}

.ast-on-card-button .ast-card-action-tooltip {
  display: none !important
}

.ast-on-card-button .ast-icon.icon-bag svg {
  width: 16px;
  height: 16px;
  fill: var(--ink)
}

.ast-on-card-button:hover {
  background: var(--ink) !important
}

.ast-on-card-button:hover .ast-icon.icon-bag svg {
  fill: #fff
}

.aurea-card-hover-actions .aurea-quickview-btn,
.aurea-card-hover-actions .aurea-wishlist-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  border: none;
  display: grid;
  place-items: center;
  font-size: 15px;
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .14);
  transition: .3s;
  padding: 0px;
}

.aurea-card-hover-actions .aurea-quickview-btn:hover,
.aurea-card-hover-actions .aurea-wishlist-btn:hover {
  background: var(--ink);
  color: #fff
}

.aurea-card-hover-actions .aurea-wishlist-btn.active {
  color: var(--gold)
}

.aurea-card-hover-actions .aurea-wishlist-btn.active:hover {
  background: var(--ink);
  color: var(--gold)
}

/* Single product page wishlist button — a plain text+icon link (not the
   icon-only card style above), sitting under the add-to-cart form. */
.aurea-wishlist-btn-single {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 0 !important;
  background: none;
  border: none;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 12px;
  cursor: pointer;
  padding: 4px 0
}

.aurea-wishlist-btn-single i {
  font-size: 14px;
  color: var(--ink-soft);
  transition: .3s
}

.aurea-wishlist-btn-single:hover i,
.aurea-wishlist-btn-single.active i {
  color: var(--gold)
}

.aurea-wishlist-btn-single.active span {
  color: var(--gold)
}

/* Quick View modal reuses the plain text+icon wishlist style too (it's a
   single-column detail context, not a grid card). Wishlist-page results
   are full cards, so they correctly pick up the icon-overlay style above. */
.aurea-qv-details>.aurea-wishlist-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 12px;
  cursor: pointer;
  padding: 4px 0
}

.aurea-qv-details>.aurea-wishlist-btn i {
  font-size: 14px;
  color: var(--ink-soft);
  transition: .3s
}

.aurea-qv-details>.aurea-wishlist-btn:hover i,
.aurea-qv-details>.aurea-wishlist-btn.active i {
  color: var(--gold)
}

.aurea-qv-details>.aurea-wishlist-btn.active span {
  color: var(--gold)
}

/* Category eyebrow above single-product title (Astra's product-category meta) */
.woocommerce div.product .single-product-category,
.woocommerce div.product .ast-woo-product-category,
.woocommerce div.product p.product_meta>span.posted_in {
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 6px
}

/* =========================================================
   Quick View modal
   ========================================================= */
.aurea-quickview-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(26, 26, 26, .55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease;
}

.aurea-quickview-modal.show {
  opacity: 1;
  visibility: visible
}

.aurea-quickview-panel {
  position: relative;
  background: var(--cream);
  max-width: 860px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr;
  transform: translateY(16px);
  transition: transform .35s cubic-bezier(.16, 1, .3, 1);
}

.aurea-quickview-modal.show .aurea-quickview-panel {
  transform: translateY(0)
}

.aurea-quickview-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: var(--ink);
  display: grid;
  place-items: center
}

.aurea-quickview-body {
  display: grid;
  grid-template-columns: 1fr;
}

.aurea-qv-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  background: var(--cream-2)
}

.aurea-qv-details {
  padding: 30px
}

.aurea-qv-details h3 {
  font-size: 24px;
  margin: 6px 0 10px
}

.aurea-qv-price {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 14px
}

.aurea-qv-desc {
  color: var(--ink-soft);
  font-size: 14px;
  margin-bottom: 22px
}

.aurea-qv-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 8px
}

.aurea-qv-actions .quantity {
  align-self: flex-start
}

.aurea-qv-add {
  text-align: center
}

.aurea-qv-loading {
  padding: 60px 30px;
  text-align: center;
  color: var(--ink-soft)
}

@media(min-width:680px) {
  .aurea-quickview-body {
    grid-template-columns: 1fr 1fr
  }

  .aurea-qv-image img {
    height: 100%
  }
}

.aurea-header-wishlist {
  display: inline-flex
}