/* =========================================================
   AnhängerTeileSpezi – CUSTOM CSS (NOVAChild / my-nova)
   ========================================================= */

/* ---------------------------------------------------------
   Farben & Variablen
   --------------------------------------------------------- */
:root{
  --ats-blue:#0051ff;
  --ats-blue-dark:#003dcc;
  --ats-text:#1f2937;
  --ats-muted:#6b7280;
  --ats-border:#e5e7eb;
}

/* ---------------------------------------------------------
   Grundschrift & Links
   --------------------------------------------------------- */
body{ color:var(--ats-text); }
a{ color:var(--ats-blue); text-decoration:none; }
a:hover, a:focus{ color:var(--ats-blue-dark); text-decoration:underline; }

/* ---------------------------------------------------------
   Buttons (NOVA/Bootstrap)
   --------------------------------------------------------- */
.btn-primary,
button.btn-primary{
  background:var(--ats-blue);
  border-color:var(--ats-blue);
  color:#ffffff;
  font-weight:600;
}
.btn-primary:hover,
button.btn-primary:hover{
  background:var(--ats-blue-dark);
  border-color:var(--ats-blue-dark);
  color:#ffffff;
}

/* Button-Text zuverlässig weiß erzwingen (z.B. CMS Buttons) */
a.btn.btn-primary,
a.btn.btn-primary:link,
a.btn.btn-primary:visited,
a.btn.btn-primary:hover,
a.btn.btn-primary:active,
.btn.btn-primary,
.btn.btn-primary:hover,
.btn.btn-primary:active{
  color:#ffffff !important;
}

/* ---------------------------------------------------------
   Badges/Labels
   --------------------------------------------------------- */
.badge,
.label{
  background:var(--ats-blue);
  color:#fff;
}

/* ---------------------------------------------------------
   Cards
   --------------------------------------------------------- */
.card{ border-color:var(--ats-border); }
.card-title a{ color:var(--ats-text); }
.card-title a:hover{ color:var(--ats-blue-dark); }

/* ---------------------------------------------------------
   JTL Kategorietitel im Result-Wrapper ausblenden
   --------------------------------------------------------- */
#result-wrapper .title > h1.h2{
  display:none !important;
}

/* ---------------------------------------------------------
   CMS-/Well-Blöcke neutralisieren
   --------------------------------------------------------- */
.well,
.link-content,
.link-content .well{
  background:none !important;
  border:none !important;
  box-shadow:none !important;
  padding:0 !important;
}
.link-content{ margin-top:1rem; margin-bottom:2rem; }

/* ---------------------------------------------------------
   Details/Summary – einklappbar, ohne Rahmen
   --------------------------------------------------------- */
.link-content details,
.container details,
details,
details[open]{
  border:none !important;
  background:transparent !important;
  box-shadow:none !important;
  border-radius:0 !important;
  margin:.25rem 0 !important;
  padding:0 !important;
  outline:none !important;
}

summary{
  display:block;
  font-weight:600;
  cursor:pointer;
  padding:4px 0 !important;
  background:transparent !important;
  border:none !important;
  color:var(--ats-blue);
}

