/* ═══════════════════════════════════════════════════════════════════
   VELVINORA ELEMENTOR WIDGETS — COMPLETE STYLES
   Exact match to Figma design reference
═══════════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ────────────────────────────────────────────────── */
:root {
  --vve-bg:     #F5F0EA;
  --vve-dark:   #1E2D22;
  --vve-gold:   #B5843A;
  --vve-greige: #EEEAE3;
  --vve-text:   #4A4A4A;
  --vve-fg:     #1A1A1A;
  --vve-border: #D4C9B8;
  --vve-muted:  #737373;
  --vve-card:   #FFFFFF;
}

/* ── GLOBAL HELPERS ───────────────────────────────────────────────── */
.vve-container   { max-width: 1200px; margin: 0 auto; }
.vve-text-center { text-align: center; }
.vve-bg-cream    { background: var(--vve-bg); }
.vve-bg-dark     { background: var(--vve-dark); }
.vve-bg-greige   { background: var(--vve-greige); }
.vve-gold        { color: var(--vve-gold); }
.vve-section     { padding: 80px 40px; }

.vve-section__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: .22em; color: var(--vve-gold);
  text-transform: uppercase; margin-bottom: 12px; display: block;
}
.vve-section__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 42px); margin-bottom: 48px; color: var(--vve-fg);
}

/* ── GRIDS ────────────────────────────────────────────────────────── */
.vve-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.vve-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.vve-grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }

@media (max-width: 900px) {
  .vve-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .vve-grid-3 { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .vve-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .vve-section { padding: 60px 24px; }
}
@media (max-width: 480px) {
  .vve-grid-4,
  .vve-grid-3 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ════════════════════════════════════════════════════════════════════
   1. HERO SECTION
═══════════════════════════════════════════════════════════════════ */
.vve-hero {
  position: relative;
  height: 100svh; min-height: 600px;
  display: flex; align-items: flex-end; overflow: hidden;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.vve-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.3) 50%, transparent 100%);
}
.vve-hero__content {
  position: relative; z-index: 10;
  padding: 0 40px 80px; max-width: 680px;
}
.vve-hero__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: .22em; color: var(--vve-gold);
  text-transform: uppercase; margin-bottom: 18px; display: block;
}
.vve-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 7vw, 80px); font-style: italic;
  color: #fff; margin-bottom: 20px; line-height: 1.05;
}
.vve-hero__text {
  font-family: 'DM Sans', sans-serif;
  color: rgba(255,255,255,.8); font-size: 15px; margin-bottom: 32px; line-height: 1.6;
}
.vve-hero__btns   { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.vve-hero__est {
  position: absolute; right: 40px; bottom: 80px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: .3em; color: rgba(255,255,255,.45);
  writing-mode: vertical-rl; transform: rotate(180deg);
}

/* Buttons */
.vve-btn-outline-white {
  border: 1px solid rgba(255,255,255,.55); color: #fff;
  padding: 13px 32px; font-size: 13px; background: transparent;
  cursor: pointer; display: inline-block; letter-spacing: .05em;
  font-family: 'DM Sans', sans-serif; text-decoration: none;
  transition: background .2s;
}
.vve-btn-outline-white:hover { background: rgba(255,255,255,.12); color: #fff; }

.vve-btn-text-white {
  color: #fff; font-size: 13px;
  font-family: 'DM Sans', sans-serif; text-decoration: none;
}
.vve-btn-text-white:hover { color: var(--vve-gold); }

.vve-btn-outline-gold {
  border: 1px solid var(--vve-gold); color: var(--vve-gold);
  padding: 13px 40px; font-size: 13px; background: transparent;
  cursor: pointer; display: inline-block; margin-top: 28px;
  letter-spacing: .05em; font-family: 'DM Sans', sans-serif; text-decoration: none;
  transition: background .2s;
}
.vve-btn-outline-gold:hover { background: rgba(181,132,58,.12); color: var(--vve-gold); }

@media (max-width: 600px) {
  .vve-hero__content { padding: 0 20px 60px; }
  .vve-hero__est     { display: none; }
  .vve-hero__btns    { flex-direction: column; align-items: flex-start; gap: 16px; }
  .vve-btn-outline-white { width: 100%; text-align: center; }
}

/* ════════════════════════════════════════════════════════════════════
   2. MARQUEE STRIP
═══════════════════════════════════════════════════════════════════ */
.vve-marquee-wrap {
  background: var(--vve-dark); padding: 14px 0; overflow: hidden;
}
.vve-marquee-track {
  display: flex; white-space: nowrap;
  animation: vveMarquee 22s linear infinite;
}
.vve-marquee-track span {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: .22em; color: rgba(255,255,255,.65);
  padding-right: 40px;
}
@keyframes vveMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════════════════════════
   3. PRODUCT CARD (used in Featured Products & Shop Grid)
═══════════════════════════════════════════════════════════════════ */
.vve-product-card { cursor: pointer; }
.vve-product-card__img {
  position: relative; width: 100%;
  aspect-ratio: 1 / 1; overflow: hidden; background: #EDE8E0;
}
.vve-product-card__img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center; display: block;
  transition: transform .5s ease;
}
.vve-product-card:hover .vve-product-card__img img { transform: scale(1.06); }

.vve-product-card__atc {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(30,45,34,.92); color: #fff; border: none;
  padding: 14px; font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  opacity: 0; transform: translateY(100%); transition: .3s;
  text-decoration: none; font-family: 'DM Sans', sans-serif;
}
.vve-product-card__atc svg { width: 16px; height: 16px; flex-shrink: 0; }
.vve-product-card:hover .vve-product-card__atc { opacity: 1; transform: translateY(0); }

.vve-product-card__info  { padding: 14px 2px 0; }
.vve-product-card__name  { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--vve-fg); }
.vve-product-card__cat   { font-family: 'DM Sans', sans-serif; font-size: 9px; letter-spacing: .15em; color: var(--vve-gold); margin-top: 4px; text-transform: uppercase; }
.vve-product-card__price { font-family: 'DM Sans', sans-serif; font-size: 13px; margin-top: 6px; color: var(--vve-text); }

