/* =========================================================================
   ÉlanHer — soft, editorial design system
   Palette: blush · cream · sage · charcoal  (no harsh brights)
   ========================================================================= */
:root {
  --logo: rgba(96, 211, 211);
  --cream: #f7f2ec;
  --cream-deep: #efe7dc;
  --blush: #e7c3c1;
  --blush-soft: #f6e7e4;
  --sage: #a8b5a2;
  --sage-deep: #879279;
  --charcoal: #2e2e2e;
  --charcoal-soft: #5b5750;
  --gold: #b89b72;
  --line: #e7ded2;
  --white: #fffdfa;
  --shadow: 0 18px 40px -24px rgba(46, 46, 46, 0.35);
  --radius: 14px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--cream);
  font-weight: 300;
  letter-spacing: 0.01em;
  margin: 0;
}

h1,
h2,
h3,
h4,
.serif {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--charcoal);
}

a {
  color: var(--charcoal);
  text-decoration: none;
  transition: color .25s ease;
}

a:hover {
  color: var(--sage-deep);
}

.container-x {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .7rem;
  color: var(--gold);
  font-weight: 400;
}

.section {
  padding: 72px 0;
}

.section-title {
  font-size: 2.1rem;
  margin: 6px 0 0;
}

.muted {
  color: var(--charcoal-soft);
}

/* ---- Buttons ---------------------------------------------------------- */
.btn-elan {
  background: var(--charcoal);
  color: var(--cream);
  border: none;
  border-radius: 999px;
  padding: 13px 30px;
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease;
}

.btn-elan:hover {
  background: var(--sage-deep);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  border-radius: 999px;
  padding: 12px 28px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  cursor: pointer;
  transition: all .25s ease;
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--cream);
}

.btn-block {
  width: 100%;
}
blockquote{
  text-align: left;
  margin: 0 !important;
}

/* ---- Top bar + nav ---------------------------------------------------- */
.announcement {
  background: var(--blush-soft);
  color: var(--charcoal-soft);
  text-align: center;
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 9px 0;
}
.nav-links .has-submenu { position: relative; }
.nav-links .has-submenu > a .caret { font-size: .7em; display: inline-block; transition: transform .2s ease; }

