:root{
--nav-h: 66px;   /* sticky header height — update if nav changes */
--cream: #FBF1E8;
--cream-2: #F6E9DE;
--blush: #F6DCDD;
--rose: #C17B82;
--rose-deep: #904E56;
--gold: #B08A54;
--gold-light: #D9BD8B;
--ink: #4A3A34;
--ink-soft: #7A655F;
--white: #FFFDFB;
--shadow: 0 18px 40px -20px rgba(144, 78, 86, 0.35);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
margin:0;
background: var(--cream);
color: var(--ink);
font-family: 'Quicksand', sans-serif;
font-weight: 500;
}

/* Horizontal-scroll guard lives on this wrapper, NOT on body/html.
   Overflow set directly on body/html breaks position:fixed children
   (like the WhatsApp bubble) on WebKit-based mobile browsers —
   Safari, and any iOS browser, since iOS forces all browsers to use
   WebKit under the hood (Brave iOS, Opera iOS, Chrome iOS included). */
.page-shell{
overflow-x: hidden;
}

h1,h2,h3, .display{
font-family: 'Playfair Display', serif;
color: var(--rose-deep);
margin: 0;
}

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

:focus-visible{
outline: 2px solid var(--rose-deep);
outline-offset: 3px;
}

.eyebrow{
font-family: 'Quicksand', sans-serif;
font-weight: 700;
letter-spacing: .28em;
text-transform: uppercase;
font-size: .72rem;
color: var(--gold);
}

/* ---------- decorative sparkle dots (echo of logo) ---------- */
.sparkle{
position:absolute;
color: var(--gold-light);
font-size: 1.1rem;
opacity:.8;
}
@media (prefers-reduced-motion: no-preference){
.flicker{ animation: flicker 3.4s ease-in-out infinite; }
@keyframes flicker{
    0%,100%{ transform: scaleY(1) rotate(-1deg); opacity:1; }
    50%{ transform: scaleY(1.06) rotate(1deg); opacity:.92; }
}
.drift{ animation: drift 7s ease-in-out infinite; }
@keyframes drift{
    0%,100%{ transform: translateY(0); }
    50%{ transform: translateY(-8px); }
}
}

/* ---------- nav ---------- */
header{
position: sticky; top:0; z-index: 50;
background: rgba(251,241,232,0.86);
backdrop-filter: blur(8px);
border-bottom: 1px solid rgba(176,138,84,0.18);
}
.nav-wrap{
max-width: 1120px; margin:0 auto; padding: 14px 28px;
display:flex; align-items:center; justify-content:space-between;
}
.brand{ display:flex; align-items:center; gap:10px; font-family:'Playfair Display', serif; font-weight:700; color: var(--rose-deep); font-size:1.15rem; text-decoration:none;}
.brand img{ width:38px; height:38px; border-radius:50%; object-fit:cover; }

/* nav is a flex row: [toggle (mobile only)] [links] [lang switch].
   On desktop the toggle is display:none, so visually you get
   links → lang switch, i.e. the switch sits right after Contact.
   On mobile the <ul> becomes position:absolute (see media query),
   which pulls it out of this flex flow, leaving toggle + switch
   sitting next to each other. */
nav{
position: relative;
display: flex;
align-items: center;
gap: 26px;
}
nav ul{ list-style:none; display:flex; gap:28px; margin:0; padding:0; }
nav a{ text-decoration:none; font-weight:600; font-size:.92rem; color: var(--ink); position:relative; }
nav a:after{
content:""; position:absolute; left:0; bottom:-4px; width:0; height:1.5px; background: var(--rose);
transition: width .25s ease;
}
nav a:hover:after, nav a:focus-visible:after{ width:100%; }

/* ---- language switch (EN | ES) ---- */
.lang-switch{
display:flex;
align-items:center;
gap: 6px;
font-size: .84rem;
font-weight: 700;
letter-spacing: .03em;
flex-shrink: 0;
}
.lang-link{
text-decoration: none;
color: var(--ink-soft);
transition: color .2s ease;
}
.lang-link:hover, .lang-link:focus-visible{ color: var(--rose-deep); }
.lang-link.is-active{
color: var(--rose-deep);
pointer-events: none;
}
.lang-sep{ color: rgba(144,78,86,.32); font-weight: 500; }

