/* ==========================================================================
   Comparatif Shampouineuses — Design system + styles globaux
   ========================================================================== */

/* --- Polices auto-hébergées (latin) -------------------------------------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600; /* fichier variable : couvre 400/500/600 */
  font-display: swap;
  src: url('../fonts/inter-latin-variable.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/poppins-600-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/poppins-700-latin.woff2') format('woff2');
}

/* --- Variables -------------------------------------------------------- */
:root {
  /* Principales */
  --color-primary: #FF6F61;        /* Corail — CTA, boutons Amazon, accents chauds */
  --color-primary-dark: #E5533D;   /* Corail foncé — hover/active des boutons */
  --color-secondary: #17A2B8;      /* Turquoise — liens, badges info, icônes */
  --color-secondary-dark: #117A8B; /* Turquoise foncé — hover des liens */

  /* Fonds */
  --color-bg: #FFF8F3;             /* Crème — fond général du site */
  --color-surface: #FFFFFF;        /* Blanc — cartes, tableaux, encadrés */
  --color-bg-alt: #FDEEE7;         /* Pêche clair — sections alternées, bandeaux */

  /* Texte */
  --color-text: #2D2A26;           /* Brun-noir chaud — texte principal */
  --color-text-muted: #6B655E;     /* Gris chaud — légendes, texte secondaire */

  /* Sémantique */
  --color-success: #2E933C;        /* Vert — points forts, badge « Meilleur choix » */
  --color-warning: #FFC93C;        /* Jaune — étoiles de notation */
  --color-danger: #D64545;         /* Rouge doux — points faibles (jamais agressif) */

  /* Divers */
  --color-border: #F0E4DB;
  --radius: 12px;
  --shadow: 0 4px 14px rgba(45, 42, 38, 0.08);

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container-width: 1120px;
}

/* --- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-secondary); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--color-secondary-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.6em;
  color: var(--color-text);
}
h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }

@media (min-width: 640px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.4rem; }
}
@media (min-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
}

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-surface);
  color: var(--color-text);
  padding: 0.75rem 1.25rem;
  z-index: 200;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* --- Header / Nav --------------------------------------------------- */
.site-header {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  max-width: var(--container-width);
  margin: 0 auto;
}

.nav__logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav__logo:hover { color: var(--color-primary-dark); }
.nav__logo svg { flex-shrink: 0; }

.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.5rem;
  cursor: pointer;
  color: var(--color-text);
}
.nav__toggle:hover { border-color: var(--color-secondary); }

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}
.nav__list a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
}
.nav__list a:hover,
.nav__list a[aria-current="page"] { color: var(--color-secondary); }

@media (max-width: 1023px) {
  .nav__toggle { display: inline-flex; }
  .nav__menu {
    position: absolute;
    inset: 100% 0 auto 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow);
  }
  .nav__list {
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 1.25rem 1rem;
  }
  .nav__list a { display: block; padding: 0.6rem 0; }
  .nav__menu[hidden] { display: none; }
}

@media (min-width: 1024px) {
  .nav__toggle { display: none; }
  .nav__menu[hidden] { display: block; }
}

/* --- Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.1s ease;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--color-primary);
  color: #FFFFFF;
}
.btn--primary:hover { background: var(--color-primary-dark); color: #FFFFFF; }

.btn--secondary {
  background: transparent;
  color: var(--color-secondary-dark);
  border: 1.5px solid var(--color-secondary);
}
.btn--secondary:hover { background: var(--color-bg-alt); }

.btn--sm { padding: 0.5rem 1rem; font-size: 0.9rem; }
.btn--block { width: 100%; }

/* --- Hero --------------------------------------------------------------- */
.hero {
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
  padding: 2.5rem 0 2rem;
  text-align: center;
}
.hero__img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 0 auto 1.5rem;
}
.hero__lead {
  max-width: 640px;
  margin: 0 auto 1.5rem;
  color: var(--color-text-muted);
  font-size: 1.1rem;
}
.hero__stars { color: var(--color-warning); }

/* --- Rating stars --------------------------------------------------- */
.rating {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
}
.rating__stars { color: var(--color-warning); letter-spacing: 1px; }
.rating__value { font-variant-numeric: tabular-nums; color: var(--color-text); }