.nav-links .submenu {
  position: absolute; top: 100%; left: 0; min-width: 200px;
  margin: 0; padding: 10px 0; list-style: none; background: #fff;
  border: 1px solid rgba(0,0,0,.06); box-shadow: 0 12px 30px rgba(0,0,0,.08);
  border-radius: 6px; opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s; z-index: 1000;
}
.nav-links .has-submenu:hover > .submenu,
.nav-links .has-submenu:focus-within > .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-links .has-submenu:hover > a .caret { transform: rotate(180deg); }
.nav-links .submenu a { display: block; padding: 8px 18px; white-space: nowrap; color: #2b2b2b; font-size: .9rem; }
.nav-links .submenu a:hover { background: #faf7f0; color: #b8860b; }  

.navbar-elan {
  position: relative;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1240px;
  margin: 0 auto;
  gap: 20px;
}

.brand {
  font-family: var(--serif);
  font-size: 1.7rem;
  letter-spacing: .04em;
}

.brand span {
  color: var(--blush);
}

.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
}

.nav-icons {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-icons a {
  font-size: .8rem;
  letter-spacing: .1em;
  position: relative;
}
.menu-toggle {
    display: none;
    font-size: 28px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: inherit;
}

.mobile-only {
    display: none;
}

.badge-count {
  position: absolute;
  top: -10px;
  right: -12px;
  background: var(--blush);
  color: var(--charcoal);
  border-radius: 999px;
  font-size: .62rem;
  min-width: 17px;
  height: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.search-inline input {
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 6px 4px;
  font-family: var(--sans);
  font-size: .85rem;
  outline: none;
}

/* ---- Hero ------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 70vh;
  padding-top: clamp(80px, 10vw, 130px);
  padding-inline: clamp(20px, 8vw, 150px);
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(46, 46, 46, .45), rgba(46, 46, 46, .05));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 540px;
  padding: 0 24px;
}

.hero-content.center {
  margin: 0 auto;
  text-align: center;
}

.hero-content.right {
  margin-left: auto;
  text-align: right;
}

.hero h1 {
  color: var(--white);
  font-size: 3.3rem;
  line-height: 1.05;
  margin: 10px 0 16px;
}

.hero p {
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 26px;
}

.hero .eyebrow {
  color: var(--blush);
}

.hero .btn-elan {
  background: var(--white);
  color: var(--charcoal);
}

.hero .btn-elan:hover {
  background: var(--blush);
}

/* ---- Category tiles --------------------------------------------------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.cat-tile {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
}

.cat-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.cat-tile:hover img {
  transform: scale(1.06);
}

.cat-tile .cat-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 26px;
  text-align: center;
  background: linear-gradient(to top, rgba(46, 46, 46, .55), transparent 55%);
  color: var(--white);
}

.cat-tile .cat-label h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin: 0;
}

.cat-tile .cat-label span {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .85;
}

/* ---- Product cards ---------------------------------------------------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}

.product-grid.list {
  grid-template-columns: 1fr;
}

.product-card {
  position: relative;
  background: transparent;
}

.product-card .media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-deep);
}

.product-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease, opacity .4s ease;
}

.product-card:hover .media img {
  transform: scale(1.05);
}

.product-card .tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--white);
  color: var(--charcoal);
  font-size: .64rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}

.product-card .tag.sale {
  background: var(--blush);
}

.wish-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 253, 250, .9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: var(--charcoal-soft);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .3s ease, transform .3s ease, color .2s ease;
  z-index: 20;
}

.product-card:hover .wish-btn {
  opacity: 1;
  transform: translateY(0);
}

.wish-btn.active {
  color: var(--blush);
  opacity: 1;
}

.quick-add {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease;
}

.product-card:hover .quick-add {
  opacity: 1;
  transform: translateY(0);
}

.product-info {
  padding: 14px 2px 0;
}

.product-info .name {
  font-family: var(--serif);
  font-size: 1.18rem;
  margin: 0 0 2px;
}

.product-info .cat {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}

.price {
  font-size: .98rem;
  margin-top: 4px;
}

.price .was {
  color: red;
  text-decoration: line-through;
  margin-right: 8px;
  font-size: .85rem;
}

.price .now {
  color: var(--charcoal);
}

.price .now.sale {
  color: var(--gold);
}

.product-card.list-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: center;
}

.product-card.list-row .media {
  aspect-ratio: 4/5;
}

/* ---- Category layout -------------------------------------------------- */
.cat-header {
  padding: 56px 0 24px;
  text-align: center;
}

.cat-header h1 {
  font-size: 2.6rem;
  margin: 6px 0 8px;
}

.shop-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
  align-items: start;
}

.filters h4 {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin: 0 0 14px;
}

.filter-group {
  border-top: 1px solid var(--line);
  padding: 18px 0;
  margin-top: 22px;
}

.filter-group .fg-title {
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 400;
}

.filter-opt {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 9px;
  font-size: .9rem;
  cursor: pointer;
  margin-top: 30px;
}

.filter-opt input {
  accent-color: var(--sage-deep);
}

.filter-opt .cnt {
  margin-left: auto;
  color: var(--charcoal-soft);
  font-size: .78rem;
}

.swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-block;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
  gap: 16px;
  flex-wrap: wrap;
}

.shop-toolbar select {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 9px 16px;
  font-family: var(--sans);
  font-size: .82rem;
}

.view-toggle button {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 8px 12px;
  cursor: pointer;
}

.view-toggle button.active {
  background: var(--charcoal);
  color: var(--cream);
}

.active-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.pill {
  background: var(--blush-soft);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: .76rem;
}

.pill a {
  margin-left: 8px;
  color: var(--charcoal-soft);
}

/* ---- Product detail --------------------------------------------------- */
.pdp {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  padding: 48px 0;
}

.gallery .main-img {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-deep);
  aspect-ratio: 4/5;
  min-height: 400px;
  height: 700px;
  width: 100%;
}

.gallery .main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform .4s ease;
}

.gallery .main-img img.zoomed {
  transform: scale(1.8);
  cursor: zoom-out;
}

.thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.thumbs img {
  width: 72px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: .6;
  transition: opacity .2s ease;
}

.thumbs img.active,
.thumbs img:hover {
  opacity: 1;
}

.pdp-info h1 {
  font-size: 2.3rem;
  margin: 6px 0 10px;
}

.pdp-price {
  font-size: 1.4rem;
  margin: 14px 0;
}

.pdp-price .was {
  color: red;
  text-decoration: line-through;
  margin-right: 12px;
  font-size: .95rem;
}

.pdp-price .now {
  color: var(--charcoal);
}

.pdp-price .now.sale {
  color: var(--gold);
}
.tag.sale{
  color: green;
}

.attr-table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  text-align: left;
}

.attr-table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
}

.attr-table td:first-child {
  color: var(--charcoal-soft);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .74rem;
  width: 40%;
}

.variant-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 16px 0;
}

.variant-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  cursor: pointer;
  font-size: .82rem;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  transition: border-color .2s ease;
}

.variant-chip.active {
  border-color: var(--charcoal);
}

.variant-chip.disabled {
  opacity: .4;
  cursor: not-allowed;
  text-decoration: line-through;
}

.variant-chip .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.qty-stepper button {
  border: none;
  background: transparent;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 1rem;
}

.qty-stepper input {
  width: 44px;
  text-align: center;
  border: none;
  outline: none;
  font-family: var(--sans);
  background: transparent;
}

.pdp-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 22px 0;
}

/* ---- Lifestyle grid --------------------------------------------------- */
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px;
}

.lifestyle-grid a {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
}

.lifestyle-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.lifestyle-grid a:hover img {
  transform: scale(1.08);
}

.lifestyle-grid .cap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  color: var(--white);
  background: rgba(46, 46, 46, .35);
  transition: opacity .3s ease;
  font-size: .8rem;
  letter-spacing: .1em;
}

.lifestyle-grid a:hover .cap {
  opacity: 1;
}

