/* Skip Hop Recall static site */

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-v19-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-v20-latin-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-v19-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-v19-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand: rgba(238, 49, 36, 1);
  --blue: rgba(238, 49, 36, 1);
  --blue-dark: rgba(195, 39, 28, 1);
  --navy: rgba(90, 14, 10, 1);
  --ink: rgba(52, 52, 52, 1);
  --muted: rgba(96, 96, 96, 1);
  --line: rgba(224, 224, 224, 1);
  --gray-bar: rgba(250, 250, 250, 1);
  --soft-blue: rgba(255, 215, 205, 1);
  --success-bg: #e7f4ec;
  --success-border: #9ed3b4;
  --success-text: #1c6b3f;
  --error-bg: #fdecec;
  --error-border: #f0a8a8;
  --error-text: #97171c;
  --maxw: 1180px;
  --radius: 8px;
  --panel-radius: 18px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  color: var(--ink);
  font: 16px/1.6 "Poppins", Helvetica, Arial, sans-serif;
  background: #fff;
}
body.nav-open { overflow: hidden; }
body.nav-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 8;
  background: rgba(23, 35, 60, 0.32);
}
a { color: var(--blue-dark); }
a:hover { color: var(--brand); }
img { max-width: 100%; height: auto; }

.container {
  width: min(calc(100% - clamp(40px, 10vw, 144px)), var(--maxw));
  max-width: none;
  margin: 0 auto;
  padding: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 10;
  padding: 8px 14px;
  color: #fff;
  background: var(--navy);
  border-radius: var(--radius);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

/* Header */
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.notification-bar {
  width: 100%;
  padding: 0;
  text-align: center;
  background: var(--blue-dark);
}
.notification-bar a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.notification-bar a:hover { color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav-open .site-header { z-index: 30; }
.header-inner {
  position: relative;
  min-height: 86px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
}
.brand {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
}
.brand img { width: 166px; }
.main-nav {
  flex: 1 1 0;
  min-width: 0;
}
.main-nav ul {
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: clamp(18px, 2.4vw, 34px);
}
.main-nav li { flex: 0 0 auto; }
.main-nav a {
  display: block;
  padding: 0;
  color: var(--navy);
  font-size: clamp(13px, 1.18vw, 15px);
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: none;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a[aria-current="page"],
.main-nav li.lang a { color: var(--brand); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 999px;
  transition: transform 160ms ease, opacity 160ms ease;
}
.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.recall-switcher {
  flex: 0 0 auto;
  z-index: 6;
}
.recall-menu {
  position: relative;
}
.recall-menu summary {
  position: relative;
  width: 100%;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 40px 0 16px;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-size: clamp(13px, 1.18vw, 15px);
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  list-style: none;
  -webkit-appearance: none;
  appearance: none;
}
.recall-menu summary::-webkit-details-marker { display: none; }
.recall-menu summary::marker {
  content: "";
  font-size: 0;
}
.recall-menu summary span {
  font-weight: 700;
}
.recall-menu summary::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--blue-dark);
  border-bottom: 2px solid var(--blue-dark);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 160ms ease;
}
.recall-menu[open] summary {
  color: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 8px 24px rgba(238, 49, 36, 0.12);
}
.recall-menu[open] summary::after {
  transform: translateY(-25%) rotate(225deg);
}
.recall-menu-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  width: max-content;
  min-width: 260px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(23, 35, 60, 0.18);
}
.recall-menu-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 12px;
  border-radius: 6px;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.35;
  white-space: nowrap;
}
.recall-menu-panel a span {
  color: var(--muted);
  font-weight: 700;
}
.recall-menu-panel a:hover,
.recall-menu-panel a[aria-current="page"] {
  color: var(--blue-dark);
  background: var(--soft-blue);
}
.orange-rule { display: none; }

/* Content */
.content-wrap { padding: clamp(46px, 7vw, 82px) 0 72px; }
main h1,
main h2 {
  color: var(--navy);
  letter-spacing: 0;
}
main h1 {
  margin: 0 0 28px;
  font-size: clamp(42px, 4vw, 50px);
  line-height: 1.02;
}
main h2 {
  margin: 62px 0 16px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.18;
}
main p {
  max-width: 760px;
  margin: 0 0 16px;
  color: var(--muted);
}
.lead,
.helper-images figcaption { font-size: 16px; }

