

body[data-product="clara"] {
  
  --gp-void: #171223;
  --gp-accent: #FF7A87;
  --gp-accent-ink: #1B1030;
  --gp-panel: rgba(34, 23, 62, 0.66);
  --gp-ink: #F6EFEA;
  --gp-ink-dim: rgba(246, 239, 234, 0.72);

  
  --cl-coral: #FF7A87;
  --cl-rose: #FFA9B2;
  --cl-violet: #6E5AC8;          
  --cl-mint: #7FD4A0;            
  --cl-gold: #F0C67E;            
  --cl-header-h: 78px;           
}

body[data-product="clara"] { background: #13101F; }

body[data-product="clara"] .gp-section--void { --gp-sec-bg: #171223; }
body[data-product="clara"] .gp-section--step { --gp-sec-bg: #1D1730; }

body[data-product="clara"] .gp-hero {
  min-height: clamp(520px, 84svh, 900px);
  background: var(--gp-void);
}
body[data-product="clara"] .gp-hero__aura {
  position: absolute;
  inset: -12%;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(36% 40% at 28% 30%, color-mix(in srgb, var(--cl-coral) 46%, transparent), transparent 70%),
    radial-gradient(38% 44% at 74% 26%, color-mix(in srgb, var(--cl-rose) 40%, transparent), transparent 70%),
    radial-gradient(50% 54% at 56% 84%, color-mix(in srgb, var(--cl-violet) 52%, transparent), transparent 72%);
  filter: blur(36px) saturate(1.05);
  opacity: 0.5;
  animation: cl-drift 38s ease-in-out infinite alternate;
}
@keyframes cl-drift {
  from { transform: translate3d(-2%, -1%, 0) scale(1.02); }
  to   { transform: translate3d(2%, 2%, 0) scale(1.08); }
}

body[data-product="clara"] .cl-hero-mark {
  width: clamp(84px, 11vw, 120px);
  height: auto;
  border-radius: 22%;
  filter: drop-shadow(0 14px 34px rgba(0, 0, 0, 0.55))
          drop-shadow(0 0 44px rgba(255, 122, 135, 0.32));
}
body[data-product="clara"] .cl-hero-name {
  margin: 0;
  font-size: clamp(3rem, 9vw, 5.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #FFC2C9; 
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  body[data-product="clara"] .cl-hero-name {
    background: linear-gradient(96deg, var(--cl-rose) 0%, var(--cl-coral) 48%, #FFD9A6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
body[data-product="clara"] .gp-hero__tagline {
  text-transform: none;
  letter-spacing: -0.01em;
  font-weight: 600;
  font-size: clamp(1.4rem, 3.6vw, 2.4rem);
}
body[data-product="clara"] .cl-hero-meta {
  margin: 4px 0 0;
  color: var(--gp-ink-dim);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

body[data-product="clara"] .gp-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(14px, 2vw, 22px);
  margin-top: clamp(34px, 5vw, 56px);
}
body[data-product="clara"] .gp-card {
  border-radius: 16px;
  background: var(--gp-panel);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 22px 20px;
  text-align: left;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.22s ease, border-color 0.22s ease;
}
body[data-product="clara"] .gp-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--gp-accent) 55%, transparent);
}
body[data-product="clara"] .gp-card h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
  line-height: 1.2;
}
body[data-product="clara"] .gp-card p {
  margin: 0;
  color: var(--gp-ink-dim);
  font-size: 0.94rem;
  line-height: 1.55;
}

body[data-product="clara"] .cl-status {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  max-width: 46ch;
}
body[data-product="clara"] .cl-status li {
  position: relative;
  padding-left: 30px;
  color: var(--gp-ink-dim);
  line-height: 1.5;
}
body[data-product="clara"] .cl-status li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.9;
}
body[data-product="clara"] .cl-status li.is-pending::before { background: #E9A23B; }
body[data-product="clara"] .cl-status li.is-overdue::before { background: #E5484D; }
body[data-product="clara"] .cl-status li.is-done::before    { background: var(--cl-mint); }

body[data-product="clara"] .cl-check {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  max-width: 46ch;
}
body[data-product="clara"] .cl-check li {
  position: relative;
  padding-left: 34px;
  color: var(--gp-ink-dim);
  line-height: 1.5;
}
body[data-product="clara"] .cl-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: color-mix(in srgb, var(--cl-coral) 20%, transparent);
  border: 1px solid color-mix(in srgb, var(--cl-coral) 58%, transparent);
}
body[data-product="clara"] .cl-check li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 5px;
  width: 6px;
  height: 10px;
  border: solid var(--cl-coral);
  border-width: 0 2px 2px 0;
  transform: rotate(42deg);
}

body[data-product="clara"] .cl-note {
  display: inline-block;
  margin-top: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--cl-coral) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--cl-coral) 42%, transparent);
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFC7CE;
}