/* ---- Cart / checkout -------------------------------------------------- */
.cart-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 44px;
  align-items: start;
  padding: 40px 0;
}

.cart-line {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.cart-line img {
  width: 96px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
}

.summary-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: sticky;
  top: 100px;
  margin-bottom: 40px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: .92rem;
}

.summary-row.total {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  font-size: 1.15rem;
  font-family: var(--serif);
}

.promo-row {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}

.promo-row input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  font-family: var(--sans);
}

.form-control,
.form-select {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 14px;
  width: 100%;
  font-family: var(--sans);
  margin-bottom: 14px;
  background: var(--white);
}

.field-label {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  display: block;
  margin-bottom: 6px;
}
.announcement-bar {
    overflow: hidden;
    white-space: nowrap;
}

.announcement-content {
    display: inline-block;
    padding-left: 100%;
    animation: slide-left 20s linear infinite;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes slide-left {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-100%);
    }
}

.order-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    align-items: center;
    gap: 25px;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}
.order-row > div:first-child {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.order-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.track-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.track-head h3 {
    margin: 5px 0 0;
    word-break: break-word;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 12px 0;
}

.summary-row span:first-child {
    flex: 1;
    min-width: 0;
    word-break: break-word;
}

.summary-row span:last-child {
    white-space: nowrap;
}

/* ---- Steps / tracking ------------------------------------------------- */
.steps {
  display: flex;
  gap: 0;
  margin: 30px 0;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  font-size: .8rem;
  color: var(--charcoal-soft);
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 15px 0;
}

.step-time {
    white-space: normal;
}

.step::before {
  content: "";
  position: absolute;
  top: 13px;
  left: -50%;
  width: 100%;
  height: 2px;
  background: var(--line);
  z-index: 0;
}

.step:first-child::before {
  display: none;
}

.step .dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream-deep);
  margin: 0 auto 8px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step.done .dot {
  background: var(--sage);
  color: var(--white);
}

.step.done::before {
  background: var(--sage);
}

.step.done {
  color: var(--charcoal);
}

/* ---- Toast ------------------------------------------------------------ */
#toast-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast-elan {
  background: var(--charcoal);
  color: var(--cream);
  padding: 14px 20px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  font-size: .88rem;
  opacity: 0;
  transform: translateY(12px);
  transition: all .3s ease;
}

.toast-elan.show {
  opacity: 1;
  transform: translateY(0);
}
.link-remove{
    background: transparent;
    border: none;
    color: red;
    cursor: pointer;
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* ---- Footer ----------------------------------------------------------- */
.footer {
  background: var(--charcoal);
  color: var(--cream-deep);
  padding: 64px 0 28px;
  margin-top: 60px;
}

.footer a {
  color: var(--cream-deep);
  font-size: .86rem;
  display: block;
  margin-bottom: 9px;
}

.footer a:hover {
  color: var(--blush);
}

.footer h5 {
  color: var(--white);
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  margin-bottom: 16px;
}

.footer .brand {
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 36px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 22px;
  font-size: .76rem;
  opacity: .7;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---- Messages --------------------------------------------------------- */
.flash {
  background: var(--blush-soft);
  border-radius: 10px;
  padding: 12px 18px;
  margin: 14px auto;
  max-width: 1240px;
  font-size: .9rem;
}
.testimonials {
  background: var(--blush-soft);
}
.testimonials .stars{
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: .2em;
}
.testimonials .t-verified{
  color: green;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-left: 8px;
}
.testimonials .t-avatar{
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--blush-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  margin-right: 10px;
}
.testimonials .t-name{
  font-size: .9rem;
  font-weight: 500;
  color: var(--blush);
}
.testimonial-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--blush-soft);
}

.testimonial-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  width: 100%;
  padding: 10px 0;
}

.testimonial-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 350px;
  width: 700px;
  flex: 0 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.slider-btn {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
  cursor: pointer;
  font-size: 18px;
  z-index: 2;
}

.prev {
  margin-right: 10px;
}

.next {
  margin-left: 10px;
}
.video-showcase{
    background:#fff;
}

.section-tag{
    color:#0f8b8d;
    font-size:13px;
    letter-spacing:3px;
    text-transform:uppercase;
}

.section-title{
    font-size:42px;
    font-weight:600;
    margin-top:10px;
}

.video-card{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    height:700px;
    cursor:pointer;
}

.video-card video{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.video-card:hover video{
    transform:scale(1.04);
}

.video-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.55),
        rgba(0,0,0,0)
    );

    display:flex;
    align-items:flex-end;
    padding:25px;
}

.video-overlay h6{
    color:white;
    font-size:18px;
    margin:0;
}
.mobile-cats {
  display: none;
}
/* ===========================
   COMING SOON
=========================== */
.coming-soon{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:50px 20px;
    background:#f8f4ef;
}
.coming-soon-box{
    width:100%;
    max-width:760px;
    padding:70px;
    background:#fff;
    border-radius:24px;
    border:1px solid #ece8e2;
    text-align:center;
    box-shadow:0 30px 80px rgba(0,0,0,.05);
}

