@import url("tokens.css");

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--color-text); background: var(--color-bg); line-height: 1.65; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-primary);
  line-height: 1.2;
}
h1 { font-size: clamp(1.75rem, 5vw, 2.75rem); }
h2 { font-size: clamp(1.35rem, 3.5vw, 2.1rem); }
h3 { font-size: clamp(1.05rem, 2.5vw, 1.4rem); }
p { max-width: 68ch; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 600; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }

/* ---- Accent underline on headings ---- */
.heading-accent {
  display: inline-block;
  padding-bottom: 0.5rem;
}
.heading-accent::after {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  background: var(--color-accent);
  margin-top: 0.45rem;
}
.section-header .heading-accent::after { margin-inline: auto; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* ---- Visual Placeholder ---- */
.visual-placeholder {
  display: block;
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--color-primary) 22%, var(--color-bg)) 0%,
    color-mix(in srgb, var(--color-primary) 10%, var(--color-bg)) 55%,
    color-mix(in srgb, var(--color-secondary) 18%, var(--color-bg)) 100%
  );
}
.visual-placeholder[data-aspect="4:3"]  { aspect-ratio: 4 / 3; }
.visual-placeholder[data-aspect="1:1"]  { aspect-ratio: 1 / 1; }
.visual-placeholder[data-aspect="3:4"]  { aspect-ratio: 3 / 4; }
.visual-placeholder[data-aspect="21:9"] { aspect-ratio: 21 / 9; }

.visual-placeholder[data-tone="secondary"] {
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--color-secondary) 22%, var(--color-bg)) 0%,
    color-mix(in srgb, var(--color-secondary) 10%, var(--color-bg)) 55%,
    color-mix(in srgb, var(--color-primary) 16%, var(--color-bg)) 100%
  );
}
.visual-placeholder[data-tone="accent"] {
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--color-accent, var(--color-primary)) 22%, var(--color-bg)) 0%,
    color-mix(in srgb, var(--color-primary) 12%, var(--color-bg)) 60%,
    color-mix(in srgb, var(--color-secondary) 16%, var(--color-bg)) 100%
  );
}
.visual-placeholder[data-tone="muted"] {
  background: color-mix(in srgb, var(--color-text) 8%, var(--color-bg));
}

/* ---- Skip Link ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0.5rem;
  background: var(--color-primary);
  color: var(--color-bg);
  padding: 0.5rem 1rem;
  border-radius: 0 0 4px 4px;
  font-size: 0.875rem;
  z-index: 1000;
  transition: top 0.1s;
}
.skip-link:focus { top: 0; }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid color-mix(in srgb, var(--color-primary) 10%, var(--color-bg));
  padding: 0.875rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-logo { flex-shrink: 0; display: flex; align-items: center; }
.site-logo img { height: 40px; width: auto; }

.site-nav { display: none; }
.site-nav ul {
  display: flex;
  gap: 1.75rem;
}
.site-nav a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { border-color: var(--color-secondary); color: var(--color-secondary); }

.header-phone {
  display: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-secondary);
  white-space: nowrap;
  padding: 0.4rem 0.9rem;
  border: 1.5px solid var(--color-secondary);
  border-radius: 2rem;
  transition: background 0.2s, color 0.2s;
}
.header-phone:hover { background: var(--color-secondary); color: var(--color-bg); }

.btn-menu {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
}
.btn-menu span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.btn-menu[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.btn-menu[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.btn-menu[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Mobile Nav Drawer ---- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 99;
  padding: 5rem 2rem 2rem;
  flex-direction: column;
  gap: 2.5rem;
  overflow-y: auto;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--color-primary);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--color-secondary); }
.mobile-nav .mobile-phone {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-bg);
  background: var(--color-secondary);
  padding: 0.75rem 1.5rem;
  border-radius: 3px;
  text-align: center;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.4rem;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s, background 0.2s, color 0.2s;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); opacity: 1; }
.btn:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 2px; }

.btn-primary {
  background: var(--color-secondary);
  color: var(--color-bg);
  border-color: var(--color-secondary);
}
.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary); color: var(--color-bg); opacity: 1; }
.btn-outline-light {
  background: transparent;
  color: var(--color-bg);
  border-color: var(--color-bg);
}
.btn-outline-light:hover { background: var(--color-bg); color: var(--color-primary); opacity: 1; }

/* ---- Hero ---- */
.hero { padding: 3.5rem 0; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.hero-content { display: flex; flex-direction: column; gap: 1.25rem; }
.hero-kicker {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-accent);
}
.hero-content h1 { max-width: 20ch; }
.hero-content > p { color: var(--color-text); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ---- Sections ---- */
.section-pad { padding: 4rem 0; }
.section-alt { background: color-mix(in srgb, var(--color-secondary) 5%, var(--color-bg)); }
.section-warm { background: color-mix(in srgb, var(--color-accent) 6%, var(--color-bg)); }
.section-dark { background: var(--color-primary); color: var(--color-bg); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--color-bg); }
.section-dark p { color: color-mix(in srgb, var(--color-bg) 82%, transparent); }

