/* eBay product description template – index.html */
:root {
  --primary-color: #4dc9f5;
  --primary-dark: #03b0bb;
  --primary-light: #7ec8ce;
  /* Matches legacy ebay template `style.min.css` palette */
  --dark-teal: #035f61;
  --text-primary: #292d32;
  --text-secondary: #555;
  --text-light: #666;
  --background: #222;
  --background-alt: #f0f4f5;
  --background-light: #f8f9fa;
  --background-pale: #f5f5f5;
  --border-color: rgba(0, 133, 141, 0.12);
  --shadow-sm: 0 2px 12px rgba(0, 77, 82, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 77, 82, 0.1);
  --transition: all 0.2s ease;
  --faq-surface: rgba(255, 255, 255, 0.06);
  --faq-stroke: rgba(255, 255, 255, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-primary);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
}

.page-wrap {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  min-height: 100%;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  overflow-x: hidden;
}

.container {
  max-width: 1170px;
  padding: 0 clamp(16px, 4vw, 24px);
  margin: 0 auto;
  width: 100%;
}

.container--wide {
  max-width: 1920px;
}

.top__section {
  padding: clamp(8px, 2vw, 12px) 0;
  color: #fff;
  background: var(--primary-color);
  font-size: 0.9375rem;
  padding-top: max(clamp(8px, 2vw, 12px), env(safe-area-inset-top));
}

.top__section__info {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.5rem, 2vw, 1rem);
  justify-content: space-between;
  align-items: center;
}

.top__section--address,
.top__section--hours {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: clamp(0.75rem, 2vw, 0.9375rem);
  min-width: 0;
}

.top__section--address span,
.top__section--hours span {
  word-break: break-word;
}