.coming-icon{
    display:inline-block;
    padding:8px 20px;
    border-radius:40px;
    background:#F8F4EF;
    color:#A98752;
    letter-spacing:2px;
    font-size:.8rem;
    margin-bottom:25px;
    font-weight:600;
}
.loader-icon {
    width: 80px;
    animation: flipHourglass 2s ease-in-out infinite;
    transform-origin: center;
}

@keyframes flipHourglass {
    0% {
        transform: rotate(0deg);
    }
    45% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    95% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.coming-soon-box h2{
    font-size:54px;
    margin-bottom:10px;
}

.divider{
    margin:20px 0;
    letter-spacing:12px;
    color:#B8924A;
}

.coming-soon-box p{
    color:#666;
    line-height:1.8;
    margin-bottom:40px;
    max-width:520px;
    margin-left:auto;
    margin-right:auto;
}

.notify-form {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 480px;
  margin: 1.25rem auto 0;
}
.notify-input {
  flex: 1 1 180px;
  padding: .7rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: .95rem;
}
.notify-msg {
  margin: .75rem auto;
  padding: .6rem 1rem;
  border-radius: 8px;
  max-width: 480px;
  font-size: .9rem;
}
.notify-msg.success { background: #e8f5e9; color: #1b5e20; }
.notify-msg.error   { background: #fdecea; color: #b71c1c; }

.coming-links{
    margin-top:30px;
}


@media(max-width:768px){

    .video-card{
        height:380px;
        border-radius:18px;
    }

    .section-title{
        font-size:32px;
    }
     .order-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .btn-outline {
        width: fit-content;
    }
    .track-head {
        flex-direction: column;
        align-items: flex-start;
    }

  .summary-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

  .status-badge {
        margin-top: 10px;
    }
  .testimonial-card {
    min-width: 280px;
    width: 170px;
  }
  .wish-btn {
    opacity: 1;
    transform: translateY(0);
  }
  
    .coming-card{
        padding:40px 25px;
    }

    .coming-card h2{
        font-size:34px;
    }

    .notify-form{
        flex-direction:column;
    }

    .notify-form input,
    .notify-form button{
        width:100%;
    }

}

/* ---- Responsive (mobile-first audience) ------------------------------- */
@media (max-width: 900px) {

  .shop-layout,
  .pdp,
  .cart-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .filters {
    order: 2;
  }

  .summary-card {
    position: static;
  }

  .product-card.list-row {
    grid-template-columns: 120px 1fr;
  }
}

@media (max-width: 992px) {
  .menu-toggle { display: block; z-index: 1001; }
  .nav-icons   { display: none; }
  .mobile-only { display: block; }

  .navbar-elan #mobileNav {
    position: absolute; top: 100%; left: 0; right: 0; width: 100%;
    display: none; background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    z-index: 1000;
  }
  .navbar-elan #mobileNav.active { display: block; }

  .navbar-elan #mobileNav .nav-links {
    display: flex; flex-direction: column; align-items: stretch;
    gap: 0; margin: 0; padding: 8px 0; list-style: none;
  }
  .navbar-elan #mobileNav .nav-links li { display: block; }
  .navbar-elan #mobileNav .nav-links a {
    display: block; padding: 14px 24px;
    border-bottom: 1px solid var(--line); color: var(--charcoal);
  }

  /* Subcategories inline (touch has no hover) */
  .navbar-elan #mobileNav .submenu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; border-radius: 0; padding: 0;
    background: transparent; min-width: 0;
  }
  .navbar-elan #mobileNav .submenu a { padding: 12px 24px 12px 40px; color: var(--charcoal-soft); }
  .navbar-elan #mobileNav .has-submenu > a .caret { display: none; }

  /* Hearts are hover-revealed on desktop; show them on touch */
  .product-card .wish-btn { opacity: 1; transform: none; }
}

/* =========================================================================
   LOOP — Mobile responsiveness + PDP conversion layer
   Appended override layer: loads after everything above, so it wins the
   cascade without touching the original rules.
   ========================================================================= */

/* ---- Fix: the video-showcase .section-title{42px} above leaks into every
   section title on the site. Restore the global scale, re-scope the big one. */
.section-title { font-size: 2.1rem; font-weight: 500; }
.video-showcase .section-title { font-size: 2.4rem; }

/* ---- Global mobile hygiene ------------------------------------------- */
html { -webkit-text-size-adjust: 100%; }
img, video { max-width: 100%; }

/* Larger tap targets (Apple/Google minimum is 44px) */
.qty-stepper button { min-width: 44px; min-height: 44px; }
.qty-stepper input  { min-height: 44px; font-size: 1rem; }
.variant-chip       { min-height: 44px; }

/* =========================================================================
   PDP — gallery
   ========================================================================= */

/* The fixed 700px height crushes/crops on laptops and phones.
   Let aspect-ratio drive the box instead. */
.gallery .main-img {
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 5;
  position: relative;
}

.gallery .main-img img {
  transition: transform .25s ease;
  will-change: transform;
  touch-action: manipulation;
}

/* Desktop hover-pan zoom (JS sets transform-origin from cursor) */
.gallery .main-img img.zoomed {
  transform: scale(2.2);
  cursor: zoom-out;
}

