/* ============================================================
   SCD – Société Confection Dionysienne
   Feuille de styles commune à toutes les pages
   ============================================================ */

:root {
  --orange: #F26A21;
  --orange-dark: #c7561a;
  --orange-light: #ff922b;
  --black: #0E2A3D;
  --anthracite: #285e82;
  --grey: #F5F3F0;
  --grey-mid: #D0CBC3;
  --white: #FFFFFF;
  --text: #3A3530;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,102,26,0.15);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }

.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-badge {
  width: 44px; height: 44px;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 20px;
  color: white; letter-spacing: 1px;
}
.logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 600;
  color: var(--black); line-height: 1.2;
  text-transform: uppercase; letter-spacing: .5px;
}
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--black); font-size: 14px; font-weight: 500; letter-spacing: .3px; transition: color .2s; }
.nav-links a:hover { color: var(--orange); }

/* ── DROPDOWN SECTEURS ── */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-dropdown > a::after {
  content: '▾';
  font-size: 11px;
  color: var(--black);
  transition: transform .2s;
}
.nav-dropdown:hover > a::after {
  transform: rotate(180deg);
  color: var(--orange);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  background: white;
  border-top: 3px solid var(--orange);
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
  z-index: 200;
  
  /* Padding invisible en haut pour créer la zone de transition */
  padding-top: 2px;
  margin-top: 0;
}

/* Zone tampon invisible au dessus du menu */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -20px;          /* ← remonte de 20px au dessus */
  left: 0; right: 0;
  height: 20px;        /* ← zone invisible cliquable */
  background: transparent;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid var(--grey);
  transition: all .2s;
}
.dropdown-item:last-child { border-bottom: none; }

.dropdown-item:hover {
  background: var(--grey);
  color: var(--orange);
  padding-left: 26px;
}
.dropdown-item-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}
.dropdown-item-text { line-height: 1.2; }
.dropdown-item-text strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.dropdown-item-text span {
  font-size: 11px;
  color: var(--text);
  opacity: .6;
}

/* Mobile dropdown */
@media (max-width: 900px) {
  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid var(--orange);
    width: 100%;
    opacity: 1;
    pointer-events: all;
    display: none;
    padding-top: 0;
    margin: 4px 0 8px 0px;
  }
  
  .nav-dropdown > a::after {
  content: ' ▾';
  font-size: 11px;
  color: var(--black);
  transition: transform .2s;
}
 .dropdown-menu::before {
    display: none;          /* ← supprime le pont invisible inutile sur mobile */
  }
  .dropdown-menu.mobile-open { display: grid;
  grid-template-columns: repeat(2, 3fr); }
  
  .dropdown-item {
    padding: 12px 16px !important;  /* ← padding fixe */
    transform: none !important;     /* ← aucun déplacement */
  }
  .dropdown-item:last-child { border-bottom: 1px solid var(--grey); }

  .dropdown-item:hover {
    padding-left: 16px !important;  /* ← même padding qu'au repos */
    background: var(--grey);
    color: var(--orange);
  }

  /* ── SCROLL du menu mobile ── */
  .nav-links.open {
    overflow-y: auto;             /* ← force le scroll */
    overflow-x: hidden;
    max-height: calc(100vh - 72px) !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;            /* ← empêche le scroll de remonter au body */
  }

  /* ── BLOQUER le scroll du body quand menu ouvert ── */
  body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }
  
  .nav-dropdown > a::after { margin-left: auto; }
  
  .nav-dropdown:hover .dropdown-menu {
  transform: translateX(0) translateY(0);
}
}

/* ── BOUTONS ── */
.btn { display: inline-block; padding: 12px 28px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 15px; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; cursor: pointer; border: none; transition: all .25s; }
.btn-primary { background: var(--orange); color: white; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(199, 87, 26, .35); }
.btn-outline { background: transparent; color: var(--orange); border: 2px solid var(--orange); }
.btn-outline:hover { background: var(--orange); color: white; }
.btn-dark { background: var(--black); color: white; }
.btn-dark:hover { background: var(--anthracite); transform: translateY(-1px); }

/* ── CLIENTS ── */
#clients {
  background: var(--grey);
  padding: 80px 7%;
  text-align: center;
}
#clients .section-lead {
  text-align: center;
  max-width: 480px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 56px;
  border: 1px solid var(--grey-mid);
}

.client-logo {
  padding: 32px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--grey-mid);
  transition: all .3s;
  filter: grayscale(100%);
  opacity: .5;
}
.client-logo:last-child { border-right: none; }
.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  background: white;
}
.client-logo img {
  max-height: 72px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

@media (max-width: 900px) {
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .client-logo:nth-child(3n) { border-right: none; }
  .client-logo { border-bottom: 1px solid var(--grey-mid); }
}
@media (max-width: 480px) {
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .client-logo:nth-child(2n) { border-right: none; }
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  color: rgba(255,255,255,.5);
  padding: 60px 7% 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo-badge { width: 52px; height: 52px; font-size: 22px; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; line-height: 1.7; margin-top: 12px; }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: white; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.5); text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: var(--orange); text-decoration: none; }

