/* Emir Custom CSS */

/* Heading-Helfer: mobile Typografie per clamp() anpassen */
@media (max-width: 1400px) {
  .heading-no-wrap-mobile {
    font-size: clamp(1.55rem, 5.2vw, 1.9rem)!important;
    line-height: clamp(1.9rem, 5.8vw, 2.7rem)!important;
  }
}

.cart-discount-progress-box {
  background: #001e62;
  color: #ffffff;
  border-radius: 8px;
  padding: 16px 18px;
}

.cart-discount-progress-header {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
}

.cart-discount-progress-header img {
  filter: brightness(0) invert(1);
}

.cart-discount-progress-body {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
}

.cart-discount-progress-link {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
  white-space: nowrap;
  display: block;
  margin-top: 10px;
  margin-left: 0 !important;
}

.cart-discount-progress-link:hover,
.cart-discount-progress-link:focus {
  color: #ffffff;
  opacity: 0.9;
}

.cart-gift-progress-box {
  margin-top: 12px;
}

@media (max-width: 767.98px) {
  .cart-discount-progress-box {
    padding: 14px 14px;
  }
  .cart-discount-progress-body {
    display: block;
  }
  .cart-discount-progress-link {
    display: block;
    margin-top: 4px;
  }
}

/* Wishlist und Cart Icons auf Produktkarten */
.single-product-wrapper {
  position: relative;
}

.single-product__wishlist-icon,
.product-detail__wishlist-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(237, 239, 244, 1);
  border-radius: 10px;
  padding: 8px;
  cursor: pointer;
  z-index: 9;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  width: 40px;
  height: 40px;
}

.single-product__cart-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: rgba(237, 239, 244, 1);
  border-radius: 10px;
  padding: 8px;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  min-width: 40px;
  min-height: 40px;
  width: 40px;
  height: 40px;
}

.single-product-wrapper:hover .single-product__cart-icon {
  opacity: 1;
  transform: translateY(0);
}

.single-product__wishlist-icon:hover,
.product-detail__wishlist-icon:hover {
  background-color: rgba(227, 229, 234, 1);
  transform: scale(1.05);
}

.single-product__cart-icon:hover {
  background-color: rgba(227, 229, 234, 1);
  transform: translateY(0) scale(1.05);
}

.single-product__wishlist-icon svg,
.product-detail__wishlist-icon svg,
.single-product__cart-icon svg {
  display: block;
  width: 24px;
  height: 24px;
}

.single-product__wishlist-icon svg path,
.product-detail__wishlist-icon svg path,
.single-product__cart-icon svg path {
  transition: all 0.3s ease;
}

.single-product__wishlist-icon:hover svg path,
.product-detail__wishlist-icon:hover svg path,
.single-product__cart-icon:hover svg path {
  stroke: #CF142B;
}

.single-product__cart-icon .spinner-border,
.single-product__wishlist-icon .spinner-border {
  color: #00225C;
  flex-shrink: 0;
}

.single-product__cart-icon svg,
.single-product__wishlist-icon svg {
  flex-shrink: 0;
}

/* Produkt ist bereits in Wishlist */
.single-product__wishlist-icon.in-wishlist svg path,
.product-detail__wishlist-icon.in-wishlist svg path {
  stroke: #CF142B;
  fill: #CF142B;
}

.single-product__wishlist-icon.in-wishlist:hover,
.product-detail__wishlist-icon.in-wishlist:hover {
  background-color: rgba(227, 229, 234, 1);
}

.single-product__wishlist-icon.in-wishlist:hover svg path,
.product-detail__wishlist-icon.in-wishlist:hover svg path {
  stroke: #b01125;
  fill: #b01125;
}

/* Product cards: wishlist icon temporarily hidden (kept in DOM) */
.single-product__wishlist-icon.is-temporarily-hidden {
  display: none !important;
}

/* Mini-Wishlist Delete Icons */
.delete-icon svg path {
  transition: stroke 0.3s ease;
}

.delete-icon:hover svg path {
  stroke: #CF142B;
}

.clear-all-wishlist {
  transition: opacity 0.3s ease;
}

.clear-all-wishlist:hover {
  opacity: 0.7;
}

.clear-all-wishlist svg path {
  transition: stroke 0.3s ease;
}

.clear-all-wishlist:hover svg path {
  stroke: #CF142B;
}

/* Header Wishlist Icon - roter Stroke wenn Produkte vorhanden */
#wishlistIcon svg,
#wishlistIcon svg path {
  transition: stroke 0.3s ease;
}

#wishlistIcon.has-items svg,
#wishlistIcon.has-items svg * {
  stroke: #CF142B !important;
}

/* Wishlist Tabellen-Layout - wie Warenkorb */
#wishlistTable tbody tr:first-child {
  border-top: 1px solid #e0e0e0;
}

#wishlistTable .product-thumbnail {
  min-width: 100px;
  width: 120px;
}

#wishlistTable .cart-product-image {
  max-width: 100px;
  height: auto;
}

#wishlistTable .product-name-price {
  min-width: 300px;
}

#wishlistTable .cart-product-title {
  font-size: 16px;
  color: #232323;
  text-decoration: none;
}

#wishlistTable .cart-product-title:hover {
  color: #CF142B;
}

#wishlistTable .product-price {
  font-size: 16px;
}

#wishlistTable .product-price .cart-current-price {
  color: #333333;
  font-weight: 600;
}

#wishlistTable .product-price .cart-original-price {
  display: inline-block;
  margin-left: 8px;
  color: #7e7e7e;
  font-size: 14px;
}

#wishlistTable .product-actions {
  text-align: right;
  width: 150px;
}

#wishlistTable .wl-button-cart,
#wishlistTable .wl-button-delete {
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

#wishlistTable .wl-button-cart {
  position: relative;
  margin-right: 20px;
}

#wishlistTable .wl-button-cart .cart-plus-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: #CF142B;
  color: white;
  font-size: 10px;
  font-weight: bold;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

#wishlistTable .wl-button-cart svg,
#wishlistTable .wl-button-delete svg {
  display: block;
  transition: all 0.3s ease;
}

#wishlistTable .wl-button-cart:hover svg path {
  stroke: #CF142B;
}

#wishlistTable .wl-button-delete:hover svg path {
  stroke: #CF142B;
}