/* ════════════════════════════════════════════════════════════════════
   4. PHILOSOPHY SPLIT
═══════════════════════════════════════════════════════════════════ */
.vve-philosophy { display: grid; grid-template-columns: 1fr 1fr; }
.vve-philosophy__side-img { aspect-ratio: 1 / 1; overflow: hidden; }
.vve-philosophy__side-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.vve-philosophy__content {
  background: var(--vve-bg);
  display: flex; flex-direction: column; justify-content: center;
  padding: 72px 56px;
}
.vve-philosophy__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: .22em; color: var(--vve-gold);
  text-transform: uppercase; margin-bottom: 16px;
}
.vve-philosophy__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.5vw, 40px); font-style: italic;
  margin-bottom: 22px; line-height: 1.2; color: var(--vve-fg);
}
.vve-philosophy__text  { font-family: 'DM Sans', sans-serif; color: var(--vve-text); line-height: 1.75; margin-bottom: 24px; font-size: 15px; }
.vve-philosophy__link  { font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--vve-gold); text-decoration: none; }
.vve-philosophy__link:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .vve-philosophy { grid-template-columns: 1fr; }
  .vve-philosophy__content { padding: 48px 24px; }
}

/* ════════════════════════════════════════════════════════════════════
   5. CATEGORY TILE
═══════════════════════════════════════════════════════════════════ */
.vve-cat-tile      { display: block; text-decoration: none; }
.vve-cat-tile__img { width: 100%; aspect-ratio: 1 / 1; overflow: hidden; }
.vve-cat-tile__img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center; transition: transform .5s;
}
.vve-cat-tile:hover .vve-cat-tile__img img { transform: scale(1.06); }
.vve-cat-tile__name { font-family: 'DM Sans', sans-serif; text-align: center; font-size: 13px; padding: 12px 0; color: var(--vve-fg); }

/* ════════════════════════════════════════════════════════════════════
   6. TRUST BADGES
═══════════════════════════════════════════════════════════════════ */
.vve-badge          { text-align: center; padding: 16px; }
.vve-badge__icon    { font-size: 26px; margin-bottom: 12px; }
.vve-badge__title   { font-family: 'DM Sans', sans-serif; font-size: 11px; letter-spacing: .15em; color: var(--vve-gold); margin-bottom: 8px; }
.vve-badge__sub     { font-family: 'DM Sans', sans-serif; font-size: 13px; color: rgba(255,255,255,.65); }

