/*
Theme Name: EverydayBae — Updated
Theme URI: https://everydaybae.com
Author: EverydayBae
Author URI: https://everydaybae.com
Description: Premium demi-fine jewellery eCommerce theme — blush/rose-gold redesign with ambient motion graphics and animated UI
Version: 2.1.2
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: everydaybae
Domain Path: /languages
Requires at least: 5.0
Requires PHP: 7.4
Tags: e-commerce, woocommerce, jewelry, luxury, responsive, mobile-first
*/

/* ============================================================
   DESIGN TOKENS & GLOBAL STYLES
   ============================================================ */

:root {
  /* ---- Pink identity (names kept for backward compatibility) ---- */
  --ivory: #FFF2F7;        /* page background — soft blush      */
  --ivory-deep: #FBE0EB;   /* alternating section background    */
  --espresso: #3A2230;     /* primary text — deep plum          */
  --espresso-soft: #6E4F60;/* secondary text — muted plum       */
  --gold: #F390B4;         /* primary accent — rose             */
  --gold-light: #FBC4D8;   /* soft pink highlight               */
  --gold-deep: #C24E7D;    /* deep rose — links & emphasis      */
  --rose: #F8B8CE;         /* blush rose                        */
  --white: #FFFFFF;
  --error: #C0436B;
  --success: #5A8F4A;

  /* ---- New pink + rose-gold scale ---- */
  --blush: #FFF2F7;
  --blush-deep: #FBE0EB;
  --rose-soft: #FBC4D8;
  --rose-mid: #F390B4;
  --rose-deep: #C24E7D;
  --berry: #8E2C57;
  --plum: #3A2230;
  --plum-soft: #6E4F60;
  --rosegold-1: #F8CFC6;
  --rosegold-2: #E6A6A0;
  --rosegold-3: #C9857F;

  --display: 'Fraunces', serif;
  --body: 'Jost', sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  /* shared gradients */
  --grad-rose: linear-gradient(120deg, #F390B4 0%, #E76A9C 50%, #C24E7D 100%);
  --grad-rosegold: linear-gradient(120deg, #F8CFC6 0%, #E6A6A0 45%, #C9857F 100%);
  --grad-blush: linear-gradient(160deg, #FFF7FA 0%, #FCE3EC 60%, #F8CFE0 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  color: var(--espresso);
  background: var(--ivory);
  line-height: 1.65;
  font-weight: 300;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: var(--body);
  cursor: pointer;
  border: none;
  background: none;
}

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

input,
textarea,
select {
  font-family: var(--body);
  font-size: 1rem;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ============================================================
   PARTICLE BACKGROUND
   ============================================================ */

#dust {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.page {
  position: relative;
  z-index: 1;
}

.page-section {
  display: none;
}

.page-section.active {
  display: block;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */

header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(250, 246, 240, 0.92);
  border-bottom: 1px solid rgba(28, 23, 20, 0.08);
  transition: box-shadow 0.4s var(--ease);
}

header.site.scrolled {
  box-shadow: 0 10px 40px -18px rgba(28, 23, 20, 0.25);
}

.header-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  gap: 2rem;
}

.site-title {
  cursor: pointer;
  display: flex;
  align-items: center;
  height: 70px;
}

.site-title a {
  display: flex;
  align-items: center;
  height: 100%;
}

nav.primary ul {
  list-style: none;
  display: flex;
  gap: 2.4rem;
}

nav.primary a {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  padding: 0.25rem 0;
  cursor: pointer;
}

nav.primary a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--gold-deep);
  transition: width 0.35s var(--ease);
}

nav.primary a:hover::after,
nav.primary a.active::after {
  width: 100%;
}

.nav-icons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-icons a,
.nav-icons button {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(28, 23, 20, 0.25);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  transition: all 0.3s var(--ease);
  background: none;
  color: inherit;
}

.nav-icons a:hover,
.nav-icons button:hover {
  background: var(--espresso);
  color: var(--ivory);
  border-color: var(--espresso);
}