@media (max-width: 767.98px) {
  #wishlistTable {
    table-layout: fixed;
  }

  #wishlistTable.cart-products tbody tr {
    display: grid !important;
    grid-template-columns: 72px minmax(0, 1fr) auto !important;
    gap: 10px 12px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #e3e7ed;
    position: relative !important;
    padding-left: 0 !important;
    padding-bottom: 12px !important;
    margin-bottom: 0 !important;
    overflow: visible !important;
    min-height: 0 !important;
  }

  #wishlistTable.cart-products tbody tr td {
    display: block;
    width: auto;
    padding: 0 !important;
    border: 0 !important;
    margin: 0 !important;
    clear: none !important;
    text-align: left !important;
  }

  #wishlistTable.cart-products tbody tr .product-name-price {
    min-width: 0 !important;
    width: auto !important;
    padding-right: 0 !important;
    margin-bottom: 0 !important;
    overflow: visible !important;
  }

  #wishlistTable.cart-products tbody tr .product-actions {
    margin: 0 !important;
    align-self: end;
  }

  #wishlistTable.cart-products tbody tr td::before {
    display: none !important;
    content: none !important;
  }

  #wishlistTable.cart-products tbody tr .product-thumbnail {
    position: static !important;
    left: auto !important;
    top: auto !important;
    display: block !important;
    display: flex !important;
    align-items: center;
    min-width: 72px;
    width: 72px !important;
    overflow: visible !important;
    text-align: left !important;
  }

  #wishlistTable .cart-product-image {
    display: block;
    max-width: 72px;
    width: 72px;
    height: auto;
    object-fit: contain;
  }

  #wishlistTable .cart-product-title {
    font-size: 15px;
    line-height: 1.35;
    margin-bottom: 4px;
    display: block;
    white-space: normal !important;
    overflow-wrap: anywhere;
  }

  #wishlistTable .product-price {
    font-size: 15px;
    line-height: 1.35;
    margin-top: 0 !important;
  }

  #wishlistTable .product-price .cart-original-price {
    margin-left: 6px;
    font-size: 13px;
  }

  #wishlistTable .product-actions {
    width: auto;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
  }
}

/* Account Navigation - border-top beim ersten Eintrag */
.nav.nav-tabs.flex-column .nav-item:first-child {
  border-top: 1px solid #e0e0e0;
}

/* Warenkorb - Delete Button */
.cart-delete-button {
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cart-delete-button svg {
  display: block;
  transition: all 0.3s ease;
}

.cart-delete-button:hover svg path {
  stroke: #CF142B;
}

.layoutWrapper {
  padding-left: 15px;
  padding-right: 15px;
}

/* Content-Seiten Typografie (wie Produkt-Accordion) */
#contentPage {
  padding: 20px 0px 100px 0px;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 23px;
  letter-spacing: 0;
  color: #536583;
}

.contact-info-box h3 {
  color: #00225C;
}

#contentPage h2 {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 54px;
  line-height: 1.25;
  letter-spacing: -0.04em;
  color: #00225C !important;
  margin-bottom: 15px;
}

/* CTA-Banner-Titel: spezifischer als #contentPage h2, damit keine Ueberschreibung */
#contentPage .cta-banner__title {
  font-family: "Instrument Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(32px, 5vw, 58px);
  line-height: clamp(42px, 6vw, 72px);
  letter-spacing: -0.04em;
  color: rgba(0, 34, 92, 1) !important;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  #contentPage .cta-banner__title {
    font-size: clamp(30px, 6vw, 44px);
    line-height: clamp(38px, 6.8vw, 54px);
  }
}

@media (max-width: 767.98px) {
  #contentPage .cta-banner__title {
    font-size: clamp(26px, 7vw, 38px);
    line-height: clamp(34px, 8vw, 48px);
  }
}

@media (max-width: 425px) {
  #contentPage .cta-banner__title {
    font-size: clamp(22px, 8vw, 28px);
    line-height: clamp(30px, 9vw, 36px);
  }
}

/* Filter-Navigation: vor Select-Variante (<=767px) mehrzeilig darstellen */
@media (max-width: 1024px) {
  .product-filter-menu.blog-filter-menu,
  .product-filter-menu.ratgeber-filter-menu,
  #home-product-filter-menu,
  #gift-filter-menu {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .product-filter-menu.blog-filter-menu li,
  .product-filter-menu.ratgeber-filter-menu li,
  #home-product-filter-menu li,
  #gift-filter-menu li {
    margin-bottom: 0;
  }
}

.gift-filter-select {
  display: none;
  width: 100%;
  max-width: 260px;
  margin: 0 auto 20px;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #00225c;
  padding: 8px 0 8px 10px;
  font-size: 16px;
  color: #00225c;
  background-color: #fff;
}

@media (max-width: 767px) {
  #gift-filter-menu {
    display: none !important;
  }

  .gift-filter-select {
    display: block;
  }
}

.gift-wrapper .single-product__image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.gift-wrapper .single-product__image .image-wrap {
  display: block;
  width: 100%;
  height: 100%;
}

.gift-wrapper .single-product__image .image-wrap img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

#contentPage h3 {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 36px;
  line-height: 1.75;
  letter-spacing: -0.04em;
  color: #00225C;
  margin-bottom: 12px;
}

#contentPage h4 {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 30px;
  line-height: 42px;
  letter-spacing: -0.04em;
  color: #00225C;
  margin-bottom: 10px;
}

#contentPage h5 {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 29px;
  letter-spacing: -0.04em;
  color: #00225C;
  margin-bottom: 8px;
}

#contentPage h6 {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 15.6px;
  line-height: 28.8px;
  letter-spacing: -0.04em;
  color: #00225C;
  margin-bottom: 8px;
}

#contentPage p,
#contentPage span,
#contentPage div {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  line-height: 1.75;
  letter-spacing: 0;
  color: #536583;
}

/* Normale ULs im Content; Layout-Liste nutzt .list-style-02 (eigene Optik inkl. ::before) */
#contentPage ul:not(.list-style-02) {
  list-style: disc;
  padding-left: 1rem;
  margin-bottom: 20px;
}

#contentPage ul:not(.list-style-02) li {
  list-style: disc;
  list-style-position: outside;
  font-size: 15px;
  line-height: 1.75;
}

#contentPage ul.list-style-02 {
  list-style: none;
  margin: 0px !important;
  padding: 0px !important;
  padding-bottom: 20px!important;
}

#contentPage ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin-bottom: 20px;
}

/* Nur Layout-Komponente „list”: ul erhält in layout.php die Klasse list-style-02 */
#contentPage ul.list-style-02 li {
  color: #536583;
  font-weight: 400;
  font-size: 17px;
  margin-bottom: 5px;
  line-height: 1.75;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}

#contentPage ul.list-style-02 li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background-color: rgba(0, 34, 92, 1);
  border-radius: 50%;
}

/* Doppelpunkt: Layout fügt fa-circle ein – im Content nur CSS-Bullet nutzen */
#contentPage ul.list-style-02 li > i.fa-solid.fa-circle {
  display: none !important;
}