/* ── BANDEAU EUROPE ── */
#bandeauEurope {
  background: var(--black);
  color: rgba(255,255,255,.5);
  display: flex;
   flex-direction: column;  
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 14px 7%;
  flex-wrap: wrap;
  text-align: center;
}
#bandeauEurope p {
  font-size: 12px;
  line-height: 1.6;
  max-width: 780px;
  margin: 0;
}
#bandeauLogos {
  display: flex;
  align-items: center;
  justify-content: center; 
  gap: 16px;
  flex-shrink: 0;
}
#bandeauLogos img {
  height: 70px;
  border-radius: 10px;
  width: auto;
  object-fit: contain;
}

/* ── COOKIE BANNER ── */
#cookieOverlay {
  position: fixed; inset: 0;
  background: rgba(26,26,26,.6);
  backdrop-filter: blur(4px);
  z-index: 990;
  animation: fadeIn .3s ease;
}
#cookieBox {
  position: fixed;
  bottom: 32px; left: 50%; transform: translateX(-50%);
  width: min(540px, calc(100vw - 32px));
  background: var(--white);
  border-top: 4px solid var(--orange);
  padding: 36px 40px 32px;
  z-index: 991;
  box-shadow: 0 24px 64px rgba(0,0,0,.25);
  animation: slideUp .4s cubic-bezier(.34,1.56,.64,1);
}
#cookieIcon { font-size: 32px; margin-bottom: 14px; }
#cookieBox h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px; font-weight: 900;
  text-transform: uppercase; color: var(--black);
  margin-bottom: 14px; line-height: 1.1;
}
#cookieBox p { font-size: 14px; line-height: 1.7; color: var(--text); opacity: .8; margin-bottom: 10px; }
.cookie-link { font-size: 13px !important; }
.cookie-link a { color: var(--orange); text-decoration: none; font-weight: 500; }
.cookie-link a:hover { text-decoration: underline; }
#cookieActions { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.cookie-btn {
  flex: 1; min-width: 120px;
  padding: 13px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  border: 2px solid var(--orange);
  cursor: pointer; transition: all .2s;
}
.cookie-reject { background: transparent; color: var(--orange); }
.cookie-reject:hover { background: var(--grey); }
.cookie-accept { background: var(--orange); color: white; border-color: var(--orange); }
.cookie-accept:hover { background: var(--orange-dark); }

/* ── TOAST ── */
#toast {
  position: fixed;
  bottom: 32px; right: 32px;
  background: var(--orange);
  color: white;
  padding: 16px 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: 1px;
  transform: translateY(100px);
  opacity: 0;
  transition: all .4s cubic-bezier(.34,1.56,.64,1);
  z-index: 999;
  pointer-events: none;
}
#toast.show { transform: translateY(0); opacity: 1; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateX(-50%) translateY(40px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── PAGES LÉGALES (nav simplifiée) ── */
.nav-simple {
  position: static;
  border-bottom: 1px solid var(--grey-mid);
  backdrop-filter: none;
  background: var(--white);
}
#hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 72px;
    overflow: hidden;
  }