/* hamburger toggle — hidden on desktop, shown only under the 880px breakpoint below */
.nav-toggle{
display:none;
flex-direction:column;
justify-content:center;
gap:5px;
width:34px; height:34px;
background:none; border:none; padding:0; cursor:pointer;
}
.nav-toggle span{
width:24px; height:2px; border-radius:2px;
background: var(--rose-deep);
transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle.is-active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2){ opacity:0; }
.nav-toggle.is-active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero{
position:relative;
max-width: 1120px; margin:0 auto;
padding: 64px 28px 80px;
display:grid; grid-template-columns: 1.05fr .95fr; gap:40px;
align-items:center;
}
.hero-copy .eyebrow{ margin-bottom:14px; display:block; }
.hero h1{
font-size: clamp(2.6rem, 5vw, 4.1rem);
line-height: 1.04;
letter-spacing: -.01em;
}
.hero h1 em{ font-style: italic; color: var(--gold); }
.hero p.lede{
margin-top: 20px; max-width: 46ch;
color: var(--ink-soft); font-size: 1.08rem; line-height:1.6;
}
.hero-actions{ margin-top: 32px; display:flex; gap:16px; flex-wrap:wrap; }
.btn{
display:inline-block; padding: 14px 30px; border-radius: 999px;
font-weight:700; font-size:.95rem; text-decoration:none;
transition: transform .2s ease, box-shadow .2s ease;
}
.btn-primary{ background: var(--rose-deep); color: var(--white); box-shadow: var(--shadow); }
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 22px 44px -18px rgba(144,78,86,.5); }
.btn-ghost{ border: 1.5px solid var(--rose-deep); color: var(--rose-deep); }
.btn-ghost:hover{ background: rgba(144,78,86,0.08); }

.hero-visual{ position:relative; display:flex; justify-content:center; align-items:center; }
.hero-blob{
position:relative; width: 340px; max-width:100%;
background: var(--white);
border-radius: 44% 56% 62% 38% / 48% 42% 58% 52%;
box-shadow: var(--shadow);
padding: 18px;
}
.hero-blob img{ border-radius: 40% 52% 58% 36% / 44% 40% 54% 48%; }

/* signature flame accent above hero image */
.flame-mark{ position:absolute; top:-26px; left:50%; transform:translateX(-50%); width:26px; }

