/* ===========================================================
   DÉPANNAGE INFORMATIQUE NICE — habillage repris du thème
   Woodmart (site actuel depannageinformatiquenice.fr) :
   bleu #1c61e7, Open Sans + Lexend Deca, cartes arrondies.
   Contenu propre : services de dépannage, pas de boutique.
   =========================================================== */

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/open-sans-variable.woff2") format("woff2");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lexend Deca";
  src: url("../fonts/lexend-deca-variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-text: "Open Sans", Arial, Helvetica, sans-serif;
  --font-title: "Lexend Deca", Arial, Helvetica, sans-serif;

  --c-primary: #1c61e7;
  --c-primary-dark: #144cba;
  --c-primary-tint: #e1ebff;
  --c-primary-tint-hover: #dbe3f9;
  --c-nav-bg: #e6effd;

  --c-text: #767676;
  --c-title: #242424;
  --c-entity: #333333;
  --c-white: #ffffff;
  --c-bg: #f6f6f6;
  --c-border: #e6e6e6;

  --radius: 10px;
  --radius-btn: 5px;
  --container: 1360px;
  --shadow-card: 0 4px 18px rgba(20, 30, 60, 0.08);
  --shadow-card-hover: 0 10px 28px rgba(20, 30, 60, 0.13);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  background: var(--c-white);
  color: var(--c-text);
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
svg { display: block; width: 1em; height: 1em; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--c-title);
  line-height: 1.15;
}

/* ===== TOPBAR (aperçu privé) ===== */
.topbar {
  background: #16233d;
  color: #cfe0ff;
  font-size: 12.5px;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.topbar .preview-flag {
  background: #ffb020;
  color: #16233d;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.topbar .tel { color: #fff; font-weight: 600; }

/* ===== HEADER ===== */
.site-header {
  background: var(--c-white);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 0 rgba(20, 30, 60, 0.06);
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-mark svg { width: 24px; height: 24px; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-text strong {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 18px;
  color: var(--c-title);
}
.brand-text em {
  font-style: normal;
  font-size: 12px;
  color: var(--c-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-tel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 16px;
  color: var(--c-title);
}
.header-tel .icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-primary-tint);
  color: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.header-tel .icon-circle svg { width: 17px; height: 17px; }

.header-nav {
  background: var(--c-nav-bg);
}
.header-nav-inner {
  display: flex;
  align-items: center;
  gap: 8px;
}
.primary {
  display: flex;
  gap: 2px;
}
.primary a {
  display: block;
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--c-entity);
  padding: 15px 16px;
  transition: color .15s ease;
}
.primary a:hover,
.primary a[aria-current="page"] {
  color: var(--c-primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  padding: 13px 24px;
  border-radius: var(--radius-btn);
  border: none;
  transition: background-color .15s ease, color .15s ease, box-shadow .15s ease;
}
.btn-accent {
  background: var(--c-primary);
  color: #fff;
  box-shadow: 0 6px 16px rgba(28, 97, 231, 0.28);
}
.btn-accent:hover { background: var(--c-primary-dark); }
.btn-ghost {
  background: var(--c-primary-tint);
  color: var(--c-primary);
}
.btn-ghost:hover { background: var(--c-primary-tint-hover); }
.btn-white {
  background: #fff;
  color: var(--c-primary);
}
.btn-white:hover { background: var(--c-primary-tint); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); }
.btn-block { display: flex; width: 100%; text-align: center; }

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--c-border);
  background: var(--c-white);
  position: relative;
  flex-shrink: 0;
}
/* span reste position:static : s'il devenait positionné (absolute/transform),
   il deviendrait le bloc de positionnement de ses propres ::before/::after
   au lieu de .burger, et les 2 autres barres s'écraseraient (bug constaté). */
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--c-title);
  border-radius: 2px;
}
.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--c-title);
  border-radius: 2px;
}
.burger span::before { top: 12px; }
.burger span::after { top: 26px; }

