/* ==========================================================================
   Auris Atelier — base layer
   Ported verbatim from the original storefront's auris-revamp.css.
   Only change: Shopify's font variables resolved to the same fonts the
   storefront used (Cormorant, weight 500).
   ========================================================================== */

:root {
  --font-body-family: "Cormorant", Georgia, "Times New Roman", serif;
  --font-heading-family: "Cormorant", Georgia, "Times New Roman", serif;
  --font-body-weight: 500;
  --font-heading-weight: 500;

  /* Defined by the theme — the originals came from Liquid section settings
     and inline style attributes, which don't survive the port. */
  --auris-paper: #fffaf1;
  --auris-sand: #f3eadc;
  --auris-gold-light: #cfa65a;
  --auris-radius-sm: 4px;
  --font-ui: "Cormorant", Georgia, serif;
  --header-height: 80px;
  --announcement-bg: #2f2118;
  --announcement-text: #fffaf1;
  --chart-width: 900px;
}


:root {
  --auris-cream: #f7f0e4;
  --auris-cream-soft: #fcf8f1;
  --auris-beige: #e8d7bf;
  --auris-gold: #b78a3d;
  --auris-gold-dark: #8c6428;
  --auris-wood: #2f2118;
  --auris-ink: #241b15;
  --auris-muted: #6f6258;
  --auris-line: rgba(47, 33, 24, 0.15);
  --auris-success: #214f3b;
  --auris-page: min(1240px, calc(100vw - 40px));
  --auris-radius: 10px;
  --auris-shadow: 0 16px 42px rgba(47, 33, 24, 0.10);
}

.auris-section,
.auris-section * {
  box-sizing: border-box;
}

.auris-section {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  color: var(--auris-ink);
  background: var(--auris-cream-soft);
  font-family: var(--font-body-family, Arial, sans-serif);
  overflow-x: clip;
}

.auris-shell {
  width: calc(100% - 40px);
  max-width: 1240px;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.auris-kicker {
  margin: 0 0 12px;
  color: var(--auris-gold-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.auris-title {
  margin: 0;
  color: var(--auris-wood);
  font-family: var(--font-heading-family, Georgia, serif);
  font-size: clamp(32px, 4.4vw, 62px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.auris-copy {
  color: var(--auris-muted);
  font-size: 16px;
  line-height: 1.75;
}

.auris-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid var(--auris-wood);
  border-radius: 4px;
  background: var(--auris-wood) !important;
  color: #fffaf1 !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  cursor: pointer;
}

.auris-button:hover {
  background: var(--auris-gold-dark) !important;
  border-color: var(--auris-gold-dark) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.auris-button--light {
  background: transparent !important;
  color: var(--auris-wood) !important;
}

.auris-button--light:hover {
  background: var(--auris-wood) !important;
  border-color: var(--auris-wood) !important;
  color: #fffaf1 !important;
}

.auris-button:link,
.auris-button:visited,
.auris-button span {
  /* color: inherit !important; */
}

.auris-button:focus-visible,
.auris-icon-button:focus-visible,
.auris-nav__link:focus-visible,
.auris-product-card a:focus-visible {
  outline: 3px solid rgba(183, 138, 61, 0.5);
  outline-offset: 3px;
}

.auris-section img {
  display: block;
  max-width: 100%;
}

.auris-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 749px) {
  :root {
    --auris-page: min(100% - 28px, 1240px);
  }

  .auris-shell {
    width: calc(100% - 28px);
  }

  .auris-title {
    font-size: clamp(34px, 11vw, 48px);
  }

  .auris-copy {
    font-size: 15px;
  }

  .auris-button {
    min-height: 48px;
    padding-inline: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .auris-section *,
  .auris-section *::before,
  .auris-section *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---- WordPress additions on the same token system ---- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--auris-cream-soft);
  color: var(--auris-ink);
  font-family: var(--font-body-family);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
::selection { background: var(--auris-gold); color: #fff; }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-heading-family);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--auris-wood);
}

.skip-link {
  position: absolute; top: -100px; left: 12px; z-index: 999;
  padding: 12px 18px; background: var(--auris-wood); color: #fffaf1; text-decoration: none;
}
.skip-link:focus { top: 12px; }

body.auris-no-scroll { overflow: hidden; }

/* Floating WhatsApp */
.auris-wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  display: inline-flex; width: 54px; height: 54px;
  align-items: center; justify-content: center;
  border-radius: 50%; background: #25d366; color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  transition: transform 200ms ease;
}
.auris-wa-float:hover { transform: scale(1.07); }
.auris-wa-float svg { width: 28px; height: 28px; }
@media (max-width: 749px) { .auris-wa-float { right: 14px; bottom: 14px; } }

/* ---- Primitives the section CSS doesn't cover ---------------------------- */

.auris-title--sm { font-size: clamp(26px, 2.8vw, 38px); }

.auris-sechead { max-width: 720px; margin-bottom: clamp(28px, 4vw, 48px); }
.auris-sechead--center { margin-inline: auto; text-align: center; }

.auris-button--wa {
  background: var(--auris-success) !important;
  border-color: var(--auris-success) !important;
  color: #fff !important;
}
.auris-button--wa:hover { background: #1a3f2f !important; border-color: #1a3f2f !important; }
.auris-button--wa svg { width: 18px; height: 18px; }

.auris-cart-count[hidden] { display: none; }

/* Centred hero used by 404 and other simple pages */
.auris-simple { padding-block: clamp(56px, 8vw, 110px); text-align: center; }
.auris-simple__inner { max-width: 640px; margin-inline: auto; }
.auris-simple__copy { margin: 16px auto 28px; max-width: 52ch; }
.auris-simple__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