/* ════════════════════════════════════════════════════════════════════
   7. NEWSLETTER
═══════════════════════════════════════════════════════════════════ */
.vve-newsletter {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.vve-newsletter__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 32px); color: #fff; margin-bottom: 8px;
}
.vve-newsletter__sub   { font-family: 'DM Sans', sans-serif; font-size: 13px; color: rgba(255,255,255,.55); }
.vve-newsletter__form  { display: flex; }
.vve-newsletter__input {
  background: transparent; border: 1px solid rgba(255,255,255,.3); border-right: none;
  color: #fff; padding: 12px 16px; font-size: 13px; width: 240px; outline: none;
  font-family: 'DM Sans', sans-serif;
}
.vve-newsletter__input::placeholder { color: rgba(255,255,255,.4); }
.vve-newsletter__input:focus { border-color: var(--vve-gold); }
.vve-newsletter__btn {
  border: 1px solid var(--vve-gold); color: var(--vve-gold);
  padding: 12px 22px; font-size: 13px; background: transparent;
  cursor: pointer; letter-spacing: .05em; font-family: 'DM Sans', sans-serif;
  transition: background .2s;
}
.vve-newsletter__btn:hover { background: rgba(181,132,58,.12); }
.vve-newsletter__note { font-family: 'DM Sans', sans-serif; font-size: 11px; color: rgba(255,255,255,.35); margin-top: 10px; }

@media (max-width: 600px) {
  .vve-newsletter { flex-direction: column; align-items: flex-start; }
  .vve-newsletter__form { width: 100%; flex-direction: column; }
  .vve-newsletter__input { width: 100%; border-right: 1px solid rgba(255,255,255,.3); border-bottom: none; }
  .vve-newsletter__btn { width: 100%; }
}

/* ════════════════════════════════════════════════════════════════════
   8. SHOP PAGE BANNER
═══════════════════════════════════════════════════════════════════ */
.vve-page-banner { background: var(--vve-dark); padding: 80px 40px 48px; text-align: center; }
.vve-page-banner__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: .22em; color: var(--vve-gold);
  text-transform: uppercase; margin-bottom: 12px; display: block;
}
.vve-page-banner__title      { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 5vw, 56px); color: #fff; margin-bottom: 12px; }
.vve-page-banner__breadcrumb { font-family: 'DM Sans', sans-serif; font-size: 12px; color: rgba(255,255,255,.45); }

/* ════════════════════════════════════════════════════════════════════
   9. SHOP GRID + SIDEBAR
═══════════════════════════════════════════════════════════════════ */
.vve-shop-layout {
  display: grid; grid-template-columns: 200px 1fr; gap: 48px; align-items: start;
}
@media (max-width: 900px) { .vve-shop-layout { grid-template-columns: 1fr; } }

.vve-shop-sidebar__title { font-family: 'DM Sans', sans-serif; font-size: 11px; letter-spacing: .15em; color: var(--vve-gold); margin-bottom: 20px; }
.vve-shop-sidebar__label { font-family: 'DM Sans', sans-serif; font-size: 13px; margin: 20px 0 12px; font-weight: 500; color: var(--vve-fg); }
.vve-shop-sidebar__note  { font-family: 'DM Sans', sans-serif; font-size: 12px; color: var(--vve-muted); margin-top: 8px; }

.vve-shop-sidebar ul { display: flex; flex-direction: column; gap: 8px; list-style: none; padding: 0; margin: 0; }
.vve-shop-sidebar button {
  display: flex; align-items: center; gap: 10px;
  background: none; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--vve-text); padding: 4px 0;
  transition: color .2s;
}
.vve-shop-sidebar button:hover,
.vve-shop-sidebar button.active { color: var(--vve-fg); }

.vve-radio {
  width: 14px; height: 14px; border-radius: 50%;
  border: 1.5px solid var(--vve-border); flex-shrink: 0; transition: all .2s;
}
.vve-shop-sidebar button.active .vve-radio { border-color: var(--vve-fg); background: var(--vve-fg); }