/* ===== HERO (accueil) ===== */
.hero {
  padding: 28px 0 0;
  background: var(--c-white);
}
.hero-banner {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 82% 25%, rgba(255,255,255,0.10), transparent 60%),
    linear-gradient(115deg, #0e1b33 0%, #123a86 46%, var(--c-primary) 100%);
  color: #fff;
  padding: 68px 48px;
  min-height: 460px;
  display: flex;
  align-items: center;
}
.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,.35) 0, transparent 60%),
    radial-gradient(2px 2px at 60% 70%, rgba(255,255,255,.25) 0, transparent 60%),
    radial-gradient(2px 2px at 85% 20%, rgba(255,255,255,.3) 0, transparent 60%),
    radial-gradient(2px 2px at 40% 85%, rgba(255,255,255,.2) 0, transparent 60%);
  pointer-events: none;
}
.hero-deco {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 380px;
  height: 380px;
  opacity: 0.14;
  pointer-events: none;
}
.hero-content { position: relative; max-width: 640px; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(34px, 4.6vw, 50px);
  color: #fff;
  font-weight: 600;
  line-height: 1.12;
}
.hero h1 .accent { color: #9fc0ff; }
.hero .lead {
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 52ch;
  margin-top: 18px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 36px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-text);
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.hero-badge svg { width: 16px; height: 16px; color: #9fc0ff; flex-shrink: 0; }

/* ===== SECTIONS GÉNÉRIQUES ===== */
section .wrap { padding-top: 76px; padding-bottom: 76px; }
section.tight .wrap { padding-top: 0; padding-bottom: 0; }
section.no-border { }
.section-alt { background: var(--c-bg); }

.section-head { margin-bottom: 40px; max-width: 640px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker {
  display: inline-block;
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-primary);
  margin-bottom: 12px;
}
h2 {
  font-size: clamp(26px, 3.4vw, 36px);
}
h3 {
  font-size: 18px;
  color: var(--c-entity);
}
.lead-p {
  font-family: var(--font-text);
  font-size: 15.5px;
  max-width: 60ch;
  margin-top: 12px;
  color: var(--c-text);
}

/* ===== CARTES SERVICES ===== */
.grid { display: grid; gap: 24px; min-width: 0; }
.grid > * { min-width: 0; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
  border-color: var(--c-primary-tint);
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--c-primary-tint);
  color: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; font-weight: 600; }
.card p { font-size: 14.5px; color: var(--c-text); }
.card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--c-primary);
}
.card .card-link svg { width: 14px; height: 14px; }

/* ===== STEPS (comment ça marche) ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  min-width: 0;
}
.steps > * { min-width: 0; }
.step {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
}
.step .num {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 15px;
  color: var(--c-primary);
  background: var(--c-primary-tint);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.step h3 { margin-bottom: 8px; font-weight: 600; }
.step p { font-size: 14.5px; color: var(--c-text); }

/* ===== STATS BAND ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  min-width: 0;
}
.stats > * { min-width: 0; }
.stat {
  text-align: center;
  padding: 26px 12px;
  background: var(--c-primary-tint);
  border-radius: var(--radius);
}
.stat b {
  display: block;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 22px;
  color: var(--c-primary);
  margin-bottom: 6px;
}
.stat span {
  font-family: var(--font-text);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--c-entity);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ===== ZONE PILLS ===== */