#contentPage ol li {
  color: #536583;
  font-weight: 400;
  font-size: 17px;
  margin-bottom: 5px;
  line-height: 1.75;
  list-style: decimal;
  padding-left: 0.5rem;
}

#contentPage ul.list-style-02 li::marker,
#contentPage ol li::marker {
  color: rgba(0, 34, 92, 1);
}

#contentPage a {
  color: #CF142B;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

#contentPage a:hover {
  opacity: 0.7;
}

/* Blog- und Ratgeber-Unterseiten: Gleiches Styling wie Content-Seiten */
.single-blog-post-section {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 23px;
  letter-spacing: 0;
  color: #536583;
  margin-left: -15px;
  margin-right: -15px;
}

.single-blog-post-section h2 {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 45px;
  line-height: 1.25;
  letter-spacing: -0.04em;
  color: #00225C !important;
  margin-bottom: 15px;
}

.single-blog-post-section h3 {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 30px;
  line-height: 1.75;
  letter-spacing: -0.04em;
  color: #00225C;
  margin-bottom: 12px;
}

.single-blog-post-section h4 {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 25px;
  line-height: 35px;
  letter-spacing: -0.04em;
  color: #00225C;
  margin-bottom: 10px;
}

.single-blog-post-section h5,
.single-blog-post-section h6 {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  line-height: 24px;
  letter-spacing: -0.04em;
  color: #00225C;
  margin-bottom: 8px;
}

.single-blog-post-section p,
.single-blog-post-section span,
.single-blog-post-section div {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  line-height: 1.75;
  letter-spacing: 0;
  color: #536583;
}

/* Layout-Block "list": gleiche Typografie wie Text-Block + ausgewogene Abstände */
.single-blog-post-section ul.list-style-02 {
  margin: 0px !important;
  padding: 0px !important;
  padding-bottom: 20px!important;
}

.single-blog-post-section ul.list-style-02 li {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 5px;
}

.single-blog-post-section ul {
  list-style: disc;
  padding-left: 2px;
  margin-bottom: 20px;
}

.single-blog-post-section ol {
  list-style: decimal;
  padding-left: 1rem;
  margin-bottom: 20px;
}

.single-blog-post-section ul li {
  color: #536583;
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 12px;
  line-height: 1.7;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}

.single-blog-post-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background-color: rgba(0, 34, 92, 1);
  border-radius: 50%;
}

.single-blog-post-section ol li {
  color: #536583;
  font-weight: 400;
  font-size: 17px;
  margin-bottom: 5px;
  line-height: 1.7;
  list-style: decimal;
  padding-left: 0.5rem;
}

.single-blog-post-section ul li::marker,
.single-blog-post-section ol li::marker {
  color: rgba(0, 34, 92, 1);
}

.single-blog-post-section a {
  color: #CF142B;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.single-blog-post-section a:hover {
  opacity: 0.7;
}

.blog-subpage-page-title {
  display: none;
}

/* Blog-/Ratgeber-Subpages: responsive Titel wie Inhaltsseiten behandeln */
@media (min-width: 768px) {
  .single-blog-post-section h2 {
    font-size: clamp(3.45rem, 4.32vw, 4.02rem);
    line-height: 1.22;
    letter-spacing: -0.04em;
  }

  .single-blog-post-section h3 {
    font-size: clamp(2.46rem, 3.3vw, 2.94rem);
    line-height: 1.28;
    letter-spacing: -0.04em;
  }

  .single-blog-post-section h4 {
    font-size: clamp(1.98rem, 2.64vw, 2.4rem);
    line-height: 1.3;
    letter-spacing: -0.04em;
  }

  .single-blog-post-section h5,
  .single-blog-post-section h6 {
    font-size: clamp(1.44rem, 1.98vw, 1.74rem);
    line-height: 1.35;
    letter-spacing: -0.03em;
  }
}

@media (max-width: 767.98px) {
  .blog-subpage-page-title {
    display: block;
    font-size: clamp(2rem, 8.2vw, 2.5rem) !important;
    line-height: 1.15 !important;
  }

  .single-blog-post-section h2 {
    font-size: clamp(1.704rem, 5.88vw, 2.184rem);
    line-height: 1.32;
    letter-spacing: -0.03em;
  }

  .single-blog-post-section h3 {
    font-size: clamp(1.464rem, 4.92vw, 1.824rem);
    line-height: 1.32;
    letter-spacing: -0.03em;
  }

  .single-blog-post-section h4 {
    font-size: clamp(1.32rem, 4.32vw, 1.584rem);
    line-height: 1.35;
    letter-spacing: -0.02em;
  }

  .single-blog-post-section h5,
  .single-blog-post-section h6 {
    font-size: clamp(1.2rem, 3.84vw, 1.416rem);
    line-height: 1.4;
    letter-spacing: -0.02em;
  }
}

/* Blog- und Ratgeber-Unterseiten: Share-Bereich */
.blog-page-wrapper .single-slider-post__content .fs-24.fw-500.text-black {
  color: #00225C !important;
}

.blog-page-wrapper .elements-social.social-icon-style-04 .medium-icon.dark li a {
  color: #00225C !important;
  transition: opacity 0.3s ease;
}

.blog-page-wrapper .elements-social.social-icon-style-04 .medium-icon.dark li a:hover {
  opacity: 0.7;
}

.blog-page-wrapper .elements-social.social-icon-style-04 .medium-icon.dark li a i {
  color: #00225C !important;
}

.blog-page-wrapper .elements-social.social-icon-style-04 .medium-icon.dark li a:hover i {
  opacity: 0.7;
}

/* "Gut zu wissen" Titel auf Blog/Ratgeber-Unterseiten - Styling wie h3 */
.blog-page-wrapper section .alt-font.fs-45.text-dark-gray {
  font-family: 'Instrument Sans', sans-serif !important;
  font-weight: 500 !important;
  font-style: normal !important;
  font-size: 30px !important;
  line-height: 1.75 !important;
  letter-spacing: -0.04em !important;
  color: #00225C !important;
  margin-bottom: 12px !important;
}

.blog-page-wrapper section h3 {
  font-family: 'Instrument Sans', sans-serif !important;
  font-weight: 500 !important;
  font-style: normal !important;
  font-size: 30px !important;
  line-height: 1.75 !important;
  letter-spacing: -0.04em !important;
  color: #00225C !important;
  margin-bottom: 0px !important;
}

/* Kategorie-Informationen Container (Shop-Seite) */
.category-info-container {
  background-color: #ffffff;
  /* border: 3px solid #00225C; */
  border-radius: 8px;
  /* padding: 30px; */
  margin-bottom: 30px;
}

