/**
 * BeautyHills – Mobile Layout-Fixes (dauerhaft getrennt von style.css)
 *
 * 1) Newsletter-USPs: lange Wörter (Zufriedenheitsgarantie) nicht aus dem Viewport
 * 2) Footer-Sitemap: Titel sitzen bei ihren Link-Spalten (nicht als eigener Block oben)
 * 3) Über-uns-USPs: „WISSENSCHAFTLICH“ in der mobilen 2-Spalten-Leiste umbrechen
 * 4) Startseite Bewertungen: mobil zwei Karten, seitwärts scrollbar
 */

/* ---- Über-uns USPs (Startseite): langes „WISSENSCHAFTLICH“ umbrechen ---- */
@media (max-width: 1023px) {
  .ueber-uns-usps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 1rem;
  }

  .section-ueber-uns .usp-item {
    min-width: 0;
    max-width: 100%;
  }

  .section-ueber-uns .usp-content {
    min-width: 0;
  }

  .section-ueber-uns .usp-titel {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: manual;
    -webkit-hyphens: manual;
    line-height: 1.25;
  }
}

/* ---- Newsletter USPs ---- */
.newsletter-usps {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.newsletter-usp,
.newsletter-usp-content {
  min-width: 0;
  max-width: 100%;
}

.newsletter-usp-headline,
.newsletter-usp-text {
  min-width: 0;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: manual;
  -webkit-hyphens: manual;
}

@media (max-width: 1023px) {
  .newsletter-usps {
    gap: 1.75rem 1rem;
  }

  .newsletter-usp-headline {
    font-size: 13px;
    line-height: 1.25;
  }

  .newsletter-usp-text {
    font-size: 12px;
  }
}

@media (max-width: 380px) {
  .newsletter-usp {
    flex-direction: column;
    gap: 0.45rem;
  }

  .newsletter-usp-headline {
    font-size: 12px;
  }
}

/* ---- Footer Sitemap: Spalte = Titel + Links ---- */
.section-sitemap {
  border-top: 1px solid #d5d5d5;
  border-bottom: none;
  padding: 2.5rem 0 2.5rem;
  background: #fff;
}

@media (max-width: 1023px) {
  .section-sitemap {
    padding-top: 2rem;
  }
}

/* Alte getrennte Header-Zeile ausblenden, falls Markup noch alt ist */
.section-sitemap .sitemap-header-row {
  display: none !important;
}

.section-sitemap .sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem 1rem;
  align-items: start;
}

.section-sitemap .sitemap-spalte {
  min-width: 0;
  max-width: 100%;
}

.section-sitemap .sitemap-spalte-header {
  border-bottom: none;
  padding: 0.35rem 0px 0rem;
  margin-bottom: 0rem;
}

.section-sitemap .sitemap-titel {
  font-family: 'Mulish', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
  color: #000;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.section-sitemap .sitemap-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.section-sitemap .sitemap-links li {
  margin-bottom: 0;
  line-height: 1.6;
}

.section-sitemap .sitemap-links li.sitemap-spacer {
  display: block;
  height: 1em;
}

.section-sitemap .sitemap-link {
  font-size: 13px;
  color: #333;
  transition: color 0.2s ease;
  display: block;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.section-sitemap .sitemap-link:hover {
  color: #000;
}

.section-sitemap .sitemap-widerruf-btn {
  margin-top: 1rem;
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

@media (min-width: 768px) {
  .section-sitemap .sitemap-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.5rem 0.75rem;
  }
}

@media (min-width: 1024px) {
  .section-sitemap .sitemap-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) minmax(0, 1.4fr) minmax(0, 0.6fr) repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.35rem;
  }

  .section-sitemap .sitemap-spalte {
    padding-right: 0.35rem;
  }

  .section-sitemap .sitemap-spalte--about .sitemap-link {
    overflow-wrap: normal;
    word-break: normal;
    white-space: nowrap;
  }
}