.recall-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 48px;
  align-items: start;
  margin-bottom: 62px;
}
.recall-intro-copy h1 {
  font-size: 50px;
  line-height: 1.02;
}
.recall-intro-copy p { max-width: 760px; }
.recall-intro + h2 { margin-top: 0; }
.recall-photo {
  width: 100%;
  max-width: 390px;
  margin: 0;
  padding: 18px;
  background: linear-gradient(180deg, var(--gray-bar) 0%, #fff 100%);
  border: 1px solid var(--line);
  border-radius: var(--panel-radius);
  box-shadow: 0 18px 45px rgba(23, 35, 60, 0.1);
}
.recall-photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.recall-photo-pair img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: #fff;
}

/* Tables */
table.affected {
  width: 100%;
  margin: 24px 0 34px;
  border: 1px solid var(--line);
  border-collapse: collapse;
  border-radius: var(--panel-radius);
  box-shadow: 0 14px 35px rgba(23, 35, 60, 0.06);
  font-size: 0.95rem;
  overflow: hidden;
}
table.affected th,
table.affected td {
  padding: 18px 20px;
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
table.affected thead th {
  color: var(--muted);
  background: var(--gray-bar);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
table.affected tbody tr:nth-child(even) { background: #fff; }
table.affected tbody tr:last-child td { border-bottom: 0; }
table.affected td:nth-child(2) {
  color: var(--blue-dark);
  font-weight: 800;
}

/* Supporting content */
.helper-images {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 42px;
}
.helper-images figure {
  flex: 1 1 320px;
  max-width: calc(50% - 12px);
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--panel-radius);
  box-shadow: 0 14px 35px rgba(23, 35, 60, 0.06);
  overflow: hidden;
}
.helper-images img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: var(--gray-bar);
  border-bottom: 1px solid var(--line);
}
.helper-images figcaption {
  margin: 0;
  padding: 18px 20px 20px;
  color: var(--navy);
  font-weight: 800;
}
.callout {
  margin: 48px 0 0;
  padding: clamp(28px, 4vw, 42px);
  background: var(--soft-blue);
  border: 1px solid var(--line);
  border-radius: var(--panel-radius);
  box-shadow: 0 14px 35px rgba(23, 35, 60, 0.06);
}
.callout p { max-width: none; }
.callout a { font-weight: 800; }

/* FAQ */
.faq-item {
  margin-bottom: 14px;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--panel-radius);
  box-shadow: 0 12px 30px rgba(23, 35, 60, 0.05);
  overflow: hidden;
}
.faq-item summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 20px 64px 20px 24px;
  color: var(--navy);
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ""; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  color: var(--brand);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  transform: translateY(-50%);
}
.faq-item[open] summary {
  background: var(--gray-bar);
  border-bottom: 1px solid var(--line);
  border-radius: var(--panel-radius) var(--panel-radius) 0 0;
}
.faq-item[open] summary::after { content: "-"; }
.faq-item .faq-body { padding: 8px 24px 24px; }

/* Form */
.recall-form { max-width: 760px; }
.recall-form .field { margin-bottom: 18px; }
.recall-form label,
.recall-form legend {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-weight: 700;
}
.recall-form .req { color: #d12a2f; }
.recall-form .row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.recall-form .row .field { flex: 1 1 220px; }
.recall-form input[type="text"],
.recall-form input[type="email"],
.recall-form input[type="tel"],
.recall-form input[type="file"],
.recall-form select {
  width: 100%;
  min-height: 46px;
  padding: 12px 16px;
  color: #111;
  border: 1.25px solid #777;
  border-radius: var(--radius);
  font: inherit;
  font-size: 16px;
}
.recall-form input:focus,
.recall-form select:focus {
  border-color: var(--brand);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(238, 49, 36, 0.16);
}
.recall-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
.recall-form .radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 22px;
  color: var(--ink);
  font-weight: 400;
}
.recall-form .hint {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 400;
}
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  overflow: hidden;
}
.btn-submit {
  min-height: 48px;
  padding: 13px 28px;
  color: #fff;
  background: var(--brand);
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 10px 20px rgba(238, 49, 36, 0.22);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
}
.btn-submit:hover,
.btn-submit:focus { background: var(--blue-dark); }
.btn-submit:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius);
}
.form-status.show { display: block; }
.form-status.success {
  color: var(--success-text);
  background: var(--success-bg);
  border: 1px solid var(--success-border);
}
.form-status.error {
  color: var(--error-text);
  background: var(--error-bg);
  border: 1px solid var(--error-border);
}