/* ---------- section shell ---------- */
section{ padding: 84px 28px; }
.section-inner{ max-width: 1120px; margin:0 auto; }
.section-head{ text-align:center; max-width: 640px; margin: 0 auto 52px; }
.section-head .eyebrow{ display:block; margin-bottom:12px; }
.section-head h2{ font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.section-head p{ color: var(--ink-soft); margin-top:14px; line-height:1.6; }

.divider{
display:flex; align-items:center; justify-content:center; gap:14px;
color: var(--rose); margin: 0 auto 8px; width:fit-content;
}
.divider span{ width:44px; height:1px; background: rgba(176,138,84,0.4); }

/* ---------- about ---------- */
.about{ background: var(--white); }
.about-grid{
display:grid; grid-template-columns: .9fr 1.1fr; gap:56px; align-items:center;
}
.about-card{
background: var(--cream-2); border-radius: 28px; padding: 32px;
box-shadow: var(--shadow);
}
.about-card ul{ list-style:none; margin:0; padding:0; display:grid; gap:18px; }
.about-card li{ display:flex; gap:14px; align-items:flex-start; }
.about-card .mark{ color:var(--gold); font-size:1.3rem; line-height:1; margin-top:2px; }
.about p{ color: var(--ink-soft); line-height:1.75; font-size:1.02rem; }

/* ---------- products ---------- */
.products{ position:relative; }
.grid{
display:grid; grid-template-columns: repeat(3, 1fr); gap: 34px;
}
.card{
background: var(--white);
border-radius: 26px;
overflow:hidden;
box-shadow: 0 14px 30px -18px rgba(144,78,86,0.28);
transition: transform .28s ease, box-shadow .28s ease;
display:flex; flex-direction:column;
}
.card:hover{ transform: translateY(-6px); box-shadow: 0 24px 44px -18px rgba(144,78,86,0.4); }
.card-media{
position:relative; aspect-ratio: 1/1; overflow:hidden;
background: var(--blush);
}
.card-media img{ width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.card:hover .card-media img{ transform: scale(1.05); }
.price-tag{
position:absolute; top:16px; right:16px;
background: var(--white); color: var(--rose-deep);
font-family:'Playfair Display', serif; font-weight:700; font-size:.98rem;
padding: 7px 16px; border-radius: 999px; box-shadow: 0 8px 18px -8px rgba(0,0,0,.25);
}
.card-body{ padding: 22px 22px 26px; display:flex; flex-direction:column; gap:8px; flex:1; }
.card-body h3{ font-size:1.2rem; }
.card-body p{ color: var(--ink-soft); font-size:.92rem; line-height:1.55; margin:0; flex:1; }
.card-tags{ display:flex; gap:8px; flex-wrap:wrap; margin-top:6px; }
.tag{
font-size:.72rem; font-weight:700; letter-spacing:.04em;
color: var(--gold); background: rgba(176,138,84,0.12);
padding: 4px 11px; border-radius: 999px;
}
.price-note{
text-align:center; margin-top:38px; color: var(--ink-soft); font-size:.9rem; font-style: italic;
}

/* ---------- contact ---------- */
.contact{ background: linear-gradient(180deg, var(--white), var(--cream-2)); }
.contact-wrap{
background: var(--rose-deep);
border-radius: 32px;
padding: 56px 48px;
display:grid; grid-template-columns: 1fr 1fr; gap: 40px;
color: var(--white);
box-shadow: var(--shadow);
position:relative; overflow:hidden;
}
.contact-wrap:before{
content:"♡"; position:absolute; font-size:14rem; right:-30px; top:-60px;
color: rgba(255,255,255,0.06); font-family:'Playfair Display', serif;
}
.contact-copy .eyebrow{ color: var(--gold-light); }
.contact-copy h2{ color: var(--white); font-size: clamp(1.8rem, 3vw, 2.3rem); margin-top:10px; }
.contact-copy p{ color: rgba(255,255,255,0.82); margin-top:14px; line-height:1.7; max-width: 40ch; }

.contact-list{ list-style:none; margin: 28px 0 0; padding:0; display:grid; gap:18px; }
.contact-list li{ display:flex; gap:14px; align-items:center; }
.contact-list .icon{
width:42px; height:42px; border-radius:50%;
background: rgba(255,255,255,0.14);
display:flex; align-items:center; justify-content:center;
font-size:1.1rem; flex-shrink:0;
}
.contact-list a{ text-decoration:none; color:var(--white); font-weight:700; }
.contact-list .label{ display:block; font-size:.74rem; letter-spacing:.1em; text-transform:uppercase; color: rgba(255,255,255,0.6); font-weight:600; margin-bottom:2px;}

.contact-form{
background: rgba(255,255,255,0.08);
border: 1px solid rgba(255,255,255,0.18);
border-radius: 22px;
padding: 30px;
position: relative;
z-index: 1;
}

.contact-form p.hint{ color: rgba(255,255,255,0.7); font-size:.85rem; margin: 0 0 18px; }
.field{ margin-bottom: 16px; }
.field label{ display:block; font-size:.8rem; margin-bottom:6px; color: rgba(255,255,255,0.85); font-weight:600; }
.field input, .field textarea{
width:100%; padding: 12px 14px; border-radius: 12px; border:1px solid rgba(255,255,255,0.28);
background: rgba(255,255,255,0.95); color: var(--ink); font-family:'Quicksand', sans-serif; font-weight:600;
font-size: .95rem;
}
.field textarea{ resize: vertical; min-height: 84px; }
.contact-form .btn-primary{ background: var(--gold); width:100%; text-align:center; border:none; cursor:pointer; box-shadow:none; }
.contact-form .btn-primary:hover{ background: var(--gold-light); color: var(--rose-deep); }
/* ---------- footer ---------- */
footer{
text-align:center; padding: 34px 28px 42px; color: var(--ink-soft); font-size:.85rem;
}
footer .brand-mini{ font-family:'Playfair Display', serif; color: var(--rose-deep); font-weight:700; }

/* ---------- responsive ---------- */
@media (max-width: 880px){
.hero{ grid-template-columns: 1fr; text-align:center; padding-top: 44px; }
.hero p.lede{ margin-left:auto; margin-right:auto; }
.hero-actions{ justify-content:center; }
.hero-visual{ order:-1; }

/* keep the hero photo from taking over the whole screen on phones */
.hero-blob{ width: 220px; padding: 12px; }

.about-grid{ grid-template-columns: 1fr; }
.grid{ grid-template-columns: repeat(2, 1fr); }
.contact-wrap{ grid-template-columns: 1fr; padding: 40px 28px; }

/* nav becomes: [hamburger] [lang switch] — closer together than desktop */
nav{ gap: 14px; }

/* hamburger nav: button appears, menu becomes a collapsible dropdown */
.nav-toggle{ display:flex; }
nav ul{
  display: flex;
  flex-direction: column;
  gap: 0;
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 190px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 8px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: max-height .28s ease, opacity .2s ease;
}
nav ul.open{
  max-height: 260px;
  opacity: 1;
  pointer-events: auto;
}
nav ul li{ width: 100%; }
nav ul a{ display:block; padding: 12px 14px; border-radius: 10px; }
nav ul a:hover, nav ul a:focus-visible{ background: var(--cream-2); }
nav ul a:after{ display:none; }

.lang-switch{ font-size: .8rem; }
}
@media (max-width: 540px){
.grid{ grid-template-columns: 1fr; }
section{ padding: 60px 20px; }
.hero-blob{ width: 190px; }
}

/* ---------- WhatsApp floating button ---------- */

.ed-contact-bubble{
    position: fixed;
    right: 24px;
    bottom: 24px;

    width: 58px;
    height: 58px;

    background: #25D366;
    color: white;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);

    z-index: 9999;

    transition: transform .2s ease, box-shadow .2s ease;
}

.ed-contact-bubble svg{
    width: 32px;
    height: 32px;
    fill: currentColor;
    position: relative;
    z-index: 1;
}

.ed-contact-bubble:hover,
.ed-contact-bubble:focus-visible{
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

/* soft pulsing ring so the button reads as "live" without being noisy */
.ed-contact-bubble::before{
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid #25D366;
    opacity: .55;
    animation: ed-bubble-pulse 2.4s ease-out infinite;
    pointer-events: none;
}

@keyframes ed-bubble-pulse{
    0%   { transform: scale(.88); opacity: .55; }
    70%  { transform: scale(1.4); opacity: 0; }
    100% { transform: scale(1.4); opacity: 0; }
}

@media (prefers-reduced-motion: reduce){
    .ed-contact-bubble::before{ animation: none; display: none; }
}

/* small tooltip on hover/focus (desktop) */
.ed-contact-bubble .ed-bubble-tip{
    position: absolute;
    right: 72px;
    background: var(--rose-deep);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 10px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: .85rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
}
.ed-contact-bubble .ed-bubble-tip::after{
    content: "";
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--rose-deep);
}
.ed-contact-bubble:hover .ed-bubble-tip,
.ed-contact-bubble:focus-visible .ed-bubble-tip{
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 540px){
    .ed-contact-bubble{
        width: 52px;
        height: 52px;
        right: 18px;
        bottom: 18px;
    }

    .ed-contact-bubble svg{
        width: 29px;
        height: 29px;
    }

    .ed-contact-bubble .ed-bubble-tip{ display: none; }
}

/* ========================================================
   FEATURED HERO SLIDER
   ======================================================== */

.feat-slider {
  position: relative;
  width: 100%;
  height: calc(100svh - var(--nav-h));
  overflow: hidden;
  background: var(--cream);
  user-select: none;
}

.feat-track {
  display: flex;
  width: 100%;
  height: 100%;
  will-change: transform;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feat-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 43% 57%;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}

.feat-media {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 0; 
  box-sizing: border-box;
  min-width: 0;
}

.feat-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ---- text panel ---- */
.feat-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 60px 80px 56px;
  background: var(--cream);
  position: relative;
  z-index: 1;
  box-shadow: -4px 0 0 var(--cream);
  box-sizing: border-box;
  min-width: 0
}