/* Thumbnails scroll horizontally instead of overflowing on small screens */
.thumbs {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.thumbs::-webkit-scrollbar { display: none; }
.thumbs img { flex: 0 0 auto; border: 2px solid transparent; }
.thumbs img.active { border-color: var(--gold); opacity: 1; }

/* Zoom hint pill on the main image (mobile users don't get a cursor hint) */
.zoom-hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: rgba(255, 253, 250, .92);
  color: var(--charcoal-soft);
  font-size: .7rem;
  letter-spacing: .08em;
  padding: 7px 12px;
  border-radius: 999px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 3;
}

/* =========================================================================
   PDP — lightbox (pinch zoom / double-tap / +/- buttons)
   ========================================================================= */
.lb {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 16, .96);
  z-index: 4000;
  display: none;
  align-items: center;
  justify-content: center;
  touch-action: none;
}
.lb.open { display: flex; }

.lb-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lb-stage img {
  max-width: 100%;
  max-height: 100%;
  user-select: none;
  -webkit-user-drag: none;
  transform-origin: center center;
  will-change: transform;
}

.lb-btn {
  position: absolute;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 253, 250, .14);
  color: var(--white);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  transition: background .2s ease;
}
.lb-btn:hover { background: rgba(255, 253, 250, .3); }

.lb-close { top: max(16px, env(safe-area-inset-top)); right: 16px; }
.lb-prev  { left: 10px;  top: 50%; transform: translateY(-50%); }
.lb-next  { right: 10px; top: 50%; transform: translateY(-50%); }

.lb-zoombar {
  position: absolute;
  bottom: max(18px, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 4;
}
.lb-zoombar .lb-btn { position: static; }
.lb-count {
  color: var(--white);
  font-size: .78rem;
  letter-spacing: .12em;
  opacity: .8;
  min-width: 46px;
  text-align: center;
}

/* =========================================================================
   PDP — conversion elements
   ========================================================================= */

/* Trust strip: COD-first market → say it loudly, right under the CTA */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 14px;
  margin: 18px 0 6px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  color: var(--charcoal-soft);
}
.trust-item svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  stroke: var(--sage-deep);
}
.trust-item strong {
  color: var(--charcoal);
  font-weight: 500;
  display: block;
  font-size: .84rem;
}

/* Delivery line */
.delivery-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .84rem;
  color: var(--charcoal-soft);
  margin: 10px 0 0;
}
.delivery-note .dot-ok {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sage-deep);
  flex: 0 0 auto;
}

/* Savings callout next to price */
.you-save {
  display: inline-block;
  background: var(--blush-soft);
  color: var(--charcoal);
  font-size: .74rem;
  letter-spacing: .06em;
  padding: 4px 10px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: middle;
}

/* WhatsApp ask-a-question */
.wa-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: .84rem;
  color: var(--charcoal-soft);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}
.wa-link svg { width: 18px; height: 18px; }
.wa-link:hover { color: var(--sage-deep); }

/* Sticky mobile buy bar — appears when the main CTA scrolls away */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 900;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(46, 46, 46, .08);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  display: none;
  align-items: center;
  gap: 12px;
  transform: translateY(110%);
  transition: transform .3s ease;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .sc-price {
  font-family: var(--serif);
  font-size: 1.15rem;
  white-space: nowrap;
}
.sticky-cta .sc-price .was {
  font-size: .78rem;
  color: var(--charcoal-soft);
  text-decoration: line-through;
  display: block;
}
.sticky-cta .btn-elan {
  flex: 1;
  padding: 13px 18px;
  text-align: center;
}

/* =========================================================================
   Mobile breakpoints
   ========================================================================= */

@media (max-width: 992px) {
  .section { padding: 48px 0; }
  .pdp { gap: 32px; padding: 24px 0 40px; }
}