@media (max-width: 640px) {
  .top__section__info {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .top__section--address,
  .top__section--hours {
    width: 100%;
    font-size: clamp(0.75rem, 2.5vw, 0.85rem);
  }
}

@media (max-width: 380px) {
  .top__section {
    padding: 10px 0;
  }

  .top__section--address span,
  .top__section--hours span {
    font-size: 0.8rem;
  }
}
.nav {
  padding: clamp(8px, 2vw, 12px) 0;
  background: var(--background);
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav__section {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.5rem, 2vw, 1rem);
  align-items: center;
  justify-content: space-between;
}

.nav__section--logo {
  flex-shrink: 0;
}

.nav__section--logo img {
  display: block;
  width: auto;
  height: clamp(32px, 8vw, 40px);
  max-height: 40px;
  transition: var(--transition);
}

footer .nav__section--logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

footer .footer__copyright {
  font-size: clamp(0.7rem, 1.8vw, 0.85rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.25;
  white-space: normal;
}

footer .nav {
  position: static;
  background: transparent;
  z-index: auto;
}

@media (max-width: 640px) {
  footer .nav__section--logo {
    gap: 6px;
    text-align: center;
    align-items: center;
  }

  footer .footer__copyright {
    max-width: 26ch;
  }
}

.nav__section--logo img:hover {
  opacity: 0.85;
}

.nav__section--list {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(4px, 1.5vw, 12px);
  padding: 0;
  margin: 0;
  list-style: none;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.nav__section--list::-webkit-scrollbar {
  display: none;
}

@media (min-width: 641px) {
  .nav__section--list {
    flex-wrap: wrap;
    overflow-x: visible;
  }
}

.nav__section--list li {
  flex-shrink: 0;
}

.nav__section--list li a {
  display: flex;
  gap: 6px;
  align-items: center;
  font-weight: 500;
  font-size: clamp(0.75rem, 2vw, 1rem);
  color: #fff;
  text-decoration: none;
  transition: var(--transition);
  padding: clamp(8px, 2vw, 10px) clamp(8px, 2vw, 12px);
  border-radius: 6px;
  white-space: nowrap;
  min-height: 44px;
  min-width: 44px;
  justify-content: center;
}

.nav__section--list li a:hover {
  color: var(--primary-color);
  background: rgba(0, 133, 141, 0.05);
}

.nav__section--list li a:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .nav {
    padding: clamp(12px, 3vw, 16px) 0;
  }

  .nav__section {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .nav__section--list {
    width: 100%;
    justify-content: space-between;
    overflow-x: visible;
    margin: 0;
  }

  .nav__section--list li a {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 6px 4px;
    font-size: clamp(0.65rem, 1.8vw, 0.8rem);
    gap: 4px;
  }

  .nav__section--list li a span {
    display: block;
    text-align: center;
    line-height: 1.2;
    white-space: normal;
  }
}

/* Nav link icons (header + footer): SVGs are white – make visible on light background */
header .nav__section--list img,
footer .nav__section--list img,
.nav__section--list img {
  width: clamp(22px, 5vw, 24px);
  height: clamp(22px, 5vw, 24px);
  object-fit: contain;
}

header .nav__section--list li a:hover img,
footer .nav__section--list li a:hover img,
.nav__section--list li a:hover img {
  filter: brightness(0) invert(0.4) sepia(0.5) saturate(5) hue-rotate(160deg);
}
.hero {
  position: relative;
  padding: clamp(0.75rem, 2vw, 1.5rem) 0 clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
  color: #fff;
  background: var(--background);
}

.hero__content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: clamp(1rem, 4vw, 2rem);
  align-items: center;
  justify-content: space-between;
}

.hero__text {
  flex: 1;
  min-width: 0;
  max-width: 100%;
}

.hero__title {
  margin: 0 0 clamp(12px, 2vw, 16px);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.5px;
  word-wrap: break-word;
}

.hero__title span {
  display: block;
}

.hero__text p {
  margin: 0;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.5;
  opacity: 0.95;
  word-wrap: break-word;
}

.hero__image {
  flex: 0 1 auto;
  position: relative;
  width: auto;
  max-width: 50%;
}

.hero__image img {
  max-width: 100%;
  height: auto;
  display: block;
  animation: slideInRight 0.6s ease-out;
}

/* Only one hero image visible at a time – higher specificity so .hero__image img doesn’t override */
.hero__image .desktop__image {
  display: block;
}

.hero__image .mobile__image {
  display: none;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .hero__content {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 1.25rem;
  }

  .hero__image {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero__image .desktop__image {
    display: none;
  }

  .hero__image .mobile__image {
    display: block;
  }

  .hero__title {
    font-size: clamp(1.1rem, 5vw, 1.5rem);
  }

  .hero__text p {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
  }
}

@media (max-width: 380px) {
  .hero__title {
    font-size: 1.1rem;
  }

  .hero__text p {
    font-size: 0.8rem;
  }
}

/* ---- Card sections ---- */
.description__card {
  padding: clamp(1.25rem, 4vw, 3rem) 0;
  background: var(--primary-color);
}

.card__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 3vw, 1.75rem);
}

@media (min-width: 480px) {
  .card__items {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

@media (min-width: 768px) {
  .card__items {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  padding-top: clamp(2.5rem, 5vw, 3.25rem);
  background: var(--background-alt);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  border-left: 4px solid var(--primary-color);
}

.card:hover {
  border-color: rgba(0, 133, 141, 0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-left-color: var(--primary-dark);
}

/* Icon in top-right corner so it doesn’t take a column */
.card > svg {
  position: absolute;
  top: clamp(0.75rem, 2vw, 1rem);
  right: clamp(0.75rem, 2vw, 1rem);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  transition: var(--transition);
}

@media (min-width: 480px) {
  .card > svg {
    width: 32px;
    height: 32px;
  }
}

.card:hover svg {
  filter: brightness(1.1);
}

.card h4 {
  margin: 0 0 6px;
  font-size: clamp(0.95rem, 2vw, 1.0625rem);
  font-weight: 700;
  line-height: 1.35;
  color: #1a1d21;
}

.card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-secondary);
}
/* Notes: 1 column mobile, 2 columns from 600px */
.notes .card__items {
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .notes .card__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (min-width: 992px) {
  .notes .card__items {
    gap: 30px;
  }
}
.description__info {
  padding: clamp(1.5rem, 4vw, 3rem) 0;
  background: var(--background-alt);
}

.product__info {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  margin-bottom: clamp(1.5rem, 4vw, 2rem);
  align-items: flex-start;
}

@media (max-width: 640px) {
  .product__info {
    flex-direction: column;
    gap: 1.25rem;
  }
}

.product__info--image {
  flex: 0 0 auto;
  width: 100%;
  max-width: 280px;
}

@media (max-width: 640px) {
  .product__info--image {
    max-width: 100%;
    margin: 0 auto;
  }
}

.product__info--image .product__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.product__info--image .product__img:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.product__info--text {
  flex: 1;
  min-width: 200px;
}

.product__info--title {
  margin: 0 0 1rem;
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  word-wrap: break-word;
}

@media (max-width: 480px) {
  .product__info--title {
    font-size: 1.2rem;
  }
}
.product__info--list {
  padding-left: 1.25rem;
  margin: 0;
  list-style: none;
}

.product__info--list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.product__info--list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.tab__items {
  display: flex;
  flex-wrap: nowrap;
  gap: 2px;
  margin-bottom: 0;
  border-bottom: 2px solid #e0e0e0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  max-width: 100%;
}

.tab__items::-webkit-scrollbar {
  display: none;
}

.tab__item {
  flex-shrink: 0;
}

.tabs > input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}

.tab__item {
  display: inline-flex;
  align-items: center;
  padding: clamp(10px, 2vw, 12px) clamp(8px, 2vw, 14px);
  margin-bottom: -2px;
  font-weight: 500;
  font-size: clamp(0.7rem, 1.8vw, 1rem);
  color: var(--text-light);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: var(--transition);
  min-height: 44px;
  box-sizing: border-box;
  line-height: 1.3;
  max-width: 100%;
}

@media (max-width: 640px) {
  .tab__items {
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 6px;
    border-bottom: none;
  }

  .tab__item {
    flex: 1 1 auto;
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
    padding: 10px 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
  }

  #tab__item--1:checked ~ .tab__items .tab__item[for="tab__item--1"],
  #tab__item--2:checked ~ .tab__items .tab__item[for="tab__item--2"],
  #tab__item--3:checked ~ .tab__items .tab__item[for="tab__item--3"],
  #tab__item--4:checked ~ .tab__items .tab__item[for="tab__item--4"],
  #tab__item--5:checked ~ .tab__items .tab__item[for="tab__item--5"] {
    border-color: var(--primary-color);
    background: rgba(77, 201, 245, 0.12);
  }
}

@media (min-width: 769px) {
  .tab__items {
    flex-wrap: wrap;
  }
}

.tab__item:hover {
  color: var(--primary-color);
}

#tab__item--1:checked ~ .tab__items .tab__item[for="tab__item--1"],
#tab__item--2:checked ~ .tab__items .tab__item[for="tab__item--2"],
#tab__item--3:checked ~ .tab__items .tab__item[for="tab__item--3"],
#tab__item--4:checked ~ .tab__items .tab__item[for="tab__item--4"],
#tab__item--5:checked ~ .tab__items .tab__item[for="tab__item--5"] {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.tab__content {
  display: none;
  padding: clamp(1rem, 3vw, 1.5rem) 0;
  animation: fadeIn 0.3s ease-out;
  max-width: 100%;
}

#tab__item--1:checked ~ .tab_contents #tab__content--1,
#tab__item--2:checked ~ .tab_contents #tab__content--2,
#tab__item--3:checked ~ .tab_contents #tab__content--3,
#tab__item--4:checked ~ .tab_contents #tab__content--4,
#tab__item--5:checked ~ .tab_contents #tab__content--5 {
  display: block;
}

