/* =========================================================================
   Shubh Gifts — Gift Wholesale Store — stylesheet
   Design system: modern corporate-gifting — white/warm-cream surfaces, a
   deep burgundy/wine primary, a coral accent, soft peach/blush highlights,
   generous whitespace, soft elevation. Palette is sampled from the brand
   logo (assets/img/logo/shubh-gifts-logo.png).
   Layered on top of Bootstrap 5.3 utilities/grid.
   ========================================================================= */

/* ---------- Design tokens ---------- */
:root{
  /* core palette */
  --paper:       #FAF7F2;
  --paper-alt:   #F5E9E0;
  --paper-white: #FFFFFF;
  --ink:         #2A1416;
  --ink-soft:    #6B5450;
  --ink-faint:   #9C8984;
  --line:        #EFE1D8;
  --success:     #2E8B57;
  --danger:      #C0374B;

  --purple:      #6B1F24;
  --purple-dark: #4A1519;
  --purple-soft: #FBE7DE;
  --gold:        #E85B4A;
  --gold-dark:   #C23F2E;
  --gold-soft:   #FCE3D2;

  /* legacy token names — kept as aliases so inline styles across interior
     pages (var(--marigold), var(--brass-soft) etc.) keep resolving cleanly */
  --marigold:      var(--purple);
  --marigold-dark: var(--purple-dark);
  --maroon:        var(--purple-dark);
  --maroon-dark:   #33100F;
  --brass:         var(--gold);
  --brass-soft:    #F0A895;
  --kraft:         var(--purple-soft);

  /* type — one family site-wide */
  --font-display: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;

  --fs-h1: clamp(2.1rem, 1.5rem + 2.8vw, 3.6rem);
  --fs-h2: clamp(1.6rem, 1.3rem + 1.4vw, 2.4rem);
  --fs-h3: clamp(1.2rem, 1.05rem + 0.6vw, 1.5rem);
  --fs-lead: clamp(1.05rem, 1rem + 0.3vw, 1.2rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-micro: 0.75rem;

  /* spacing (4px base) */
  --sp-1: .25rem;
  --sp-2: .5rem;
  --sp-3: .75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  /* misc */
  --radius-sm: 10px;
  --radius-tag: 16px;
  --radius-lg: 24px;
  --shadow-tag: 0 1px 2px rgba(42,20,22,.05), 0 12px 28px rgba(42,20,22,.08);
  --shadow-tag-hover: 0 20px 40px rgba(74,21,25,.18);
  --shadow-pop: 0 10px 24px rgba(42,20,22,.08);
  --focus-ring: 0 0 0 3px rgba(107,31,36,.35);
  --container-max: 1240px;
}

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

/* ---------- Base ---------- */
html{ scroll-behavior: smooth; }
body{
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
main{ display:block; }

h1,h2,h3,.font-display{
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1{ font-size: var(--fs-h1); }
h2{ font-size: var(--fs-h2); }
h3{ font-size: var(--fs-h3); }

p.lead, .fs-lead{ font-size: var(--fs-lead); color: var(--ink-soft); }

a{ color: var(--purple); text-decoration-thickness: 1px; }
a:hover{ color: var(--purple-dark); }

.text-ink-soft{ color: var(--ink-soft) !important; }
.text-brass{ color: var(--gold-dark) !important; }
.bg-paper{ background: var(--paper) !important; }
.bg-paper-alt{ background: var(--paper-alt) !important; }
.bg-ink{ background: var(--ink) !important; }

.num{ font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1; }

.section{ padding-block: var(--sp-9); }
.section-sm{ padding-block: var(--sp-7); }
.container-xl-custom{ max-width: var(--container-max); margin-inline:auto; padding-inline: var(--sp-5); }

/* focus visibility everywhere */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
textarea:focus-visible, .btn:focus-visible, .nav-link:focus-visible, [tabindex]:focus-visible{
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: var(--radius-sm);
}

/* ---------- Section heading pattern ---------- */
.section-head{ display:flex; justify-content:space-between; align-items:flex-end; flex-wrap:wrap; gap: var(--sp-4); margin-bottom: var(--sp-6); }
.section-head h2{ margin: .5rem 0 0; }
.section-head p{ margin: .5rem 0 0; color: var(--ink-soft); max-width: 560px; }
.view-all-link{ font-weight:700; color: var(--purple); text-decoration:none; display:inline-flex; align-items:center; gap:.4rem; white-space:nowrap; }
.view-all-link:hover{ color: var(--purple-dark); gap:.6rem; }

/* ---------- Stamp / eyebrow badge ---------- */
.stamp{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  border: none;
  color: var(--purple);
  background: var(--purple-soft);
  border-radius: 999px;
  padding: .35rem .9rem;
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.stamp i{ font-size: .9em; }
.stamp-maroon{ background: var(--gold-soft); color: var(--gold-dark); }
.stamp-ink{ background: rgba(255,255,255,.14); color: #fff; }

/* ---------- Buttons ---------- */
.btn{
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: .72rem 1.5rem;
  border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn-marigold{
  background: var(--purple);
  color: #fff;
  box-shadow: var(--shadow-pop);
}
.btn-marigold:hover{
  background: var(--purple-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(74,21,25,.3);
}
.btn-outline-ink{
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-outline-ink:hover{
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper-white);
  transform: translateY(-2px);
}
.btn-outline-light{
  background: transparent;
  color: var(--paper-white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-light:hover{
  background: var(--paper-white);
  color: var(--ink);
  transform: translateY(-2px);
}
.btn-maroon{
  background: var(--ink);
  color: var(--paper-white);
  box-shadow: var(--shadow-pop);
}
.btn-maroon:hover{
  background: var(--purple-dark);
  color: var(--paper-white);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(42,20,22,.26);
}
.btn-sm-tag{ font-size: var(--fs-small); padding: .5rem 1.1rem; }
.btn:disabled, .btn[disabled]{ opacity:.55; box-shadow:none; transform:none; cursor:not-allowed; }

/* ---------- Navbar ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--paper-white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled{
  box-shadow: 0 4px 20px rgba(42,20,22,.08);
}
.site-header .navbar{
  padding-block: .75rem;
}
@media (max-width: 575.98px){
  .site-header .navbar{ padding-block: .6rem; }
}
.site-header .navbar > .container-xl-custom{
  gap: var(--sp-3);
}
.navbar-brand-custom{
  display:flex;
  align-items:center;
  flex: none;
}
.navbar-brand-custom .brand-logo-img{
  display:block;
  height: 50px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
@media (max-width: 991.98px){
  .navbar-brand-custom .brand-logo-img{ height: 60px; }
}
@media (max-width: 575.98px){
  .navbar-brand-custom .brand-logo-img{ height: 44px; }
}
.offcanvas-brand-logo{
  display:block;
  height: 40px;
  width: auto;
  object-fit: contain;
}
.site-nav .nav-link{
  color: var(--ink-soft);
  font-weight: 600;
  padding: .5rem .9rem;
  position: relative;
}
.site-nav .nav-link:hover{ color: var(--purple); }
.site-nav .nav-link[aria-current="page"]{
  color: var(--ink);
}
.site-nav .nav-link[aria-current="page"]::after{
  content:"";
  position:absolute;
  left:.9rem; right:.9rem; bottom:.1rem;
  height:2px;
  border-radius: 2px;
  background: var(--purple);
}
.offcanvas-shubh .offcanvas-header{ border-bottom:1px solid var(--line); }
.offcanvas-shubh .nav-link{ color: var(--ink); font-weight:600; padding:.7rem 0; border-bottom:1px solid var(--line); }

/* ---------- Carton tag / product card (signature component) ---------- */
.carton-tag{
  --tag-bg: var(--paper-white);
  position: relative;
  background: var(--tag-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-tag);
  box-shadow: var(--shadow-tag);
  padding: var(--sp-4);
  height: 100%;
  display:flex;
  flex-direction:column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  overflow: hidden;
}
.carton-tag:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-tag-hover);
  border-color: rgba(107,31,36,.22);
}
.carton-tag .tag-media{
  aspect-ratio: 4/3;
  overflow:hidden;
  border-radius: calc(var(--radius-tag) - 6px);
  margin-bottom: var(--sp-3);
  background: var(--paper);
}
.carton-tag .tag-media img{ width:100%; height:100%; object-fit:cover; display:block; transition: transform .4s ease; }
.carton-tag:hover .tag-media img{ transform: scale(1.04); }
.carton-tag .tag-name{
  font-family: var(--font-display);
  font-weight:700;
  font-size: 1.02rem;
  margin: .2rem 0 .35rem;
}
.carton-tag .tag-cat{
  display:inline-block;
  font-size: var(--fs-micro);
  font-weight:600;
  color: var(--purple);
  background: var(--purple-soft);
  border-radius: 999px;
  padding: .18rem .6rem;
  margin-bottom:.5rem;
  width:fit-content;
}
.carton-tag .tag-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size: var(--fs-small);
  color: var(--ink-soft);
  margin-top:auto;
  padding-top:.5rem;
  border-top: 1px solid var(--line);
}
.tag-price-pill{
  display:inline-block;
  background: var(--purple-soft);
  color: var(--purple);
  font-size: var(--fs-micro);
  font-weight:700;
  padding:.25rem .7rem;
  border-radius: 999px;
}
.carton-tag .tag-actions{ display:flex; gap:.5rem; margin-top:.75rem; }
.carton-tag .tag-actions .btn{ flex:1; }

/* ---------- Product card (real catalogue images) ---------- */
.carton-tag.product-card{ padding-top: var(--sp-4); }
.carton-tag.product-card .tag-media{
  position:relative;
  background: #fff;
  aspect-ratio: 4/3;
}
.carton-tag.product-card .tag-media img{ object-fit: contain; }
.tag-zoom{
  position:absolute; top:.5rem; right:.5rem; z-index:2;
  width:34px; height:34px; border-radius:50%;
  background: var(--paper-white); border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  opacity:0; transition: opacity .15s ease, background .15s ease, color .15s ease;
  box-shadow: 0 4px 10px rgba(42,20,22,.12);
}
.carton-tag.product-card:hover .tag-zoom,
.tag-zoom:focus-visible{ opacity:1; }
.tag-zoom:hover{ background: var(--purple); color:#fff; border-color: var(--purple); }
.carton-tag.product-card .tag-cat{ margin-top:auto; }
.carton-tag.product-card .tag-actions{ position:relative; z-index:2; }
.carton-tag.product-card .tag-actions .btn-icon-wa{ flex:none; width:44px; display:flex; align-items:center; justify-content:center; padding:.7rem; }

/* ---------- Category grid ---------- */
.cat-card{
  position:relative;
  display:block;
  border:1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper-white);
  overflow:hidden;
  text-decoration:none;
  color: var(--ink);
  height:100%;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  box-shadow: var(--shadow-tag);
}
.cat-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-tag-hover); color: var(--ink); border-color: rgba(107,31,36,.22); }
.cat-card .cat-media{ aspect-ratio: 4/5; overflow:hidden; background: var(--paper); }
.cat-card .cat-media img{ width:100%; height:100%; object-fit:cover; display:block; transition: transform .45s ease; }
.cat-card:hover .cat-media img{ transform: scale(1.06); }
.cat-card .cat-body{ padding: var(--sp-4) var(--sp-5) var(--sp-5); border-top:1px solid var(--line); }
.cat-card .cat-count{ font-size:var(--fs-small); color:var(--ink-faint); }
.cat-card .cat-name{ font-family: var(--font-display); font-weight:700; font-size:1.1rem; }

/* ---------- Category showcase (asymmetric bento grid) ---------- */
.cat-showcase-grid{ display: grid; grid-template-columns: 1fr; gap: var(--sp-5); }
.cat-showcase-grid .cat-card{ grid-column: span 1; }
@media (min-width: 576px){
  .cat-showcase-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px){
  .cat-showcase-grid{ grid-template-columns: repeat(3, 1fr); grid-auto-flow: dense; }
  .cat-showcase-grid .cat-card.cat-card--lg{ grid-column: span 2; }
}
.cat-card.cat-card--lg .cat-media{ aspect-ratio: 16/10; }
.cat-media{ aspect-ratio: 4/3; }
.cat-count-badge{
  flex: none;
  font-size: var(--fs-micro);
  font-weight:600;
  color: var(--purple);
  background: var(--purple-soft);
  border-radius:999px;
  padding: .2rem .6rem;
  white-space: nowrap;
}
.cat-card-subs{
  list-style: none;
  padding: 0;
  margin: .6rem 0 0;
  border-top: 1px solid var(--line);
  padding-top: .6rem;
}
.cat-card-subs li{
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  font-size: var(--fs-small);
  color: var(--ink-soft);
  padding-block: .15rem;
}
.cat-card-subs li b{ color: var(--ink); font-weight: 600; }

/* ---------- Category tile (icon placeholder, new categories w/o photography yet) ---------- */
.cat-media-tile{
  display:flex;
  align-items:center;
  justify-content:center;
  background: var(--tile-tint, var(--purple-soft));
  color: var(--tile-fg, var(--purple));
  font-size: 2.75rem;
}
.cat-card .cat-desc{ font-size: var(--fs-small); color: var(--ink-soft); margin: .35rem 0 .85rem; }
.cat-card .cat-cta{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  font-size: var(--fs-small);
  font-weight:700;
  color: var(--purple);
}
.cat-card .cat-cta i{ transition: transform .2s ease; }
.cat-card:hover .cat-cta i{ transform: translateX(3px); }

/* ---------- Gifting collections showcase (premium image tiles — the real
   catalogue scans are busy multi-SKU pages with printed labels, so text
   lives in a clean panel BELOW the photo, never overlaid on top of it;
   only a solid, always-legible count pill sits on the image itself) ---------- */
.collection-showcase-grid{ display: grid; grid-template-columns: 1fr; gap: var(--sp-5); }
@media (min-width: 576px){
  .collection-showcase-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px){
  .collection-showcase-grid{ grid-template-columns: repeat(3, 1fr); grid-auto-flow: dense; }
  .collection-showcase-grid .collection-tile.collection-tile--lg{ grid-column: span 2; }
}
.collection-tile{
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper-white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-tag);
  color: var(--ink);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.collection-tile:hover{ transform: translateY(-4px); box-shadow: var(--shadow-tag-hover); color: var(--ink); }
.collection-tile-media{ position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--paper-alt); }
.collection-tile--lg .collection-tile-media{ aspect-ratio: 16 / 11; }
.collection-tile-media img{ width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.collection-tile:hover .collection-tile-media img{ transform: scale(1.06); }
.collection-tile-count{
  position: absolute; top: var(--sp-3); left: var(--sp-3);
  background: var(--paper-white);
  color: var(--purple);
  font-size: var(--fs-micro);
  font-weight: 700;
  padding: .3rem .7rem;
  border-radius: 999px;
  box-shadow: var(--shadow-tag);
}
.collection-tile-body{ padding: var(--sp-5); display: flex; flex-direction: column; flex: 1; }
.collection-tile-name{ font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; margin-bottom: .4rem; }
.collection-tile--lg .collection-tile-name{ font-size: 1.5rem; }
.collection-tile-desc{ font-size: .9rem; color: var(--ink-soft); flex: 1; margin-bottom: var(--sp-4); }
.collection-tile-cta{
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 700; font-size: .85rem;
  color: var(--purple);
  background: var(--purple-soft);
  padding: .55rem 1rem;
  border-radius: 999px;
  transition: background-color .2s ease, color .2s ease;
}
.collection-tile-cta i{ transition: transform .2s ease; }
.collection-tile:hover .collection-tile-cta{ background: var(--purple); color: var(--paper-white); }
.collection-tile:hover .collection-tile-cta i{ transform: translateX(3px); }

/* ---------- Featured collection spotlight (pairs with the product-card
   rail on desktop; same image-top / clean-body-below treatment as the
   category and collection cards for a consistent look) ---------- */
.featured-spotlight{
  display:flex;
  flex-direction:column;
  height:100%;
  background: var(--paper-white);
  border:1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: var(--shadow-tag);
  transition: transform .2s ease, box-shadow .2s ease;
}
.featured-spotlight:hover{ transform: translateY(-4px); box-shadow: var(--shadow-tag-hover); }
.featured-spotlight-media{ aspect-ratio: 1/1; overflow:hidden; background: var(--paper); }
.featured-spotlight-media img{ width:100%; height:100%; object-fit:cover; display:block; transition: transform .45s ease; }
.featured-spotlight:hover .featured-spotlight-media img{ transform: scale(1.05); }
.featured-spotlight-body{ padding: var(--sp-5); display:flex; flex-direction:column; flex:1; }
.featured-spotlight-body .stamp{ align-self:flex-start; margin-bottom: var(--sp-3); }
.featured-spotlight-body h3{ font-family: var(--font-display); font-weight:800; font-size:1.3rem; margin-bottom: .5rem; }
.featured-spotlight-body p{ color: var(--ink-soft); font-size:.95rem; margin-bottom:0; }

/* ---------- Gifting essentials (Dry Fruits / Chocolates / Party Supplies)
   — same image-top / clean-body-below treatment and 4:5 ratio as the
   category and collection cards, for a consistent look site-wide ---------- */
.essential-card{
  display:flex;
  flex-direction:column;
  height:100%;
  background: var(--paper-white);
  border:1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow:hidden;
  text-decoration:none;
  color: var(--ink);
  box-shadow: var(--shadow-tag);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.essential-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-tag-hover); color: var(--ink); border-color: rgba(107,31,36,.22); }
.essential-media{ aspect-ratio: 4/5; overflow:hidden; background: var(--paper); }
.essential-media img{ width:100%; height:100%; object-fit:cover; display:block; transition: transform .45s ease; }
.essential-card:hover .essential-media img{ transform: scale(1.06); }
.essential-body{ padding: var(--sp-5); display:flex; flex-direction:column; flex:1; }
.essential-name{ font-family: var(--font-display); font-weight:800; font-size:1.2rem; margin-bottom:.4rem; }
.essential-desc{ font-size:.92rem; color: var(--ink-soft); flex:1; margin-bottom: var(--sp-4); }
.essential-cta{ display:inline-flex; align-items:center; gap:.4rem; font-size:var(--fs-small); font-weight:700; color: var(--purple); }
.essential-cta i{ transition: transform .2s ease; }
.essential-card:hover .essential-cta i{ transform: translateX(3px); }

/* ---------- Why buy from us / reason rows ---------- */
.reason-row{
  display:flex;
  gap: var(--sp-5);
  padding-block: var(--sp-5);
  border-bottom: 1px solid var(--line);
  align-items:flex-start;
}
.reason-row:first-of-type{ border-top: 1px solid var(--line); }
.reason-row .reason-icon,
.reason-icon{
  flex: none;
  width:56px; height:56px;
  border-radius: 16px;
  background: var(--purple-soft);
  color: var(--purple);
  display:flex; align-items:center; justify-content:center;
  font-size:1.4rem;
}

/* ---------- Counters ---------- */
.counter-block{ text-align:center; }
.counter-num{
  font-family: var(--font-display);
  font-weight:800;
  font-size: clamp(2.1rem, 1.6rem + 2.2vw, 3.4rem);
  color: var(--ink);
  display:block;
}
.counter-label{ color: var(--ink-soft); font-size: var(--fs-small); font-weight:500; }

/* ---------- Steps (real sequence) ---------- */
.step-card{ position:relative; padding-top: var(--sp-6); }
.step-num{
  font-family: var(--font-display);
  font-weight:800;
  font-size: 2.4rem;
  color: var(--purple);
  opacity: .22;
  line-height:1;
  display:block;
  margin-bottom: var(--sp-2);
}

/* ---------- CTA band ---------- */
.cta-band{
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: var(--paper-white);
  padding-block: var(--sp-7);
}
.cta-band h2{ color: var(--paper-white); }
.cta-band a.btn-marigold{ background:#fff; color:var(--purple); box-shadow:none; }
.cta-band a.btn-marigold:hover{ background: var(--gold-soft); color:var(--purple-dark); transform: translateY(-2px); }

/* ---------- Footer ---------- */
.site-footer{
  background: var(--ink);
  color: rgba(255,255,255,.65);
  padding-block: var(--sp-8) var(--sp-5);
}
.site-footer h6{
  color: var(--paper-white);
  font-family: var(--font-display);
  font-weight:700;
  margin-bottom: var(--sp-4);
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing:.05em;
}
.site-footer a{ color: rgba(255,255,255,.65); text-decoration:none; }
.site-footer a:hover{ color: var(--gold); text-decoration:none; }
.site-footer ul{ list-style:none; padding:0; margin:0; }
.site-footer li{ margin-bottom:.6rem; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.12); margin-top: var(--sp-7); padding-top: var(--sp-4); font-size: var(--fs-small); color: rgba(255,255,255,.45); }
.footer-social a{
  display:inline-flex; align-items:center; justify-content:center;
  width:38px; height:38px; border:1px solid rgba(255,255,255,.2); border-radius:50%;
  margin-right:.5rem;
}
.footer-social a:hover{ background: var(--purple); border-color:var(--purple); color:#fff; }
.footer-logo-wrapper{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  border-radius: 14px;
  padding: .65rem 1.1rem;
  box-shadow: 0 10px 26px rgba(0,0,0,.24);
}
.footer-logo-wrapper img{
  display:block;
  width: 230px;
  max-width: 100%;
  height:auto;
  object-fit:contain;
}
@media (max-width: 991.98px){
  .footer-logo-wrapper img{ width: 210px; }
}
@media (max-width: 575.98px){
  .footer-logo-wrapper img{ width: 195px; }
}

/* ---------- Floating WhatsApp + back-to-top ---------- */
.float-stack{ position:fixed; right: var(--sp-5); bottom: var(--sp-5); z-index:1040; display:flex; flex-direction:column; gap:.6rem; align-items:flex-end; }
.fab{
  width:52px; height:52px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.4rem;
  border: none;
  box-shadow: 0 10px 24px rgba(42,20,22,.2);
  transition: transform .15s ease, opacity .2s ease, visibility .2s, background-color .15s ease;
}
.fab-whatsapp{ background:#25D366; color:#fff; }
.fab-whatsapp:hover{ transform: translateY(-3px); color:#fff; }
.fab-top{
  background: var(--paper-white); color: var(--ink);
  border: 1px solid var(--line);
  opacity:0; visibility:hidden; transform: translateY(8px);
}
.fab-top.is-visible{ opacity:1; visibility:visible; transform:none; }
.fab-top:hover{ background: var(--ink); color: var(--paper-white); }
.fab-call{ background: var(--purple); color:#fff; }
.fab-call:hover{ transform: translateY(-3px); color:#fff; background: var(--purple-dark); }

/* ---------- Breadcrumb / page banner ---------- */
.page-banner{
  background: var(--paper-alt);
  border-bottom: 1px solid var(--line);
  padding-block: var(--sp-7) var(--sp-6);
}
.page-banner .breadcrumb{ margin-bottom: var(--sp-3); font-size: var(--fs-small); }
.page-banner .breadcrumb-item + .breadcrumb-item::before{ content:"/"; color: var(--ink-faint); }
.page-banner .breadcrumb a{ color: var(--ink-soft); text-decoration:none; }
.page-banner .breadcrumb a:hover{ color: var(--purple); }

/* ---------- Forms ---------- */
.form-label{ font-weight:600; color: var(--ink); font-size: var(--fs-small); }
.form-control, .form-select{
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  padding: .65rem .9rem;
  background: var(--paper-white);
}
.form-control:focus, .form-select:focus{
  border-color: var(--purple);
  box-shadow: var(--focus-ring);
}
.form-check-input:checked{ background-color: var(--purple); border-color: var(--purple); }
.form-check-input:focus{ box-shadow: var(--focus-ring); }
.invalid-feedback{ color: var(--danger); font-size: var(--fs-small); }
.is-invalid{ border-color: var(--danger) !important; }
.is-valid{ border-color: var(--success) !important; }
.field-hint{ font-size: var(--fs-micro); color: var(--ink-faint); }

/* Multi-step form */
.step-progress{ display:flex; gap:.5rem; margin-bottom: var(--sp-6); counter-reset: step; }
.step-progress .sp-item{
  flex:1; text-align:center; font-size: var(--fs-small); color: var(--ink-faint); position:relative; padding-top: var(--sp-6);
}
.step-progress .sp-item::before{
  counter-increment: step;
  content: counter(step);
  position:absolute; top:0; left:50%; transform:translateX(-50%);
  width:34px; height:34px; border-radius:50%;
  border:1.5px solid var(--line);
  background: var(--paper-white);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-weight:700; color: var(--ink-faint);
}
.step-progress .sp-item.active::before{ border-color: var(--purple); color: #fff; background: var(--purple); }
.step-progress .sp-item.done::before{ border-color: var(--success); color:#fff; background: var(--success); content: "\2713"; }
.form-step{ display:none; }
.form-step.active{ display:block; }

/* Enquiry cart */
.cart-badge{
  position:absolute; top:-8px; right:-8px;
  background: var(--purple); color:#fff; border-radius:50%;
  width:20px; height:20px; font-size:.7rem; display:flex; align-items:center; justify-content:center;
  font-weight:700;
}

/* ---------- Product detail ---------- */
.pd-thumb{ border:1px solid var(--line); border-radius: var(--radius-sm); cursor:pointer; overflow:hidden; aspect-ratio:1/1; }
.pd-thumb img{ width:100%; height:100%; object-fit:cover; }
.pd-thumb.active{ border-color: var(--purple); border-width:2px; }
.pd-main-img{ border:1px solid var(--line); border-radius: var(--radius-tag); box-shadow: var(--shadow-tag); aspect-ratio:1/1; object-fit:contain; background:#fff; width:100%; }
.spec-table th{ color: var(--ink-faint); font-weight:600; width:40%; background:var(--paper-alt); }
.spec-table td, .spec-table th{ padding:.6rem .8rem; border-bottom:1px solid var(--line); }
.nav-tabs .nav-link{ color: var(--ink-soft); border:none; border-bottom:2px solid transparent; font-weight:600; }
.nav-tabs .nav-link.active{ color: var(--ink); border-bottom-color: var(--purple); background:transparent; }

/* ---------- Gallery ---------- */
.gallery-filter .btn{ font-size: var(--fs-small); }
.gallery-item{ overflow:hidden; border-radius: var(--radius-sm); border:1px solid var(--line); cursor:pointer; margin-bottom: var(--sp-4); }
.gallery-item img{ width:100%; display:block; transition: transform .3s ease; }
.gallery-item:hover img{ transform: scale(1.05); }
.masonry{ column-count:1; column-gap: var(--sp-4); }
@media (min-width:576px){ .masonry{ column-count:2; } }
@media (min-width:992px){ .masonry{ column-count:3; } }
.masonry .gallery-item{ break-inside: avoid; }

/* ---------- FAQ ---------- */
.accordion-button{ font-weight:600; color: var(--ink); background: var(--paper-white); }
.accordion-button:not(.collapsed){ background: var(--purple-soft); color: var(--purple); box-shadow:none; }
.accordion-button:focus{ box-shadow: var(--focus-ring); }
.accordion-item{ border-color: var(--line); border-radius: var(--radius-sm); overflow:hidden; }
.faq-group-title{ font-family: var(--font-display); margin-top: var(--sp-6); margin-bottom: var(--sp-3); }

/* ---------- Empty state ---------- */
.empty-state{ text-align:center; padding: var(--sp-9) var(--sp-4); border: 1.5px dashed var(--line); border-radius: var(--radius-lg); }
.empty-state i{ font-size:2.4rem; color: var(--purple-soft); }

/* ---------- Timeline (about page) ---------- */
.timeline{ position:relative; padding-left: 28px; }
.timeline::before{ content:""; position:absolute; left:6px; top:6px; bottom:6px; width:2px; background: var(--line); }
.timeline-item{ position:relative; padding-bottom: var(--sp-6); }
.timeline-item::before{ content:""; position:absolute; left:-28px; top:4px; width:14px; height:14px; border-radius:50%; background: var(--gold); border:2px solid var(--paper-white); box-shadow:0 0 0 2px var(--purple); }
.timeline-year{ font-family: var(--font-display); font-weight:800; color: var(--purple); }

/* ---------- Utility: scroll reveal ---------- */
.reveal{ opacity:0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-visible{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity:1; transform:none; } }

/* ---------- 404 / thank-you ---------- */
.state-page{ min-height:60vh; display:flex; align-items:center; }
.state-code{ font-family: var(--font-display); font-size: clamp(4rem,3rem+5vw,8rem); font-weight:800; color: var(--purple-soft); line-height:1; }

/* skip link */
.skip-link{
  position:absolute; left:-999px; top:auto;
  background: var(--ink); color:#fff; padding:.6rem 1rem; z-index:2000; border-radius: var(--radius-sm);
}
.skip-link:focus{ left: var(--sp-4); top: var(--sp-4); }

/* ---------- Plain icon button (header enquiry trigger) ---------- */
.btn-icon-plain{
  background:transparent; border:none; padding:.3rem; line-height:1;
}
.btn-icon-plain:hover{ opacity:.7; }

/* ---------- Mega menu (desktop) ---------- */
.mega-dropdown{ position:relative; }
.mega-menu{
  width: min(920px, 92vw);
  max-height: 80vh;
  overflow-y: auto;
  padding: var(--sp-5);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(42,20,22,.16);
  margin-top: .75rem;
}
.mega-menu-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4) var(--sp-5);
}
.mega-col{ display:flex; flex-direction:column; }
.mega-col-title{
  font-weight:700; color: var(--ink) !important;
  border-bottom: 1px solid var(--line);
  padding-bottom:.4rem; margin-bottom:.3rem;
  white-space: normal;
}
.mega-sub-link{
  font-size: var(--fs-small); color: var(--ink-soft) !important;
  padding-top:.25rem; padding-bottom:.25rem;
  white-space: normal;
  border-radius: 6px;
}
.mega-menu .dropdown-item{ background:transparent; padding-left:.4rem; padding-right:.4rem; border-radius:6px; }
.mega-menu .dropdown-item:hover, .mega-menu .dropdown-item:focus{ background: var(--purple-soft); color: var(--purple) !important; }
.mega-count{ color: var(--ink-faint); font-size: var(--fs-micro); }

/* ---------- Mobile nested accordion (Products, in offcanvas) ---------- */
.mobile-mega .accordion-button{ font-size: .95rem; padding: .6rem 0; box-shadow:none; }
.mobile-mega .accordion-button::after{ margin-left:.5rem; }
.mobile-mega-link{ padding:.4rem 0 .4rem .5rem; color: var(--ink-soft); text-decoration:none; font-size:.9rem; border-bottom:1px solid var(--line); }
.mobile-mega-link:hover{ color: var(--purple); }
.mobile-mega-group-btn{ background:transparent; }

/* ---------- Sidebar filters (products.html) ---------- */
.sidebar-group{ border-bottom:1px solid var(--line); padding-block:.5rem; }
.sidebar-group-head{ display:flex; align-items:center; gap:.4rem; }
.sidebar-group-toggle{
  background:transparent; border:none; padding:.2rem; color: var(--ink-soft);
  transition: transform .15s ease;
}
.sidebar-group-toggle[aria-expanded="true"]{ transform: rotate(90deg); }
.sidebar-group-name{
  background:transparent; border:none; padding:.2rem 0; text-align:left; flex:1;
  font-weight:600; color: var(--ink);
}
.sidebar-group-name.is-active{ color: var(--purple); text-decoration: underline; text-underline-offset:3px; }
.sidebar-sub-list{ padding: .4rem 0 .4rem 1.6rem; }

/* ---------- Filter chips ---------- */
.filter-chip{
  display:inline-flex; align-items:center; gap:.3rem;
  background: var(--purple-soft); border:none;
  border-radius:999px; padding:.3rem .8rem; font-size: var(--fs-small);
  color: var(--purple); margin:0 .4rem .4rem 0; font-weight:600;
}
.filter-chip:hover{ background: var(--purple); color:#fff; }

/* ---------- Pagination ---------- */
.pagination .page-link{
  border-radius: var(--radius-sm); border-color: var(--line); color: var(--ink);
  margin: 0 .15rem;
}
.pagination .page-item.active .page-link{ background: var(--purple); border-color: var(--purple); }
.pagination .page-link:focus{ box-shadow: var(--focus-ring); }

/* ---------- Enquiry offcanvas ---------- */
.enquiry-offcanvas{ max-width: 420px; }
.ec-thumb{ object-fit:contain; background:#fff; border:1px solid var(--line); border-radius: 8px; flex:none; }
.ec-qty input[data-qty-input]{ padding:.25rem; }
.ec-qty .btn{ padding:.2rem .5rem; }

/* ---------- Quick view media ---------- */
.qv-media{ aspect-ratio: 4/3; background:#fff; border:1px solid var(--line); border-radius: var(--radius-sm); display:flex; align-items:center; justify-content:center; overflow:hidden; }
.qv-media img{ width:100%; height:100%; object-fit:contain; }

/* ---------- Product-detail not-found state ---------- */
.pd-not-found{ text-align:center; padding: var(--sp-9) var(--sp-4); }
.pd-not-found i{ font-size:2.6rem; color: var(--purple-soft); }

/* =========================================================================
   HOMEPAGE — utility bar, split hero + product collage, value strip,
   featured collections, category showcase, branding band, solutions,
   trust strip, stats band, catalogue CTA, instant quote.
   ========================================================================= */

/* ---------- Utility bar (sits in normal flow above the sticky header; on
   scroll it scrolls away naturally and the header — sticky in its own
   right, see .site-header above — takes over the top of the viewport.
   This is a pure-CSS handoff: no JS class toggling, no height animation
   on the header itself, so there is nothing to jump or flicker. A
   previous implementation made .site-header-wrap sticky and animated the
   utility bar's max-height on scroll, which dragged the header up/down by
   the bar's height on every threshold crossing — that was the root cause
   of the header "flicker" and has been removed rather than papered over. ---------- */
.utility-bar{
  background: var(--ink);
  color: rgba(255,255,255,.7);
  font-size: var(--fs-micro);
}
.utility-bar .container-xl-custom{ padding-block: .5rem; }
.utility-bar a{ color: #fff; text-decoration: none; }
.utility-bar a:hover{ color: var(--gold); }
.utility-note{ color: rgba(255,255,255,.55); }

/* ---------- Hero slider (full-width, real commissioned gifting
   photography — see assets/img/hero/). One image fills the slide edge to
   edge; the heading/CTA sits bottom-left over a bottom-anchored scrim so
   the product itself stays the dominant visual instead of being boxed
   into a small card. ---------- */
.hero-full{
  position: relative;
  width: 100%;
  max-width: none;
  background: var(--ink);
}
/* height uses clamp(), not aspect-ratio + max-height: combining a fixed
   aspect-ratio with max-height made Chrome back-compute a narrower width
   from the clamped height too, shrinking the slide off the right edge and
   leaving a dark gap (the .hero-full background showing through). A plain
   width:100% + height clamp() can't trigger that shrink. */
.hero-slide{
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  height: clamp(650px, 34vw, 780px);
  background: var(--ink);
}
@media (max-width: 991.98px){
  .hero-slide{ height: clamp(500px, 58vw, 650px); }
}
@media (max-width: 575.98px){
  .hero-slide{ height: clamp(520px, 155vw, 650px); }
}
.hero-slide-img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-slide-scrim{
  position: absolute; inset: 0;
  /* bottom-anchored scrim: keeps the top of the image bright, only the
     lower band (where the copy now sits) is darkened for legibility. */
  background: linear-gradient(to top, rgba(42,20,22,.8) 0%, rgba(42,20,22,.5) 35%, rgba(42,20,22,.14) 68%, rgba(42,20,22,0) 88%);
}
.hero-slide-content{
  position: absolute; inset: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(55px, 5vw, 75px);
}
@media (max-width: 575.98px){
  .hero-slide-content{ padding-bottom: clamp(42px, 9vw, 48px); }
}
.hero-slide-copy{ max-width: min(920px, 100%); color: #fff; }
.hero-slide-copy h1,
.hero-slide-copy h2{ color: #fff; margin: var(--sp-3) 0 0; font-size: clamp(1.9rem, 1.05rem + 2.7vw, 4rem); line-height: 1.08; }
.hero-slide-copy .lead{ color: rgba(255,255,255,.85); margin-top: var(--sp-4); font-size: clamp(.95rem, .8rem + .7vw, 1.375rem); max-width: 60ch; }
.stamp.stamp-on-image{ background: rgba(255,255,255,.14); color: #fff; backdrop-filter: blur(2px); }
.hero-slide-copy .btn-outline-light{
  background: rgba(20,9,10,.32);
  backdrop-filter: blur(6px);
  border-color: rgba(255,255,255,.7);
}

/* controls: confined to the upper part of the image (bottom:44% instead of
   the full-height 0) so they stay clear of the bottom-anchored hero copy —
   scales with hero height instead of a fixed px offset, so it holds across
   breakpoints and slide-to-slide heading/line-count variance. */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next{
  width: auto; opacity: 1;
  bottom: 44%;
}
.hero-nav-btn{
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  border: 1.5px solid rgba(255,255,255,.5);
  color: #fff;
  font-size: 1.1rem;
  backdrop-filter: blur(3px);
  transition: background-color .15s ease, transform .15s ease;
  margin-inline: var(--sp-5);
}
@media (max-width: 575.98px){
  .hero-nav-btn{ width: 38px; height: 38px; font-size: 1rem; margin-inline: var(--sp-3); }
}
.hero-carousel .carousel-control-prev:hover .hero-nav-btn,
.hero-carousel .carousel-control-next:hover .hero-nav-btn{ background: rgba(255,255,255,.32); transform: scale(1.06); }
.hero-carousel:focus-visible{ outline: 3px solid var(--gold); outline-offset: -3px; }

/* pagination dots */
.hero-dots{ position: absolute; bottom: var(--sp-5); margin: 0; gap: .5rem; }
.hero-dots [data-bs-target]{
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  border: none;
  opacity: 1;
  text-indent: -9999px;
  transition: background-color .2s ease, width .2s ease;
}
.hero-dots [data-bs-target].active{ background: #fff; width: 26px; border-radius: 5px; }

/* ---------- Value proposition strip — an independent section below the
   hero (kept detached, not overlapping it, so the slider stays a clean
   full-width banner on its own). ---------- */
.benefit-strip-wrap{ position: relative; z-index: 2; margin-top: var(--sp-7); }
.benefit-strip{
  background: var(--paper-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-tag-hover);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
  padding: var(--sp-6) var(--sp-5);
}
@media (min-width: 768px){
  .benefit-strip{ grid-template-columns: repeat(5, 1fr); }
}
.benefit-item{ display: flex; align-items: center; gap: .8rem; }
.benefit-item .benefit-icon{
  flex:none; width:44px; height:44px; border-radius:12px;
  background: var(--purple-soft); color: var(--purple);
  display:flex; align-items:center; justify-content:center; font-size:1.1rem;
}
.benefit-item .benefit-label{ font-weight: 600; font-size: .88rem; color: var(--ink); line-height: 1.3; }

/* ---------- Custom branding band ---------- */
.branding-band{
  position: relative;
  min-height: 44vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--radius-lg);
}
.branding-band-media{ position: absolute; inset: 0; z-index: -1; }
.branding-band-media img{ width: 100%; height: 100%; object-fit: cover; object-position: 20% 15%; display: block; }
.branding-band-scrim{
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(42,20,22,.93) 0%, rgba(74,21,25,.78) 45%, rgba(74,21,25,.3) 100%);
}
.branding-band-inner{ position: relative; padding-block: var(--sp-8); }
.branding-band-content{ max-width: 560px; color: var(--paper-white); }
.branding-band-content h2{ color: var(--paper-white); }
.branding-band-content .fs-lead{ color: rgba(255,255,255,.82); }
.branding-band-content .stamp{ background: rgba(255,255,255,.16); color:#fff; }

/* ---------- Corporate gifting solutions ---------- */
.solution-card{
  position:relative;
  display:flex;
  flex-direction:column;
  height:100%;
  background: var(--paper-white);
  border:1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: var(--shadow-tag);
  transition: transform .2s ease, box-shadow .2s ease;
}
.solution-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-tag-hover); }
.solution-card .sol-media{ aspect-ratio: 4/5; overflow:hidden; background:var(--paper); }
.solution-card .sol-media img{ width:100%; height:100%; object-fit:cover; transition: transform .4s ease; }
.solution-card:hover .sol-media img{ transform: scale(1.05); }
.solution-card .sol-body{ padding: var(--sp-5); display:flex; flex-direction:column; flex:1; }
.solution-card .sol-title{ font-family: var(--font-display); font-weight:700; font-size:1.1rem; margin-bottom:.4rem; }
.solution-card .sol-desc{ color: var(--ink-soft); font-size:.92rem; flex:1; }
.solution-card .sol-link{ margin-top: var(--sp-4); font-weight:700; color: var(--purple); text-decoration:none; display:inline-flex; align-items:center; gap:.4rem; }
.solution-card .sol-link i{ transition: transform .15s ease; }
.solution-card:hover .sol-link i{ transform: translateX(3px); }

/* ---------- Who buys from us / trust strip (buyer types, not fake logos) ---------- */
.buyer-card{ text-align: center; padding: var(--sp-4) var(--sp-2); }
.buyer-icon{
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--purple-soft);
  color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto var(--sp-3);
}
.buyer-label{ font-weight: 600; font-size: .92rem; color: var(--ink); margin: 0; }

/* ---------- Statistics band ---------- */
.stats-band{ background: linear-gradient(135deg, var(--ink) 0%, #1C0E0E 100%); color: #fff; }
.stats-band .counter-num{ color:#fff; }
.stats-band .counter-label{ color: rgba(255,255,255,.62); }
.stats-band .stamp{ background: rgba(255,255,255,.12); color: var(--gold-soft); }

/* ---------- Instant quote section ---------- */
.quote-section{ background: var(--paper-alt); border-radius: var(--radius-lg); padding: var(--sp-8) var(--sp-6); }
.quote-panel{
  background: var(--paper-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-tag);
  padding: var(--sp-6);
}
.quote-copy{ max-width: 460px; }
.quote-copy ul{ list-style:none; padding:0; margin: var(--sp-5) 0 0; }
.quote-copy li{ display:flex; align-items:flex-start; gap:.6rem; margin-bottom: var(--sp-3); color: var(--ink-soft); }
.quote-copy li i{ color: var(--purple); margin-top:.2rem; }
@media (max-width: 767.98px){
  .quote-section{ padding: var(--sp-7) var(--sp-4); }
  .quote-panel{ padding: var(--sp-5); }
}

/* on the homepage's tall first screen, the fab stack would otherwise sit on
   top of the hero copy on first paint — .hero-aware-fabs (added only when
   a .hero-full exists, see initFloatStackMobileReveal) delays it until the
   visitor has scrolled past that first screen, on mobile only. */
@media (max-width: 575.98px){
  .float-stack{ gap: .4rem; right: var(--sp-4); bottom: var(--sp-4); }
  .fab{ width: 44px; height: 44px; font-size: 1.15rem; }
  .float-stack.hero-aware-fabs{ opacity: 0; pointer-events: none; transition: opacity .25s ease; }
  .float-stack.hero-aware-fabs.is-visible{ opacity: 1; pointer-events: auto; }
}