@media (max-width: 768px) {
  .container-x { padding: 0 16px; }
  .section { padding: 40px 0; }
  .section-title { font-size: 1.65rem; }
  .video-showcase .section-title { font-size: 1.8rem; }

  /* Hero: 70vh is too tall + text too big on phones */
  .hero { min-height: 62vh; }
  .hero h1 { font-size: 2.1rem; }
  .hero p { font-size: .95rem; margin-bottom: 20px; }
  .hero-content { padding: 0 20px; max-width: 100%; }

  /* 2-up grids: standard mobile e-commerce density */
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .cat-tile .cat-label { padding: 14px; }
  .cat-tile .cat-label h3 { font-size: 1.05rem; }
  .cat-tile .cat-label span { font-size: .6rem; }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 10px;
  }
  .product-info .name { font-size: .95rem; }
  .product-info .cat { font-size: .66rem; }
  .price { font-size: .9rem; }

  /* No hover on touch: quick-add must always be visible */
  .quick-add { opacity: 1; transform: none; }
  .quick-add .btn-elan {
    padding: 10px 12px;
    font-size: .68rem;
    letter-spacing: .1em;
    width: 100%;
  }

  /* Lifestyle grid: tighter 3-up like Instagram */
  .lifestyle-grid { grid-template-columns: repeat(3, 1fr); gap: 4px; }

  /* Testimonials */
  .slider-btn { display: none; }
  .testimonial-card { min-width: 0; width: 84vw; padding: 18px; }

  /* Video cards: shorter, and the grid is already 2-up via Bootstrap cols */
  .video-card { height: 340px; border-radius: 16px; }
  .video-overlay { padding: 14px; }
  .video-overlay h6 { font-size: .9rem; }

  /* PDP */
  .pdp { gap: 22px; padding: 12px 0 32px; }
  .pdp-info h1 { font-size: 1.6rem; }
  .pdp-price { font-size: 1.25rem; }
  .breadcrumbs { font-size: .78rem; }

  .thumbs img { width: 62px; height: 76px; }

  .pdp-actions {
    flex-wrap: wrap;
    gap: 10px;
  }
  .pdp-actions .btn-elan {
    flex: 1 1 auto;
    order: 3;
    width: 100%;
    padding: 15px 20px;
    font-size: .88rem;
  }
  .pdp-actions .qty-stepper { order: 1; }
  .pdp-actions .wish-btn.lg { order: 2; position: static; opacity: 1; transform: none; }

  .trust-strip { grid-template-columns: 1fr 1fr; padding: 14px 12px; }
  .trust-item { font-size: .76rem; }
  .trust-item strong { font-size: .78rem; }

  /* Sticky buy bar only exists on mobile */
  .sticky-cta { display: flex; }

  .attr-table td { font-size: .86rem; }

  /* Related / lifestyle sections tighten */
  .breadcrumbs { margin-bottom: 8px; }
}

@media (max-width: 400px) {
  .hero h1 { font-size: 1.85rem; }
  .product-grid { gap: 12px 8px; }
  .trust-strip { grid-template-columns: 1fr; }
}

/* Respect users who turn off motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .announcement-content { animation: none !important; }
}

/* =========================================================================
   iOS Safari fixes
   ========================================================================= */

/* iOS auto-zooms the page when a focused input's font-size is under 16px
   (promo code, notify-form, search). 16px kills the zoom jump. */
@media (max-width: 768px) {
  input, select, textarea {
    font-size: 16px;
  }
}

/* Belt-and-braces: if any element ever overflows horizontally, don't let it
   widen the page (iOS turns that into a zoomed-out layout). */
html, body {
  overflow-x: clip;
}

/* =========================================================================
   LOOP — Design refresh layer
   A refinement of the existing identity, not a rebrand:
   · warm ink replaces flat grey for depth
   · truer antique gold (the old #b89b72 read khaki)
   · deep rose for sale prices (pale blush had no contrast as text)
   · signature motif: the gold "hallmark" — a hairline + diamond, like a
     purity stamp on precious metal. It appears under section titles and
     as the inset frame on product-card hover. One idea, used twice,
     quiet everywhere else.
   ========================================================================= */
:root {
  --charcoal: #262019;            /* warm ink — deeper, richer contrast */
  --charcoal-soft: #6b6257;
  --gold: #a9834e;                /* antique gold */
  --gold-hairline: rgba(169, 131, 78, .45);
  --rose: #a85a56;                /* sale / emphasis, AA on cream */
  --radius: 16px;
  --shadow: 0 24px 48px -28px rgba(38, 32, 25, .35);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

::selection { background: var(--gold); color: var(--white); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Thin, quiet scrollbar (WebKit + Firefox) */
* { scrollbar-width: thin; scrollbar-color: var(--gold-hairline) transparent; }
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-thumb { background: var(--gold-hairline); border-radius: 99px; }
::-webkit-scrollbar-track { background: transparent; }

/* ---- Typography: bigger, tighter display serif ------------------------ */
.section-title {
  font-size: clamp(1.75rem, 3.2vw, 2.7rem);
  letter-spacing: -0.015em;
  line-height: 1.12;
  text-wrap: balance;
}
.video-showcase .section-title { font-size: clamp(1.85rem, 3.2vw, 2.7rem); }

.eyebrow {
  font-size: .64rem;
  letter-spacing: .34em;
  font-weight: 500;
}

/* ---- Signature: the hallmark ------------------------------------------
   Hairline + rotated-square "diamond" under centred section headers.
   Scoped to the centred header pattern so left-aligned page titles
   (category, cart) stay untouched. */
div[style*="text-align:center"] > .section-title::after,
div[style*="text-align: center"] > .section-title::after {
  content: "\25C6";                 /* ◆ */
  display: block;
  width: 110px;
  height: 8px;
  margin: 16px auto 0;
  font-family: var(--sans);
  font-size: 8px;
  line-height: 8px;
  letter-spacing: 0;
  color: var(--gold);
  text-align: center;
  background:
    linear-gradient(90deg, transparent, var(--gold-hairline) 15%,
                    var(--gold-hairline) 85%, transparent)
    center / 100% 1px no-repeat;
}

/* ---- Buttons: weight + press state ------------------------------------ */
.btn-elan {
  transition: transform .3s var(--ease), background .3s var(--ease),
              box-shadow .3s var(--ease);
  box-shadow: 0 10px 22px -14px rgba(38, 32, 25, .5);
}
.btn-elan:hover { box-shadow: 0 14px 26px -14px rgba(38, 32, 25, .55); }
.btn-elan:active { transform: translateY(0) scale(.98); }
.btn-outline:active { transform: scale(.98); }

/* ---- Product cards: the jewellery-box frame ---------------------------- */
.product-card .media::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--gold-hairline);
  border-radius: calc(var(--radius) - 8px);
  opacity: 0;
  transition: opacity .45s var(--ease);
  pointer-events: none;
  z-index: 2;
}
.product-card:hover .media::after { opacity: 1; }