/* ---- Footer-Abschluss (Logo / Adresse / Payments / Trust) ---- */
/* Hintergrund/Border dürfen full-bleed sein; Inhalt bleibt im 1280px-Container */
.site-footer,
.footer-bar {
  max-width: 100%;
  overflow-x: clip;
}

.footer-inner {
  box-sizing: border-box;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.footer-left,
.footer-right {
  min-width: 0;
  max-width: 100%;
}

.footer-payments {
  flex-wrap: wrap;
  max-width: 100%;
}

.footer-payments img {
  max-width: 100%;
}

@media (max-width: 1023px) {
  .footer-bar {
    padding: 1.5rem 0 1.75rem;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 1.35rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .footer-left,
  .footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0.85rem;
  }

  .footer-logo img {
    height: 34px;
    width: auto;
    max-width: 200px;
  }

  .footer-address,
  .footer-contact {
    font-size: 12px;
    line-height: 1.55;
    max-width: 22rem;
  }

  .footer-social {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-social svg {
    width: 22px;
    height: 22px;
  }

  .footer-payments {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.65rem 0.85rem;
  }

  .footer-payments img {
    height: 18px;
    width: auto;
  }

  .footer-payments img.payment-applepay,
  .footer-payments img.payment-paypal {
    height: 16px;
  }

  .footer-payments img.payment-klarna,
  .footer-payments img.payment-visa {
    height: 13px;
  }

  .footer-trust .trusted-badge {
    height: 72px;
    width: auto;
    max-width: 120px;
  }
}

@media (max-width: 480px) {
  .footer-trust .trusted-badge {
    height: 64px;
  }
}

/* =====================================================
   Mein Konto – Meine Bestellungen (Mobile-Karten)
   Keine horizontale Overflow-Tabelle mehr unter ~768px
   ===================================================== */

@media (max-width: 767px) {
  .bh-account-content,
  .woocommerce-MyAccount-content {
    overflow-x: visible;
    min-width: 0;
    max-width: 100%;
  }

  .bh-account-content table.woocommerce-orders-table,
  .bh-account-content table.my_account_orders,
  .bh-account-content table.account-orders-table,
  .woocommerce-account .woocommerce-orders-table.shop_table {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    border-collapse: collapse !important;
    background: transparent !important;
  }

  .bh-account-content table.woocommerce-orders-table thead,
  .bh-account-content table.my_account_orders thead,
  .woocommerce-account .woocommerce-orders-table.shop_table thead {
    display: none !important;
  }

  .bh-account-content table.woocommerce-orders-table tbody,
  .bh-account-content table.my_account_orders tbody,
  .woocommerce-account .woocommerce-orders-table.shop_table tbody {
    display: block !important;
  }

  .bh-account-content table.woocommerce-orders-table tbody tr,
  .bh-account-content table.my_account_orders tbody tr,
  .woocommerce-account .woocommerce-orders-table.shop_table tbody tr {
    display: block !important;
    width: 100%;
    margin: 0 0 1rem;
    padding: 0.15rem 0 0.35rem;
    background: #fff;
    border: 1px solid #ebe6df !important;
    box-shadow: 0 8px 24px rgba(40, 30, 20, 0.035);
  }

  .bh-account-content table.woocommerce-orders-table tbody tr:last-child,
  .bh-account-content table.my_account_orders tbody tr:last-child {
    margin-bottom: 0;
  }

  .bh-account-content table.woocommerce-orders-table tbody th,
  .bh-account-content table.woocommerce-orders-table tbody td,
  .bh-account-content table.my_account_orders tbody th,
  .bh-account-content table.my_account_orders tbody td,
  .woocommerce-account .woocommerce-orders-table.shop_table tbody th,
  .woocommerce-account .woocommerce-orders-table.shop_table tbody td {
    display: flex !important;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.85rem;
    width: 100% !important;
    box-sizing: border-box;
    padding: 0.85rem 1rem !important;
    margin: 0 !important;
    border: none !important;
    border-bottom: 1px solid #f0ebe4 !important;
    background: transparent !important;
    text-align: right !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    white-space: normal !important;
  }

  .bh-account-content table.woocommerce-orders-table tbody tr > *:last-child,
  .bh-account-content table.my_account_orders tbody tr > *:last-child,
  .woocommerce-account .woocommerce-orders-table.shop_table tbody tr > *:last-child {
    border-bottom: none !important;
  }

  .bh-account-content table.woocommerce-orders-table tbody th::before,
  .bh-account-content table.woocommerce-orders-table tbody td::before,
  .bh-account-content table.my_account_orders tbody th::before,
  .bh-account-content table.my_account_orders tbody td::before,
  .woocommerce-account .woocommerce-orders-table.shop_table tbody th::before,
  .woocommerce-account .woocommerce-orders-table.shop_table tbody td::before {
    content: attr(data-title);
    flex: 0 0 auto;
    max-width: 42%;
    margin: 0;
    padding: 0;
    float: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8a8178;
    text-align: left;
  }

  .bh-account-content table.woocommerce-orders-table tbody th > *,
  .bh-account-content table.woocommerce-orders-table tbody td > *,
  .bh-account-content table.my_account_orders tbody th > *,
  .bh-account-content table.my_account_orders tbody td > * {
    margin-left: auto;
    text-align: right;
  }

  .bh-account-content .woocommerce-orders-table__cell-order-number a,
  .bh-account-content .woocommerce-orders-table__cell-order-number {
    font-weight: 800;
    color: #000;
  }

  .bh-account-content .woocommerce-orders-table__cell-order-total {
    font-weight: 700;
    color: #111;
  }

  .bh-account-content .woocommerce-orders-table__cell-order-actions {
    flex-wrap: wrap;
    align-items: center;
  }

  .bh-account-content .woocommerce-orders-table__cell-order-actions::before {
    width: 100%;
    max-width: none;
    margin-bottom: 0.35rem;
  }

  .bh-account-content .woocommerce-orders-table__cell-order-actions .button,
  .bh-account-content .woocommerce-orders-table__cell-order-actions .woocommerce-button,
  .bh-account-content table.woocommerce-orders-table .button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0.2rem 0 0 !important;
    padding: 0.5rem 1.15rem !important;
    border-radius: 31px !important;
    background: #000 !important;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none !important;
    border: none !important;
    box-shadow: none !important;
    white-space: nowrap;
  }

  .bh-account-content .woocommerce-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
  }

  .bh-account-content .woocommerce-pagination .button {
    flex: 1 1 auto;
    text-align: center;
    border-radius: 31px !important;
  }
}