.cart-count {
  background: var(--gold);
  color: var(--espresso);
  font-weight: 500;
  border-radius: 999px;
  font-size: 0.7rem;
  min-width: 1.2rem;
  height: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: -0.3rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */

.announce {
  background: var(--espresso);
  color: var(--ivory);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.55rem 1rem;
}

.announce em {
  font-style: normal;
  color: var(--gold-light);
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(38% 42% at 72% 30%, rgba(201, 162, 75, 0.2), transparent 70%),
    radial-gradient(30% 34% at 18% 75%, rgba(217, 184, 166, 0.3), transparent 70%);
  animation: drift 18s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes drift {
  from {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }
  to {
    transform: translate3d(3%, 2.5%, 0) scale(1.06);
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem 6rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.eyebrow::before {
  content: '';
  width: 2.4rem;
  height: 1px;
  background: var(--gold-deep);
}

.hero h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.8rem, 5.6vw, 4.9rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
}

.hero h1 .shine {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(110deg, var(--gold-deep) 20%, var(--gold-light) 40%, var(--gold-deep) 60%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: sheen 5.5s linear infinite;
}

@keyframes sheen {
  to {
    background-position: -220% 0;
  }
}

.hero p.lede {
  margin: 1.6rem 0 2.4rem;
  max-width: 32rem;
  font-size: 1.06rem;
  color: var(--espresso-soft);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2.1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.35s var(--ease);
  border: 1px solid transparent;
}

.btn.solid {
  background: var(--espresso);
  color: var(--ivory);
}

.btn.solid:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
}

.btn.ghost {
  border-color: rgba(28, 23, 20, 0.3);
  color: var(--espresso);
}

.btn.ghost:hover {
  border-color: var(--gold-deep);
  color: var(--gold-deep);
}

/* ============================================================
   HERO VISUAL
   ============================================================ */

.hero-visual {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 460px;
  margin-inline: auto;
  width: 100%;
}

.ring-stage {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff 0%, var(--ivory-deep) 45%, #E4D7C3 100%);
  box-shadow: 0 40px 90px -30px rgba(28, 23, 20, 0.35), inset 0 -20px 50px rgba(201, 162, 75, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ring-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 78%, rgba(255, 255, 255, 0.55) 86%, transparent 94%);
  animation: spin 9s linear infinite;
  mix-blend-mode: soft-light;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.ring-stage svg {
  width: 58%;
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(160, 127, 46, 0.35));
}

.orbit-text {
  position: absolute;
  inset: -9%;
  animation: spin 26s linear infinite;
}

.orbit-text text {
  font-family: var(--body);
  font-size: 7.2px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  fill: var(--gold-deep);
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .ring-stage::after,
  .orbit-text,
  .hero h1 .shine,
  .marquee-track {
    animation: none !important;
  }
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */

.marquee {
  background: var(--espresso);
  color: var(--ivory);
  overflow: hidden;
  padding: 0.85rem 0;
  border-block: 1px solid rgba(201, 162, 75, 0.4);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 24s linear infinite;
  width: fit-content;
  min-width: 200%;
}

@keyframes marquee {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.marquee-item {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-item strong {
  color: var(--gold-light);
  font-weight: 500;
}

/* ============================================================
   SECTIONS & LAYOUT
   ============================================================ */

section {
  padding: 5.5rem 2rem;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.section-head h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  line-height: 1.12;
}

.section-head h2 em {
  font-style: italic;
  color: var(--gold-deep);
}

.link-arrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  transition: gap 0.3s var(--ease);
}

.link-arrow:hover {
  gap: 0.9rem;
}

/* ============================================================
   CATEGORY TILES
   ============================================================ */

.cats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
  margin-bottom: 3rem;
}

.cat {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
  padding: 1.4rem;
  color: var(--white);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  text-decoration: none;
  cursor: pointer;
}

.cat:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -22px rgba(28, 23, 20, 0.45);
}

.cat .bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform 0.8s var(--ease);
}

.cat:hover .bg {
  transform: scale(1.07);
}

.cat::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 23, 20, 0.65), transparent 55%);
  z-index: 1;
}