.product-card .media img { transition: transform 1.1s var(--ease); }
.product-card:hover .media img { transform: scale(1.045); }

.product-card .tag {
  font-weight: 500;
  backdrop-filter: blur(6px);
  background: rgba(255, 253, 250, .88);
}
.product-card .tag.sale { background: var(--rose); color: var(--white); }

.product-info .name { line-height: 1.25; }
.price .now { font-family: var(--serif); font-size: 1.12rem; font-weight: 600; }
.price .now.sale, .pdp-price .now.sale { color: var(--rose); }
.price .was { color: var(--charcoal-soft); }

/* Quick-add: frosted glass over the photo */
.quick-add .btn-elan {
  background: rgba(38, 32, 25, .78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.quick-add .btn-elan:hover { background: rgba(38, 32, 25, .92); }

/* ---- Category tiles ---------------------------------------------------- */
.cat-tile { box-shadow: 0 14px 30px -22px rgba(38, 32, 25, .4); }
.cat-tile .cat-label {
  background: linear-gradient(to top, rgba(28, 23, 17, .62), transparent 58%);
}
.cat-tile .cat-label span {
  letter-spacing: .3em;
  font-size: .58rem;
  color: rgba(255, 253, 250, .85);
}

/* ---- Hero: editorial scale + legible scrim ------------------------------ */
.hero::after {
  background:
    linear-gradient(90deg, rgba(28, 23, 17, .52), rgba(28, 23, 17, .06) 60%),
    linear-gradient(to top, rgba(28, 23, 17, .35), transparent 40%);
}
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4.1rem);
  letter-spacing: -0.02em;
  line-height: 1.04;
  text-wrap: balance;
}
.hero .eyebrow { color: var(--gold); filter: brightness(1.5); }
.hero p { max-width: 44ch; }

/* ---- Announcement bar: ink ticker -------------------------------------- */
.announcement-bar {
  background: var(--charcoal);
  color: var(--cream);
  padding: 11px 0;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.announcement-bar.mt-3 { margin-top: 0 !important; }

/* ---- Testimonials ------------------------------------------------------- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
}
.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 6px;
  right: 18px;
  font-family: var(--serif);
  font-size: 4.2rem;
  line-height: 1;
  color: var(--gold-hairline);
  pointer-events: none;
}
.testimonials .stars { font-size: 1rem; letter-spacing: .24em; }
.testimonials .t-text { font-size: .95rem; line-height: 1.65; color: var(--charcoal-soft); }
.testimonials .t-verified { color: var(--sage-deep); }
.testimonials .t-avatar {
  background: var(--charcoal);
  color: var(--cream);
}

/* ---- Video cards -------------------------------------------------------- */
.video-overlay {
  background: linear-gradient(to top, rgba(28, 23, 17, .68), transparent 55%);
}
.video-overlay h6 {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 500;
}

/* ---- PDP ---------------------------------------------------------------- */
.pdp-info h1 { letter-spacing: -0.015em; text-wrap: balance; }
.pdp-price .now { font-family: var(--serif); font-weight: 600; }
.pdp-info .lead { line-height: 1.7; color: var(--charcoal-soft); }
.attr-table th { color: var(--charcoal-soft); font-weight: 400; }
.thumbs img { border-radius: 8px; transition: border-color .25s var(--ease), opacity .25s var(--ease); }

/* ---- Toast --------------------------------------------------------------- */
.toast-elan {
  border: 1px solid var(--gold-hairline);
  border-radius: 999px;
  padding: 13px 22px;
}

/* ---- Scroll reveal (class applied by JS only — no-JS users see
        everything immediately) ------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

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

/* =========================================================================
   LOOP — Mobile navbar v2
   Goals:
   · Cart + search reachable from the bar itself (no need to open the menu)
   · Category submenus collapse into tap-to-expand accordions, so a category
     with 10 subcategories no longer makes an endless drawer
   Desktop is untouched: the new pieces are display:none until the mobile MQ.
   ========================================================================= */

/* New elements are mobile-only — hidden by default (desktop) */
.nav-quick { display: none; }
.mobile-search { display: none; }
.submenu-toggle { display: none; }

.icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--charcoal);
  cursor: pointer;
  border-radius: 50%;
  -webkit-tap-highlight-color: transparent;
}
.icon-btn:active { background: var(--cream-deep); }
.icon-btn svg { width: 22px; height: 22px; }