/* Footer */
.site-footer {
  margin-top: 0;
  background: var(--gray-bar);
  border-top: 1px solid var(--line);
}
.site-footer .container {
  min-height: 92px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 18px;
  padding: 22px 0;
  color: var(--muted);
  font-size: 0.88rem;
}
.site-footer nav a {
  margin-right: 14px;
  color: var(--muted);
  text-decoration: none;
}
.site-footer nav a:hover { color: var(--blue); }

@media (max-width: 1180px) {
  .header-inner {
    gap: 20px;
  }
  .brand img { width: 150px; }
  .main-nav ul {
    gap: 18px;
  }
  .main-nav a,
  .recall-menu summary {
    font-size: 13px;
  }
  .recall-menu summary {
    padding-right: 36px;
    padding-left: 14px;
  }
}

@media (min-width: 941px) {
  .recall-switcher {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 940px) {
  .container { width: min(calc(100% - 40px), var(--maxw)); }
  .header-inner {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 18px 0;
    gap: 16px 18px;
  }
  .brand,
  .main-nav,
  .recall-switcher {
    flex: none;
  }
  .brand {
    grid-column: 1;
    grid-row: 1;
  }
  .nav-toggle {
    position: relative;
    z-index: 21;
    grid-column: 2;
    grid-row: 1;
    display: inline-flex;
  }
  .recall-switcher {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
  }
  .recall-menu summary {
    width: 100%;
  }
  .recall-menu-panel {
    width: 100%;
    min-width: 0;
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 20;
    width: 0;
    height: 100dvh;
    padding: 84px 0 28px;
    background: #fff;
    border-left: 0;
    box-shadow: -18px 0 42px rgba(23, 35, 60, 0.18);
    overflow: hidden;
    pointer-events: none;
    transition: width 180ms ease, padding 180ms ease;
  }
  .nav-open .main-nav {
    width: min(320px, calc(100vw - 48px));
    padding-right: 24px;
    padding-left: 24px;
    border-left: 1px solid var(--line);
    pointer-events: auto;
  }
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
  }
  .main-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }
  .recall-intro {
    grid-template-columns: 1fr;
    margin-bottom: 48px;
  }
  .recall-intro-copy h1 { font-size: 46px; }
  .recall-intro .recall-photo { max-width: 520px; }
  .helper-images figure { max-width: none; }
}

@media (max-width: 700px) {
  .content-wrap { padding-top: 38px; }
  main h1,
  .recall-intro-copy h1 {
    font-size: clamp(36px, 9.4vw, 40px);
    line-height: 1.22;
  }

  table.affected,
  table.affected thead,
  table.affected tbody,
  table.affected tr,
  table.affected th,
  table.affected td {
    display: block;
  }
  table.affected { overflow: hidden; }
  table.affected thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
  table.affected tr {
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
  }
  table.affected tr:last-child { border-bottom: 0; }
  table.affected td {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 8px 0;
    border-bottom: 0;
    text-align: right;
  }
  table.affected td::before {
    content: attr(data-label);
    color: var(--muted);
    font-weight: 800;
    text-align: left;
  }
  table.affected {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  table.affected thead {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
  }
  table.affected thead {
    display: table-header-group;
  }
  table.affected tbody {
    display: table-row-group;
  }
  table.affected tr {
    display: table-row;
    padding: 0;
    border-bottom: 0;
  }
  table.affected th,
  table.affected td {
    display: table-cell;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }
  table.affected td::before {
    content: none;
  }
  .callout,
  .faq-item .faq-body {
    padding-right: 18px;
    padding-left: 18px;
  }
  .faq-item summary { padding: 20px 58px 20px 18px; }
  .faq-item summary::after { right: 18px; }
}