.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header p {
  margin: 0.75rem auto 0;
  max-width: 55ch;
  color: color-mix(in srgb, var(--color-text) 70%, transparent);
}

/* ---- Atouts / Feature Cards ---- */
.atouts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.atout-card {
  padding: 1.75rem 1.5rem;
  border: 1px solid color-mix(in srgb, var(--color-primary) 10%, var(--color-bg));
  border-radius: 6px;
  background: var(--color-bg);
  transition: box-shadow 0.2s, transform 0.2s;
}
.atout-card:hover { box-shadow: 0 4px 20px color-mix(in srgb, var(--color-secondary) 12%, transparent); transform: translateY(-2px); }
.atout-icon {
  font-size: 1.75rem;
  line-height: 1;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}
.atout-card h3 { margin-bottom: 0.5rem; }
.atout-card p { font-size: 0.95rem; max-width: none; }

/* ---- Gammes Grid ---- */
.gammes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.gamme-card { display: flex; flex-direction: column; }
.gamme-card .visual-placeholder { margin-bottom: 1.1rem; }
.gamme-card h3 { margin-bottom: 0.5rem; }
.gamme-card p { font-size: 0.95rem; flex: 1; }
.gamme-card .btn { align-self: flex-start; margin-top: 1rem; }

.gammes-cta { text-align: center; margin-top: 2.5rem; }

/* ---- CTA Strip ---- */
.cta-strip { padding: 4rem 0; text-align: center; }
.cta-strip h2 { font-size: clamp(1.4rem, 3.5vw, 2.1rem); margin-bottom: 0.75rem; }
.cta-note {
  max-width: 52ch;
  margin-inline: auto;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.75rem;
}