/* Standard-Pfeil entfernen + eigenen Pfeil anzeigen */
summary::-webkit-details-marker{ display:none; }
summary::before{
  content:"▸";
  color:var(--ats-blue);
  margin-right:6px;
  transition:transform .2s ease;
}
details[open] summary{ color:#222; }
details[open] summary::before{ transform:rotate(90deg); }

/* Fallback gegen doppelte Marker */
summary{ list-style:none !important; }
details summary{ list-style-type:none !important; }
details summary::-webkit-details-marker,
details summary::marker{
  display:none !important;
  content:none !important;
}

/* ---------------------------------------------------------
   Suchfeld-Optik (nur Styling)
   --------------------------------------------------------- */
@media (min-width:992px){
  .header-search,
  .search-wrapper,
  form[name="suche"],
  form[action*="suche"]{
    width:520px !important;
    max-width:40vw;
  }

  .header-search input[type="text"],
  .search-wrapper input[type="text"],
  form[name="suche"] input[type="text"],
  form[action*="suche"] input[type="text"]{
    height:44px;
    border-radius:999px;
    padding:0 14px;
    border:1px solid var(--ats-border);
    box-shadow:none;
  }

  .header-search button,
  .search-wrapper button,
  form[name="suche"] button,
  form[action*="suche"] button{
    height:44px;
    border-radius:999px;
    padding:0 16px;
    border:1px solid var(--ats-blue);
    background:var(--ats-blue);
    color:#fff;
  }

  .header-search input[type="text"]:focus,
  .search-wrapper input[type="text"]:focus,
  form[name="suche"] input[type="text"]:focus,
  form[action*="suche"] input[type="text"]:focus{
    outline:none;
    border-color:var(--ats-blue);
    box-shadow:0 0 0 3px rgba(0,81,255,.12);
  }

  .header-search button:hover,
  .search-wrapper button:hover,
  form[name="suche"] button:hover,
  form[action*="suche"] button:hover{
    background:var(--ats-blue-dark);
    border-color:var(--ats-blue-dark);
  }
}

.header-search input::placeholder,
.search-wrapper input::placeholder,
form[name="suche"] input::placeholder{
  color:var(--ats-muted);
}

/* ---------------------------------------------------------
   Logo größer NUR auf Desktop (ultra-spezifisch)
   --------------------------------------------------------- */
@media (min-width:992px){
  #jtl-nav-wrapper .toggler-logo-wrapper a.navbar-brand > img#shop-logo,
  #jtl-nav-wrapper #logo a.navbar-brand > img#shop-logo,
  header#jtl-nav-wrapper a.navbar-brand > img#shop-logo{
    height:96px !important;
    max-height:96px !important;
    width:auto !important;
    object-fit:contain;
    display:block;
  }

  #jtl-nav-wrapper a.navbar-brand{
    display:flex !important;
    align-items:center !important;
    min-height:96px !important;
    line-height:1 !important;
    padding:8px 0 !important;
  }
}

/* ---------------------------------------------------------
   Mobile & Tablet Header-Optimierung
   --------------------------------------------------------- */
@media (max-width: 991.98px){
  #jtl-nav-wrapper img#shop-logo,
  header img#shop-logo{
    height:52px !important;
    max-height:52px !important;
    width:auto !important;
    object-fit:contain;
    display:block;
  }

  #jtl-nav-wrapper .navbar-brand,
  header .navbar-brand{
    display:flex !important;
    justify-content:flex-start !important;
    align-items:center !important;
    padding:6px 0 !important;
    margin-left:0 !important;
  }

  .header-search,
  .search-wrapper,
  form[name="suche"],
  form[action*="suche"]{
    margin-top:0.5rem;
  }
}

/* ---------------------------------------------------------
   Sidebar Kategorien
   --------------------------------------------------------- */
.sidebar .nav .active > a,
.sidebar .category-nav .active > a{
  font-weight:600;
  text-decoration:none;
}
.sidebar .category-nav a:hover{ text-decoration:underline; }
.sidebar .category-nav .nav .nav .nav-link{ padding-left:1.25rem; }
.sidebar .category-nav .nav .nav .nav .nav-link{ padding-left:1.75rem; }

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */
.footer-links li,
.footer-contacts li{ margin:.4rem 0; }
.footer-links a{ text-decoration:none; }
.footer-links a:hover,
.footer-links a:focus{ text-decoration:underline; }

#footer .btn-outline-secondary{ width:2rem; height:2rem; padding:0; }
#footer .btn-outline-secondary i{ line-height:2rem; }

/* ---------------------------------------------------------
   Hinweis-Banner
   --------------------------------------------------------- */