/* Mini-Warenkorb: Coupon-Button wie Theme-Buttons abrunden (nicht dominant schwarz) */
.mini-cart-coupon-input {
  border-radius: 31px;
}

.mini-cart-coupon-btn {
  border-radius: 31px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* =====================================================
   Mobile Burger-Navi (dauerhaft – gegen style.css-Overwrite)
   ===================================================== */
#mobile-menu nav ul.mobile-nav-list,
#mobile-menu nav ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}

#mobile-menu nav ul > li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid #ececec;
}

#mobile-menu nav ul > li:last-child {
  border-bottom: none;
}

#mobile-menu nav ul > li > a {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  gap: 0.75rem;
  padding: 1.2rem 0.5rem;
  margin: 0 -0.5rem;
  border-radius: 8px;
  text-decoration: none;
  color: #000;
  transition: color 0.15s ease, background-color 0.15s ease;
}

#mobile-menu nav ul > li > a:active,
#mobile-menu nav ul > li > a:hover {
  color: #000;
  background-color: transparent;
  text-decoration: underline;
  text-decoration-color: #000;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

#mobile-menu nav .nav-link {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: inherit;
}

/* Aufklappbare Unterpunkte (Mega-Menü via AJAX) */
#mobile-menu nav ul > li {
  position: relative;
}

