/** Shopify CDN: Minification failed

Line 127:30 Unexpected "{"
Line 127:32 Expected identifier but found "''"
Line 127:38 Unexpected "{"

**/
/* ===== Sotto la Pelle — Romance Product Page Enhancement ===== */

:root {
  --romance-gold: #C9A15A;
  --romance-gold-soft: #E4CFA0;
  --romance-blush: #C98F86;
  --romance-ink: #1B211D;
}

.romance-product-info {
  position: relative;
}

/* Ambient glow behind the info column, echoing a dreamy romantic backdrop */
.romance-product-info::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -10%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(201, 161, 90, 0.16) 0%, rgba(201, 143, 134, 0.08) 45%, transparent 72%);
  pointer-events: none;
  z-index: 0;
  filter: blur(6px);
}

/* Genre / mood pills (from product tags) */
.romance-mood-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.romance-mood-tag {
  font-family: 'Quattrocento Sans', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--romance-gold);
  border: 1px solid rgba(201, 161, 90, 0.5);
  border-radius: 100px;
  padding: 5px 14px;
  background: rgba(201, 161, 90, 0.06);
}

/* Decorative kicker above the title */
.romance-kicker {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--romance-blush);
  letter-spacing: 0.02em;
  margin: 0 0 6px;
  position: relative;
  z-index: 1;
}

/* The title itself, dramatized */
.romance-product-info .product__title {
  position: relative;
  z-index: 1;
}
.romance-product-info .product__title h2.h1,
.romance-product-info .product__title h1 {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic;
  font-weight: 600 !important;
  letter-spacing: 0.005em;
  line-height: 1.05;
  background: linear-gradient(100deg, var(--romance-ink) 30%, var(--romance-gold) 55%, var(--romance-ink) 75%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--romance-ink);
  animation: romance-shimmer 7s ease-in-out infinite;
}
@keyframes romance-shimmer {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

/* Ornamental flourish divider */
.romance-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 20px;
  position: relative;
  z-index: 1;
}
.romance-divider::before,
.romance-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--romance-gold) 50%, transparent);
  opacity: 0.6;
}
.romance-divider .romance-divider__mark {
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  background: var(--romance-gold);
  opacity: 0.85;
  flex-shrink: 0;
}

/* Price framed with a soft gilded feel */
.romance-product-info .price--large {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15em;
  color: var(--romance-ink);
}
.romance-product-info #price-{{ '' }} {
  position: relative;
  z-index: 1;
}

/* Buy buttons — deeper, more dramatic, gold hover glow */
.romance-product-info .product-form__buttons .button--primary,
.romance-product-info product-form .button--primary {
  background: var(--romance-ink);
  border: 1px solid var(--romance-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.3rem;
  transition: box-shadow 0.3s ease, transform 0.2s ease, background 0.3s ease;
}
.romance-product-info .product-form__buttons .button--primary:hover {
  box-shadow: 0 0 24px rgba(201, 161, 90, 0.55);
  transform: translateY(-1px);
  background: #2A241A;
}

/* Description: editorial drop-cap treatment */
.romance-product-info .product__description.rte > p:first-of-type::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 3.6em;
  float: left;
  line-height: 0.8;
  padding: 0.05em 0.08em 0 0;
  color: var(--romance-gold);
}
.romance-product-info .product__description.rte {
  font-size: 1.05em;
  line-height: 1.7;
}

/* Rating stars tinted gold instead of default */
.romance-product-info .rating-star {
  color: var(--romance-gold) !important;
}

@media screen and (max-width: 749px) {
  .romance-product-info::before {
    width: 260px;
    height: 260px;
    top: -30px;
  }
}
