@charset "utf-8";
/* ==========================================================================
   LUMERA PURE BEAUTY  -  "Rose Glow" redesign layer (loaded last)
   Palette: raspberry, rose, coral-peach, champagne, soft lilac on warm blush.
   Fonts (Cormorant + Inter) unchanged.
   ========================================================================== */

:root {
  /* re-map the site's existing variables so every old rule inherits the new palette */
  --ink: #3d2a3a;
  --ink-soft: #8a7285;
  --orchid: #b98ac0;          /* soft orchid */
  --orchid-deep: #5f3a5c;     /* muted plum (headings) */
  --orchid-pale: #fdf0f5;
  --coral: #ffcbb9;           /* pastel peach */
  --coral-deep: #b95d85;      /* dusty rose (text accents) */
  --gold: #f7d8a8;            /* champagne */
  --blush: #fff5f2;
  --blush-deep: #ffe4e4;
  --line: #f6e2e8;
  --bg-section: #fffaf8;

  --lilac: #d3c0f5;
  --grad: linear-gradient(120deg, #f7b5cb 0%, #f4a9d0 45%, #cdb6f2 100%);
  /* 300% wide pastel gradient: default shows peach->pink, hover slides to pink->lilac */
  --btn-grad: linear-gradient(100deg, #ffcbb9 0%, #ffb9cb 30%, #f6aed0 55%, #d9bdf6 80%, #c7b4f7 100%);
  --btn-text: #5a2f55;

  --shadow-soft: 0 1px 2px rgba(58, 31, 48, .05), 0 18px 36px -16px rgba(176, 100, 140, .22);
  --shadow-pop: 0 1px 2px rgba(58, 31, 48, .06), 0 30px 54px -20px rgba(176, 100, 140, .32);
  --glow-coral: 0 12px 28px -10px rgba(240, 150, 185, .6);
  --glow-orchid: 0 12px 28px -10px rgba(176, 100, 140, .45);
}

::selection { background: #ffd0da; color: #5a1f48; }
html { scroll-behavior: smooth; }
body { background: #fff; color: var(--ink); }

/* ---------- scroll reveal (only active when reveal.js ran) ---------- */
.has-reveal .rv {
  opacity: 0; transform: translateY(34px);
  transition: opacity .8s cubic-bezier(.2, .7, .2, 1) var(--rv-delay, 0ms), transform .8s cubic-bezier(.2, .7, .2, 1) var(--rv-delay, 0ms);
}
.has-reveal .rv.in { opacity: 1; transform: none; }
.has-reveal ul.s3-prdcts-list li.rv { transition: opacity .8s cubic-bezier(.2, .7, .2, 1) var(--rv-delay, 0ms), transform .8s cubic-bezier(.2, .7, .2, 1) var(--rv-delay, 0ms), box-shadow .4s ease, border-color .4s ease; }
.has-reveal ul.s3-prdcts-list li.rv.in:hover { transform: translateY(-12px); }

/* ==========================================================================
   BUTTONS  -  gradient pill: warm rose->coral by default, slides to a deep
   plum/raspberry on hover with a glow ring + light sweep
   ========================================================================== */
.shop-btn, a.shop-btn2 {
  position: relative; isolation: isolate; overflow: hidden;
  color: var(--btn-text); border: 0; letter-spacing: .06em; font-weight: 700;
  background: var(--btn-grad); background-size: 300% 100%; background-position: 0 0;
  box-shadow: 0 14px 26px -12px rgba(240, 150, 185, .8), inset 0 1px 0 rgba(255, 255, 255, .6);
  transition: background-position .7s cubic-bezier(.2, .7, .2, 1), transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s ease, letter-spacing .35s ease;
}
.shop-btn::before {
  content: ""; position: absolute; z-index: -1; top: 0; bottom: 0; left: 0; width: 55%;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, .55) 50%, transparent 100%);
  transform: translateX(-140%) skewX(-20deg); transition: transform .8s ease;
}
.shop-btn:hover, a.shop-btn2:hover {
  background-position: 100% 0; color: var(--btn-text); transform: translateY(-4px); letter-spacing: .1em;
  box-shadow: 0 22px 34px -12px rgba(190, 140, 220, .7), 0 0 0 6px rgba(247, 181, 203, .3), inset 0 1px 0 rgba(255, 255, 255, .7);
}
.shop-btn:hover::before { transform: translateX(300%) skewX(-20deg); }
.shop-btn:active { transform: translateY(-1px); box-shadow: 0 8px 16px -8px rgba(240, 150, 185, .8); }
.shop-btn:focus-visible { outline: 3px solid rgba(199, 180, 247, .8); outline-offset: 3px; }

/* the main hero CTA breathes and shimmers on its own */
.hero .shop-btn { animation: ctaPulse 2.8s ease-in-out infinite; }
.hero .shop-btn::before { animation: ctaSheen 3.6s ease-in-out infinite 1s; }
@keyframes ctaPulse { 0%, 100% { box-shadow: 0 14px 26px -12px rgba(240, 150, 185, .8), 0 0 0 0 rgba(247, 181, 203, .6); } 50% { box-shadow: 0 14px 26px -12px rgba(240, 150, 185, .8), 0 0 0 12px rgba(247, 181, 203, 0); } }
@keyframes ctaSheen { 0%, 55% { transform: translateX(-140%) skewX(-20deg); } 100% { transform: translateX(300%) skewX(-20deg); } }

/* other button-like controls */
.yes-btn, #browse, a.prod-clearcart, .cont-shop {
  color: var(--btn-text); font-weight: 700; border: 0; cursor: pointer;
  background: var(--btn-grad); background-size: 300% 100%; background-position: 0 0;
  box-shadow: 0 12px 22px -12px rgba(240, 150, 185, .8);
  transition: background-position .6s ease, transform .3s ease, box-shadow .3s ease;
}
.yes-btn:hover, #browse:hover, a.prod-clearcart:hover, .cont-shop:hover {
  background-position: 100% 0; color: var(--btn-text); border: 0; transform: translateY(-3px);
  box-shadow: 0 18px 28px -12px rgba(190, 140, 220, .7), 0 0 0 5px rgba(247, 181, 203, .3);
}
.no-btn { background: transparent; border: 1px solid rgba(255, 255, 255, .6); color: #fff; transition: background .3s ease, transform .3s ease; }
.no-btn:hover { background: rgba(255, 255, 255, .16); transform: translateY(-2px); }

/* cookie bar */
.pop-up-bg { background: rgba(58, 31, 48, .55); }
.pop-up-bg-in { background: linear-gradient(100deg, #4f3350 0%, #6b466c 55%, #8a5a86 100%); border-top: 1px solid rgba(247, 181, 203, .5); }
.pop-up-left-txt span { font-family: var(--display); font-size: 30px; }

/* ==========================================================================
   TOP STRIP + HEADER
   ========================================================================== */
.topStrip {
  background: linear-gradient(90deg, #5b3a5a, #8a5a86, #c98fb0, #8a5a86, #5b3a5a);
  background-size: 250% 100%; animation: stripFlow 9s linear infinite;
}
@keyframes stripFlow { to { background-position: 250% 0; } }
.top-menu li, .top-menu li span { letter-spacing: .03em; }

.header { background: rgba(255, 255, 255, .92); border-bottom: 0; }
.header::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: linear-gradient(90deg, #ffcbb9, #f7b5cb, #d3c0f5, #f7d8a8, #ffcbb9);
  background-size: 200% 100%; animation: stripFlow 8s linear infinite;
}
.fixed-nav .header { box-shadow: 0 16px 32px -22px rgba(176, 100, 140, .45); }

ul.mainMenu li { border-right: 0; padding: 0 16px; }
ul.mainMenu li a {
  position: relative; color: var(--orchid-deep); font-size: 15px; font-weight: 500; letter-spacing: .05em; padding: 4px 0;
}
ul.mainMenu li a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; border-radius: 2px;
  background: var(--grad); transform: scaleX(0); transform-origin: right; transition: transform .4s cubic-bezier(.2, .8, .2, 1);
}
ul.mainMenu li a:hover, ul.mainMenu li a.active { color: var(--coral-deep); }
ul.mainMenu li a:hover::after, ul.mainMenu li a.active::after { transform: scaleX(1); transform-origin: left; }

/* cart: round gradient bag button */
.hdr-rght ul li { max-width: none; padding: 0; }
.hdr-rght ul li a {
  display: flex; align-items: center; justify-content: center; width: 46px; height: 46px; margin-top: 2px; border-radius: 50%;
  background: var(--btn-grad); background-size: 300% 100%; background-position: 0 0;
  box-shadow: 0 10px 20px -10px rgba(240, 150, 185, .9);
  transition: background-position .6s ease, transform .3s ease, box-shadow .3s ease;
}
.hdr-rght ul li a img { display: none; }
.hdr-rght ul li a::before {
  content: ""; width: 22px; height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a2f55' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 7h12l1 13H5L6 7z'/%3E%3Cpath d='M9 10V6a3 3 0 0 1 6 0v4'/%3E%3C/svg%3E") center / contain no-repeat;
}
.hdr-rght ul li a:hover { background-position: 100% 0; transform: translateY(-3px) rotate(-8deg); box-shadow: 0 16px 24px -10px rgba(190, 140, 220, .8), 0 0 0 5px rgba(247, 181, 203, .3); }

.mob-mnu-ic .bar1, .mob-mnu-ic .bar2, .mob-mnu-ic .bar3 { background: var(--coral-deep); }
.mobilemenu { background: #fff; }
.mobilemenu li a { color: var(--orchid-deep); }
.mobilemenu li a:hover { color: var(--coral-deep); }

/* breadcrumb */
.inner-menu { background: linear-gradient(90deg, #fff5f2, #ffeef3 55%, #f5eeff); border: 0; padding: 12px 0; }
ul.inmnu-list li a { color: var(--coral-deep); font-weight: 500; }
ul.inmnu-list li a:hover { color: var(--orchid-deep); }
.disc { background: var(--grad); }

/* ==========================================================================
   HERO
   ========================================================================== */
.eyebrow { color: var(--coral-deep); letter-spacing: .24em; }
.eyebrow::before, .eyebrow::after { background: var(--grad); width: 22px; }

.hero {
  background:
    radial-gradient(680px 460px at 6% 8%, rgba(255, 154, 139, .34), transparent 62%),
    radial-gradient(620px 520px at 96% 22%, rgba(247, 181, 203, .4), transparent 62%),
    radial-gradient(760px 600px at 58% 112%, rgba(217, 199, 245, .6), transparent 62%),
    linear-gradient(180deg, #fff8f5 0%, #ffeff3 100%);
}
/* two drifting colour orbs */
.hero::before, .hero::after {
  content: ""; position: absolute; z-index: 0; border-radius: 50%; pointer-events: none; filter: blur(60px);
}
.hero::before { width: 520px; height: 520px; left: -6%; top: -18%; background: radial-gradient(circle, rgba(255, 190, 170, .6), rgba(255, 190, 170, 0) 68%); animation: driftA 8s ease-in-out infinite alternate; }
.hero::after { width: 560px; height: 560px; right: -8%; bottom: -30%; background: radial-gradient(circle, rgba(196, 160, 255, .55), rgba(196, 160, 255, 0) 68%); animation: driftB 9s ease-in-out infinite alternate; }
@keyframes driftA { to { transform: translate(38vw, 26%) scale(1.15); } }
@keyframes driftB { to { transform: translate(-36vw, -22%) scale(1.2); } }
.hero .wrap { position: relative; z-index: 2; }

.hero-copy h1 { color: var(--orchid-deep); text-transform: none; letter-spacing: -.005em; }
.hero-copy h1 em {
  background: linear-gradient(90deg, #b5588a, #de86ad, #f0a08c, #a98be0, #b5588a);
  background-size: 300% 100%; -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: textShimmer 6s linear infinite; padding-right: .05em;
}
@keyframes textShimmer { to { background-position: 300% 0; } }
.hero-copy p { color: var(--ink-soft); }

.hero-art .blob-bg {
  width: 500px; height: 500px; opacity: .55; filter: blur(3px);
  background: linear-gradient(135deg, #ffcbb9 0%, #f7b5cb 55%, #d3c0f5 100%);
  animation: blobMorph 7s ease-in-out infinite;
}
@keyframes blobMorph {
  0%   { border-radius: 62% 38% 55% 45% / 45% 55% 45% 55%; transform: rotate(0deg) scale(1); }
  50%  { border-radius: 40% 60% 42% 58% / 58% 40% 60% 42%; transform: rotate(60deg) scale(1.06); }
  100% { border-radius: 62% 38% 55% 45% / 45% 55% 45% 55%; transform: rotate(120deg) scale(1); }
}
/* spinning gradient ring around the portrait */
.hero-art::before {
  content: ""; position: absolute; z-index: 0; width: 484px; height: 484px; border-radius: 50%;
  background: conic-gradient(from 0deg, #f4a9c4, #ffcbb9, #f7d8a8, #d3c0f5, #f4a9c4);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3px));
  animation: ringSpin 6s linear infinite;
}
@keyframes ringSpin { to { transform: rotate(360deg); } }
.hero-art .scene-card { border: 8px solid #fff; box-shadow: 0 40px 70px -32px rgba(176, 100, 140, .5); }

.hero-tag {
  border: 0; color: var(--orchid-deep); background: rgba(255, 255, 255, .92); backdrop-filter: blur(8px);
  box-shadow: 0 18px 34px -16px rgba(176, 100, 140, .4); border-radius: 999px; padding: 12px 20px 12px 16px;
}
.hero-tag.t1 { animation: bob 3.4s ease-in-out infinite; }
.hero-tag.t2 { animation: bob 4s ease-in-out infinite reverse; }
@keyframes bob { 0%, 100% { translate: 0 0; } 50% { translate: 0 -12px; } }
.hero-tag .dot { width: 9px; height: 9px; background: var(--grad); animation: dotPing 1.8s ease-out infinite; }
@keyframes dotPing { 0% { box-shadow: 0 0 0 0 rgba(240, 150, 185, .7); } 100% { box-shadow: 0 0 0 10px rgba(240, 150, 185, 0); } }

/* twinkling sparkles */
.sparkles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.sparkles i {
  position: absolute; display: block; width: 22px; height: 22px;
  background: linear-gradient(135deg, #fff 0%, #ffc4b8 45%, #f2c48a 100%);
  clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
  animation: twinkle 2.6s ease-in-out infinite;
}
.sparkles i:nth-child(1) { left: 6%;  top: 22%; }
.sparkles i:nth-child(2) { left: 44%; top: 12%; width: 14px; height: 14px; animation-delay: .5s; }
.sparkles i:nth-child(3) { left: 52%; top: 72%; width: 28px; height: 28px; animation-delay: 1s; }
.sparkles i:nth-child(4) { right: 6%; top: 14%; width: 26px; height: 26px; animation-delay: .3s; }
.sparkles i:nth-child(5) { right: 30%; bottom: 10%; width: 12px; height: 12px; animation-delay: 1.4s; }
.sparkles i:nth-child(6) { left: 30%; bottom: 14%; width: 16px; height: 16px; animation-delay: .8s; }
.sparkles i:nth-child(7) { right: 2%; top: 58%; width: 18px; height: 18px; animation-delay: 1.9s; }
@keyframes twinkle {
  0%, 100% { opacity: .15; transform: scale(.5) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.15) rotate(45deg); }
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.comnHdng { color: var(--orchid-deep); text-transform: none; }
.comnHdng span {
  background: linear-gradient(90deg, #b5588a, #d97fa6, #ee9a8c); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.comn-para { color: var(--ink-soft); }

/* intro */
.section-image { position: relative; overflow: visible; background: none; box-shadow: none; isolation: isolate; }
.section-image::before {
  content: ""; position: absolute; z-index: -1; inset: 20px -20px -20px 20px; border-radius: 34px;
  background: linear-gradient(135deg, #ffcbb9 0%, #f7b5cb 55%, #d3c0f5 100%);
  animation: frameShift 6s ease-in-out infinite alternate;
}
@keyframes frameShift { to { inset: 26px -26px -26px 26px; filter: hue-rotate(-14deg); } }
.section-image::after {
  content: ""; position: absolute; z-index: 2; left: -30px; bottom: 46px; width: 84px; height: 84px; border-radius: 50%;
  background: radial-gradient(circle at 30% 28%, #fff, #ffe0da 55%, #ffbfae);
  border: 5px solid #fff; box-shadow: 0 18px 30px -12px rgba(176, 100, 140, .4); animation: bob 4.4s ease-in-out infinite;
}
.intro-image { display: block; width: 100%; border-radius: 28px; }

.intro-list li {
  position: relative; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 14px 16px 14px 20px;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s ease, border-color .35s ease;
}
.intro-list li::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: linear-gradient(180deg, #ffcbb9, #f7b5cb, #c6b3f0);
  transition: width .35s ease;
}
.intro-list li:hover { transform: translateY(-5px); border-color: #f7c8d6; box-shadow: 0 20px 34px -22px rgba(176, 100, 140, .5); }
.intro-list li:hover::before { width: 8px; }
.intro-list span { color: var(--orchid-deep); }

/* why choose us */
section:has(> .why-wrap) { background: linear-gradient(180deg, #fff 0%, #fff5f2 55%, #f7f0ff 100%); }
.why-num {
  background: var(--grad); color: var(--btn-text); width: 50px; height: 50px; box-shadow: 0 12px 22px -10px rgba(240, 150, 185, .8); position: relative;
  transition: transform .4s cubic-bezier(.2, .8, .2, 1);
}
.why-item { transition: transform .35s ease; }
.why-item:hover { transform: translateX(8px); }
.why-item:hover .why-num { transform: rotate(-12deg) scale(1.1); }
.why-item h3 { color: var(--orchid-deep); font-family: var(--display); font-size: 24px; font-weight: 700; }
.why-item p { color: var(--ink-soft); }
.why-image { position: relative; box-shadow: none; overflow: visible; isolation: isolate; }
.why-image::before {
  content: ""; position: absolute; z-index: -1; inset: 22px 22px -22px -22px; border-radius: 34px;
  background: linear-gradient(135deg, #d3c0f5 0%, #f7c5d5 55%, #ffcbb9 100%); animation: frameShift 7s ease-in-out infinite alternate;
}
.why-image img { display: block; width: 100%; border-radius: 28px; box-shadow: var(--shadow-pop); }

/* ==========================================================================
   PRODUCT BOXES
   ========================================================================== */
.sectionThree, .shop-section {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #fff5f2 0%, #ffeef3 52%, #f5eeff 100%);
}
.shop-section { background: linear-gradient(180deg, #fff 0%, #fff5f2 40%, #ffeef3 100%); padding-bottom: 80px; }
.sectionThree::before, .sectionThree::after, .shop-section::before, .shop-section::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none;
}
.sectionThree::before, .shop-section::before { width: 420px; height: 420px; left: -120px; top: 10%; background: rgba(255, 190, 170, .45); animation: driftC 9s ease-in-out infinite alternate; }
.sectionThree::after, .shop-section::after { width: 460px; height: 460px; right: -140px; bottom: 6%; background: rgba(196, 160, 255, .42); animation: driftD 10s ease-in-out infinite alternate; }
@keyframes driftC { to { transform: translate(30vw, 24%); } }
@keyframes driftD { to { transform: translate(-28vw, -20%); } }
.sectionThree .container, .shop-section .container { position: relative; z-index: 1; }

ul.s3-prdcts-list { justify-content: center; gap: 28px; row-gap: 34px; margin-top: 44px; }
ul.s3-prdcts-list li {
  position: relative; display: flex; flex-direction: column; align-items: center; width: calc(25% - 21px); padding: 0 0 24px;
  background: #fff; border: 1px solid #f7dbe2; border-radius: 30px; overflow: hidden;
  box-shadow: 0 26px 50px -34px rgba(176, 100, 140, .45);
  transition: transform .5s cubic-bezier(.2, .8, .2, 1), box-shadow .5s ease, border-color .5s ease;
}
/* gradient outline that fades in on hover */
ul.s3-prdcts-list li::before {
  content: ""; position: absolute; inset: 0; z-index: 3; border-radius: inherit; padding: 2px; pointer-events: none;
  background: linear-gradient(135deg, #ffcbb9, #f7b5cb 50%, #c6b3f0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box exclude, linear-gradient(#000 0 0);
  opacity: 0; transition: opacity .45s ease;
}
ul.s3-prdcts-list li:hover { transform: translateY(-12px); box-shadow: 0 44px 66px -30px rgba(176, 100, 140, .5); }
ul.s3-prdcts-list li:hover::before { opacity: 1; }

/* the coloured "plate" that holds the product */
ul.s3-prdcts-list li > a:first-child {
  position: relative; display: block; align-self: stretch; margin: 12px 12px 0; border-radius: 22px; overflow: hidden;
  background: var(--plate, linear-gradient(160deg, #ffe4ea, #ffc4d2));
}
ul.s3-prdcts-list li:nth-child(1) { --plate: linear-gradient(160deg, #ffe6ec 0%, #ffc4d3 100%); }
ul.s3-prdcts-list li:nth-child(2) { --plate: linear-gradient(160deg, #ffeddf 0%, #ffc9ae 100%); }
ul.s3-prdcts-list li:nth-child(3) { --plate: linear-gradient(160deg, #f1eaff 0%, #d2c1fa 100%); }
ul.s3-prdcts-list li:nth-child(4) { --plate: linear-gradient(160deg, #fff1e4 0%, #f7cdc4 100%); }
ul.s3-prdcts-list li > a:first-child::before {
  content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 56%, rgba(255, 255, 255, .95) 0, rgba(255, 255, 255, 0) 60%);
  transition: transform .7s cubic-bezier(.2, .8, .2, 1);
}
ul.s3-prdcts-list li:hover > a:first-child::before { transform: scale(1.25); }
/* sparkle in the plate corner */
ul.s3-prdcts-list li > a:first-child::after {
  content: ""; position: absolute; top: 16px; right: 16px; width: 20px; height: 20px; z-index: 2;
  background: #fff; clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
  animation: twinkle 2.8s ease-in-out infinite;
}
ul.s3-prdcts-list li:nth-child(2) > a:first-child::after { animation-delay: .7s; }
ul.s3-prdcts-list li:nth-child(3) > a:first-child::after { animation-delay: 1.4s; }
ul.s3-prdcts-list li:nth-child(4) > a:first-child::after { animation-delay: 2.1s; }

.s3-prod {
  position: relative; z-index: 1; padding: 18px 30px; background: none; width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: contain;
  filter: drop-shadow(0 18px 16px rgba(176, 100, 140, .2));
  animation: prodFloat 4.6s ease-in-out infinite; transition: transform .7s cubic-bezier(.2, .8, .2, 1);
}
ul.s3-prdcts-list li:nth-child(2) .s3-prod { animation-delay: .6s; }
ul.s3-prdcts-list li:nth-child(3) .s3-prod { animation-delay: 1.2s; }
ul.s3-prdcts-list li:nth-child(4) .s3-prod { animation-delay: 1.8s; }
@keyframes prodFloat { 0%, 100% { translate: 0 0; } 50% { translate: 0 -10px; } }
ul.s3-prdcts-list li:hover .s3-prod { transform: scale(1.09) rotate(-3deg); }

ul.s3-prdcts-list li > span {
  float: none; flex: 1; display: flex; align-items: center; justify-content: center; width: 100%; min-height: 76px; padding: 0 20px; margin-top: 8px;
  text-align: center; font-family: var(--display); font-size: 26px; line-height: 1.1; font-weight: 700; color: var(--orchid-deep);
}
ul.s3-prdcts-list li > .clearall { display: none; }
ul.s3-prdcts-list li .shop-prc {
  float: none; width: auto; margin: 6px 0 4px; font-family: var(--display); font-size: 32px; line-height: 1.1; font-weight: 700;
  background: linear-gradient(90deg, #b0578a, #d4789f, #e88f8a); -webkit-background-clip: text; background-clip: text; color: transparent;
}
ul.s3-prdcts-list li a.shop-btn2 { width: calc(100% - 44px); max-width: none; height: 50px; line-height: 50px; margin-top: 14px; font-size: 14px; }

/* ==========================================================================
   PRODUCT / CART / CHECKOUT PAGES
   ========================================================================== */
.prodNameHdng, .prodct-name { color: var(--orchid-deep); font-family: var(--display); }
.option-field1 li.option { background: #fff3f0; box-shadow: 0 1px 0 #f6dfe3, 0 -1px 0 #f6dfe3; }
.select-size .inner a.active { background: var(--grad); border-color: transparent; }
.select-size .inner a.active span { color: var(--btn-text); }
.prd-txt1, .prd-s1-p3 { color: var(--ink); }
.prd-s1-p3.price, .price { color: var(--coral-deep); }

.shp-hding, .pmt-hding {
  background-color: #b985bd; background-image: linear-gradient(100deg, #9a6fb0, #b985bd 55%, #de9fc3);
  background-repeat: no-repeat; background-position: 10px 20px, 0 0; border-radius: 14px; margin-bottom: 16px;
}
.pmt-hding { background-image: url(../images/pmt-icon.png), linear-gradient(100deg, #9a6fb0, #b985bd 55%, #de9fc3); }
.shp-hding { background-image: url(../images/ship-icon.png), linear-gradient(100deg, #9a6fb0, #b985bd 55%, #de9fc3); }
.cart-box1 { background: linear-gradient(100deg, #9a6fb0, #b985bd 55%, #de9fc3); }
.smry-box { border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-soft); }
.smry-box .cart-box1 { background: #fff; color: var(--orchid-deep); border-bottom: 1px solid var(--line); }
.frmfld { border: 1px solid #efd3db; border-radius: 12px; transition: border-color .3s ease, box-shadow .3s ease; }
.frmfld:focus-within { border-color: #e3a0bd; box-shadow: 0 0 0 4px rgba(247, 181, 203, .35); }
.agreetxt a, .trm a { color: var(--coral-deep); }
input[type=checkbox] { accent-color: var(--coral-deep); }
.tot-prc { background: linear-gradient(90deg, #fff5f2, #ffeef3); color: var(--orchid-deep); }

/* contact + text pages */
.trm-bx h1, .trm-bx h3 { font-family: var(--display); color: var(--orchid-deep); }
.trm-bx h1 { border-bottom-color: #f6dfe3; }
.trm-bx a { color: var(--coral-deep); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.ftr-links-sec {
  position: relative; padding: 50px 0 30px;
  background: linear-gradient(160deg, #4d3150 0%, #664368 55%, #7f577f 100%);
}
.ftr-links-sec::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: linear-gradient(90deg, #ffcbb9, #f7b5cb, #d3c0f5, #f7d8a8, #ffcbb9); background-size: 200% 100%; animation: stripFlow 8s linear infinite;
}
.ftr-links-hd { font-family: var(--display); font-size: 22px; letter-spacing: .04em; text-transform: none; font-weight: 600; color: #ffd9cf; }
.ftr-links-list li a { position: relative; color: #f6e4ea; }
.ftr-links-list li a:hover { color: #ffb8a8; padding-left: 6px; }
.ftr-links-list li a { transition: color .2s ease, padding-left .25s ease; }
.address-ftr, .ftr-txt, .ftr-txt a { color: #f3dbe4; }
.ftr-txt { border-top-color: rgba(255, 190, 170, .22); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media only screen and (max-width: 1100px) {
  ul.s3-prdcts-list li { width: calc(50% - 14px); }
}
@media only screen and (max-width: 900px) {
  .hero-art::before { width: 336px; height: 336px; }
  .hero-art .blob-bg { width: 360px; height: 360px; }
  .sparkles i:nth-child(3), .sparkles i:nth-child(7) { display: none; }
  .section-image::before { inset: 14px -12px -14px 14px; }
  .section-image::after { left: -12px; }
  .why-image::before { inset: 14px 12px -14px -12px; }
}
@media only screen and (max-width: 640px) {
  ul.s3-prdcts-list li { width: 100%; max-width: 360px; }
  ul.s3-prdcts-list li > span { font-size: 24px; }
  .hero .shop-btn { width: 100%; max-width: 320px; }
  .hero-art::before { width: 306px; height: 306px; }
  .hero-art .blob-bg { width: 330px; height: 330px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
}

/* breadcrumb: last crumb was white-on-white */
ul.inmnu-list li:last-child a { color: var(--orchid-deep); font-weight: 600; }

/* decorative offset frames must never cause sideways scroll */
section, .sectionThree, .shop-section { overflow-x: clip; }
