/* =========================================================
   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;
}

/* ---------- 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 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)
}

/* ---------- 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);
}

/* ---------- 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
}

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

.aurea-topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: #efe9dd !important
}

.aurea-topbar-item i {
  color: var(--gold-line)
}

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

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

.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: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 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(221, 211, 196, .35);
  transition: .4s;
  pointer-events: none
}

.aurea-concern-card:hover::after {
  background: rgba(221, 211, 196, .15)
}

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

.aurea-concern-card h3 {
  font-size: 27px !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 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
}