body[data-product="clara"] .gp-feature__art img.cl-shot-phone {
  max-width: 300px;
  margin-inline: auto;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  body[data-product="clara"] .gp-hero__aura { animation: none; }
  body[data-product="clara"] .gp-card { transition: none; }
}

body[data-product="clara"] .gp-nav {
  top: var(--cl-header-h);
  z-index: 90;                    
}
body[data-product="clara"] .gp-section,
body[data-product="clara"] .gp-hero {
  scroll-margin-top: calc(var(--cl-header-h) + 74px);
}

@media (max-width: 820px) {
  body[data-product="clara"] .gp-nav {
    position: static;
    top: auto;
  }
  body[data-product="clara"] .gp-section,
  body[data-product="clara"] .gp-hero {
    scroll-margin-top: 52px;
  }
}

body[data-product="clara"] .gp-nav__links {
  scrollbar-width: none;
  -ms-overflow-style: none;
  mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 26px), transparent 100%);
}
body[data-product="clara"] .gp-nav__links::-webkit-scrollbar { display: none; }

body[data-product="clara"] .cl-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
body[data-product="clara"] .cl-kicker img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));
}

body[data-product="clara"] .gp-card {
  position: relative;
  overflow: hidden;
}
body[data-product="clara"] .gp-card .cl-card-face {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 62px;
  height: 62px;
  object-fit: contain;
  opacity: 0.16;
  pointer-events: none;
}

body[data-product="clara"] .cl-faces {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
body[data-product="clara"] .cl-faces img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
  animation: cl-bob 4.5s ease-in-out infinite;
}
body[data-product="clara"] .cl-faces li:nth-child(2) img { animation-delay: -0.9s; }
body[data-product="clara"] .cl-faces li:nth-child(3) img { animation-delay: -1.8s; }
body[data-product="clara"] .cl-faces li:nth-child(4) img { animation-delay: -2.7s; }
@keyframes cl-bob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-6px) rotate(2deg); }
}
@media (prefers-reduced-motion: reduce) {
  body[data-product="clara"] .cl-faces img { animation: none; }
}

body[data-product="clara"] .gp-orn { gap: 18px; }
body[data-product="clara"] .gp-orn__gem {
  
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  transform: none;
  background: url("/assets/images/clara/faces/heart.webp") center / contain no-repeat;
  box-shadow: none;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.5));
}

body[data-product="clara"] .gp-feature__art img {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.55),
    0 8px 20px rgba(0, 0, 0, 0.35);
}

body[data-product="clara"] .gp-feature__art {
  position: relative;
}
body[data-product="clara"] .gp-feature__art::before {
  content: "";
  position: absolute;
  inset: 8% 4%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--cl-coral) 34%, transparent), transparent);
  filter: blur(46px);
  opacity: 0.55;
  pointer-events: none;
}

body[data-product="clara"] .cl-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(14px, 2.2vw, 26px);
  margin-top: clamp(32px, 5vw, 54px);
  align-items: start;
}
body[data-product="clara"] .cl-gallery figure {
  margin: 0;
  text-align: center;
}
body[data-product="clara"] .cl-gallery img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
  transition: transform 0.24s ease;
}
body[data-product="clara"] .cl-gallery figure:hover img { transform: translateY(-6px); }
body[data-product="clara"] .cl-gallery figcaption {
  margin-top: 12px;
  font-size: 0.86rem;
  color: var(--gp-ink-dim);
}

body[data-product="clara"] .cl-plate {
  margin-top: clamp(30px, 5vw, 52px);
}
body[data-product="clara"] .cl-plate img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.55);
}

body[data-product="clara"] .cl-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: clamp(14px, 2vw, 24px);
  margin-top: clamp(30px, 5vw, 50px);
  list-style: none;
  padding: 0;
}
body[data-product="clara"] .cl-stats li {
  text-align: center;
  padding: 20px 14px;
  border-radius: 14px;
  background: var(--gp-panel);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
body[data-product="clara"] .cl-stats strong {
  display: block;
  font-size: 1.5rem;
  color: var(--cl-coral);
  margin-bottom: 4px;
}
body[data-product="clara"] .cl-stats span {
  font-size: 0.9rem;
  color: var(--gp-ink-dim);
  line-height: 1.45;
}

body[data-product="clara"] .gp-closer__meta {
  margin-inline: auto;
}
body[data-product="clara"] .cl-fineprint {
  max-width: 62ch;
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--gp-ink-dim);
  opacity: 0.72;
  margin-top: 18px;
}

@media (prefers-reduced-motion: reduce) {
  body[data-product="clara"] .cl-gallery img { transition: none; }
}