/* --- Badges ------------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
}
.badge--gold {
  background: rgba(46, 147, 60, 0.12);
  color: var(--color-success);
}
.badge--value {
  background: rgba(23, 162, 184, 0.12);
  color: var(--color-secondary-dark);
}
.badge--budget {
  background: rgba(255, 201, 60, 0.22);
  color: #8A6B00;
}

/* --- Section ------------------------------------------------------------ */
.section { padding: 3rem 0; }
.section--alt { background: var(--color-bg-alt); }
.section__title { text-align: center; margin-bottom: 0.5rem; }
.section__lead {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto 2rem;
}

/* --- Comparison table ------------------------------------------------- */
.table-wrap {
  overflow-x: auto;
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-variant-numeric: tabular-nums;
}

.compare-table th,
.compare-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}

.compare-table thead th {
  background: var(--color-bg-alt);
  font-family: var(--font-heading);
  font-weight: 600;
  white-space: nowrap;
}

.compare-table thead th button.sort-btn {
  background: none;
  border: none;
  font: inherit;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0;
}
.compare-table thead th button.sort-btn:hover { color: var(--color-secondary-dark); }
.compare-table thead th button.sort-btn .sort-icon { opacity: 0.5; font-size: 0.75em; }
.compare-table thead th button.sort-btn[aria-sort="ascending"] .sort-icon,
.compare-table thead th button.sort-btn[aria-sort="descending"] .sort-icon { opacity: 1; color: var(--color-secondary); }

.compare-table tbody tr:hover { background: rgba(23, 162, 184, 0.04); }
.compare-table tbody tr.is-winner { background: rgba(255, 111, 97, 0.06); }
.compare-table tbody tr.is-winner td:first-child { border-left: 3px solid var(--color-primary); }

.compare-table .product-cell { min-width: 200px; }
.compare-table .product-cell__inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.compare-table .product-cell img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: var(--color-bg-alt);
  border-radius: 8px;
  padding: 4px;
}
.compare-table .product-cell a { color: var(--color-text); text-decoration: none; font-weight: 600; }
.compare-table .product-cell a:hover { color: var(--color-secondary-dark); }

/* --- Filters ------------------------------------------------------------ */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.filters button {
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--color-text);
}
.filters button:hover { border-color: var(--color-secondary); }
.filters button[aria-pressed="true"] {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: #FFFFFF;
}

/* --- Need cards (Comment choisir selon votre besoin) -------------------- */
.need-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .need-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .need-grid { grid-template-columns: repeat(4, 1fr); }
}

.need-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  text-decoration: none;
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.need-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(45, 42, 38, 0.12);
  color: var(--color-text);
}
.need-card:focus-visible { outline-offset: 4px; }

.need-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(23, 162, 184, 0.12);
  color: var(--color-secondary-dark);
  margin-bottom: 0.25rem;
}

.need-card h3 {
  font-size: 1.05rem;
  margin: 0;
}
.need-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* --- Product cards (Top 3) --------------------------------------------- */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

.product-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}
.product-card__img {
  align-self: center;
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}
.product-card__name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
}
.product-card__name a { color: var(--color-text); text-decoration: none; }
.product-card__name a:hover { color: var(--color-secondary-dark); }

.product-card__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex-grow: 1;
}
.product-card__points li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.95rem;
}
.product-card__points svg { flex-shrink: 0; margin-top: 0.15rem; color: var(--color-success); }

/* --- Pros / cons box ----------------------------------------------------- */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 1.5rem 0;
}
@media (min-width: 640px) {
  .pros-cons { grid-template-columns: 1fr 1fr; }
}
.pros-cons__box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}
.pros-cons__box h3 { margin-bottom: 0.75rem; font-size: 1.1rem; }
.pros-cons__box ul { list-style: none; margin: 0; padding: 0; }
.pros-cons__box li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}
.pros-cons__box li svg { flex-shrink: 0; margin-top: 0.2rem; }
.pros-cons__box--pros li svg { color: var(--color-success); }
.pros-cons__box--cons li svg { color: var(--color-danger); }