/* ---- Diptyque (text + visual side by side) ---- */
.diptyque-wrap { padding: 4rem 0; }
.diptyque {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.diptyque + .diptyque { margin-top: 4rem; }
.diptyque-content { display: flex; flex-direction: column; gap: 1rem; }
.diptyque-content h2 { margin-bottom: 0; }
.diptyque-content ul {
  list-style: disc;
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.diptyque-content ul li { font-size: 0.95rem; }

/* ---- Contact ---- */
.contact-wrap { padding: 4rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.contact-info dl { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.contact-info dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.contact-info dd a { color: var(--color-secondary); font-weight: 600; }
.contact-info dd { font-size: 0.95rem; }

.contact-map { margin-top: 1.5rem; }
.contact-map iframe { border-radius: 8px; width: 100%; height: 280px; border: none; }

/* ---- Form ---- */
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-form h3 { margin-bottom: 0.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--color-primary); }
.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid color-mix(in srgb, var(--color-primary) 18%, var(--color-bg));
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-rgpd {
  font-size: 0.78rem;
  color: color-mix(in srgb, var(--color-text) 55%, transparent);
  line-height: 1.5;
}

/* ---- About page ---- */
.about-hero { padding: 3.5rem 0 2.5rem; }
.boutique-story { display: flex; flex-direction: column; gap: 1.25rem; }
.boutique-story p { max-width: 70ch; }
.boutique-story blockquote {
  padding: 1rem 1.5rem;
  border-left: 3px solid var(--color-accent);
  font-style: italic;
  color: color-mix(in srgb, var(--color-text) 72%, transparent);
  font-size: 1.05rem;
}
.infos-pratiques {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.info-card {
  padding: 1.25rem 1.5rem;
  border-radius: 6px;
  background: var(--color-bg);
  border: 1px solid color-mix(in srgb, var(--color-primary) 10%, var(--color-bg));
}
.info-card .info-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.4rem;
}
.info-card p { max-width: none; font-size: 0.95rem; }

/* ---- Breadcrumb ---- */
.breadcrumb {
  padding: 0.75rem 0;
  font-size: 0.82rem;
  color: color-mix(in srgb, var(--color-text) 55%, transparent);
}
.breadcrumb a { color: color-mix(in srgb, var(--color-text) 65%, transparent); }
.breadcrumb a:hover { color: var(--color-secondary); }
.breadcrumb span[aria-current] { color: var(--color-primary); font-weight: 600; }

/* ---- Mentions légales ---- */
.mentions-section { padding: 2.5rem 0; }
.mentions-section h2 { font-size: 1rem; margin-bottom: 0.75rem; }
.mentions-section p {
  font-size: 0.82rem;
  color: color-mix(in srgb, var(--color-text) 65%, transparent);
  max-width: 72ch;
  line-height: 1.65;
}
.mentions-section a { color: var(--color-secondary); }

/* ---- Footer ---- */
.site-footer {
  background: var(--color-primary);
  color: color-mix(in srgb, var(--color-bg) 78%, transparent);
  padding: 3.5rem 0 1.75rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-logo { height: 36px; width: auto; filter: invert(1); opacity: 0.88; }
.footer-brand p,
.footer-info p { font-size: 0.875rem; line-height: 1.65; margin-top: 0.6rem; }
.footer-info a { color: color-mix(in srgb, var(--color-secondary) 80%, var(--color-bg)); }
.footer-info a:hover { color: var(--color-secondary); }
.footer-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav a { font-size: 0.875rem; color: color-mix(in srgb, var(--color-bg) 72%, transparent); transition: color 0.2s; }
.footer-nav a:hover { color: var(--color-bg); }
.footer-bottom {
  border-top: 1px solid color-mix(in srgb, var(--color-bg) 12%, transparent);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  font-size: 0.8rem;
}
.footer-bottom a { color: color-mix(in srgb, var(--color-bg) 50%, transparent); text-decoration: underline; text-decoration-color: transparent; }
.footer-bottom a:hover { color: var(--color-bg); text-decoration-color: currentColor; }

/* ---- Cookie Banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-primary);
  color: color-mix(in srgb, var(--color-bg) 88%, transparent);
  padding: 1rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  z-index: 200;
  font-size: 0.85rem;
  border-top: 2px solid var(--color-accent);
}
.cookie-banner p { max-width: 64ch; }
.cookie-banner a { color: var(--color-accent); text-decoration: underline; }
.btn-cookie-accept {
  background: var(--color-secondary);
  color: var(--color-bg);
  border: none;
  padding: 0.55rem 1.25rem;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-cookie-accept:hover { opacity: 0.88; }

/* ---- Responsive: tablet ---- */
@media (min-width: 768px) {
  .site-nav { display: block; }
  .header-phone { display: inline-block; }
  .btn-menu { display: none; }

  .hero { padding: 5rem 0; }
  .hero-inner { grid-template-columns: 55% 45%; gap: 3.5rem; }

  .atouts-grid { grid-template-columns: repeat(3, 1fr); }
  .gammes-grid { grid-template-columns: repeat(3, 1fr); }
  .diptyque { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .diptyque.reverse .diptyque-visual { order: -1; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .infos-pratiques { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Responsive: desktop ---- */
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 52% 48%; gap: 4.5rem; }
  .contact-map iframe { height: 360px; }
}

/* ============================================================
   ANIMATION PASS — Template AR Boutique Parfumerie Élégante
   WEB-2695 AnimationDesigner — Beauté CAPESCO
   ============================================================ */

/* Accessibility guard — doit rester intact */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (prefers-reduced-motion: no-preference) {

  /* Keyframes */
  @keyframes fade-up {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  @keyframes slide-left {
    from { opacity: 0; transform: translateX(-32px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  @keyframes slide-right {
    from { opacity: 0; transform: translateX(32px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  @keyframes pulse-ring {
    0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--color-secondary) 55%, transparent); }
    60%       { box-shadow: 0 0 0 10px color-mix(in srgb, var(--color-secondary) 0%, transparent); }
  }

  /* Hero entrance — stagger sur load, pas de scroll */
  .hero-kicker     { animation: fade-up .5s ease-out both; }
  .hero-content h1 { animation: fade-up .6s ease-out .1s both; }
  .hero-content > p{ animation: fade-up .6s ease-out .2s both; }
  .hero-actions    { animation: fade-up .55s ease-out .3s both; }
  .hero-visual     { animation: fade-in .7s ease-out .15s both; }

  /* Heading accent underline grow (IO ajoute .is-revealed) */
  .heading-accent.reveal-ready::after {
    width: 0;
    transition: width .5s ease-out .2s;
  }
  .heading-accent.is-revealed::after { width: 44px; }

  /* CSS Scroll-driven reveals — Chrome 115+ */
  @supports (animation-timeline: view()) {
    .gamme-card:nth-child(1) {
      animation: fade-up linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 40%;
    }
    .gamme-card:nth-child(2) {
      animation: fade-up linear both;
      animation-timeline: view();
      animation-range: entry 6% entry 46%;
    }
    .gamme-card:nth-child(3) {
      animation: fade-up linear both;
      animation-timeline: view();
      animation-range: entry 12% entry 52%;
    }
    /* Atout cards : opacity seulement pour préserver hover transform existant */
    .atout-card:nth-child(1) {
      animation: fade-in linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 38%;
    }
    .atout-card:nth-child(2) {
      animation: fade-in linear both;
      animation-timeline: view();
      animation-range: entry 6% entry 44%;
    }
    .atout-card:nth-child(3) {
      animation: fade-in linear both;
      animation-timeline: view();
      animation-range: entry 12% entry 50%;
    }
    .diptyque-content {
      animation: slide-left linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 40%;
    }
    .diptyque-visual {
      animation: slide-right linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 40%;
    }
  }

  /* IO fallback (reveal-ready + is-revealed posés par le script inline) */
  .gamme-card.reveal-ready {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s ease-out, transform .55s ease-out;
  }
  .gamme-card.reveal-ready:nth-child(2) { transition-delay: .1s; }
  .gamme-card.reveal-ready:nth-child(3) { transition-delay: .2s; }
  .gamme-card.reveal-ready.is-revealed  { opacity: 1; transform: none; }

  .atout-card.reveal-ready {
    opacity: 0;
    transition: opacity .55s ease-out;
  }
  .atout-card.reveal-ready:nth-child(2) { transition-delay: .1s; }
  .atout-card.reveal-ready:nth-child(3) { transition-delay: .2s; }
  .atout-card.reveal-ready.is-revealed  { opacity: 1; }

  .diptyque-content.reveal-ready {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity .6s ease-out, transform .6s ease-out;
  }
  .diptyque-visual.reveal-ready {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity .6s ease-out, transform .6s ease-out;
  }
  .diptyque-content.reveal-ready.is-revealed,
  .diptyque-visual.reveal-ready.is-revealed {
    opacity: 1;
    transform: none;
  }

  /* CTA strip — pulse ring sur le bouton tel, pause au hover/focus */
  .cta-actions .btn-primary[href^="tel:"] {
    animation: pulse-ring 2.4s ease-in-out 1.2s infinite;
  }
  .cta-actions .btn-primary[href^="tel:"]:hover,
  .cta-actions .btn-primary[href^="tel:"]:focus-visible {
    animation: none;
  }

  /* Visual placeholder — gradient glide au hover parent */
  .visual-placeholder {
    background-size: 200% 200%;
    background-position: 0% 50%;
    transition: background-position .6s ease;
  }
  *:hover > .visual-placeholder { background-position: 100% 50%; }

  /* Focus ring accessible — gold halo */
  :focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
    border-radius: 2px;
  }
}