.banner-hinweis{
  background-color:#ffeb3b;
  color:#000;
  text-align:center;
  padding:12px 15px;
  font-size:16px;
  font-weight:bold;
  z-index:9999;
}
@media (max-width:768px){
  .banner-hinweis{
    font-size:14px;
    padding:10px 12px;
  }
}

/* ---------------------------------------------------------
   Kategorie Überschriften ATS-Style + Accordions
   --------------------------------------------------------- */
.ats-category-title{
  color:var(--ats-blue);
  font-size:clamp(1.5rem, 2vw, 1.9rem);
  margin:0 0 .75rem 0;
  font-weight:700;
}
.ats-category-intro{
  margin:0 0 .75rem 0;
  font-size:0.98rem;
}

/* Accordion in ATS-Optik */
details.ats-accordion{
  border-top:1px solid var(--ats-border);
  padding:.35rem 0;
  margin:0;
}
details.ats-accordion:last-of-type{
  border-bottom:1px solid var(--ats-border);
}
details.ats-accordion summary{
  list-style:none;
  cursor:pointer;
  font-weight:600;
  font-size:0.98rem;
  color:var(--ats-blue);
  display:flex;
  align-items:center;
  gap:.5rem;
  padding:.15rem 0;
}
details.ats-accordion summary::-webkit-details-marker{ display:none; }
details.ats-accordion[open] summary{ color:var(--ats-blue-dark); }

.ats-accordion-content{
  padding:.25rem 0 .3rem 1.2rem;
  font-size:0.95rem;
}
.ats-accordion-content p{ margin:0 0 .4rem 0; }
.ats-accordion-content ul{
  margin:0 0 .4rem 1.1rem;
  padding:0;
}

/* Einheitliche Pfeile */
details.ats-accordion summary::before{
  content:"▸";
  font-weight:600;
  font-size:1rem;
  line-height:1;
  margin-right:.25rem;
}
details.ats-accordion[open] summary::before{
  content:"▾";
}

/* Oberen Abstand beim ersten Accordion entfernen */
.ats-category-title + details.ats-accordion{
  margin-top:0 !important;
  padding-top:0 !important;
}

/* =========================================================
   ATS Warenkorb-Hinweisbox – FINAL (einmalig)
   ========================================================= */
.ats-cart-help{
  display:block !important;
  background: rgba(0,81,255,.08) !important;
  border: 1px solid var(--ats-border) !important;
  border-left: 6px solid var(--ats-blue) !important;
  padding: 18px 20px !important;
  margin: 10px 0 20px 0 !important;
  border-radius: 14px !important;
  color: var(--ats-text) !important;
  font-size: 15px !important;
  line-height: 1.5 !important;
  max-width: 600px !important; /* finaler Wert */
}

.ats-cart-help strong{
  display:block;
  color: var(--ats-blue) !important;
  font-weight: 700 !important;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.ats-cart-help ul{
  margin: 8px 0 12px 18px !important;
  padding: 0 !important;
}

.ats-cart-help li{
  margin: 4px 0 !important;
}

.ats-cart-help a{
  color: var(--ats-blue) !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

.ats-cart-help a:hover,
.ats-cart-help a:focus{
  color: var(--ats-blue-dark) !important;
  text-decoration: underline !important;
}
/* ATS Cart Help – Actions (Telefon/WhatsApp Buttons) */
.ats-cart-help__note{
  margin-top:8px;
  font-weight:600;
}

.ats-cart-help__actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}

.ats-help-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid var(--ats-border);
  background:#fff;
  text-decoration:none !important;
  font-weight:700;
  line-height:1;
}

.ats-help-btn:hover,
.ats-help-btn:focus{
  border-color:var(--ats-blue);
  text-decoration:none !important;
}

.ats-help-btn--phone{
  color:var(--ats-blue) !important;
}

