/* Radiate Your Love — shared styles (Cloudflare Pages static) */
:root {
  --rose-deep: #8B3A4A;
  --rose: #A84B5C;
  --rose-soft: #C97B88;
  --rose-mist: #F3E4E7;
  --cream: #FBF7F2;
  --cream-dark: #F0E6DC;
  --gold: #C4A574;
  --gold-soft: #E8D5B5;
  --ink: #2C2426;
  --ink-soft: #5C5154;
  --white: #FFFFFF;
  --shadow: 0 12px 40px rgba(139, 58, 74, 0.12);
  --shadow-soft: 0 4px 20px rgba(44, 36, 38, 0.06);
  --radius: 16px;
  --radius-sm: 12px;
  --max: 1120px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, sans-serif;
  --nav-h: 68px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--rose-deep); }
a:hover { color: var(--rose); }
.wrap { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--rose);
  margin-bottom: 0.75rem;
}
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  color: var(--ink);
}
h1 { font-size: clamp(2.25rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1rem; color: var(--ink-soft); }
.lede { max-width: 52ch; font-size: 1.08rem; }
.center { text-align: center; }
.center .lede, .center p { margin-inline: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); color: inherit; }
.btn-primary {
  background: var(--rose-deep);
  color: var(--white);
  border-color: var(--rose-deep);
}
.btn-primary:hover { background: #74303e; border-color: #74303e; color: var(--white); }
.btn-secondary {
  background: transparent;
  color: var(--rose-deep);
  border-color: var(--rose-soft);
}
.btn-secondary:hover { background: var(--rose-mist); color: var(--rose-deep); }
.btn-ghost {
  background: var(--white);
  color: var(--ink);
  border-color: var(--cream-dark);
}
.btn-ghost:hover { border-color: var(--rose-soft); color: var(--rose-deep); }
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-gold:hover { background: #b8945f; border-color: #b8945f; color: var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.25rem; }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.9rem; }

/* Top bar */
.topbar {
  background: var(--ink);
  color: var(--gold-soft);
  text-align: center;
  font-size: 0.85rem;
  padding: 0.55rem 1rem;
  letter-spacing: 0.02em;
}

/* Frosted sticky nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 242, 0.82);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid rgba(139, 58, 74, 0.08);
  transition: box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(44, 36, 38, 0.06);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
  min-height: var(--nav-h);
}
.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.logo:hover { color: var(--ink); }
.logo span { color: var(--rose-deep); }

.nav-pill {
  display: none;
  align-items: center;
  gap: 0.15rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(139, 58, 74, 0.1);
  border-radius: 999px;
  padding: 0.3rem;
  box-shadow: var(--shadow-soft);
}
.nav-pill a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 550;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-pill a:hover,
.nav-pill a.is-active {
  background: var(--rose-mist);
  color: var(--rose-deep);
}
.header-actions { display: flex; align-items: center; gap: 0.6rem; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--cream-dark);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--ink);
  margin-inline: auto;
  transition: transform 0.25s var(--ease), opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(139, 58, 74, 0.08);
  background: rgba(251, 247, 242, 0.98);
  padding: 0.75rem 0 1.25rem;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.85rem 0;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1px solid var(--cream-dark);
}
.mobile-nav a:last-child { border-bottom: 0; }

@media (min-width: 900px) {
  .nav-pill { display: flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* Sections */
section { padding: 3.75rem 0; }
.section-alt { background: var(--white); }
.section-cream { background: var(--cream); }
.section-rose {
  background: linear-gradient(165deg, var(--rose-deep) 0%, #6E2E3B 100%);
  color: var(--white);
}
.section-rose h2, .section-rose h3 { color: var(--white); }
.section-rose p { color: rgba(255, 255, 255, 0.88); }
.section-rose .eyebrow { color: var(--gold-soft); }

/* Hero — home */
.hero-home {
  position: relative;
  padding: 3.5rem 0 4rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 85% 15%, rgba(200, 123, 136, 0.22), transparent 55%),
    radial-gradient(ellipse 55% 45% at 8% 85%, rgba(196, 165, 116, 0.18), transparent 50%),
    var(--cream);
}
.hero-home-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-home-grid { grid-template-columns: 1.05fr 0.95fr; gap: 3.5rem; }
}
.hero-home .hero-lead {
  font-size: 1.2rem;
  max-width: 38ch;
  color: var(--ink-soft);
}
.hero-visual {
  position: relative;
}
.hero-visual img,
.product-shot {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, var(--rose-mist), var(--cream-dark));
}
.hero-visual .float-card {
  position: absolute;
  bottom: 1.25rem;
  left: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  box-shadow: var(--shadow);
  color: var(--ink-soft);
}
@media (min-width: 600px) {
  .hero-visual .float-card {
    left: auto;
    right: 1.25rem;
    width: 230px;
  }
}