/* diagonal right edge — reveals image panel below */
.feat-text::after {
  content: '';
  position: absolute;
  top: 0; right: -32px; bottom: 0;
  width: 64px;
  background: var(--cream);
  clip-path: polygon(0 0, 38% 0, 100% 100%, 0 100%);
  z-index: 2;
  pointer-events: none;
}

.feat-text .eyebrow { display: block; margin-bottom: 18px; }

.feat-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 3.6vw, 3.4rem);
  color: var(--rose-deep);
  line-height: 1.06;
  letter-spacing: -.015em;
  margin: 0 0 20px;
}

.feat-desc {
  color: var(--ink-soft);
  font-size: clamp(0.94rem, 1.15vw, 1.06rem);
  line-height: 1.68;
  max-width: 38ch;
  margin: 0 0 36px;
}

/* ---- prev / next arrows ---- */
.feat-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(6px);
  color: var(--rose-deep);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.14);
  transition: background .2s ease, transform .2s ease;
  z-index: 10;
}
.feat-arrow:hover { background: var(--white); transform: translateY(-50%) scale(1.1); }
.feat-arrow svg   { width: 20px; height: 20px; }
.feat-prev { left: 20px; }
.feat-next { right: 20px; }

/* ---- dots ---- */
.feat-dots {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.feat-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(144, 78, 86, 0.28);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .25s ease, width .3s ease;
}