.ats-help-btn--wa{
  color:var(--ats-blue) !important;
}
.ats-cart-sep{
  display:flex;
  align-items:center;
  font-weight:600;
  margin:0 10px;
  opacity:0.6;
}
.ats-cart-help__whatsapp-info{
  font-size:0.9rem;
  color:#6b7280;
  margin-left:22px;
  margin-top:2px;
}
.order-summary .fa-box,
.order-summary .fa-truck{
margin-right:4px;
}
.ats-product-hints{
margin-top:10px;
font-size:14px;
line-height:1.4;
}

.ats-product-hints div{
margin:4px 0;
}

.ats-product-hints a{
color:#1d5cff;
font-weight:600;
text-decoration:none;
}

.ats-product-hints a:hover{
text-decoration:underline;
}

.ats-product-hints-small{
font-size:13px;
color:#6b7280;
}
.ats-product-hints{
margin-top:10px;
font-size:14px;
line-height:1.5;
}

.ats-line{
margin:4px 0;
}

.ats-product-hints a{
color:#1d5cff;
font-weight:600;
text-decoration:none;
}

.ats-product-hints a:hover{
text-decoration:underline;
}

.ats-small{
font-size:13px;
color:#6b7280;
margin-top:2px;
}
.banner-umzug img {
    max-height: 240px;
    width: 100%;
    object-fit: cover;
}
/* SALE-Sticker rund und pink */
.ribbon-sale,
.ribbon-2,
.badge.badge-danger {
    background: #e6007e !important;
    color: #fff !important;
    border-radius: 50% !important;
    width: 80px !important;
    height: 80px !important;
    line-height: 80px !important;
    text-align: center !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    padding: 0 !important;
}
/* =========================================================
   ATS Infoblock Startseite
   ========================================================= */
.ats-info-block{
  max-width:1320px !important;
  margin:34px auto 28px !important;
  padding:0 20px !important;
  font-family:Arial,Helvetica,sans-serif !important;
  box-sizing:border-box !important;
  overflow:visible !important;
}

.ats-info-inner{
  border-top:1px solid #dcdcdc !important;
  border-bottom:1px solid #dcdcdc !important;
  padding:32px 0 !important;
  box-sizing:border-box !important;
}

.ats-info-grid{
  display:grid !important;
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:0 !important;
  width:100% !important;
  box-sizing:border-box !important;
}

.ats-info-col{
  min-width:0 !important;
  padding:0 34px !important;
  border-right:1px solid #dcdcdc !important;
  box-sizing:border-box !important;
}

.ats-info-col:last-child{
  border-right:none !important;
}

.ats-info-icon{
  color:#2454ff !important;
  margin-bottom:14px !important;
}

.ats-info-col h3{
  margin:0 0 12px !important;
  font-size:21px !important;
  line-height:1.3 !important;
  color:#222 !important;
  font-weight:700 !important;
}

.ats-info-col p{
  margin:0 !important;
  font-size:15.5px !important;
  line-height:1.65 !important;
  color:#555 !important;
}

.ats-info-col a{
  color:#2454ff !important;
  text-decoration:none !important;
}

.ats-info-col a:hover,
.ats-info-col a:focus{
  text-decoration:underline !important;
}

/* Tablet: bei wenig Platz sauber untereinander */
@media (max-width:991.98px){
  .ats-info-grid{
    display:block !important;
    width:100% !important;
  }

  .ats-info-col{
    display:block !important;
    width:100% !important;
    max-width:100% !important;
    padding:24px 8px !important;
    border-right:none !important;
    border-bottom:1px solid #dcdcdc !important;
  }

  .ats-info-col:last-child{
    border-bottom:none !important;
  }
}

/* Smartphone */
@media (max-width:575.98px){
  .ats-info-block{
    width:100% !important;
    max-width:100% !important;
    margin:24px auto !important;
    padding:0 14px !important;
    box-sizing:border-box !important;
    overflow:hidden !important;
  }

  .ats-info-inner{
    width:100% !important;
    padding:12px 0 !important;
    box-sizing:border-box !important;
  }

  .ats-info-col{
    padding:22px 0 !important;
  }

  .ats-info-col h3{
    font-size:20px !important;
  }

  .ats-info-col p{
    font-size:15px !important;
    line-height:1.6 !important;
  }
}