.vve-shop-sidebar input[type="range"] { width: 100%; accent-color: var(--vve-gold); cursor: pointer; margin-top: 8px; }
.vve-shop-sidebar__apply {
  width: 100%; margin-top: 20px; border: 1px solid var(--vve-fg); background: none;
  padding: 10px; font-family: 'DM Sans', sans-serif; font-size: 11px; letter-spacing: .1em;
  cursor: pointer; transition: background .2s, color .2s;
}
.vve-shop-sidebar__apply:hover { background: var(--vve-fg); color: #fff; }

.vve-shop-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.vve-shop-topbar p { font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--vve-muted); margin: 0; }
.vve-shop-topbar select {
  border: 1px solid var(--vve-border); background: #fff;
  padding: 8px 12px; font-size: 12px; cursor: pointer; outline: none;
  font-family: 'DM Sans', sans-serif;
}

/* ════════════════════════════════════════════════════════════════════
   10. ABOUT HERO
═══════════════════════════════════════════════════════════════════ */
.vve-about-hero {
  position: relative; height: 320px; overflow: hidden;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
}
.vve-about-hero__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.55); }
.vve-about-hero__content { position: relative; z-index: 2; text-align: center; padding: 0 40px; }
.vve-about-hero__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: .22em; color: var(--vve-gold);
  text-transform: uppercase; margin-bottom: 16px; display: block;
}
.vve-about-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 5vw, 52px); font-style: italic; color: #fff; line-height: 1.15;
}

/* ════════════════════════════════════════════════════════════════════
   11. BRAND QUOTE
═══════════════════════════════════════════════════════════════════ */
.vve-brand-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.5vw, 26px); font-style: italic;
  color: var(--vve-gold); margin-bottom: 20px;
}
.vve-brand-quote__divider { width: 60px; height: 1px; background: var(--vve-gold); margin: 0 auto 40px; }
.vve-brand-story         { max-width: 680px; text-align: left; margin: 0 auto; }
.vve-brand-story div,
.vve-brand-story p { font-family: 'DM Sans', sans-serif; color: var(--vve-text); line-height: 1.8; font-size: 15px; }

/* ════════════════════════════════════════════════════════════════════
   12. WHAT WE STAND FOR
═══════════════════════════════════════════════════════════════════ */
.vve-stand-item { padding: 24px 16px; text-align: left; }
.vve-stand-item__divider { width: 100%; height: 1px; background: var(--vve-gold); margin-bottom: 24px; }
.vve-stand-item__icon    { font-size: 28px; margin-bottom: 14px; }
.vve-stand-item__title   { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--vve-gold); margin-bottom: 10px; }
.vve-stand-item__text    { font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--vve-text); line-height: 1.7; }

/* ════════════════════════════════════════════════════════════════════
   13. EXPERIENCE CTA
═══════════════════════════════════════════════════════════════════ */
.vve-experience-cta__title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 4vw, 44px); color: #fff; margin-bottom: 16px; }
.vve-experience-cta__sub   { font-family: 'DM Sans', sans-serif; font-size: 14px; color: rgba(255,255,255,.6); }