.zone-list { display: flex; flex-wrap: wrap; gap: 10px; }
.zone-pill {
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--c-primary);
  background: var(--c-primary-tint);
  border-radius: 999px;
  padding: 9px 18px;
}
.zone-pill.main { background: var(--c-primary); color: #fff; }

/* ===== CTA BAND ===== */
.cta-band {
  border-radius: 18px;
  background: linear-gradient(115deg, #0e1b33 0%, #123a86 55%, var(--c-primary) 100%);
  color: #fff;
  padding: 48px 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { font-family: var(--font-text); font-size: 15px; color: rgba(255,255,255,0.82); }
.cta-band .hero-ctas { margin: 0 !important; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--c-white);
  border-top: 1px solid var(--c-border);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 56px 0 40px;
  min-width: 0;
}
.footer-main > * { min-width: 0; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: 13.5px; color: var(--c-text); max-width: 32ch; }
.site-footer h4 {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 16px;
  color: var(--c-title);
  margin-bottom: 16px;
}
.site-footer ul li { margin-bottom: 10px; font-size: 14px; color: var(--c-text); }
.site-footer ul li a:hover { color: var(--c-primary); }
.footer-bottom { border-top: 1px solid var(--c-border); }
.footer-bottom-inner {
  padding: 18px 0 !important;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--font-text);
  font-size: 12.5px;
  color: var(--c-text);
}
.footer-bottom-inner a:hover { color: var(--c-primary); }

/* ===== PAGE HERO (pages internes) ===== */
.page-hero {
  background: linear-gradient(115deg, #123a86 0%, var(--c-primary) 100%);
  color: #fff;
}
.page-hero .wrap { padding-top: 48px; padding-bottom: 48px; }
.breadcrumb {
  font-family: var(--font-text);
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 14px;
}
.breadcrumb a { color: rgba(255,255,255,0.9); }
.page-hero h1 {
  font-size: clamp(30px, 4.4vw, 44px);
  color: #fff;
}
.page-hero p {
  font-family: var(--font-text);
  font-size: 15.5px;
  color: rgba(255,255,255,0.85);
  max-width: 60ch;
  margin-top: 14px;
}

/* ===== NOTICE / PLACEHOLDER ===== */
.notice {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-radius: var(--radius);
  background: #fff6e0;
  border: 1px solid #f3dd9c;
  padding: 18px 20px;
  font-family: var(--font-text);
  font-size: 13.5px;
  color: #6b5a1e;
}
.notice .flag {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 12px;
  background: #f3b400;
  color: #2c2400;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.notice strong { color: #4a3d10; }

/* ===== PRICING TABLE ===== */
.pricing {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: var(--font-text);
  font-size: 14.5px;
  margin-top: 32px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.pricing th, .pricing td {
  padding: 15px 18px;
  text-align: left;
  border-bottom: 1px solid var(--c-border);
}
.pricing tbody tr:last-child td { border-bottom: none; }
.pricing thead th {
  background: var(--c-primary-tint);
  color: var(--c-primary);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.pricing tbody tr:hover { background: var(--c-bg); }
.pricing .tbd {
  font-weight: 700;
  color: var(--c-primary);
}

/* ===== FAQ ===== */
.faq {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  margin-top: 12px;
  padding: 18px 20px;
}
.faq summary {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 15px;
  color: var(--c-title);
  cursor: pointer;
}
.faq p {
  font-family: var(--font-text);
  font-size: 14px;
  margin-top: 12px;
  color: var(--c-text);
}

/* ===== CONTACT ===== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 24px; min-width: 0; }
.form-grid > div { min-width: 0; }
.form-grid .full { grid-column: 1 / -1; }
label {
  display: block;
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 13px;
  color: var(--c-entity);
  margin-bottom: 7px;
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--c-border);
  background: var(--c-white);
  border-radius: var(--radius-btn);
  padding: 12px 14px;
  font-family: var(--font-text);
  font-size: 14.5px;
  color: var(--c-title);
  appearance: none;
}
select {
  background-image: linear-gradient(45deg, transparent 50%, var(--c-text) 50%), linear-gradient(135deg, var(--c-text) 50%, transparent 50%);
  background-position: calc(100% - 20px) center, calc(100% - 14px) center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
textarea { min-height: 140px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px var(--c-primary-tint);
}
.consent { display: flex; align-items: flex-start; gap: 10px; }
.consent input { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.consent label { margin: 0; font-weight: 400; text-transform: none; }

.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-info .item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-card);
}
.contact-info .item.on-dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
}
.contact-info .mark2 {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--c-primary-tint);
  color: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info .mark2 svg { width: 20px; height: 20px; }
.contact-info h4 {
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--c-text);
  margin-bottom: 4px;
}
.contact-info a, .contact-info p { font-family: var(--font-text); font-weight: 600; font-size: 15px; color: var(--c-title); }

.map-embed { border-radius: var(--radius); overflow: hidden; line-height: 0; border: 1px solid var(--c-border); }
.map-embed iframe { width: 100%; height: 320px; border: 0; }

/* ===== MENTIONS LÉGALES (texte long) ===== */
.legal h2 {
  font-size: 20px;
  margin-top: 34px;
  margin-bottom: 12px;
  color: var(--c-title);
}
.legal h2:first-of-type { margin-top: 0; }
.legal p {
  font-family: var(--font-text);
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--c-text);
  max-width: 72ch;
}

/* ===== UTIL ===== */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 960px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .hero-banner { padding: 48px 30px; min-height: unset; }
}

@media (max-width: 760px) {
  .header-tel span { display: none; }
  .primary { display: none; }
  .burger { display: flex; align-items: center; justify-content: center; }
  .header-actions { gap: 8px; }
  .header-actions .btn-accent { display: none; }
  .brand-text strong { font-size: 15px; }
  .brand-text em { font-size: 10.5px; }
  .brand-mark { width: 36px; height: 36px; border-radius: 8px; }
  .brand-mark svg { width: 20px; height: 20px; }
  .header-top { gap: 10px; }

  .primary.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--c-white);
    box-shadow: 0 8px 18px rgba(20,30,60,0.12);
  }
  .primary.open a { padding: 15px 24px; border-bottom: 1px solid var(--c-border); }

  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; padding-top: 40px; }
  .form-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 34px 26px; }
  .cta-band .hero-ctas { width: 100%; }
  .cta-band .hero-ctas .btn { flex: 1; text-align: center; }
  section .wrap { padding-top: 52px; padding-bottom: 52px; }
  .pricing { font-size: 13px; }
  .pricing th, .pricing td { padding: 11px 12px; }
}

@media (max-width: 420px) {
  .wrap { padding: 0 16px; }
  .hero-banner { padding: 38px 22px; border-radius: 14px; }
}

/* Boutique : le panier doit rester visible sur mobile, contrairement au CTA "Prendre rendez-vous" */
.header-actions .btn-cart { display: flex !important; padding: 8px 12px; }
@media (max-width: 420px) {
  .header-actions .btn-cart span:not(.cart-badge) { display: none; }
}

/* Boutique : placeholder pour les chargeurs sans photo (pas d'image jaune hors charte) */
.shop-card-photo-generic {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  width: 100%;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
}
.shop-card-photo-generic-icon {
  width: 40%;
  height: 40%;
  color: var(--c-primary);
}

.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;
}