/* NOVA setzt zusätzlich data-viewport am body – als Sicherheitsnetz */
body[data-viewport="xs"] .ats-info-grid,
body[data-viewport="sm"] .ats-info-grid{
  display:block !important;
  width:100% !important;
}

body[data-viewport="xs"] .ats-info-col,
body[data-viewport="sm"] .ats-info-col{
  display:block !important;
  width:100% !important;
  max-width:100% !important;
  padding:22px 0 !important;
  border-right:none !important;
  border-bottom:1px solid #dcdcdc !important;
  box-sizing:border-box !important;
}

body[data-viewport="xs"] .ats-info-col:last-child,
body[data-viewport="sm"] .ats-info-col:last-child{
  border-bottom:none !important;
}
/* ATS Infoblock – Mobile Feinschliff */
@media (max-width: 767px){

    .ats-info-block{
        margin: 18px auto 22px !important;
        padding: 0 14px !important;
    }

    .ats-info-inner{
        padding: 6px 0 !important;
        border-top: 1px solid #dcdcdc !important;
        border-bottom: 1px solid #dcdcdc !important;
    }

    .ats-info-grid{
        display: block !important;
    }

    .ats-info-col{
        width: 100% !important;
        padding: 24px 0 26px !important;
        border-right: none !important;
        border-bottom: none !important;
    }

    .ats-info-col + .ats-info-col{
        margin-top: 4px !important;
    }

    .ats-info-icon{
        margin-bottom: 10px !important;
    }

    .ats-info-icon svg{
        width: 36px !important;
        height: 36px !important;
    }

    .ats-info-col h3{
        font-size: 21px !important;
        line-height: 1.25 !important;
        margin: 0 0 12px !important;
    }

    .ats-info-col p{
        font-size: 15.5px !important;
        line-height: 1.6 !important;
    }
}
/* =========================================================
   ATS Startseite – Beliebte Kategorien
   ========================================================= */

.ats-top-categories{
  max-width:1320px;
  margin:38px auto 50px;
  padding:38px 20px 46px;
  border-top:1px solid var(--ats-border);
  border-bottom:1px solid var(--ats-border);
  font-family:Arial,Helvetica,sans-serif;
}

.ats-top-categories-head{
  text-align:center;
  margin-bottom:28px;
}

.ats-top-categories-head h2{
  margin:0 0 7px;
  color:var(--ats-blue);
  font-size:26px;
  line-height:1.2;
  font-weight:800;
}

.ats-top-categories-head p{
  margin:0;
  color:var(--ats-muted);
  font-size:16px;
}

.ats-top-categories-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:22px;
}