.category-info-description {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  line-height: 1.75;
  letter-spacing: 0;
  color: #536583;
}

.category-info-description p {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  line-height: 1.75;
  letter-spacing: 0;
  color: #536583;
  margin-bottom: 15px;
}

.category-info-description p:last-child {
  margin-bottom: 0;
}

.category-info-description h2,
.category-info-description h3,
.category-info-description h4,
.category-info-description h5,
.category-info-description h6 {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #00225C;
  margin-top: 20px;
  margin-bottom: 12px;
}

.category-info-description h2 {
  /* font-size: 45px; */
  line-height: 1.2;
}

.category-info-description h3 {
  font-size: 30px;
  line-height: 1.75;
}

.category-info-description h4 {
  font-size: 25px;
  line-height: 35px;
}

.category-info-description ul,
.category-info-description ol {
  list-style: disc;
  padding-left: 1rem;
  margin-bottom: 20px;
}

.category-info-description ol {
  list-style: decimal;
}

.category-info-description ul li,
.category-info-description ol li {
  color: #536583;
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 12px;
  line-height: 1.7;
}

/* Verhindere Layout-Shift beim Laden der Navigation */
.navbar {
  height: 76px;
}

.navbar .navbar-collapse {
  min-height: 0;
}

.navbar .navbar-nav {
  min-height: 56px;
}

/* Verhindere Sprünge beim Laden von dynamischen Inhalten */
header .navbar-collapse,
header .navbar-nav {
  contain: layout style;
}



.share-icon svg {
  display: block;
  width: 24px;
  height: 24px;
}

.share-icon svg path {
  transition: all 0.3s ease;
}

.share-icon-email:hover svg path {
  stroke: #CF142B;
}

.share-icon-whatsapp:hover svg path {
  fill: #25D366;
}

@media (max-width: 768px) {
  #contentPage {
    padding-bottom: 0;
  }

  .share-icons-wrapper {
    gap: 10px;
  }
  
  .share-label {
    font-size: 15px;
  }
  
  .share-icon {
    width: 40px;
    height: 40px;
    padding: 8px;
  }
  
  .share-icon svg {
    width: 22px;
    height: 22px;
  }
}

/* FAQ Contact Wrapper Styling */
.faqContactWrapper {
  color: #00225C;
}

.faqContactWrapper p {
  color: #00225C;
  font-weight: 500;
}

.faqContactWrapper a {
  color: #CF142B!important;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.faqContactWrapper a:hover {
  opacity: 0.7;
}

/* Produktansicht: 3 Spalten zwischen 991px und 1600px, 4 Spalten ab 1600px */
@media(min-width: 1600px) {
  .single-product-wrapper.col-xl-4 {
    flex: 0 0 auto;
    width: 25%; /* 4 Spalten = 25% */
  }
}

/* Footer Newsletter: Hover nur via Opacity, keine Farbänderung */
#footerNewsletterWrapper .footer-subscription-widget a {
  color: inherit !important;
  transition: opacity 0.3s ease;
}

#footerNewsletterWrapper .footer-subscription-widget a:hover {
  color: inherit !important;
  opacity: 0.8;
}

/* Footer Newsletter Input Icon (Panel-konfigurierbar) */
#footerNewsletterWrapper .footer-newsletter-input-wrap {
  position: relative;
}

#footerNewsletterWrapper .newsletter-email-input {
  padding-right: 50px !important;
}

#footerNewsletterWrapper .newsletter-email-input--with-icon {
  padding-left: 44px !important;
}

#footerNewsletterWrapper .footer-newsletter-input-icon {
  position: absolute;
  left: 14px;
  top: 49%;
  transform: translateY(-50%);
  width: 19px;
  height: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
}

#footerNewsletterWrapper .footer-newsletter-input-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.8;
}

/* Footer Block 5: mehr Abstand zwischen Text und E-Mail-Feld */
#footerNewsletterWrapper .footer-subscription-widget p {
  margin-bottom: 1rem !important;
}

#footerNewsletterWrapper .footer-subscription-widget .subscription > p {
  margin-bottom: 1.25rem !important;
}

/* Footer: volle Breite nutzen, mit kompakteren Abstaenden */
@media (min-width: 1400px) {
  .footer-flex-container {
    justify-content: space-between !important;
    gap: 0 !important;
  }

  .footer-col-1 {
    flex: 0 0 25% !important;
    width: 25% !important;
    max-width: 25% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .footer-col-2 {
    flex: 0 0 26% !important;
    width: calc(26% - 12px) !important;
    max-width: calc(26% - 12px) !important;
    margin-left: 12px !important;
    margin-right: 0 !important;
  }

  .footer-col-3 {
    flex: 0 0 12% !important;
    width: 12% !important;
    max-width: 12% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .footer-col-4 {
    flex: 0 0 12% !important;
    width: 12% !important;
    max-width: 12% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .footer-col-5 {
    flex: 0 0 25% !important;
    width: calc(25% - 12px) !important;
    max-width: calc(25% - 12px) !important;
    margin-left: 12px !important;
    margin-right: 0 !important;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .footer-flex-container {
    gap: 18px !important;
  }

  .footer-col-1,
  .footer-col-2 {
    width: calc(50% - 9px) !important;
  }

  .footer-col-5 {
    width: calc(50% - 9px) !important;
  }
}

/**
 * Seiten-Raster: `container-fluid.wide` (Breadcrumb, Shop, Kontakt, …) an Navbar-Inhalt angleichen.
 * Theme: `header .navbar [class*=col-]` mit padding 0 15px; Bootstrap-Gutter auf `.container-fluid` weicht oft ab.
 */
.container-fluid.wide {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

@media (max-width: 549.98px) {
  .container-fluid.wide {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}

/**
 * Subfooter mobil (combined: column-reverse + justify-content-between):
 * - space-between auf der Hauptachse erzeugt eine große vertikale Lücke zwischen Zahlungslogos und Links.
 * - align-items: stretch (vorheriger Fix) ließ die Links linksbündig statt unter den Logos zentriert.
 * Theme footer { padding-bottom: 50px } unter 767px vergrößert zudem den Abstand unter dem Subfooter.
 */
@media (max-width: 767.98px) {
  .subfooter.footer-container .subfooter-inner > .d-flex {
    flex-direction: column-reverse !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 0.75rem !important;
  }

  .subfooter .subfooter-nav {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .subfooter .subfooter-nav__list {
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 6px;
  }

  .subfooter .payment {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .subfooter.footer-container.footer-one {
    padding-top: 1rem !important;
    padding-bottom: 0.5rem !important;
  }

  footer.footer-container.footer-one.footer-demo {
    padding-bottom: 12px !important;
  }
}

/*
 * Layout-Blöcke: gleiche Utility-Klasse wie Formular-h2 (alt-font text-dark-gray w-90 md-w-100),
 * Abstufung h2 > h3 > h4 > h5, Spezifität jeweils > #contentPage h{n}
 */
@media (min-width: 768px) {
  #contentPage h2.alt-font.text-dark-gray.w-90.md-w-100 {
    font-size: clamp(3.45rem, 4.32vw, 4.02rem);
    line-height: 1.22;
    letter-spacing: -0.04em;
  }

  #contentPage h3.alt-font.text-dark-gray.w-90.md-w-100 {
    font-size: clamp(2.46rem, 3.3vw, 2.94rem);
    line-height: 1.28;
    letter-spacing: -0.04em;
  }

  #contentPage h4.alt-font.text-dark-gray.w-90.md-w-100 {
    font-size: clamp(1.98rem, 2.64vw, 2.4rem);
    line-height: 1.3;
    letter-spacing: -0.04em;
  }

  #contentPage h5.alt-font.text-dark-gray.w-90.md-w-100 {
    font-size: clamp(1.44rem, 1.98vw, 1.74rem);
    line-height: 1.35;
    letter-spacing: -0.03em;
  }
}

@media (max-width: 767.98px) {
  #contentPage h2.alt-font.text-dark-gray.w-90.md-w-100 {
    font-size: clamp(1.704rem, 5.88vw, 2.184rem);
    line-height: 1.32;
    letter-spacing: -0.03em;
  }

  #contentPage h3.alt-font.text-dark-gray.w-90.md-w-100 {
    font-size: clamp(1.464rem, 4.92vw, 1.824rem);
    line-height: 1.32;
    letter-spacing: -0.03em;
  }

  #contentPage h4.alt-font.text-dark-gray.w-90.md-w-100 {
    font-size: clamp(1.32rem, 4.32vw, 1.584rem);
    line-height: 1.35;
    letter-spacing: -0.02em;
  }

  #contentPage h5.alt-font.text-dark-gray.w-90.md-w-100 {
    font-size: clamp(1.2rem, 3.84vw, 1.416rem);
    line-height: 1.4;
    letter-spacing: -0.02em;
  }
}