/* --- Summary box (fiche produit) --------------------------------------- */
.summary-box {
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
@media (min-width: 640px) {
  .summary-box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.summary-box__verdict { flex: 1; }
.summary-box__verdict p { margin: 0.5rem 0 0; color: var(--color-text-muted); }

/* --- Spec table (fiche produit) ----------------------------------------- */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  font-variant-numeric: tabular-nums;
  margin: 1.5rem 0;
}
.spec-table th, .spec-table td {
  text-align: left;
  padding: 0.75rem 1.1rem;
  border-bottom: 1px solid var(--color-border);
}
.spec-table th {
  width: 45%;
  font-weight: 600;
  color: var(--color-text-muted);
  font-family: var(--font-body);
}
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: none; }

/* --- Breadcrumb ----------------------------------------------------------- */
.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 1rem 0 0;
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
.breadcrumb li:not(:last-child)::after { content: '/'; margin-left: 0.4rem; color: var(--color-border); }
.breadcrumb a { color: var(--color-text-muted); }

/* --- Article / blog ------------------------------------------------------ */
.article-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .article-grid { grid-template-columns: repeat(2, 1fr); }
}

.article-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.article-card__body { padding: 1.25rem 1.5rem 1.5rem; }
.article-card__tag {
  color: var(--color-secondary-dark);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.article-card h3 { margin: 0.4rem 0 0.5rem; }
.article-card h3 a { color: var(--color-text); text-decoration: none; }
.article-card h3 a:hover { color: var(--color-secondary-dark); }
.article-card p { color: var(--color-text-muted); margin-bottom: 0; }
.article-card__meta { font-size: 0.82rem; margin-top: 0.6rem !important; }

article.post { max-width: 760px; margin: 0 auto; }
article.post h2 { margin-top: 2rem; }
article.post ul, article.post ol { padding-left: 1.3rem; }
article.post li { margin-bottom: 0.4rem; }

.callout {
  background: var(--color-bg-alt);
  border-left: 4px solid var(--color-secondary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}

.byline {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin: 0.5rem 0 1.5rem;
}
.byline a { color: var(--color-secondary-dark); }

.affiliate-note {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 0.5rem 0.9rem;
  margin: 0 0 1.25rem;
}

.price-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin: 0.5rem 0 0;
}

/* --- Contact page ---------------------------------------------------------- */
.contact-hero { padding: 1.5rem 0 3rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 5fr 6fr; }
}

.contact-panel {
  background: linear-gradient(155deg, var(--color-primary), var(--color-primary-dark));
  color: #FFFFFF;
  border-radius: var(--radius);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  min-width: 0;
}
.contact-panel__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.85;
  margin: 0;
}
.contact-panel h1 { margin: 0; color: #FFFFFF; }
.contact-panel > p { opacity: 0.95; margin: 0; }
.contact-panel__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}
.contact-panel__links a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.contact-panel__links a:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.contact-form {
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  min-width: 0;
}
.form-field { margin-bottom: 1.25rem; }
.form-field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.form-field input,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.15);
}
.contact-form__note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
  margin: 0.75rem 0 0;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-feedback {
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.form-feedback--success {
  background: rgba(46, 147, 60, 0.12);
  color: #1F6B2A;
  border-left: 4px solid var(--color-success);
}
.form-feedback--error {
  background: rgba(214, 69, 69, 0.1);
  color: #A93737;
  border-left: 4px solid var(--color-danger);
}

/* --- FAQ ------------------------------------------------------------------ */
.faq details {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
}
.faq summary {
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
}
.faq details p { margin: 0.75rem 0 0; color: var(--color-text-muted); }

/* --- Footer ---------------------------------------------------------------- */
.site-footer {
  background: var(--color-text);
  color: #FBF3EC;
  padding: 2.5rem 0 1.5rem;
  margin-top: 3rem;
}
.site-footer a { color: #FBF3EC; }
.site-footer a:hover { color: var(--color-primary); }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
.footer-grid h4 {
  color: #FBF3EC;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 0.5rem; }
.footer-disclosure {
  border-top: 1px solid rgba(251, 243, 236, 0.15);
  padding-top: 1.25rem;
  font-size: 0.85rem;
  color: rgba(251, 243, 236, 0.75);
}
.footer-disclosure p { margin: 0 0 0.5rem; }

/* --- Utility --------------------------------------------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0; padding: 0; margin: -1px;
}
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