/* ════════════════════════════════════════════════════════════════════
   14. CONTACT SPLIT
═══════════════════════════════════════════════════════════════════ */
.vve-contact-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.vve-contact-split__left {
  background: var(--vve-dark); color: #fff; padding: 72px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.vve-contact-split__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: .22em; color: var(--vve-gold);
  text-transform: uppercase; margin-bottom: 16px; display: block;
}
.vve-contact-split__title { font-family: 'Cormorant Garamond', serif; font-size: clamp(26px, 3.5vw, 40px); color: #fff; margin-bottom: 18px; }
.vve-contact-split__desc  { font-family: 'DM Sans', sans-serif; font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 32px; }
.vve-contact-split__info  { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.vve-contact-split__row   { display: flex; align-items: flex-start; gap: 14px; font-family: 'DM Sans', sans-serif; font-size: 14px; color: rgba(255,255,255,.8); }
.vve-contact-split__icon  { font-size: 18px; margin-top: 2px; }
.vve-contact-split__ships-label { font-family: 'DM Sans', sans-serif; font-size: 12px; color: rgba(255,255,255,.5); margin-bottom: 6px; }
.vve-contact-split__cities      { font-family: 'DM Sans', sans-serif; font-size: 13px; color: rgba(255,255,255,.7); }
.vve-contact-split__right { background: var(--vve-bg); padding: 72px 56px; display: flex; flex-direction: column; justify-content: center; }

.vve-contact-form__heading { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--vve-fg); margin-bottom: 28px; }
.vve-contact-form          { display: flex; flex-direction: column; gap: 20px; }
.vve-contact-form__field   { display: flex; flex-direction: column; gap: 6px; }
.vve-contact-form__field label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; letter-spacing: .15em; color: var(--vve-gold); text-transform: uppercase;
}
.vve-contact-form__field input,
.vve-contact-form__field textarea,
.vve-contact-form__field select {
  background: transparent; border: none; border-bottom: 1px solid var(--vve-border);
  padding: 8px 0; font-family: 'DM Sans', sans-serif; font-size: 14px;
  color: var(--vve-fg); outline: none; width: 100%;
}
.vve-contact-form__field input:focus,
.vve-contact-form__field textarea:focus,
.vve-contact-form__field select:focus { border-color: var(--vve-gold); }
.vve-contact-form__btn {
  background: var(--vve-dark); color: #fff; border: none;
  padding: 16px; font-family: 'DM Sans', sans-serif;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; margin-top: 8px; transition: opacity .2s; width: 100%;
}
.vve-contact-form__btn:hover { opacity: .85; }
.vve-contact-form__note { font-family: 'DM Sans', sans-serif; font-size: 11px; color: var(--vve-muted); text-align: center; margin-top: 12px; }

@media (max-width: 768px) {
  .vve-contact-split { grid-template-columns: 1fr; }
  .vve-contact-split__left,
  .vve-contact-split__right { padding: 48px 24px; }
}

/* ════════════════════════════════════════════════════════════════════
   15. SIGN UP FORM
═══════════════════════════════════════════════════════════════════ */
.vve-signup-page {
  background: var(--vve-bg);
  min-height: 80vh; display: flex; align-items: center; justify-content: center;
  padding: 80px 20px;
}
.vve-signup-card {
  background: #fff; max-width: 500px; width: 100%;
  padding: 48px; box-shadow: 0 4px 32px rgba(0,0,0,.08);
}
.vve-signup-card__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; letter-spacing: .3em; color: var(--vve-gold);
  text-align: center; margin-bottom: 6px;
}
.vve-signup-card__tagline {
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-style: italic;
  color: var(--vve-muted); text-align: center; margin-bottom: 28px;
}
.vve-signup-card__heading { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--vve-fg); margin-bottom: 28px; }

.vve-signup-form { display: flex; flex-direction: column; gap: 18px; }
.vve-signup-form__field { display: flex; flex-direction: column; gap: 6px; }
.vve-signup-form__field label {
  font-family: 'DM Sans', sans-serif; font-size: 10px;
  letter-spacing: .15em; color: var(--vve-gold); text-transform: uppercase;
}
.vve-signup-form__field input,
.vve-signup-form__field select {
  background: transparent; border: none; border-bottom: 1px solid var(--vve-border);
  padding: 8px 0; font-family: 'DM Sans', sans-serif; font-size: 14px;
  color: var(--vve-fg); outline: none; width: 100%;
}
.vve-signup-form__field input:focus,
.vve-signup-form__field select:focus { border-color: var(--vve-gold); }
.vve-signup-form__check {
  display: flex; align-items: center; gap: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--vve-text); cursor: pointer;
}
.vve-signup-form__btn {
  background: var(--vve-dark); color: #fff; border: none;
  padding: 16px; font-family: 'DM Sans', sans-serif;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; margin-top: 8px; transition: opacity .2s; width: 100%;
}
.vve-signup-form__btn:hover { opacity: .85; }

.vve-signup-card__divider {
  display: flex; align-items: center; gap: 12px; margin: 20px 0;
}
.vve-signup-card__divider::before,
.vve-signup-card__divider::after { content: ''; flex: 1; height: 1px; background: var(--vve-border); }
.vve-signup-card__divider span   { font-family: 'DM Sans', sans-serif; font-size: 12px; color: var(--vve-muted); }
.vve-signup-card__login          { font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--vve-text); text-align: center; }
.vve-signup-card__login a        { color: var(--vve-gold); text-decoration: none; }
.vve-signup-card__login a:hover  { text-decoration: underline; }