/*
 * CMS-Produkte-Komponente (sections/products.php, .products--shop-layout) innerhalb #contentPage:
 * #contentPage a (rot) und #contentPage p/span/div (grau) würden Shop-Kacheln verfälschen.
 */
#contentPage section.products.products--shop-layout .products__header .component-title {
  color: rgba(0, 34, 92, 1) !important;
}

#contentPage section.products.products--shop-layout a.product-name,
#contentPage section.products.products--shop-layout .single-product__content .title a {
  color: rgba(0, 34, 92, 1) !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: static !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
  display: block !important;
}

/* Theme „.single-product__content .title > a:before“ (+) würde Text einrücken / Layout sprengen */
#contentPage section.products.products--shop-layout .single-product__content .title a.product-name::before,
#contentPage section.products.products--shop-layout .single-product__content .title a.product-name:before {
  content: none !important;
  display: none !important;
  margin: 0 !important;
}

#contentPage section.products.products--shop-layout .single-product__content .title {
  margin-left: 0 !important;
  padding-left: 0 !important;
}

#contentPage section.products.products--shop-layout a.product-name:hover,
#contentPage section.products.products--shop-layout a.product-name:focus {
  color: rgba(0, 34, 92, 1) !important;
  opacity: 1 !important;
}

#contentPage section.products.products--shop-layout span.product-name {
  color: rgba(0, 34, 92, 1) !important;
}

#contentPage section.products.products--shop-layout .single-product__image > a.image-wrap {
  color: transparent !important;
  opacity: 1 !important;
}

#contentPage section.products.products--shop-layout .single-product__image > a.image-wrap:hover {
  opacity: 1 !important;
}

#contentPage section.products.products--shop-layout .sub-category {
  color: #a0aec0 !important;
}

#contentPage section.products.products--shop-layout .price .discounted-price {
  color: rgba(0, 34, 92, 1) !important;
}

#contentPage section.products.products--shop-layout .price .original-price {
  color: #a0aec0 !important;
}

#contentPage section.products.products--shop-layout .unavailable-price {
  color: #a0aec0 !important;
}

#contentPage section.products.products--shop-layout .short-description-products {
  color: #333333 !important;
}

#contentPage section.products.products--shop-layout .last-pieces-label {
  color: #00225C !important;
}

#contentPage section.products.products--shop-layout .last-pieces-label strong {
  color: #00225C !important;
}

/* Badge-Zeile unter dem Bild: #contentPage div überschreibt display:flex von .price-badges-row */
#contentPage section.products.products--shop-layout .single-product__content .price-badges-row {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 8px 0 0 0 !important;
  flex-wrap: wrap !important;
}

/* Floating-Badges: #contentPage span/div würde Schriftgröße/Farbe der Shop-Kacheln zerstören */
#contentPage section.products.products--shop-layout .single-product__floating-badges {
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

#contentPage section.products.products--shop-layout .single-product__floating-badges .overlay-badge {
  position: absolute !important;
  min-width: 99px !important;
  max-width: calc(100% - 24px) !important;
  padding: 5px 13px !important;
  border-radius: 8px !important;
  font-family: var(--alt-font, inherit) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  font-style: normal !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

#contentPage section.products.products--shop-layout .single-product__floating-badges span.overlay-badge {
  border-radius: 7px !important;
}

#contentPage section.products.products--shop-layout .single-product__floating-badges .overlay-slot-1 {
  top: 8px !important;
  left: 8px !important;
  background: #5a6e7d !important;
  color: #fff !important;
}

#contentPage section.products.products--shop-layout .single-product__floating-badges .overlay-slot-2 {
  top: 8px !important;
  right: 8px !important;
  background: #555f69 !important;
  color: #fff !important;
}

#contentPage section.products.products--shop-layout .single-product__floating-badges .overlay-slot-3 {
  bottom: 8px !important;
  left: 8px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

#contentPage section.products.products--shop-layout .single-product__floating-badges .overlay-quality-preiswert {
  background: #f2efe6 !important;
  color: #464646 !important;
}

#contentPage section.products.products--shop-layout .single-product__floating-badges .overlay-quality-standard {
  background: #cdcdcd !important;
  color: #464646 !important;
}

#contentPage section.products.products--shop-layout .single-product__floating-badges .overlay-quality-premium {
  background: #ece2c8 !important;
  color: #464646 !important;
}