.cat h3 {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.cat small {
  position: relative;
  z-index: 2;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.85;
}

.bg.neck,
.bg.pendant {
  background: linear-gradient(150deg, #F8B8CE 0%, #C24E7D 95%);
}

.bg.ear,
.bg.stud {
  background: linear-gradient(150deg, #FBD3C8 0%, #E6759C 95%);
}

.bg.ring {
  background: linear-gradient(150deg, #F8CFC6 0%, #C9857F 95%);
}

.bg.brac {
  background: linear-gradient(150deg, #FCE3EC 0%, #F390B4 95%);
}

.bg.anklet {
  background: linear-gradient(150deg, #F4A6C0 0%, #8E2C57 95%);
}

.cat .glyph {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -58%);
  font-size: 4.2rem;
  opacity: 0.9;
  filter: drop-shadow(0 10px 18px rgba(28, 23, 20, 0.3));
  z-index: 1;
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */

.products-section {
  padding: 5rem 2rem;
  background: var(--ivory);
}

.products-header {
  text-align: center;
  margin-bottom: 3rem;
}

.products-header h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.products-header p {
  color: var(--espresso-soft);
  max-width: 500px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

.product-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(28, 23, 20, 0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 55px -25px rgba(28, 23, 20, 0.35);
}

.product-image {
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.4rem;
  background: radial-gradient(circle at 32% 28%, #fff, var(--ivory-deep) 70%);
}

.product-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.65) 50%, transparent 65%);
  transform: translateX(-120%);
}

.product-card:hover .product-image::after {
  transition: transform 0.9s var(--ease);
  transform: translateX(120%);
}

.badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: var(--espresso);
  color: var(--ivory);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  z-index: 2;
}

.badge.gold {
  background: var(--gold);
  color: var(--espresso);
}

.product-body {
  padding: 1.2rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.product-title {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.product-meta {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin: 0.3rem 0 0.9rem;
  flex-wrap: wrap;
}

.product-price {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 500;
}

.product-discount {
  font-size: 0.85rem;
  color: #9A8F85;
  text-decoration: line-through;
}

.off {
  font-size: 0.72rem;
  color: #B3582F;
  letter-spacing: 0.08em;
}

.add-to-cart-btn {
  margin-top: auto;
  background: var(--espresso);
  color: var(--ivory);
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1rem;
  width: 100%;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s var(--ease);
  cursor: pointer;
  text-decoration: none;
  display: block;
  text-align: center;
}

.add-to-cart-btn:hover {
  background: var(--gold-deep);
}

/* ============================================================
   STORY / EDITORIAL SECTION
   ============================================================ */

.story {
  background: var(--espresso);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}

.story::before {
  content: '';
  position: absolute;
  inset: -30%;
  background: radial-gradient(40% 40% at 70% 40%, rgba(201, 162, 75, 0.16), transparent 70%);
  animation: drift 16s ease-in-out infinite alternate;
}

.story .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.15;
}

.story h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.story p {
  color: rgba(250, 246, 240, 0.78);
  margin: 1.4rem 0 2rem;
  max-width: 30rem;
}

.story .stat-row {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat b {
  font-family: var(--display);
  font-weight: 400;
  font-size: 2rem;
  color: var(--gold-light);
  display: block;
}

.stat span {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.6);
}

.story-visual {
  border-radius: 20px;
  aspect-ratio: 4/5;
  background: radial-gradient(circle at 30% 25%, rgba(230, 205, 143, 0.5), transparent 55%),
    linear-gradient(160deg, #2A231E, #4A3B2A 60%, #6B5736);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.4);
}

/* ============================================================
   REVIEWS SECTION
   ============================================================ */

.reviews {
  padding: 5.5rem 2rem;
}

.reviews .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.review {
  background: var(--white);
  border: 1px solid rgba(28, 23, 20, 0.06);
  border-radius: 18px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.2em;
  font-size: 0.9rem;
}

.review p {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.08rem;
  line-height: 1.5;
  color: var(--espresso);
}

.review footer {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */

.newsletter {
  text-align: center;
  padding: 5.5rem 2rem;
}

.newsletter h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
}

.newsletter h2 em {
  font-style: italic;
  color: var(--gold-deep);
}

.newsletter p {
  max-width: 30rem;
  margin: 1rem auto 2rem;
  color: var(--espresso-soft);
}

.nl-form {
  display: flex;
  max-width: 30rem;
  margin: 0 auto;
  border: 1px solid rgba(28, 23, 20, 0.25);
  border-radius: 999px;
  overflow: hidden;
  background: var(--white);
}

.nl-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 1rem 1.4rem;
  font-family: var(--body);
  font-size: 0.95rem;
  background: transparent;
}

.nl-form input::placeholder {
  color: var(--espresso-soft);
}

.nl-form button {
  border: none;
  background: var(--espresso);
  color: var(--ivory);
  padding: 0 1.8rem;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s var(--ease);
  cursor: pointer;
  font-weight: 500;
}

.nl-form button:hover {
  background: var(--gold-deep);
}

/* ============================================================
   FOOTER
   ============================================================ */

footer.site {
  background: var(--espresso);
  color: var(--ivory);
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.footer-section h3 em {
  font-style: italic;
  color: var(--gold);
}

.footer-section h4 {
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s var(--ease);
}

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

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 162, 75, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease) 0s, transform 0.7s var(--ease) 0s;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   FORMS
   ============================================================ */

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.2rem;
}

.form-group label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--espresso-soft);
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.75rem 0.95rem;
  border: 1px solid rgba(28, 23, 20, 0.2);
  border-radius: 8px;
  background: var(--white);
  color: var(--espresso);
  transition: border-color 0.3s var(--ease);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

@media (max-width: 1024px) {
  .cats,
  .products {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero-visual {
    max-width: 340px;
  }

  .story .wrap {
    grid-template-columns: 1fr;
  }

  .reviews .wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-content {
    padding: 0.8rem 1rem;
  }

  nav.primary ul {
    display: none;
  }

  nav.primary.open {
    display: flex;
    flex-direction: column;
  }

  .menu-toggle {
    display: block;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 3.5rem 1.2rem 4rem;
    gap: 2rem;
  }

  section {
    padding: 3.5rem 1.2rem;
  }

  .cats,
  .products {
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
  }

  .product-image {
    font-size: 2.6rem;
  }

  .story .wrap,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .newsletter .wrap {
    padding: 0 1rem;
  }

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

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

@media (max-width: 480px) {
  .cats,
  .products {
    grid-template-columns: 1fr;
  }

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

  .btn {
    padding: 0.8rem 1.6rem;
    font-size: 0.7rem;
  }

  nav.primary a {
    font-size: 0.7rem;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   WOOCOMMERCE INTEGRATION
   ============================================================ */

.woocommerce-notice,
.woocommerce-error,
.woocommerce-message {
  background: var(--success);
  color: var(--white);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.woocommerce-error {
  background: var(--error);
}

.woocommerce-price-amount {
  font-weight: 600;
  color: var(--gold);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center {
  text-align: center;
}

.text-gold {
  color: var(--gold);
}

.text-soft {
  color: var(--espresso-soft);
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================================
   ✨ EVERYDAYBAE MOTION LAYER (v2.1 — Blush Redesign)
   Ambient background, shimmer buttons, glow & micro-motion
   ============================================================ */

/* ---- Animated gradient mesh behind everything ------------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(42% 50% at 18% 22%, rgba(243, 144, 180, 0.28), transparent 60%),
    radial-gradient(40% 46% at 82% 18%, rgba(248, 207, 198, 0.34), transparent 62%),
    radial-gradient(48% 50% at 70% 82%, rgba(194, 78, 125, 0.18), transparent 64%),
    radial-gradient(44% 48% at 25% 88%, rgba(251, 196, 216, 0.30), transparent 62%),
    var(--blush);
  background-size: 180% 180%;
  animation: meshShift 26s ease-in-out infinite alternate;
}

@keyframes meshShift {
  0%   { background-position: 0% 0%, 100% 0%, 100% 100%, 0% 100%, 0 0; }
  100% { background-position: 30% 20%, 70% 30%, 60% 70%, 30% 80%, 0 0; }
}

/* ---- Floating soft orbs (pure CSS motion graphics) -------- */
.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.bg-orbs span {
  position: absolute;
  border-radius: 50%;
  filter: blur(38px);
  opacity: 0.55;
  mix-blend-mode: multiply;
  animation: orbFloat 22s ease-in-out infinite;
}

.bg-orbs span:nth-child(1) { width: 340px; height: 340px; left: -60px;  top: 8%;  background: radial-gradient(circle at 30% 30%, #FBC4D8, transparent 70%); animation-duration: 24s; }
.bg-orbs span:nth-child(2) { width: 420px; height: 420px; right: -80px; top: 30%; background: radial-gradient(circle at 30% 30%, #F8CFC6, transparent 70%); animation-duration: 30s; animation-delay: -6s; }
.bg-orbs span:nth-child(3) { width: 300px; height: 300px; left: 35%;   top: 62%; background: radial-gradient(circle at 30% 30%, #F390B4, transparent 70%); animation-duration: 27s; animation-delay: -12s; opacity: 0.35; }
.bg-orbs span:nth-child(4) { width: 260px; height: 260px; left: 12%;   bottom: 4%; background: radial-gradient(circle at 30% 30%, #FBD3C8, transparent 70%); animation-duration: 33s; animation-delay: -3s; }

@keyframes orbFloat {
  0%   { transform: translate3d(0,0,0) scale(1); }
  33%  { transform: translate3d(40px,-30px,0) scale(1.08); }
  66%  { transform: translate3d(-30px,25px,0) scale(0.96); }
  100% { transform: translate3d(0,0,0) scale(1); }
}

/* canvas sits above orbs, below content */
#dust { z-index: -1; opacity: 0.9; }

/* slightly translucent surfaces so the motion glows through */
body { background: transparent; }

/* ---- Header: glassy blush ---- */
header.site {
  background: rgba(255, 242, 247, 0.78);
  border-bottom: 1px solid rgba(194, 78, 125, 0.12);
}
header.site.scrolled {
  box-shadow: 0 12px 40px -18px rgba(194, 78, 125, 0.35);
}

/* ---- Announcement bar: rose gradient + drifting shimmer --- */
.announce {
  background: var(--grad-rose);
  position: relative;
  overflow: hidden;
}
.announce::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 30%, rgba(255,255,255,0.45) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: barSheen 6s ease-in-out infinite;
}
@keyframes barSheen { 0%,100% { transform: translateX(-120%);} 55% { transform: translateX(120%);} }
.announce em { color: #FFF; font-weight: 600; }

/* ---- Nav underline becomes a rose gradient sweep ---------- */
nav.primary a::after { background: var(--grad-rose); height: 2px; border-radius: 2px; }

/* ============================================================
   BUTTONS — rose-gold gradient, sheen sweep, glow lift
   ============================================================ */
.btn.solid,
.add-to-cart-btn,
.nl-form button,
.cart-link,
button[type="submit"].single_add_to_cart_button,
.woocommerce a.button,
.woocommerce button.button.alt {
  position: relative;
  overflow: hidden;
  background: var(--grad-rose);
  color: #fff;
  border: none;
  box-shadow: 0 10px 26px -12px rgba(194, 78, 125, 0.6);
}

.btn.solid::after,
.add-to-cart-btn::after,
.nl-form button::after,
.woocommerce a.button::after,
.woocommerce button.button.alt::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: translateX(-180%) skewX(-18deg);
  transition: transform 0.7s var(--ease);
}

.btn.solid:hover,
.add-to-cart-btn:hover,
.nl-form button:hover,
.woocommerce a.button:hover,
.woocommerce button.button.alt:hover {
  background: var(--grad-rose);
  transform: translateY(-3px);
  box-shadow: 0 18px 38px -12px rgba(194, 78, 125, 0.7);
}

.btn.solid:hover::after,
.add-to-cart-btn:hover::after,
.nl-form button:hover::after,
.product-card:hover .add-to-cart-btn::after,
.woocommerce a.button:hover::after {
  transform: translateX(260%) skewX(-18deg);
}

.btn.ghost {
  border-color: rgba(194, 78, 125, 0.4);
  color: var(--rose-deep);
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.btn.ghost:hover {
  border-color: var(--rose-deep);
  color: #fff;
  background: var(--rose-deep);
  transform: translateY(-3px);
  box-shadow: 0 16px 34px -14px rgba(194, 78, 125, 0.55);
}

/* gentle pulse to invite the primary CTA */
.hero-cta .btn.solid { animation: ctaPulse 3.4s ease-in-out infinite; }
@keyframes ctaPulse {
  0%,100% { box-shadow: 0 10px 26px -12px rgba(194,78,125,0.55); }
  50%     { box-shadow: 0 10px 38px -8px rgba(243,144,180,0.85); }
}

/* ============================================================
   HERO — soft blush aura + glowing rotating jewel
   ============================================================ */
.hero::before {
  background:
    radial-gradient(38% 42% at 72% 28%, rgba(243, 144, 180, 0.40), transparent 70%),
    radial-gradient(34% 38% at 20% 72%, rgba(248, 207, 198, 0.50), transparent 70%);
}

.hero h1 .shine {
  background: linear-gradient(110deg, #C24E7D 18%, #F8B8CE 40%, #E6759C 55%, #C24E7D 78%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: sheen 5.5s linear infinite;
}

.eyebrow { color: var(--rose-deep); }
.eyebrow::before { background: var(--grad-rose); height: 2px; }

.ring-stage {
  background: radial-gradient(circle at 35% 28%, #fff 0%, #FCE3EC 48%, #F8CFE0 100%);
  box-shadow:
    0 40px 90px -28px rgba(194, 78, 125, 0.45),
    inset 0 -20px 50px rgba(243, 144, 180, 0.30);
  animation: jewelFloat 6s ease-in-out infinite;
}
@keyframes jewelFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-14px); }
}
.ring-stage::after {
  background: conic-gradient(from 0deg, transparent 0 76%, rgba(255,255,255,0.7) 86%, transparent 94%);
}

/* recolor hero jewel SVG gradient via overlay glow */
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243,144,180,0.35), transparent 65%);
  filter: blur(20px);
  animation: auraPulse 4.5s ease-in-out infinite;
  z-index: 0;
}
@keyframes auraPulse {
  0%,100% { opacity: 0.5; transform: scale(0.96); }
  50%     { opacity: 0.9; transform: scale(1.05); }
}
.orbit-text text { fill: var(--rose-deep); }

/* ============================================================
   MARQUEE — rose strip of brand promises
   ============================================================ */
.marquee {
  background: var(--grad-rose);
  color: #fff;
  border-block: 1px solid rgba(255,255,255,0.35);
}
.marquee-item strong { color: #FFF0F6; }

/* ============================================================
   CATEGORY TILES — glow lift + floating glyph
   ============================================================ */
.cat { box-shadow: 0 12px 30px -20px rgba(194,78,125,0.5); }
.cat:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 55px -20px rgba(194, 78, 125, 0.55);
}
.cat .glyph { animation: glyphFloat 5s ease-in-out infinite; }
.cat:nth-child(2n) .glyph { animation-delay: -1.6s; }
.cat:nth-child(3n) .glyph { animation-delay: -3s; }
@keyframes glyphFloat {
  0%,100% { transform: translate(-50%, -58%) rotate(0deg); }
  50%     { transform: translate(-50%, -66%) rotate(4deg); }
}

/* ============================================================
   PRODUCT CARDS — lift, glow, sheen (theme + WooCommerce)
   ============================================================ */
.product-card,
.woocommerce ul.products li.product {
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(194, 78, 125, 0.10);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.product-card:hover,
.woocommerce ul.products li.product:hover {
  transform: translateY(-9px);
  box-shadow: 0 30px 60px -24px rgba(194, 78, 125, 0.45);
}
.product-image {
  background: radial-gradient(circle at 32% 26%, #fff, #FCE3EC 72%);
}
.badge { background: var(--grad-rose); color: #fff; }
.badge.gold { background: var(--rosegold-2); color: var(--plum); }
.product-meta { color: var(--rose-deep); }
.off { color: var(--berry); }
.product-price { color: var(--plum); }

/* WooCommerce loop grid — styled to match theme cards */
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  margin: 0;
}
.woocommerce ul.products li.product { padding: 0 0 1.3rem; text-align: left; width: auto !important; margin: 0 !important; float: none !important; }
.woocommerce ul.products li.product a img { margin: 0 0 1rem; border-radius: 18px 18px 0 0; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { padding: 0 1.2rem; font-family: var(--display); font-weight: 400; font-size: 1.05rem; }
.woocommerce ul.products li.product .price { padding: 0.3rem 1.2rem 0.8rem; color: var(--plum) !important; font-family: var(--display); }
.woocommerce ul.products li.product .price ins { color: var(--berry) !important; }
.woocommerce ul.products li.product .button { margin: 0 1.2rem; width: calc(100% - 2.4rem); text-align: center; padding: 0.8rem 1rem; border-radius: 999px; letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.74rem; }
.woocommerce span.onsale {
  background: var(--grad-rose);
  color: #fff;
  border-radius: 999px;
  min-height: auto;
  min-width: auto;
  padding: 0.3rem 0.7rem;
  line-height: 1.2;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
}

/* ---- Page banner for category / shop archives ---- */
.woocommerce .page-title,
.woocommerce-products-header__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-align: center;
  margin: 0 auto 0.6rem;
  color: var(--plum);
}
.woocommerce-products-header { text-align: center; padding: 2.5rem 0 1rem; }

/* ============================================================
   STORY / REVIEWS / NEWSLETTER recolor
   ============================================================ */
.story { background: linear-gradient(150deg, #4A2436 0%, #6E2A4A 60%, #8E2C57 100%); }
.story::before { background: radial-gradient(40% 40% at 70% 40%, rgba(248,207,198,0.22), transparent 70%); }
.story h2 em { color: var(--rose-soft); }
.story-visual {
  background:
    radial-gradient(circle at 30% 25%, rgba(251,196,216,0.55), transparent 55%),
    linear-gradient(160deg, #5A2A40, #8E2C57 60%, #C24E7D);
  animation: jewelFloat 7s ease-in-out infinite;
}
.stat b { color: var(--rose-soft); }
.review { background: rgba(255,255,255,0.88); border-color: rgba(194,78,125,0.10); }
.stars { color: var(--rose-mid); }
.review footer { color: var(--rose-deep); }
.newsletter h2 em { color: var(--rose-deep); }
.nl-form { border-color: rgba(194,78,125,0.30); background: rgba(255,255,255,0.85); }

/* footer */
footer.site { background: linear-gradient(160deg, #3A2230, #5A2A40); }
.footer-section h3 em { color: var(--rose-soft); }
.footer-section a:hover { color: var(--rose-soft); }
.footer-bottom { border-top-color: rgba(248,184,206,0.3); }

::selection { background: var(--rose-mid); color: #fff; }
.cart-count { background: var(--grad-rose); color: #fff; }

/* ---- Sparkle pop used by JS on add-to-cart ---- */
.spark {
  position: fixed;
  width: 9px; height: 9px;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(circle, #fff, #F390B4 60%, transparent 70%);
  border-radius: 50%;
  animation: sparkPop 0.7s var(--ease) forwards;
}
@keyframes sparkPop {
  0%   { transform: translate(0,0) scale(1); opacity: 1; }
  100% { transform: translate(var(--dx), var(--dy)) scale(0); opacity: 0; }
}

/* staggered reveal for grids */
.products .product-card { opacity: 0; transform: translateY(26px); }
.products.in .product-card { animation: cardRise 0.7s var(--ease) forwards; }
.products.in .product-card:nth-child(1){ animation-delay:0.02s; }
.products.in .product-card:nth-child(2){ animation-delay:0.10s; }
.products.in .product-card:nth-child(3){ animation-delay:0.18s; }
.products.in .product-card:nth-child(4){ animation-delay:0.26s; }
@keyframes cardRise { to { opacity:1; transform: translateY(0); } }

/* ---- Responsive: five tiles fold gracefully ---- */
@media (max-width: 1024px) {
  .cats { grid-template-columns: repeat(3, 1fr); }
  .woocommerce ul.products { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
  .cats { grid-template-columns: repeat(2, 1fr); }
  .woocommerce ul.products { grid-template-columns: repeat(2,1fr); }
  nav.primary.open ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(255,242,247,0.97);
    backdrop-filter: blur(14px);
    padding: 1.4rem 1.6rem;
    box-shadow: 0 20px 40px -20px rgba(194,78,125,0.4);
  }
}
@media (max-width: 480px) {
  .cats { grid-template-columns: 1fr 1fr; }
  .woocommerce ul.products { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  body::before, .bg-orbs span, .ring-stage, .hero-visual::before,
  .announce::after, .hero-cta .btn.solid, .story-visual, .cat .glyph,
  .products.in .product-card { animation: none !important; }
  .products .product-card { opacity: 1; transform: none; }
}

/* ============================================================
   v2.1.1 — eyebrow shimmer + page templates (FAQ/About/Contact)
   ============================================================ */

/* ---- Task 2: animated hero eyebrow ---- */
.eyebrow {
  width: fit-content;
  background: linear-gradient(90deg, #C24E7D 0%, #F390B4 22%, #FBD3C8 42%, #E6759C 60%, #8E2C57 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: eyebrowSheen 5s linear infinite, eyebrowBreathe 4.2s ease-in-out infinite;
}
@keyframes eyebrowSheen { to { background-position: -220% center; } }
@keyframes eyebrowBreathe {
  0%, 100% { letter-spacing: 0.34em; }
  50%      { letter-spacing: 0.40em; }
}
.eyebrow::before {
  background: var(--grad-rose);
  animation: eyebrowLine 4.2s ease-in-out infinite;
}
@keyframes eyebrowLine {
  0%, 100% { width: 2.4rem; opacity: 0.65; }
  50%      { width: 3.6rem; opacity: 1; }
}

/* ============================================================
   GENERIC PAGE (policy pages etc.)
   ============================================================ */
.eb-page { position: relative; z-index: 1; padding: 3.5rem 2rem 5rem; }
.eb-page .wrap-narrow { max-width: 820px; margin: 0 auto; }
.eb-page-hero { text-align: center; margin-bottom: 2.5rem; }
.eb-page-hero .eyebrow-static {
  font-size: 0.74rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--rose-deep); margin-bottom: 0.8rem; display: inline-block;
}
.eb-page-hero h1 {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem); line-height: 1.1; color: var(--plum);
}
.eb-page-hero h1 em { font-style: italic; color: var(--rose-deep); }
.eb-prose { line-height: 1.85; color: var(--plum-soft); font-size: 1.02rem; }
.eb-prose h2 {
  font-family: var(--display); font-weight: 400; color: var(--plum);
  font-size: 1.4rem; margin: 2.2rem 0 0.8rem;
}
.eb-prose h2:first-child { margin-top: 0; }
.eb-prose p { margin-bottom: 1rem; }
.eb-prose ul { margin: 0 0 1.2rem 1.2rem; }
.eb-prose li { margin-bottom: 0.5rem; }
.eb-prose a { color: var(--rose-deep); text-decoration: underline; text-underline-offset: 3px; }
.eb-note {
  margin-top: 2.5rem; padding: 1rem 1.3rem; border-radius: 14px;
  background: rgba(255,255,255,0.7); border: 1px solid rgba(194,78,125,0.15);
  font-size: 0.86rem; color: var(--plum-soft);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(194,78,125,0.12);
  border-radius: 16px;
  margin-bottom: 0.9rem;
  overflow: hidden;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}
.faq-item:hover { box-shadow: 0 18px 40px -26px rgba(194,78,125,0.5); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 1.15rem 1.4rem; font-family: var(--body); font-size: 1.02rem;
  font-weight: 500; color: var(--plum);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-q .plus {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--grad-rose); color: #fff; display: grid; place-items: center;
  font-size: 1.1rem; line-height: 1; transition: transform 0.4s var(--ease);
}
.faq-item.open .faq-q .plus { transform: rotate(135deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s var(--ease), padding 0.45s var(--ease);
  padding: 0 1.4rem;
  color: var(--plum-soft); line-height: 1.8;
}
.faq-item.open .faq-a { max-height: 420px; padding: 0 1.4rem 1.3rem; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3.5rem; align-items: center; margin-bottom: 4rem; }
.about-hero .lead {
  font-family: var(--display); font-style: italic; font-weight: 300;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem); line-height: 1.4; color: var(--plum);
}
.about-visual {
  aspect-ratio: 4/5; border-radius: 22px;
  background:
    radial-gradient(circle at 30% 25%, rgba(251,196,216,0.7), transparent 55%),
    linear-gradient(160deg, #F8CFC6, #F390B4 55%, #C24E7D);
  display: grid; place-items: center; font-size: 5.5rem;
  box-shadow: 0 40px 90px -30px rgba(194,78,125,0.5);
  animation: jewelFloat 7s ease-in-out infinite;
}
.about-values { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; margin-top: 1rem; }
.about-value {
  background: rgba(255,255,255,0.82); border: 1px solid rgba(194,78,125,0.12);
  border-radius: 18px; padding: 1.6rem; text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.about-value:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -26px rgba(194,78,125,0.45); }
.about-value .ic { font-size: 2rem; margin-bottom: 0.6rem; }
.about-value h3 { font-family: var(--display); font-weight: 400; font-size: 1.15rem; margin-bottom: 0.4rem; color: var(--plum); }
.about-value p { font-size: 0.9rem; color: var(--plum-soft); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 2.5rem; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  display: flex; gap: 1rem; align-items: center;
  background: rgba(255,255,255,0.85); border: 1px solid rgba(194,78,125,0.12);
  border-radius: 16px; padding: 1.2rem 1.3rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px -26px rgba(194,78,125,0.5); }
.contact-card .ic {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
  background: var(--grad-rose); color: #fff; display: grid; place-items: center; font-size: 1.3rem;
}
.contact-card .meta small { display: block; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose-deep); margin-bottom: 0.15rem; }
.contact-card .meta b { font-weight: 500; color: var(--plum); font-size: 1.02rem; }
.contact-form {
  background: rgba(255,255,255,0.85); border: 1px solid rgba(194,78,125,0.12);
  border-radius: 20px; padding: 2rem;
}
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--plum-soft); font-weight: 500; display: block; margin-bottom: 0.35rem; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 0.8rem 1rem; border: 1px solid rgba(194,78,125,0.22);
  border-radius: 12px; background: #fff; color: var(--plum); margin-bottom: 1rem;
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }

@media (max-width: 860px) {
  .about-hero, .contact-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .contact-form .row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .eyebrow, .eyebrow::before, .about-visual { animation: none !important; }
}

/* ============================================================
   v2.1.2 — Glowing animated menu + Razorpay ready
   ============================================================ */

/* ---- Animated glowing menu items ---- */
nav.primary a {
  position: relative;
  padding: 0.4rem 0;
}
nav.primary a::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--grad-rose);
  width: 0;
  transition: width 0.4s var(--ease);
  box-shadow: 0 0 12px rgba(243,144,180,0.6), 0 0 24px rgba(194,78,125,0.4);
}
nav.primary a:hover::before,
nav.primary a.active::before {
  width: 100%;
  box-shadow: 0 0 12px rgba(243,144,180,0.9), 0 0 24px rgba(194,78,125,0.7), 0 0 36px rgba(243,144,180,0.5);
}
nav.primary a:hover,
nav.primary a.active {
  color: var(--rose-deep);
  text-shadow: 0 0 8px rgba(243,144,180,0.4);
}

/* ---- Footer custom identity ---- */
.footer-credit {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em;
}
.footer-credit strong {
  color: var(--rose-soft);
  font-weight: 600;
}