/* Hamburger drawn as 3 bars → morphs to an X when open */
.menu-toggle .mt-bars,
.menu-toggle .mt-bars::before,
.menu-toggle .mt-bars::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform .28s var(--ease, ease), opacity .2s ease;
}
.menu-toggle .mt-bars { position: relative; }
.menu-toggle .mt-bars::before { position: absolute; top: -7px; }
.menu-toggle .mt-bars::after  { position: absolute; top: 7px; }
.menu-toggle[aria-expanded="true"] .mt-bars { background: transparent; }
.menu-toggle[aria-expanded="true"] .mt-bars::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .mt-bars::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 992px) {
  /* Bar layout: [☰]  … logo …  [search][cart] */
  .nav-inner { gap: 8px; padding: 12px 14px; }
  .menu-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; order: 1; font-size: 0;  /* hide the ☰ glyph, we draw bars */
  }
  .brand { order: 2; margin: 0 auto; }
  .brand img { height: 46px; width: 46px; }
  .nav-quick { order: 3; display: flex; align-items: center; gap: 2px; }

  /* Search bar drops out of the header when toggled */
  .mobile-search {
    display: block;
    max-height: 0;
    overflow: hidden;
    background: var(--white);
    border-top: 0 solid var(--line);
    transition: max-height .3s var(--ease, ease);
  }
  .mobile-search.open {
    max-height: 96px;
    border-top: 1px solid var(--line);
  }
  .mobile-search form {
    display: flex; align-items: center; gap: 10px; padding: 12px 16px;
  }
  .mobile-search svg { width: 20px; height: 20px; color: var(--charcoal-soft); flex: 0 0 auto; }
  .mobile-search input {
    flex: 1; border: none; background: transparent;
    font-size: 16px;  /* ≥16px so iOS doesn't zoom on focus */
    padding: 8px 0; outline: none; color: var(--charcoal);
  }
  .mobile-search .btn-elan { padding: 10px 18px; font-size: .72rem; flex: 0 0 auto; }

  /* ---- Accordion submenus in the drawer ---- */
  .navbar-elan #mobileNav .has-submenu { position: relative; }
  .navbar-elan #mobileNav .has-submenu > a { padding-right: 58px; }

  .navbar-elan #mobileNav .submenu-toggle {
    display: flex; align-items: center; justify-content: center;
    position: absolute; top: 0; right: 0;
    width: 56px; height: 51px;               /* matches the 14px+ link row height */
    background: transparent; border: none;
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
    color: var(--charcoal-soft); font-size: .8rem; cursor: pointer;
    transition: transform .28s var(--ease, ease);
  }
  .navbar-elan #mobileNav .has-submenu.open > .submenu-toggle { transform: rotate(180deg); }

  /* Collapsed by default; expands on .open (JS adds it) */
  .navbar-elan #mobileNav .submenu {
    max-height: 0; overflow: hidden;
    transition: max-height .32s var(--ease, ease);
    background: var(--cream);
  }
  .navbar-elan #mobileNav .has-submenu.open > .submenu { max-height: 70vh; overflow-y: auto; }
  .navbar-elan #mobileNav .submenu a {
    padding: 13px 24px 13px 40px;
    border-bottom: 1px solid var(--line);
    color: var(--charcoal-soft); font-size: .82rem;
  }

  /* The desktop caret inside the link is redundant on mobile */
  .navbar-elan #mobileNav .has-submenu > a .caret { display: none; }
}

@media (max-width: 400px) {
  .mobile-search .btn-elan { padding: 10px 14px; }
  .icon-btn { width: 40px; height: 40px; }
}

/* =========================================================================
   Category layout guard + Hero motion (option 1: static + subtle life)
   ========================================================================= */

/* Defensive: even if .shop-layout ever lands inside a flex/centering
   wrapper again, it fills its column instead of shrinking to content. */
.shop-layout { width: 100%; }

/* ---- Hero: Ken Burns + staggered entrance --------------------------------
   No carousel. One strong frame that breathes: the image drifts in a slow
   zoom while the copy rises in on load. Best LCP, and it suits an editorial
   jewellery brand better than an auto-rotating slider. */
.hero { position: relative; overflow: hidden; }

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transform-origin: 50% 50%;
  will-change: transform;
  animation: heroKenBurns 18s var(--ease, ease-out) both;
}
.hero::after { z-index: 1; }          /* keep the scrim above the media */
.hero-content { position: relative; z-index: 2; }

@keyframes heroKenBurns {
  from { transform: scale(1.12); }
  to   { transform: scale(1); }
}

/* Copy rises in, one element at a time */
.hero-content > .eyebrow,
.hero-content > h1,
.hero-content > p,
.hero-content > .btn-elan {
  opacity: 0;
  animation: heroRise .9s var(--ease, ease-out) forwards;
}
.hero-content > .eyebrow  { animation-delay: .15s; }
.hero-content > h1        { animation-delay: .30s; }
.hero-content > p         { animation-delay: .48s; }
.hero-content > .btn-elan { animation-delay: .64s; }

@keyframes heroRise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Motion is decoration here — never at the cost of seeing the content */
@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; }
  .hero-content > .eyebrow,
  .hero-content > h1,
  .hero-content > p,
  .hero-content > .btn-elan { opacity: 1; animation: none; }
}