#contentPage section.products.products--shop-layout .single-product__floating-badges .overlay-slot-3:not(.overlay-quality-preiswert):not(.overlay-quality-standard):not(.overlay-quality-premium) {
  background: #cdcdcd !important;
  color: #464646 !important;
}

#contentPage section.products.products--shop-layout .single-product__floating-badges .overlay-quality-icon {
  width: 14px !important;
  height: 14px !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

#contentPage section.products.products--shop-layout .price-hit-badge,
#contentPage section.products.products--shop-layout .price-discount-badge {
  display: inline-block !important;
  margin: 0 !important;
  padding: 5px 11px !important;
  border-radius: 6px !important;
  background: #cf142b !important;
  color: #fff !important;
  font-family: var(--alt-font, inherit) !important;
  font-size: 14.3px !important;
  font-weight: 500 !important;
  font-style: normal !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

/* --------------------------------------------------------------------------
   Breadcrumbs Mobile (Content-Seiten): wie Produktdetail — eine Zeile,
   .breadcrumbs-list-wrapper + ul.breadcrumb-list, Trenner ›, linksbündig.
   (brown.css .shop-page-content .text-start { text-align:center } umgehen)
   -------------------------------------------------------------------------- */
@media (max-width: 767.98px) {
  .breadcrumb-content-mobile .breadcrumb-mobile-inner {
    text-align: left !important;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  /* brown.css setzt .shop-page-content .breadcrumb-style-01 auf inline-block */
  .breadcrumb-content-mobile .breadcrumbs-list-wrapper.breadcrumb-style-01 {
    display: block !important;
    width: 100%;
    min-width: 0;
    margin-bottom: 20px;
  }

  .breadcrumb-content-mobile .breadcrumb-list {
    flex-wrap: nowrap;
    width: max-content;
    max-width: none;
    list-style: none;
    margin-bottom: 0 !important;
    padding-left: 0 !important;
    white-space: nowrap;
  }

  .breadcrumb-content-mobile .breadcrumb-list .breadcrumb-list__item {
    flex-shrink: 0;
  }

  .breadcrumb-content-mobile .breadcrumb-list a {
    color: #00225c;
    text-decoration: none;
    font-weight: 500;
  }

  .breadcrumb-content-mobile .breadcrumb-list a:hover,
  .breadcrumb-content-mobile .breadcrumb-list a:focus {
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  /* Punkt-Trenner (white-divider) wie auf Detail-Zeile visuell als › */
  .breadcrumb-content-mobile .white-divider {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    min-width: 0.75em;
    height: auto !important;
    min-height: 0;
    padding: 0 !important;
    margin: 0 0.15em !important;
    background: none !important;
    border-radius: 0 !important;
    vertical-align: baseline;
    flex-shrink: 0;
  }

  .breadcrumb-content-mobile .white-divider::before {
    content: '\203a';
    font-size: 1.15em;
    line-height: 1;
    font-weight: 400;
    color: #a0aec0;
  }

  .breadcrumb-content-mobile .bc-current-page {
    color: #00225c !important;
    font-weight: 600;
    white-space: nowrap;
  }
}

.px-15 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.password-page-form-col {
  width: 100%;
  max-width: 720px;
  flex: 0 0 100%;
}

@media (max-width: 991px) {
  .login-area .row.m-0 > .contact-form-style-04,
  .login-area .row.m-0 > .login-form--register,
  .login-area .row.m-0 > .col-xl-5.col-lg-5.col-md-10.contact-form-style-04,
  .login-area .row.m-0 > .col-lg-6.col-md-10.offset-xl-1.offset-lg-1 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .login-area .row.m-0 > .col-lg-6.col-md-10.offset-xl-1.offset-lg-1 {
    margin-left: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    border: 0 !important;
    background: transparent !important;
  }

  .login-area .row.m-0 > .col-lg-6.col-md-10.offset-xl-1.offset-lg-1 .login-form--register {
    border: 0 !important;
  }
}

@media (max-width: 768px) {
  .my-account-area .table-responsive {
    overflow-x: hidden;
  }

  .my-account-area .table-responsive table {
    min-width: 0;
    width: 100%;
    table-layout: fixed;
  }

  .my-account-area .table-responsive table th,
  .my-account-area .table-responsive table td {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

@media (max-width: 768px) {
  .my-account-area table.table.table-striped > tbody > tr > th {
    display: block;
    width: 100%;
    background-color: #eef1f5 !important;
    box-shadow: none !important;
  }

  .my-account-area table.table.table-striped > tbody > tr > td {
    display: block;
    width: 100%;
    background-color: #ffffff !important;
    box-shadow: none !important;
  }
}

.account-orders-mobile-list {
  display: none;
}

.account-order-card {
  background: #fff;
  border: 1px solid #e3e7ed;
  border-radius: 12px;
  padding: 18px 16px;
  margin-bottom: 14px;
}

.account-order-card__title {
  margin: 0 0 2px;
  color: #001b5e;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
}

.account-order-card__date {
  color: #536583;
  font-size: 14px;
  margin-bottom: 12px;
}

.account-order-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: #2d3748;
  font-size: 15px;
  margin-bottom: 12px;
}

.account-order-card__meta strong {
  color: #001b5e;
  font-weight: 600;
  margin-right: 4px;
}

.account-order-card__link {
  color: #CF142B;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
}

#div_order_content a.py-1.text-nowrap.text-base-color,
#div_old_order_content a.py-1.text-nowrap.text-base-color {
  color: #CF142B !important;
}

.order-detail-mobile-products {
  display: none;
}

@media (max-width: 1024px) {
  .order-detail-mobile-products {
    display: block;
  }

  .order-detail-mobile-card {
    border: 1px solid #e3e7ed;
    border-radius: 12px;
    background: #fff;
    padding: 14px;
    margin-bottom: 12px;
  }

  .order-detail-mobile-card__top {
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }

  .order-detail-mobile-card__image-wrap {
    width: 84px;
    min-width: 84px;
  }

  .order-detail-mobile-card__image {
    width: 84px;
    height: 84px;
    object-fit: contain;
    border-radius: 6px;
  }

  .order-detail-mobile-card__content {
    flex: 1;
    min-width: 0;
  }

  .order-detail-mobile-card__content .customer-options-mini {
    margin-top: 8px !important;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

  .order-detail-mobile-card__content .customer-options-mini > span,
  .order-detail-mobile-card__content .customer-options-mini > div {
    width: max-content;
    min-width: max-content;
    white-space: nowrap;
  }

  .order-detail-mobile-card__bottom {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #e3e7ed;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .order-detail-mobile-card__meta-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }

  .order-detail-mobile-card__meta-label {
    color: #536583;
    font-size: 14px;
  }

  .order-detail-mobile-card__meta-value {
    color: #001b5e;
    font-size: 15px;
    font-weight: 500;
    text-align: right;
  }
}

@media (max-width: 768px) {
  .review-product-column {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
  }

  .review-product-column .services-box-style-03 {
    max-width: 360px;
    width: 100%;
  }

  .review-form-column {
    width: 100%;
  }
}

.review-product-column .shop-product__price .discounted-price-detail {
  color: #333333;
  font-weight: 600;
  font-size: 16px;
}

.review-product-column .shop-product__price .original-price-detail {
  color: #7e7e7e;
  font-size: 16px;
  font-weight: 400;
}

.review-product-column .services-box-style-03 {
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

@media (max-width: 1024px) {
  .shopping-cart-area .cart-products thead {
    display: none;
  }

  .shopping-cart-area .cart-products tbody tr {
    display: grid !important;
    grid-template-columns: 88px minmax(0, 1fr) auto auto auto;
    grid-template-areas:
      "thumb name name name remove"
      "thumb price qty subtotal remove";
    gap: 8px 16px;
    border-bottom: 1px solid #e3e7ed;
    padding: 14px 0;
    margin-bottom: 0;
    min-height: 0;
    overflow: visible;
    background: transparent;
    position: relative;
  }

  .shopping-cart-area .cart-products tbody tr td {
    display: block !important;
    width: auto;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    clear: none !important;
    text-align: left !important;
    line-height: 1.4;
  }

  .shopping-cart-area .cart-products tbody tr td::before {
    display: none !important;
    content: none !important;
    float: none !important;
  }

  .shopping-cart-area .cart-products tbody tr .product-thumbnail {
    grid-area: thumb;
    position: static !important;
    width: 88px;
    min-width: 88px;
    overflow: visible;
    text-align: left !important;
  }

  .shopping-cart-area .cart-products tbody tr .product-name {
    grid-area: name;
    padding-right: 34px;
    margin-bottom: 0;
  }

  .shopping-cart-area .cart-products tbody tr .product-price {
    grid-area: price;
    white-space: nowrap;
    display: inline-flex !important;
    align-items: center;
    flex-wrap: nowrap;
    min-width: max-content;
  }

  .shopping-cart-area .cart-products tbody tr .product-quantity {
    grid-area: qty;
    white-space: nowrap;
    display: inline-flex !important;
    align-items: center;
    flex-wrap: nowrap;
    min-width: max-content;
    padding-right: 8px !important;
  }

  .shopping-cart-area .cart-products tbody tr .product-subtotal {
    grid-area: subtotal;
    white-space: nowrap;
    display: inline-flex !important;
    align-items: center;
    flex-wrap: nowrap;
    min-width: max-content;
    padding-left: 8px !important;
  }

  .shopping-cart-area .cart-products tbody tr .product-remove {
    grid-area: remove;
    position: static !important;
    width: 24px;
    margin: 0 !important;
    padding: 0 !important;
    text-align: right !important;
    align-self: start;
    justify-self: end;
    z-index: 2;
  }

  .shopping-cart-area .cart-products tbody tr .product-quantity .quantity {
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .shopping-cart-area .cart-products tbody tr .product-quantity .quantity .qty-text {
    width: 125px !important;
    min-width: 125px !important;
  }

  .shopping-cart-area .cart-products tbody tr .product-price::before,
  .shopping-cart-area .cart-products tbody tr .product-quantity::before,
  .shopping-cart-area .cart-products tbody tr .product-subtotal::before {
    display: inline !important;
    content: attr(data-title) ": " !important;
    color: #536583;
    font-size: 13px;
    font-weight: 500;
    margin-right: 10px;
    margin-top: 0 !important;
    white-space: nowrap;
  }

  .shopping-cart-area .cart-products tbody tr .product-price .cart-current-price,
  .shopping-cart-area .cart-products tbody tr .product-price .cart-original-price,
  .shopping-cart-area .cart-products tbody tr .product-subtotal .final-price-cart {
    white-space: nowrap;
  }
}

@media (max-width: 900px) {
  .shopping-cart-area .cart-products tbody tr {
    grid-template-columns: 88px minmax(0, 1fr) auto auto;
    grid-template-areas:
      "thumb name name remove"
      "thumb qty subtotal remove";
    column-gap: 18px;
  }

  .shopping-cart-area .cart-products tbody tr .product-price {
    display: none !important;
  }

  .shopping-cart-area .cart-products tbody tr .product-subtotal .base-price-cart {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .shopping-cart-area .cart-products tbody tr .product-quantity .quantity .qty-text {
    width: 125px !important;
    min-width: 125px !important;
    padding-left: 4px !important;
    padding-right: 4px !important;
  }

  .shopping-cart-area .cart-products tbody tr .product-quantity .quantity .qty-minus,
  .shopping-cart-area .cart-products tbody tr .product-quantity .quantity .qty-plus {
    width: 22px !important;
    min-width: 22px !important;
  }
}

@media (max-width: 640px) {
  .shopping-cart-area .cart-products tbody tr {
    grid-template-columns: 88px minmax(0, 1fr) auto;
    grid-template-areas:
      "thumb name remove"
      "thumb qty remove"
      "thumb subtotal remove";
  }

  .shopping-cart-area .cart-products tbody tr .product-subtotal {
    padding-left: 0 !important;
  }
}

@media (max-width: 575px) {
  .shopping-cart-area .cart-products tbody tr .product-name .customer-options-cart {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

  .shopping-cart-area .cart-products tbody tr .product-name .customer-options-cart .option-item {
    width: max-content;
    min-width: max-content;
  }

  .shopping-cart-area .cart-products tbody tr .product-name .customer-options-cart .option-name,
  .shopping-cart-area .cart-products tbody tr .product-name .customer-options-cart .option-value {
    white-space: nowrap;
  }
}

@media (max-width: 525px) {
  .shopping-cart-area .cart-products tbody tr .product-name a {
    /* font-size: 18px !important; */
    line-height: 1.25 !important;
  }

  .shopping-cart-area .cart-products tbody tr .product-name .customer-options-cart .option-item,
  .shopping-cart-area .cart-products tbody tr .product-name .customer-options-cart .option-name,
  .shopping-cart-area .cart-products tbody tr .product-name .customer-options-cart .option-value,
  .shopping-cart-area .cart-products tbody tr .product-name .customer-options-cart .option-price-info {
    font-size: 14px !important;
    line-height: 1.35 !important;
  }

  .shopping-cart-area .cart-products tbody tr .product-price,
  .shopping-cart-area .cart-products tbody tr .product-quantity,
  .shopping-cart-area .cart-products tbody tr .product-subtotal,
  .shopping-cart-area .cart-products tbody tr .product-price .cart-current-price,
  .shopping-cart-area .cart-products tbody tr .product-price .cart-original-price,
  .shopping-cart-area .cart-products tbody tr .product-subtotal .final-price-cart {
    font-size: 14px !important;
    line-height: 1.3 !important;
  }

  .shopping-cart-area .cart-products tbody tr .product-price::before,
  .shopping-cart-area .cart-products tbody tr .product-quantity::before,
  .shopping-cart-area .cart-products tbody tr .product-subtotal::before {
    font-size: 12px !important;
  }

  .shopping-cart-area .cart-products tbody tr .product-quantity .quantity .qty-text {
    font-size: 14px !important;
  }
}

@media (max-width: 1024px) {
  .checkout-page-area #OrderSummary .single-cart-product {
    display: grid !important;
    grid-template-columns: 88px minmax(0, 1fr);
    grid-template-areas: "thumb content";
    gap: 8px 16px;
    align-items: start !important;
  }

  .checkout-page-area #OrderSummary .single-cart-product .image {
    grid-area: thumb;
    margin-right: 0 !important;
    width: 88px;
    min-width: 88px;
  }

  .checkout-page-area #OrderSummary .single-cart-product .image img {
    width: 88px !important;
    height: 88px !important;
    object-fit: contain;
  }

  .checkout-page-area #OrderSummary .single-cart-product .content {
    grid-area: content;
    min-width: 0;
  }

  .checkout-page-area #OrderSummary .single-cart-product .content > .mb-1 > a {
    display: block;
    color: #001b5e !important;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 500;
  }
}

@media (max-width: 575px) {
  .checkout-page-area #OrderSummary .single-cart-product .content .customer-options-mini {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

  .checkout-page-area #OrderSummary .single-cart-product .content .customer-options-mini > span,
  .checkout-page-area #OrderSummary .single-cart-product .content .customer-options-mini > div {
    width: max-content;
    min-width: max-content;
    white-space: nowrap;
  }
}

@media (max-width: 525px) {
  .checkout-page-area #OrderSummary .single-cart-product .content > .mb-1 > a {
    font-size: 17px !important;
    line-height: 1.25 !important;
  }

  .checkout-page-area #OrderSummary .single-cart-product .content .customer-options-mini,
  .checkout-page-area #OrderSummary .single-cart-product .content .customer-options-mini span,
  .checkout-page-area #OrderSummary .single-cart-product .content .customer-options-mini strong,
  .checkout-page-area #OrderSummary .single-cart-product .content .customer-options-mini .price-info,
  .checkout-page-area #OrderSummary .single-cart-product .content .base-price-like-cart,
  .checkout-page-area #OrderSummary .single-cart-product .content .discounted-price,
  .checkout-page-area #OrderSummary .single-cart-product .content .price-old {
    font-size: 14px !important;
    line-height: 1.35 !important;
  }
}