.feat-dot.active {
  background: var(--rose-deep);
  width: 26px;
}

/* ---- brand tagline (desktop only) ---- */
.feat-tagline {
  position: absolute;
  bottom: 30px;
  left: 56px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: .78rem;
  color: var(--rose);
  opacity: 0.55;
  letter-spacing: .06em;
  margin: 0;
  z-index: 10;
  pointer-events: none;
}
/* ---- mobile ---- */
@media (max-width: 880px) {
  .feat-slider { height: auto; min-height: 0; }

  .feat-slide {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  /* image on top, text below */
  .feat-media {
    order: 1;
    height: 65vw;
    min-height: 250px;
    max-height: 380px;
    clip-path: none;
    padding: 24px 8px 0;
    box-sizing: border-box;
    min-width: 0
  }
  
  .feat-media img {
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }
    
    
  .feat-text {
    order: 2;
    padding: 30px 24px 56px;  /* extra bottom room for dots */
  }

  .feat-text::after { display: none; }
  .feat-desc        { max-width: 100%; }

  .feat-arrow { width: 36px; height: 36px; }
  .feat-arrow svg { width: 16px; height: 16px; }
  .feat-prev { left: 8px; }
  .feat-next { right: 8px; }

  .feat-dots   { bottom: 16px; }
  .feat-tagline { display: none; }
}


/* ========================================================
   PRODUCT CARD MINI-SLIDERS
   Only activates via JS when a card has 2+ .cs-slide items.
   With a single image the card looks exactly as before.
   ======================================================== */

.card-slider { position: relative; }

.cs-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}

.cs-slide {
  position: relative;
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}

.cs-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* arrows (shown on hover, injected by JS) */
.cs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--rose-deep);
  border: none;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  opacity: 0;
  transition: opacity .2s ease, background .2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.card-slider:hover .cs-arrow { opacity: 1; }
.cs-arrow:hover { background: var(--white); }
.cs-prev { left: 8px; }
.cs-next { right: 8px; }

/* dots (injected by JS) */
.cs-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 5;
}

.cs-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(144, 78, 86, 0.3);
  cursor: pointer;
  padding: 0;
  transition: background .2s ease, transform .2s ease;
}

.cs-dot.active {
  background: var(--rose-deep);
  transform: scale(1.25);
}

/* ---------- toast notification ---------- */

.toast {
    position: fixed;
    left: 50%;
    bottom: 30px;
    transform: translate(-50%, 120px);

    background: var(--rose-deep);
    color: var(--white);

    padding: 14px 24px;
    border-radius: 999px;

    font-size: .9rem;
    font-weight: 700;

    box-shadow: 0 14px 35px rgba(0,0,0,.25);

    opacity: 0;
    visibility: hidden;

    transition:
        transform .35s ease,
        opacity .35s ease,
        visibility .35s ease;

    z-index: 9999;
}

.toast.show {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
}

.toast.success {
    background: var(--gold);
    color: var(--white);
}

.toast.error {
    background: var(--rose-deep);
    color: var(--white);
}