.mobile-submenu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  margin-left: 0.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.mobile-submenu-toggle::after {
  content: '';
  display: block;
  width: 9px;
  height: 9px;
  border-top: 2px solid #c9c9c9;
  border-right: 2px solid #c9c9c9;
  transform: rotate(45deg);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.mobile-submenu-toggle[aria-expanded="true"]::after {
  transform: rotate(135deg);
}

.mobile-submenu-toggle:active::after,
.mobile-submenu-toggle:hover::after {
  border-color: #E6503E;
}

.mobile-submenu {
  flex: 1 1 100%;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  padding-left: 0.5rem;
}

.mobile-submenu.is-open {
  max-height: 80rem;
  padding-top: 0.25rem;
  padding-bottom: 0.75rem;
}

.mobile-submenu-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-submenu-list li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.5rem;
  font-size: 14px;
  font-weight: 500;
  color: #4a4a4a;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.mobile-submenu-list li a:active,
.mobile-submenu-list li a:hover {
  background-color: transparent;
  color: #000;
  text-decoration: underline;
  text-decoration-color: #000;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

.mobile-submenu-list li a.active {
  background-color: transparent !important;
  color: #000 !important;
  font-weight: 700 !important;
  text-decoration: underline !important;
  text-decoration-color: #000;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

/* Shop: Kategorie-Chips als Horizontal-Scroll statt Chip-Wand */
.shop-subcategories-label {
  display: none;
  margin: 0 0 0.55rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a8178;
}

.shop-subcategories-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  justify-content: flex-start !important;
  gap: 0.65rem;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 -1.5rem;
  padding: 0.15rem 1.5rem 0.55rem;
  mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 1.75rem), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 1.75rem), transparent 100%);
}

.shop-subcategories-track::-webkit-scrollbar {
  display: none;
}

.shop-subcategory-chip {
  flex: 0 0 auto !important;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .shop-subcategories {
    margin-top: 1rem;
  }

  .shop-subcategories-label {
    display: block;
  }

  .shop-subcategory-chip {
    padding: 0.45rem 0.9rem;
    font-size: 11px;
  }

  .shop-archive-header h1 {
    margin-top: 0.35rem !important;
  }
}

/* 404: Suche vom CTA-Button absetzen */
.bh-404-page .bh-search-form-wrap {
  margin-top: 2rem;
}

/* Header-Herz: rot + gefüllt, wenn Favoriten vorhanden */
.header-wishlist.has-items {
  color: #E53935;
}

.header-wishlist.has-items svg {
  fill: #E53935;
  stroke: #E53935;
}

/* Desktop: Mobile-Hero-CTA ausblenden (.btn überschreibt sonst display:none) */
.hero-slider .hero-mobile-btn {
  display: none !important;
}

@media (max-width: 1023px) {
  .hero-slider .hero-mobile-btn {
    display: inline-flex !important;
  }
}

.mini-cart-toggle,
.header-wishlist {
  position: relative;
  overflow: visible;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.4rem 0.1rem 0.15rem;
}

.mini-cart-count,
.wishlist-count {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  box-sizing: border-box;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #E6503E !important;
  color: #fff !important;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.product-detail-page,
.shop-archive-page,
.bh-checkout-page,
.woocommerce-cart,
.woocommerce-checkout {
  max-width: 100%;
}

/* Off-Canvas (#mobile-menu mit translate-x-full) soll Document nicht verbreitern.
 * WICHTIG: overflow-x:hidden an html/body bricht position:sticky (Legal-TOC etc.).
 * clip schneidet ab, ohne Sticky zu zerstören. */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

#mobile-menu {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  overscroll-behavior: contain;
}

/*
 * iOS Safari: transformierte Off-Canvas-Layer (translate-x-full) bleiben
 * hit-testbar und blockieren z. B. #place_order. Geschlossen: keine Pointer.
 */