@media (max-width: 768px) {
  .checkout-page-area .table-responsive table#shipping_table {
    min-width: 0 !important;
    width: 100% !important;
    table-layout: auto;
  }

  .checkout-page-area .table-responsive table#shipping_table td,
  .checkout-page-area .table-responsive table#shipping_table td label,
  .checkout-page-area .table-responsive table#shipping_table td span,
  .checkout-page-area .table-responsive table#shipping_table .form-check-input {
    font-size: 14px !important;
    line-height: 1.3 !important;
  }
}

.checkout-page-area .form-check.d-flex.align-items-start > .form-check-input {
  margin-top: 3px;
}

#shipping_table #shipping_methods .form-check-input {
  margin-top: 1px;
}

.checkout-page-area .fs-26.alt-font.fw-600.mb-20px.d-block {
  font-size: 20.8px !important;
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .checkout-page-area .col-12.col-md-7,
  .checkout-page-area .col-12.col-md-5 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .checkout-page-area .col-12.col-md-5 {
    margin-top: 24px;
  }

  .checkout-page-area #OrderSummary {
    margin-left: 0 !important;
  }
}

@media (max-width: 767.98px) {
  .section-title-container.mb-40.mt-100 {
    margin-top: 0 !important;
  }
}

input#agb {
  margin-top: 4px !important;
}