@media (max-width: 480px) {
  .tab__content {
    padding: 1rem 0;
  }

  .tab__content p {
    font-size: 0.9rem;
  }
}

.tab__content p {
  margin: 0 0 1em;
  line-height: 1.6;
}

.tab__content p:last-child {
  margin-bottom: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.safety__content strong {
  display: block;
  margin-bottom: 8px;
}
.safety__content a {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
  border-radius: 3px;
  padding: 2px 4px;
}

.safety__content a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
  background: rgba(0, 133, 141, 0.05);
}

.safety__content a:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}
.notes {
  padding: clamp(2rem, 5vw, 40px) 0;
  background-color:  var(--primary-color);
  color: #fff;
}

/* ---- FAQ (accordion) ---- */
.faq {
  position: relative;
  padding: clamp(2.25rem, 6vw, 4.5rem) 0;
  background: radial-gradient(900px 360px at 15% -10%, rgba(77, 201, 245, 0.16), transparent 60%),
    radial-gradient(700px 340px at 85% 0%, rgba(3, 176, 187, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(34, 34, 34, 0.92), rgba(34, 34, 34, 1));
  color: #fff;
  overflow: hidden;
}

.faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08), transparent 40%),
    radial-gradient(circle at 80% 65%, rgba(255, 255, 255, 0.06), transparent 45%);
  opacity: 0.9;
  pointer-events: none;
}

.faq .container {
  position: relative;
}

.faq__header {
  max-width: 62ch;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.faq__kicker {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--faq-stroke);
  background: rgba(0, 0, 0, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  margin: 0 0 0.75rem 0;
}

.faq__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  letter-spacing: -0.6px;
  line-height: 1.15;
}

.faq__subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.6;
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 992px) {
  .faq__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.25rem;
    align-items: start;
  }
}