/* Soft float animation */
@keyframes soft-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float-soft { animation: soft-float 6s ease-in-out infinite; }

/* Featured product strip */
.featured-rose {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 800px) {
  .featured-rose { grid-template-columns: 0.9fr 1.1fr; gap: 3rem; }
}
.featured-rose img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}
.price {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--ink);
}
.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem 1.25rem;
  margin: 1rem 0 0.25rem;
}
.price-note { font-size: 0.9rem; color: var(--ink-soft); }
.stock-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #F8E9C8;
  color: #7A5A1E;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}
.stock-pill::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.35rem;
  list-style: none;
  padding: 0;
}
.trust-chips li {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.section-alt .trust-chips li { background: var(--cream); }

/* Collection cards */
.cards {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (min-width: 700px) {
  .cards-2 { grid-template-columns: repeat(2, 1fr); }
  .cards-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .cards-4 { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 700px) and (max-width: 899px) {
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(139, 58, 74, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.section-alt .card { background: var(--cream); }
.card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--rose-mist);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.card p { font-size: 0.95rem; margin-bottom: 0; }
.card h3 { margin-bottom: 0.5rem; }

.collection-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  text-decoration: none;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease);
}
.collection-card:hover { transform: translateY(-4px); color: var(--white); }
.collection-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: transform 0.5s var(--ease), opacity 0.3s ease;
}
.collection-card:hover img { transform: scale(1.05); opacity: 0.45; }
.collection-card .content { position: relative; z-index: 1; }
.collection-card h3 { color: var(--white); margin-bottom: 0.35rem; }
.collection-card p { color: rgba(255,255,255,0.85); margin: 0; font-size: 0.95rem; }
.collection-card .tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-soft);
  margin-bottom: 0.5rem;
}

/* Product grid */
.product-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 560px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(139, 58, 74, 0.08);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  color: inherit;
}
.product-card .thumb {
  aspect-ratio: 1;
  background: var(--cream-dark);
  overflow: hidden;
}
.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.product-card:hover .thumb img { transform: scale(1.04); }
.product-card .body { padding: 1.15rem 1.25rem 1.35rem; flex: 1; display: flex; flex-direction: column; }
.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}
.product-card p {
  font-size: 0.92rem;
  margin-bottom: 0.85rem;
  flex: 1;
}
.product-card .link-out {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--rose-deep);
}

/* Story strip */
.story-strip {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 800px) {
  .story-strip { grid-template-columns: 1fr 1.15fr; gap: 3rem; }
}
.mark-note {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  margin-top: 1.25rem;
  border: 1px solid var(--cream-dark);
}
.section-cream .mark-note { background: var(--white); }
.mark-note .icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--rose-mist);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}
.story-visual {
  border-radius: var(--radius);
  min-height: 320px;
  background:
    radial-gradient(circle at 30% 40%, rgba(200, 123, 136, 0.35), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(196, 165, 116, 0.3), transparent 45%),
    linear-gradient(145deg, var(--rose-mist), var(--cream-dark));
  display: grid;
  place-items: center;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.story-visual .heart-mark {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--rose-deep);
  font-weight: 600;
  line-height: 1;
}
.story-visual .caption {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: 22ch;
}

/* Amazon soft CTA */
.amazon-soft {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-soft);
}
.amazon-soft p { margin: 0; max-width: 48ch; }