.ats-top-category-card{
  display:flex;
  flex-direction:column;
  min-height:340px;
  overflow:hidden;
  border:1px solid var(--ats-border);
  border-radius:18px;
  background:#fff;
  color:var(--ats-text);
  text-decoration:none !important;
  box-shadow:0 8px 22px rgba(0,0,0,.055);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.ats-top-category-card:hover{
  transform:translateY(-4px);
  border-color:var(--ats-blue);
  box-shadow:0 14px 32px rgba(0,81,255,.15);
  color:var(--ats-text);
  text-decoration:none !important;
}

.ats-top-category-image{
  height:165px;
  padding:18px 18px 8px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fafbff;
}

.ats-top-category-image img{
  max-width:100%;
  max-height:150px;
  object-fit:contain;
  transition:transform .18s ease;
}

.ats-top-category-card:hover .ats-top-category-image img{
  transform:scale(1.045);
}

.ats-top-category-content{
  padding:22px 20px 24px;
  display:flex;
  flex-direction:column;
  flex:1;
}

.ats-top-category-content h3{
  margin:0 0 10px;
  color:#202020;
  font-size:20px;
  line-height:1.25;
  font-weight:800;
}

.ats-top-category-content p{
  margin:0 0 18px;
  color:#555;
  font-size:15.5px;
  line-height:1.45;
}

.ats-top-category-content span{
  margin-top:auto;
  color:var(--ats-blue);
  font-size:15.5px;
  font-weight:700;
  transition:transform .18s ease;
}

.ats-top-category-card:hover span{
  transform:translateX(4px);
}

@media (max-width:1199.98px){
  .ats-top-categories-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:767.98px){
  .ats-top-categories{
    margin:30px auto 40px;
    padding:30px 14px 38px;
  }

  .ats-top-categories-head h2{
    font-size:24px;
  }

  .ats-top-categories-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .ats-top-category-card{
    min-height:auto;
  }

  .ats-top-category-image{
    height:160px;
  }

  .ats-top-category-image img{
    max-height:135px;
  }
}
/* =========================================================
   ATS Startseite – moderne Accordions
   ========================================================= */

.ats-home-accordions{
  max-width:1320px;
  margin:28px auto 42px;
  padding:0 20px;
  font-family:Arial,Helvetica,sans-serif;
}

.ats-home-accordions details{
  border:1px solid var(--ats-border) !important;
  border-radius:14px !important;
  background:#fff !important;
  box-shadow:0 6px 18px rgba(0,0,0,.04) !important;
  margin:0 0 12px !important;
  overflow:hidden;
}

.ats-home-accordions summary{
  padding:17px 20px !important;
  color:var(--ats-blue) !important;
  font-size:17px;
  font-weight:800;
  cursor:pointer;
}

.ats-home-accordions details[open] summary{
  color:#222 !important;
  border-bottom:1px solid var(--ats-border);
}

.ats-home-accordions details p,
.ats-home-accordions details ul{
  margin:16px 20px !important;
  color:#444;
  font-size:15.5px;
  line-height:1.6;
}

.ats-home-accordions a{
  color:var(--ats-blue);
  font-weight:600;
}

.seo-startseite{
  max-width:1320px;
  margin:34px auto 44px;
  padding:0 20px;
}

.seo-startseite h2{
  color:#222;
  font-size:28px;
  font-weight:800;
}

.seo-startseite h3{
  color:#222;
  font-size:20px;
  font-weight:800;
  margin-top:24px;
}
/* =========================================================
   ATS Startseite – Bewertungsbox
   ========================================================= */

.ats-review-final{
  max-width:1320px;
  margin:38px auto 46px;
  padding:28px;
  display:grid;
  grid-template-columns:1.4fr .9fr .9fr;
  gap:24px;
  align-items:center;
  border:1px solid var(--ats-border);
  border-radius:18px;
  background:#fff;
  box-shadow:0 8px 24px rgba(0,0,0,.055);
  font-family:Arial,Helvetica,sans-serif;
}

.ats-review-final-label{
  color:var(--ats-blue);
  font-weight:800;
  margin-bottom:6px;
}

.ats-review-final-main h2{
  margin:0 0 8px;
  font-size:24px;
  font-weight:800;
  color:#222;
}

.ats-review-final-stars{
  color:var(--ats-blue);
  font-size:28px;
  letter-spacing:3px;
  margin-bottom:16px;
}

.ats-review-final-main p{
  margin:0;
  color:#555;
  font-size:15.5px;
}

.ats-review-final-actions{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:12px;
  width:100%;
  max-width:360px;
  margin:0 auto;
}

.ats-review-final-actions a{
  display:block;
  width:100%;
  padding:14px 20px;
  border-radius:10px;
  font-weight:700;
  text-align:center;
  text-decoration:none !important;
  transition:.2s ease;
  box-sizing:border-box;
}

.ats-review-final-actions a:first-child{
  background:var(--ats-blue);
  color:#fff !important;
}

.ats-review-final-actions a:first-child:hover{
  background:var(--ats-blue-dark);
}

.ats-review-final-actions a:last-child{
  border:1px solid var(--ats-border);
  background:#fff;
  color:var(--ats-blue) !important;
}

.ats-review-final-actions a:last-child:hover{
  background:#f7f9ff;
}

.ats-review-final-trusted{
  padding:18px 20px;
  border-radius:14px;
  background:#fafbff;
  border:1px solid var(--ats-border);
}

.ats-review-final-trusted strong,
.ats-review-final-trusted span{
  display:block;
  margin-bottom:6px;
}

.ats-review-final-trusted a{
  color:var(--ats-blue) !important;
  font-weight:800;
  text-decoration:none !important;
}

@media (max-width:991.98px){
  .ats-review-final{
    grid-template-columns:1fr;
  }
}

@media (max-width:575.98px){
  .ats-review-final{
    margin:28px 14px 38px;
    padding:22px 18px;
  }

  .ats-review-final-main h2{
    font-size:16px;
    line-height:1.25;
  }
}
.ats-coupling-fixings{
    margin-top:48px;
    color:#1f2937;
}

.ats-coupling-fixings__header{
    margin-bottom:24px;
}

.ats-coupling-fixings__header h2{
    margin:0 0 12px;
    color:var(--ats-blue, #0051ff);
    font-size:2rem;
    line-height:1.2;
}

.ats-coupling-fixings__header p{
    max-width:1050px;
    margin:0;
    line-height:1.65;
}

.ats-coupling-fixings__grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:24px;
}

.ats-coupling-fixings__card{
    padding:28px 30px;
    border:1px solid #dfe4ff;
    border-left:5px solid var(--ats-blue, #0051ff);
    border-radius:16px;
    background:#f8f9ff;
}

.ats-coupling-fixings__card h2{
    margin:0 0 18px;
    color:var(--ats-blue, #0051ff);
    font-size:1.55rem;
    line-height:1.25;
}

.ats-coupling-fixings__card p{
    margin:0 0 16px;
    line-height:1.65;
}

.ats-coupling-fixings__sizes{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin:22px 0;
}

.ats-coupling-fixings__size{
    display:flex;
    justify-content:space-between;
    gap:20px;
    padding:13px 15px;
    border:1px solid #e5e7eb;
    border-radius:10px;
    background:#fff;
}

.ats-coupling-fixings__size span{
    text-align:right;
}

.ats-coupling-fixings__small{
    margin-bottom:0 !important;
    font-size:.95rem;
}

.ats-coupling-fixings__checklist{
    margin:18px 0 22px;
    padding:0;
    list-style:none;
}

.ats-coupling-fixings__checklist li{
    position:relative;
    margin-bottom:12px;
    padding-left:32px;
    line-height:1.55;
}

.ats-coupling-fixings__checklist li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:-2px;
    color:var(--ats-blue, #0051ff);
    font-size:1.4rem;
    font-weight:800;
}

.ats-coupling-fixings__notice{
    margin-top:24px;
    padding:20px 24px;
    border:1px solid #e5e7eb;
    border-radius:14px;
    background:#fff;
}

.ats-coupling-fixings__notice strong{
    display:block;
    margin-bottom:6px;
    color:var(--ats-blue, #0051ff);
    font-size:1.1rem;
}

.ats-coupling-fixings__notice p{
    margin:0;
    line-height:1.6;
}

@media (max-width:850px){
    .ats-coupling-fixings{
        margin-top:32px;
    }

    .ats-coupling-fixings__grid{
        grid-template-columns:1fr;
    }

    .ats-coupling-fixings__header h2{
        font-size:1.7rem;
    }

    .ats-coupling-fixings__card{
        padding:22px 20px;
    }

    .ats-coupling-fixings__size{
        flex-direction:column;
        gap:3px;
    }

    .ats-coupling-fixings__size span{
        text-align:left;
    }
}
#gallery .square-image .inner,
#gallery_preview .square-image .inner {
    top: 0 !important;
    left: 0 !important;
}