.page-hero {
  background: var(--black);
  padding: 64px 7% 56px;
  border-bottom: 4px solid var(--orange);
}
.page-tag { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; display: block; }
.page-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(40px, 5vw, 72px); font-weight: 900; text-transform: uppercase; color: white; line-height: 1; }
.content { max-width: 820px; margin: 0 auto; padding: 72px 7%; }
.content h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 700; text-transform: uppercase; color: var(--black); margin: 48px 0 16px; padding-bottom: 10px; border-bottom: 2px solid var(--orange); }
.content h2:first-child { margin-top: 0; }
.content p { font-size: 15px; line-height: 1.8; margin-bottom: 14px; color: var(--text); }
.content ul { margin: 0 0 16px 20px; }
.content ul li { font-size: 15px; line-height: 1.8; margin-bottom: 6px; }
.content a { color: var(--orange); text-decoration: none; }
.content a:hover { text-decoration: underline; }
.content strong { font-weight: 600; color: var(--black); }
.update-date { display: inline-block; background: var(--grey); padding: 10px 18px; font-size: 13px; color: var(--text); opacity: .7; margin-bottom: 40px; }
.footer-simple { background: var(--black); color: rgba(255,255,255,.5); padding: 28px 7%; text-align: center; font-size: 13px; border-top: 3px solid var(--orange); }
.footer-simple a { color: var(--orange); text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  #bandeauEurope { flex-direction: column; gap: 16px; }
}
/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--black);
  transition: all .3s ease;
}
/* Animation croix */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.social-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.6);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.social-btn:hover {
  background: var(--orange) opacity: 0.4;
  border-color: var(--orange);
  color: white;
}

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-devis-btn { display: none; }

  .nav-links {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    border-top: 3px solid var(--orange);
    box-shadow: 0 8px 32px rgba(0,0,0,.15);
    z-index: 9999;        /* ← très haut pour passer par-dessus tout */
    gap: 0;
    padding: 0 7%;

    /* Caché via max-height */
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s ease;
  }

  .nav-links.open {
    max-height: 500px;    /* ← assez grand pour contenir tous les liens */
    padding: 16px 7% 32px;
  }

  .nav-links li {
    border-bottom: 1px solid var(--grey);
  }
  .nav-links li:last-child {
    border-bottom: none;
  }
  .nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--black);
  }
  .nav-links a:hover { color: var(--orange); }
}


  .produits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--white); padding: 20px 7% 80px; }
  .produit-card { background: white; box-shadow: 0px 2px 8px 2px var(--black); cursor: pointer; position: relative; overflow: hidden; transition: all .3s; border-radius: 20px; margin: 14px; }
  .produit-card.hidden { display: none; }
  .produit-card:hover { z-index: 2; box-shadow: 0 12px 40px rgba(0,0,0,.15); transform: scale(1.02); }
  .produit-card:hover .produit-overlay { opacity: 1; }
  .produit-img { width: 100%; aspect-ratio: 3/4; overflow: hidden; background: var(--grey); position: relative; }
  .produit-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
  .produit-card:hover .produit-img img { transform: scale(1.05); }
  .produit-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 64px; background: var(--grey); }
  .produit-overlay { position: absolute; inset: 0; background: rgba(26,26,26,.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; }
  .produit-overlay span { background: var(--orange); color: white; font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 12px 24px; }
  .produit-badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 4px; }
  .badge-secteur { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; background: var(--orange); color: white; padding: 4px 10px; }
  /*.badge-ref { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: 1px; background: rgba(26,26,26,.75); color: white; padding: 4px 10px; }*/
  .produit-info { padding: 20px; border-top: 2px solid var(--grey); }
  .produit-info h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; text-transform: uppercase; color: var(--black); margin-bottom: 6px; line-height: 1.1; }
  .produit-info p { font-size: 12px; color: var(--text); opacity: .6; line-height: 1.5; }
  #emptyState { display: none; grid-column: 1/-1; text-align: center; padding: 80px; color: var(--text); opacity: .5; }

  /* ── MODAL ── */
  #modal { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(26,26,26,.85); backdrop-filter: blur(6px); align-items: center; justify-content: center; padding: 20px; }
  #modal.open { display: flex; }
  #modalBox { background: white; width: 100%; max-width: 960px; max-height: 92vh; overflow-y: auto; position: relative; animation: fadeUp .3s ease; }
  #modalClose { position: fixed; top: 20px; right: 24px; background: var(--orange); border: none; color: white; width: 44px; height: 44px; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 1001; transition: background .2s; }
  #modalClose:hover { background: var(--orange-dark); }
  .modal-inner { display: grid; grid-template-columns: 1fr 1.1fr; }
  .modal-img { position: sticky; top: 0; height: fit-content; background: var(--grey); }
  .modal-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
  .modal-img-placeholder { width: 100%; aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; font-size: 100px; background: var(--grey); }
  .modal-content { padding: 40px; }
  .modal-ref { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); background: rgba(232,102,26,.1); padding: 5px 12px; display: inline-block; margin-bottom: 16px; }
  .modal-title { font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 900; text-transform: uppercase; color: var(--black); line-height: 1; margin-bottom: 20px; }
  .modal-desc { font-size: 14px; line-height: 1.8; color: var(--text); opacity: .8; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--grey); }
  .modal-section-title { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--black); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
  .modal-section-title::after { content: ''; flex: 1; height: 1px; background: var(--grey); }
  .modal-carac { list-style: none; margin-bottom: 24px; }
  .modal-carac li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; line-height: 1.6; padding: 8px 0; border-bottom: 1px solid var(--grey); color: var(--text); }
  .modal-carac li:last-child { border-bottom: none; }
  .modal-carac li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
  .modal-tailles { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
  .taille-badge { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border: 1.5px solid var(--grey-mid); padding: 6px 16px; color: var(--text); }
  .taille-badge.sur-mesure { border-color: var(--orange); color: var(--orange); background: rgba(232,102,26,.06); }
  .modal-perso { background: var(--black); padding: 20px; margin-bottom: 24px; }
  .modal-perso .modal-section-title { color: white; }
  .modal-perso .modal-section-title::after { background: rgba(255,255,255,.1); }
  .modal-perso ul { list-style: none; }
  .modal-perso ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(255,255,255,.7); padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
  .modal-perso ul li:last-child { border-bottom: none; }
  .modal-perso ul li::before { content: '✦'; color: var(--orange); font-size: 10px; flex-shrink: 0; margin-top: 3px; }
  .modal-cta { display: flex; gap: 12px; flex-wrap: wrap; }
  .modal-cta .btn { flex: 1; text-align: center; min-width: 140px; }

  @media (max-width: 1100px) { .produits-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 768px) { .produits-grid { grid-template-columns: repeat(2, 1fr); } .filtres-bar { flex-direction: column; position: static; } .modal-inner { grid-template-columns: 1fr; } .modal-img { position: static; } .modal-content { padding: 24px; } }
  @media (max-width: 480px) { .produits-grid { grid-template-columns: repeat(2, 1fr); } }