.faq__accent {
  border: 1px solid var(--faq-stroke);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  border-radius: 16px;
  padding: 1.1rem 1.1rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.faq__accent__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.4px;
  color: #052d2f;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  border-radius: 999px;
  padding: 0.35rem 0.6rem;
  margin-bottom: 0.75rem;
}

.faq__accent p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.65;
}

.faq__items {
  display: grid;
  gap: 0.75rem;
}

.faq__item {
  border: 1px solid var(--faq-stroke);
  background: var(--faq-surface);
  border-radius: 14px;
  padding-right: 30px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
}

.faq__item summary {
  all: unset;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem;
  cursor: pointer;
  color: inherit;
  min-width: 0;
}

.faq__item summary::-webkit-details-marker,
.faq__item summary::marker {
  display: none;
}

.faq__trigger {
  width: 100%;
  appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem 1rem 1rem;
  text-align: left;
}

.faq__trigger:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.faq__item[open] .faq__icon {
  transform: rotate(45deg);
  background: rgba(77, 201, 245, 0.14);
  border-color: rgba(77, 201, 245, 0.45);
}

.faq__question {
  flex: 1 1 auto;
  min-width: 0;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.2px;
  font-size: clamp(0.95rem, 1.7vw, 1.05rem);
}

.faq__icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.18);
  position: relative;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 14px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  transform: translate(-50%, -50%);
  border-radius: 2px;
}

.faq__icon::after {
  width: 2px;
  height: 14px;
}

.faq__trigger[aria-expanded="true"] .faq__icon {
  background: rgba(77, 201, 245, 0.14);
  border-color: rgba(77, 201, 245, 0.45);
  transform: rotate(45deg);
}

.faq__panel {
  overflow: hidden;
  transition: height 260ms cubic-bezier(0.2, 0.9, 0.2, 1);
  will-change: height;
}

.faq__answer {
  padding: 0 1rem 1rem 1rem;
  color: rgba(255, 255, 255, 0.84);
}

.faq__answer p {
  margin: 0.65rem 0 0;
  line-height: 1.7;
}

.faq__item:hover .faq__icon {
  background: rgba(255, 255, 255, 0.09);
}

@media (prefers-reduced-motion: reduce) {
  .faq__panel {
    transition: none;
  }
  .faq__icon,
  .faq__trigger[aria-expanded="true"] .faq__icon {
    transition: none;
  }
}

.note__title {
  margin: 0 0 clamp(1.25rem, 3vw, 30px);
  font-size: clamp(1.5rem, 4vw, 32px);
  font-weight: 700;
}

/* Notes section cards: override shared `.card` styling to match legacy UI */

.notes .card {
  cursor: default;
  background-color: #fff;
  color: #000;
  padding: clamp(1rem, 3vw, 30px) clamp(1.25rem, 4vw, 60px);
  border-radius: 10px;
  border: 0;
  border-left: 0;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  transform: none;
}

.notes .card:hover {
  transform: none;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border-left-color: transparent;
}

.notes .card > svg {
  position: static;
  width: 43px;
  height: 43px;
  margin: 0 0 0.5rem 0;
  filter: none;
}

.notes .card h4 {
  margin: 0 0 3px;
  font-size: clamp(1rem, 2.5vw, 24px);
  font-weight: 400;
  line-height: 1.3;
  color: inherit;
}

.notes .card p {
  margin: 0;
  font-size: clamp(0.875rem, 1.5vw, 16px);
  line-height: 1.5;
  color: inherit;
}

/* Contact section – exact UI/UX from x10_description_template_xx.html (style.min.css) */
.about__us {
  padding: 0;
  background-color: #fff;
  color: #000;
}

.about__us__inner {
  max-width: 1920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
}

.about__us--text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 100%;
  padding: clamp(1.25rem, 4vw, 2rem);
  box-sizing: border-box;
  text-align: center;
}

.about__us--text h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 5vw, 3.2rem);
  font-weight: 700;
  word-wrap: break-word;
}