#mobile-menu.translate-x-full {
  pointer-events: none !important;
  visibility: hidden;
}

#mobile-menu:not(.translate-x-full) {
  pointer-events: auto;
  visibility: visible;
}

#mobile-menu nav {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 3rem;
}

/* Mobile: Sections 4rem nur oben; letzte Pflegestufen-Karte volle Breite.
 * Liegt in bh-mobile-layout.css (lädt nach style.css), damit ein main-Rsync
 * von style.css diese Regeln nicht still wieder kassiert. */
@media (max-width: 1023px) {
  .py-16,
  section.py-16,
  .section-bestseller,
  .section-hautanalyse,
  .section-pflegestufen,
  .section-ueber-uns,
  .section-vollbild-banner,
  .section-blog,
  .section-bewertungen,
  .section-produkte {
    padding-top: 4rem !important;
    padding-bottom: 0 !important;
  }

  .section-hautanalyse .py-12 {
    padding-top: 0 !important;
  }

  .section-pflegestufen .pflegestufen-slide:last-child {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  .section-pflegestufen .pflegestufen-slide:last-child .pflegestufen-image {
    aspect-ratio: 16/10;
  }

  /* Mobile-CTAs wie „Mehr zur Marke“: Pill, nicht volle Breite */
  .hero-slider .hero-mobile-btn,
  .hero-right-content .btn,
  .section-hautanalyse .btn-accent,
  .section-bestseller .bestseller-add-to-cart {
    display: inline-flex !important;
    width: auto !important;
    max-width: 100%;
  }

  /* Mobile: Section-Überschriften (Bold/Light) einheitlich 22/26; h2-Zeilenhöhe 26px */
  h2,
  .section-bestseller .bestseller-header h2 {
    line-height: 26px;
  }

  .section-headline-bold,
  .section-headline-light,
  .section-bestseller .section-headline-bold,
  .section-bestseller .section-headline-light,
  .section-pflegestufen .section-headline-bold,
  .section-pflegestufen .section-headline-light,
  .shop-archive-header h1 .section-headline-bold {
    font-size: 22px;
    line-height: 26px;
  }
}

/* Hero: Autoplay bleibt, keine manuellen Pfeile (Desktop + Mobil) */
.hero-slider .slider-prev,
.hero-slider .slider-next {
  display: none !important;
}

/* Klaviyo-Teaser (Leiste „NEWSLETTER ABONNIEREN“) ausblenden – Popup bleibt */
[class*="kl-teaser-"] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* ---- Startseite Bewertungen: 2 Karten wischen (lädt nach style.css / bh-service.css) ---- */
@media (max-width: 1023px) {
  .bewertungen-reviews {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }

  .bewertungen-grid,
  .section-bewertungen .bewertungen-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    grid-template-columns: none !important;
    align-items: stretch;
    gap: 0.75rem !important;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .bewertungen-grid::-webkit-scrollbar,
  .section-bewertungen .bewertungen-grid::-webkit-scrollbar {
    display: none;
  }

  .bewertungen-grid .bewertung-card,
  .section-bewertungen .bewertungen-grid .bewertung-card {
    flex: 0 0 calc((100% - 0.75rem) / 2 - 10px);
    width: calc((100% - 0.75rem) / 2 - 10px);
    min-width: 0;
    max-width: none;
    scroll-snap-align: start;
    border-right: none !important;
    padding: 0 !important;
  }

  .section-bewertungen .bewertung-name {
    font-size: 15px !important;
  }
}

/* Konto Login/Register: Pills, nicht volle Breite */
.bh-account-page .woocommerce-form button.button,
.bh-account-page form.woocommerce-ResetPassword button.button {
  display: inline-flex !important;
  width: auto !important;
  max-width: 100%;
  margin-top: 1.25rem;
  padding: 0.5rem 1.35rem !important;
  border-radius: 999px;
  white-space: nowrap;
}