/* Page hero (inner pages) */
.page-hero {
  padding: 3rem 0 2rem;
  background:
    radial-gradient(ellipse 60% 50% at 90% 0%, rgba(200, 123, 136, 0.15), transparent 50%),
    var(--cream);
}
.page-hero h1 { margin-bottom: 0.5rem; }

/* Rose landing specifics */
.hero-rose {
  padding: 2.5rem 0 3rem;
  background:
    radial-gradient(ellipse 80% 60% at 90% 10%, rgba(200, 123, 136, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(196, 165, 116, 0.15), transparent 50%),
    var(--cream);
}
.hero-rose-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 860px) {
  .hero-rose-grid { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; }
}

.steps {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
  counter-reset: step;
}
@media (min-width: 800px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}
.step {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.section-cream .step { background: var(--white); }
.step::before {
  counter-increment: step;
  content: counter(step);
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--rose);
  display: block;
  margin-bottom: 0.5rem;
}

.quality-list { list-style: none; padding: 0; margin: 1.25rem 0 0; }
.quality-list li {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--ink-soft);
}
.quality-list li:last-child { border-bottom: 0; }
.quality-list li::before {
  content: "✓";
  color: var(--rose);
  font-weight: 700;
  flex-shrink: 0;
}

.quality-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 800px) {
  .quality-grid { grid-template-columns: 0.9fr 1.1fr; }
}

/* CTA band / waitlist */
.cta-band {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 800px) {
  .cta-band { grid-template-columns: 1.2fr 0.8fr; }
}
.cta-panel {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.cta-panel label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--gold-soft);
}
.cta-panel input[type="email"] {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: none;
  font-size: 1rem;
  font-family: inherit;
  margin-bottom: 0.75rem;
}
.section-rose .btn-primary {
  background: var(--white);
  color: var(--rose-deep);
  border-color: var(--white);
}
.section-rose .btn-primary:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  color: var(--ink);
}
.section-rose .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.section-rose .btn-secondary:hover { background: rgba(255, 255, 255, 0.12); color: var(--white); }
.section-rose .btn-block { width: 100%; }
.fine-print { font-size: 0.8rem; opacity: 0.8; margin-top: 0.75rem; margin-bottom: 0; }

/* FAQ */
.faq { max-width: 720px; margin: 2rem auto 0; }
.faq-item { border-bottom: 1px solid var(--cream-dark); }
.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.15rem 2rem 1.15rem 0;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  position: relative;
}
.faq-item button::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--rose);
  font-size: 1.35rem;
  font-weight: 400;
}
.faq-item.is-open button::after { content: "−"; }
.faq-panel {
  display: none;
  padding: 0 0 1.15rem;
  color: var(--ink-soft);
}
.faq-item.is-open .faq-panel { display: block; }

/* About long-form */
.prose {
  max-width: 680px;
  margin-inline: auto;
}
.prose p { font-size: 1.08rem; margin-bottom: 1.25rem; }
.prose .signoff {
  font-style: italic;
  color: var(--ink);
  margin-top: 2rem;
}

/* Sticky mobile CTA (rose page) */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(251, 247, 242, 0.97);
  border-top: 1px solid rgba(139, 58, 74, 0.12);
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  box-shadow: 0 -8px 30px rgba(44, 36, 38, 0.08);
}
.sticky-cta .btn { flex: 1; max-width: 280px; padding: 0.75rem 1rem; }
@media (min-width: 860px) {
  .sticky-cta { display: none; }
}
.has-sticky-cta { padding-bottom: 5rem; }
@media (min-width: 860px) {
  .has-sticky-cta { padding-bottom: 0; }
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 2.5rem;
  font-size: 0.9rem;
}
.site-footer a { color: var(--gold-soft); text-decoration: none; }
.site-footer a:hover { color: var(--white); }
.site-footer .logo { color: var(--white); margin-bottom: 0.75rem; display: inline-block; }
.footer-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}
.footer-nav { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: 0.5rem; }
.footer-nav a { color: rgba(255,255,255,0.75); }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  opacity: 0.65;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-soft { animation: none; }
  html { scroll-behavior: auto; }
}