.about__us--text p {
  margin: 0;
  font-size: clamp(1rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.4;
  color: inherit;
  word-wrap: break-word;
}

.about__us--text .about__connections {
  font-weight: 700;
}

.about__us img {
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .about__us__inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .about__us--text {
    padding: 3rem 2.5rem;
  }

  .about__us__inner > div:last-child {
    display: grid;
    place-items: center;
    padding: 2rem 2.5rem;
  }

  .about__us img {
    width: 100%;
    max-width: 760px;
    aspect-ratio: 16 / 10;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  }
}

@media (max-width: 767px) {
  .about__us__inner {
    gap: 0;
  }

  .about__us__inner > div:last-child {
    width: 100%;
  }

  .about__us--text {
    padding: clamp(1.25rem, 4vw, 1.5rem) clamp(1rem, 4vw, 2rem);
  }

  .about__us--text h2 {
    font-size: clamp(1.35rem, 5vw, 1.75rem);
  }

  .about__us--text p {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  }

  .about__us img {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 200px;
    object-fit: cover;
  }
}

.copy__right {
  padding: clamp(0.75rem, 2vw, 1rem) clamp(16px, 4vw, 24px);
  padding-bottom: max(clamp(0.75rem, 2vw, 1rem), env(safe-area-inset-bottom));
  font-size: clamp(0.875rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  background-color: var(--dark-teal);
  line-height: 1.4;
  word-wrap: break-word;
}
.scrollbar-none {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scrollbar-none::-webkit-scrollbar {
  display: none;
}
.overflow-y-scroll {
  overflow-y: auto;
}
.bg-lighter-green {
  background: #7ec8ce;
}
.text-midnight-green {
  color: #004d52;
}
.mb-44 {
  margin-bottom: 2rem;
}
.mt-44 {
  margin-top: 2rem;
}
.size-12 {
  width: 48px;
  height: 48px;
}
.size-14 {
  width: 56px;
  height: 56px;
}
.size-20 {
  width: 80px;
  height: 80px;
}
/* Return steps (Rückgabe) */
.return-steps {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  gap: 0;
  max-width: 100%;
}

/* Mobile: stack vertically, no horizontal scroll */
@media (max-width: 768px) {
  .return-steps {
    flex-direction: column;
    overflow: visible;
    align-items: stretch;
    max-width: 100%;
  }
}

.return-step {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0;
  align-items: center;
  justify-content: flex-start;
  min-width: 200px;
  padding: 0 clamp(1rem, 3vw, 1.5rem);
  padding-top: calc(44px + 1.25rem);
  padding-bottom: clamp(1rem, 2vw, 1.5rem);
  max-width: 100%;
}

/* Icon sits at top center; padding-top keeps text below it */
.return-step__icon {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #000;
  background: var(--primary-light);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 12px rgba(126, 200, 206, 0.3);
  transition: var(--transition);
  flex-shrink: 0;
}

.return-step__icon:hover {
  transform: translateX(-50%) scale(1.1);
}

.return-step__icon svg {
  width: 24px;
  height: 24px;
}

.return-step__icon .size-12 {
  width: 24px;
  height: 24px;
}

.return-step__icon .size-14 {
  width: 28px;
  height: 28px;
}

@media (min-width: 769px) {
  .return-step {
    min-width: 22%;
    padding-top: calc(52px + 1.5rem);
  }

  .return-step__icon {
    width: 52px;
    height: 52px;
  }

  .return-step__icon svg,
  .return-step__icon .size-12,
  .return-step__icon .size-14 {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 768px) {
  .return-step {
    min-width: auto;
    width: 100%;
    padding-top: calc(44px + 1.25rem);
    padding-left: clamp(0.75rem, 4vw, 1rem);
    padding-right: clamp(0.75rem, 4vw, 1rem);
    padding-bottom: 1.25rem;
  }

  .return-step__title {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
  }
}

.return-step__title {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  font-weight: 700;
  color: var(--primary-dark);
  text-align: center;
  line-height: 1.4;
  margin: 0;
  word-wrap: break-word;
}

.return-step__title.mb-44 {
  margin-bottom: 0.5rem;
}

.return-step__title.mt-44 {
  margin-top: 0.25rem;
}

/* Connector lines: horizontal on desktop */
.return-step__line {
  position: absolute;
  top: calc(26px + 0.75rem);
  height: 2px;
  background: var(--primary-light);
  transform: translateY(-50%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .return-step__line {
    display: none;
  }
}

.return-step__line--right {
  left: 50%;
  right: auto;
  width: 50%;
}

.return-step__line--full {
  left: 0;
  right: 0;
  width: 100%;
}

.return-step__line--left {
  left: 0;
  right: auto;
  width: 50%;
}
.description__graph {
  min-height: 1px;
  max-width: 100%;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Print styles */
@media print {
  .nav,
  .top__section,
  .copy__right {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.6;
  }

  .container {
    max-width: 100%;
  }
}

/* --- Mobile & responsive polish --- */
img,
video {
  max-width: 100%;
  height: auto;
}

@media (max-width: 360px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero__title {
    font-size: 1rem;
  }

  .note__title {
    font-size: 1.35rem;
  }
}

/* Utility classes */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}