@media (max-width: 575.98px) {
  input#agb {
    margin-top: 1px !important;
  }
}

.load-more-container {
  text-align: center;
  margin-top: 40px;
}

.fw-blog-component .blog-more-button.hero-flag__button--alt,
.fw-blog-component .blog-more-button.hero-flag__button--alt:visited,
.fw-blog-component .blog-more-button.hero-flag__button--alt:focus {
  background: #CF142B !important;
  color: #fff !important;
}

.fw-blog-component .blog-more-button.hero-flag__button--alt:hover,
.fw-blog-component .blog-more-button.hero-flag__button--alt:active {
  background: #b41124 !important;
  color: #fff !important;
}

/* Video-Block: HTML5-<video> als „Live-Poster" wenn kein Hintergrundbild gesetzt ist.
   Der Browser zeigt den ersten Frame des Videos als statische Vorschau. */
.video-block__wrapper .video-block__poster-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 1;
  background: #000;
}

/* Magnific-Popup für eigene Videodateien (.popup-video):
   Statt iframe wird direkt ein <video>-Element gerendert. Damit füllt das
   Video den gesamten Lightbox-Bereich (statt in Originalgrösse zentriert
   dargestellt zu werden mit schwarzen Rändern). */
.mfp-video-popup .mfp-content {
  width: 100%;
  max-width: 1280px;
}

.mfp-iframe-scaler video.mfp-iframe,
.mfp-video-popup .mfp-iframe-scaler .mfp-video-element {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  border: 0;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

/* Produktdetail: nur Beschreibungs-Akkordeon — Listen wie Lauftext (vgl. #productAccordion .accordion-body p) */
#collapseDescription .accordion-body ul li,
#collapseDescription .accordion-body ol li {
  font-family: "Instrument Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 23px;
  letter-spacing: 0;
  color: #536583;
  margin-bottom: 0;
}

#collapseDescription .accordion-body ul li::marker,
#collapseDescription .accordion-body ol li::marker {
  color: #536583;
}

#collapseDescription .accordion-body ul.benefits-list li {
  font-family: "Instrument Sans", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 23px;
  letter-spacing: 0;
  color: #536583;
  margin-bottom: 0;
}

#collapseDescription .accordion-body ul.benefits-list li::before {
  color: #536583;
}
