/*
Theme Name: Shirt Werk
Theme URI: https://shirt-werk.com
Author: Shirt Werk â Textildruck Ahrensburg
Description: 1:1 WordPress-Nachbau der Hostinger-Website. WooCommerce-ready.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: shirt-werk
Tags: custom-menu, custom-logo, woocommerce
*/

/* =============================================
   EXAKTE CI-FARBEN AUS DEM QUELLCODE
   Quelle: shirtwerk.eu (April 2026)
   ============================================= */
:root {
  /* PrimÃ¤rfarben â direkt aus inline styles extrahiert */
  --sw-blue:        rgb(85, 115, 142);   /* #55738e â Hauptfarbe Text, Header, Karten */
  --sw-red:         rgb(253, 87, 87);    /* #fd5757 â CTAs, Buttons, Akzente */
  --sw-white:       #ffffff;
  --sw-card-bg:     rgb(214, 222, 232);  /* Kartenfarbe, Footer-Hintergrund */
  --sw-page-bg:     #ffffff;

  /* Typografie â exakt aus Quellcode */
  --sw-font:        'Catamaran', 'Nunito Sans', sans-serif;
  --sw-h1-size:     64px;
  --sw-h2-size:     64px;
  --sw-h3-size:     48px;
  --sw-h5-size:     32px;
  --sw-body-size:   16px;
  --sw-body-large:  18px;
  --sw-body-weight: 300;

  /* Button â aus inline style extrahiert */
  --sw-btn-radius:  28px;          /* border-radius aus "Jetzt Anfragen" Button */
  --sw-btn-bg:      rgb(253, 87, 87);
  --sw-btn-hover:   rgb(0, 0, 0);  /* backgroundColorHover aus Quellcode */
  --sw-btn-font:    'Inter', sans-serif;
  --sw-btn-weight:  500;

  /* AbstÃ¤nde */
  --sw-max-width:   1224px;        /* width aus Block-Settings */
  --sw-section-pad: 40px 0;

  --sw-shadow:      0px 20px 25px -5px rgba(0,0,0,0.1), 0px 8px 10px -6px rgba(0,0,0,0.1);
  --sw-radius-card: 12px;
  --sw-transition:  0.2s ease;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sw-font);
  font-weight: var(--sw-body-weight);
  font-size: var(--sw-body-size);
  line-height: 1.5em;
  color: var(--sw-blue);
  background: var(--sw-page-bg);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sw-red); text-decoration: none; transition: opacity var(--sw-transition); }
a:hover { opacity: 0.75; }
ul { list-style: none; }

/* =============================================
   TYPOGRAFIE â exakt aus Quellcode
   ============================================= */
h1 {
  font-family: var(--sw-font);
  font-size: var(--sw-h1-size);
  font-weight: 700;
  line-height: 1.3em;
  color: var(--sw-blue);
}
h2 {
  font-family: var(--sw-font);
  font-size: var(--sw-h2-size);
  font-weight: 700;
  line-height: 1.3em;
  color: var(--sw-blue);
}
h3 {
  font-family: var(--sw-font);
  font-size: var(--sw-h3-size);
  font-weight: 700;
  line-height: 1.3em;
  color: var(--sw-blue);
}
h5 {
  font-family: var(--sw-font);
  font-size: var(--sw-h5-size);
  font-weight: 700;
  line-height: 1.3em;
  color: var(--sw-blue);
}
h6 {
  font-family: var(--sw-font);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3em;
  color: var(--sw-blue);
}
p { line-height: 1.5em; }
p.body-large { font-size: var(--sw-body-large); font-weight: 300; }
p.body       { font-size: var(--sw-body-size);  font-weight: 300; }

.text-red { color: var(--sw-red) !important; }
.fw-700   { font-weight: 700; }
.fw-800   { font-weight: 800; }

/* Mobile type scaling */
@media (max-width: 768px) {
  h1 { font-size: 40px; }
  h2 { font-size: 36px; }
  h3 { font-size: 32px; }
  h5 { font-size: 24px; }
}

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: var(--sw-max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--sw-section-pad); }

/* =============================================
   HEADER â background-color: rgb(85, 115, 142)
   nav links: white, hover: rgb(253, 87, 87)
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--sw-blue);
  padding: 25px 16px;
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-logo img {
  height: 66px;      /* m-logo-width: 66px */
  width: auto;
  max-width: 199px;  /* logo-width: 199px */
}
@media (min-width: 769px) {
  .site-logo img { height: 80px; }
}

/* Nav links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 35px; /* link-spacing: 35px */
}
.nav-menu a {
  font-family: var(--sw-font);
  font-size: 24px;  /* nav-link font-size: 24px */
  font-weight: 400;
  color: rgb(255, 255, 255);  /* navLinkTextColor */
  transition: color var(--sw-transition);
  white-space: nowrap;
}
.nav-menu a:hover,
.nav-menu a.current-menu-item {
  color: rgb(253, 87, 87);  /* navLinkTextColorHover */
  opacity: 1;
}

/* Cart icon */
.nav-cart { color: white; cursor: pointer; }
.nav-cart svg { display: block; }

/* Mobile hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--sw-white);
}
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--sw-blue);
    flex-direction: column;
    align-items: flex-end;
    padding: 16px 24px;
    gap: 0;
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu a { padding: 12px 0; font-size: 16px; /* m-font-size: 16px */ }
}

/* =============================================
   BUTTONS â border-radius: 28px (pill), fd5757
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--sw-btn-font);
  font-weight: var(--sw-btn-weight);
  font-size: 16px;
  line-height: 1.4;
  text-decoration: none;
  border: none;
  border-radius: var(--sw-btn-radius);
  cursor: pointer;
  transition: background-color var(--sw-transition);
  white-space: nowrap;
}
.btn--primary {
  background-color: var(--sw-btn-bg);
  color: #ffffff;
}
.btn--primary:hover {
  background-color: var(--sw-btn-hover);
  color: #ffffff;
  opacity: 1;
}
.btn--secondary {
  background-color: #ffffff;
  color: #000000;
}
.btn--secondary:hover { background-color: rgb(240, 240, 240); opacity: 1; }

/* =============================================
   FEATURES SECTION â white background, 3 Spalten
   ============================================= */
.features-section {
  background: var(--sw-page-bg);
  padding: 48px 0;
}
.features-inner {
  max-width: var(--sw-max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.feature-icon {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 4px;
}
.feature-item h6 {
  color: var(--sw-blue);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}
.feature-item p {
  color: var(--sw-blue);
  font-size: 16px;
  font-weight: 300;
  margin: 0;
}
@media (max-width: 768px) {
  .features-inner { grid-template-columns: 1fr; gap: 24px; }
}

/* =============================================
   HERO SECTION â white background
   ============================================= */
.hero-section {
  background: var(--sw-page-bg);
  padding: 40px 0;
}
.hero-inner {
  max-width: var(--sw-max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid !important;
  grid-template-columns: 1fr 480px !important;
  gap: 64px;
  align-items: center;
  min-height: 538px;
}
/* Verhindert Plugin-Ãberschreibungen */
.hero-section .hero-inner,
body .hero-inner {
  display: grid !important;
  grid-template-columns: 1fr 480px !important;
}
.hero-headline { margin-bottom: 30px; }
.hero-headline h1 { font-weight: 800; color: var(--sw-blue); margin-bottom: 0; }
.hero-headline h2 { color: var(--sw-red); font-weight: 700; }
.hero-subtext {
  font-size: 18px;
  font-weight: 300;
  color: var(--sw-blue);
  margin-bottom: 32px;
  max-width: 503px;
}
.hero-image {
  border-radius: 12px;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
}

/* =============================================
   USP STRIP â background: rgb(85, 115, 142)
   3 Feature-Kacheln
   ============================================= */
.usp-strip {
  background-color: var(--sw-blue);
  padding: 40px 0;
}
.usp-cards {
  max-width: var(--sw-max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.usp-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}
.usp-card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.usp-card-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.usp-card h5 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}
.usp-card p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  font-weight: 300;
  margin: 0;
}
@media (max-width: 768px) {
  .usp-cards { grid-template-columns: 1fr; gap: 24px; }
}
/* Legacy â falls alte img-Klasse noch referenziert wird */
.usp-strip-inner img {
  width: 100%;
  height: 155px;
  object-fit: cover;
}
@media (max-width: 600px) {
  .usp-strip-inner { grid-template-columns: 1fr; }
}

/* =============================================
   HOW IT WORKS â white background
   ============================================= */
.how-section {
  background: var(--sw-page-bg);
  padding: 40px 0;
}
.how-inner {
  max-width: var(--sw-max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.how-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--sw-red);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.how-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--sw-blue);
  margin-bottom: 40px;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.how-step { }
.how-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--sw-red);
  color: white;
  font-family: var(--sw-font);
  font-weight: 700;
  font-size: 18px;
  border-radius: 25px;  /* circular â matches btn style */
  margin-bottom: 16px;
}
.how-step h5 { color: var(--sw-blue); margin-bottom: 8px; }
.how-step p  { color: var(--sw-blue); font-size: 16px; font-weight: 300; }
.how-cta { text-align: center; }
@media (max-width: 768px) {
  .how-steps { grid-template-columns: 1fr 1fr; }
  .how-title { font-size: 32px; }
}
@media (max-width: 480px) {
  .how-steps { grid-template-columns: 1fr; }
}

/* =============================================
   WAS WIR ANBIETEN â Shirts & Accessoires Seite
   WeiÃer Hintergrund, 4 Produktkarten
   ============================================= */
.what-section {
  background: var(--sw-page-bg);
  padding: 40px 0 64px;
}
.what-inner {
  max-width: var(--sw-max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.what-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--sw-red);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.what-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--sw-blue);
  margin-bottom: 40px;
}
.what-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .what-grid { grid-template-columns: repeat(2, 1fr); }
  .what-title { font-size: 36px; }
}
@media (max-width: 600px) {
  .what-grid { grid-template-columns: 1fr; }
  .what-title { font-size: 28px; }
}

/* =============================================
   FEATURE CARDS â background: rgb(214, 222, 232)
   border-radius: 12px, shadow
   ============================================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .cards-grid { grid-template-columns: 1fr; }
}
.feature-card {
  background: var(--sw-card-bg);
  border: 1px solid rgb(0, 0, 0);
  border-radius: var(--sw-radius-card);
  box-shadow: var(--sw-shadow);
  padding: 32px 24px;
  transition: transform var(--sw-transition);
}
.feature-card:hover { transform: translateY(-4px); }
.feature-card .icon { font-size: 2rem; margin-bottom: 12px; }
.feature-card h3 {
  font-size: 24px;
  color: var(--sw-blue);
  margin-bottom: 8px;
}
.feature-card p { color: var(--sw-blue); font-size: 16px; font-weight: 300; }

/* Product card with image */
.product-card {
  background: var(--sw-card-bg);
  border: 1px solid rgb(0, 0, 0);
  border-radius: var(--sw-radius-card);
  box-shadow: var(--sw-shadow);
  overflow: hidden;
}
.product-card-img {
  width: 100%;
  height: 265px;
  object-fit: cover;
}
.product-card-body { padding: 20px 20px 24px; }
.product-card-body h3 {
  font-size: 24px;
  color: var(--sw-blue);
  margin-bottom: 6px;
}
.product-card-body p { color: var(--sw-blue); font-size: 16px; font-weight: 300; }

/* =============================================
   HOW-IT-WORKS (BLAUER HINTERGRUND)
   = auf Shirts & Accessoires und FÃ¼r wen?
   background: rgb(85, 115, 142), text: white
   ============================================= */
.how-section--blue {
  background-color: var(--sw-blue);
  padding: 40px 0;
}
.how-section--blue .how-label { color: var(--sw-red); }
.how-section--blue .how-title { color: white; font-weight: 800; }
.how-section--blue .how-step h5 { color: white; }
.how-section--blue .how-step p  { color: white; }

/* =============================================
   SUSTAINABILITY SECTION â white background
   ============================================= */
.sustainability-section {
  background: var(--sw-page-bg);
  padding: 40px 0;
}
.sustainability-grid {
  max-width: var(--sw-max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.sustainability-text h3 { color: var(--sw-blue); margin-bottom: 24px; }
.sustainability-text p  { color: var(--sw-blue); font-size: 18px; font-weight: 300; margin-bottom: 16px; }
.sustainability-text ul { margin-top: 16px; }
.sustainability-text li { margin-bottom: 12px; color: var(--sw-blue); font-size: 18px; font-weight: 300; }
.sustainability-text strong { font-weight: 700; }
.sustainability-img {
  border-radius: 20px;
  overflow: hidden;
}
.sustainability-img img { width: 100%; object-fit: cover; border-radius: 20px; }
@media (max-width: 768px) {
  .sustainability-grid { grid-template-columns: 1fr; }
}

/* =============================================
   PAGE HEADER (Unterseiten)
   ============================================= */
.page-header-section {
  background: var(--sw-page-bg);
  padding: 40px 0;
}
.page-header-inner {
  max-width: var(--sw-max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: center;
  min-height: 303px;
}
.page-header-content h1 { margin-bottom: 20px; }
.page-header-content p  { font-size: 18px; font-weight: 300; color: var(--sw-blue); margin-bottom: 32px; max-width: 503px; }
.page-header-image {
  border-radius: 12px;
  overflow: hidden;
}
.page-header-image img { width: 100%; height: 336px; object-fit: cover; border-radius: 12px; }
@media (max-width: 900px) {
  .page-header-inner { grid-template-columns: 1fr; }
  .page-header-image { display: none; }
}

/* =============================================
   FOOTER â background: rgb(214, 222, 232)
   Text: rgb(85, 115, 142)
   ============================================= */
.site-footer {
  background-color: var(--sw-card-bg);
  padding: 60px 16px;
}
.footer-inner {
  max-width: var(--sw-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 120px 1fr auto auto;
  gap: 48px;
  align-items: start;
}
.footer-logo img { height: 124px; width: auto; }
.footer-tagline {
  color: var(--sw-blue);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  margin-top: 16px;
}
.footer-col h6 {
  color: var(--sw-blue);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}
.footer-col a {
  display: block;
  color: var(--sw-blue);
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 8px;
  text-decoration: none;
}
.footer-col a:hover { color: var(--sw-red); opacity: 1; }
.footer-social a {
  color: rgb(0, 0, 0);
  display: inline-block;
}
.footer-social a:hover { color: rgb(58, 58, 58); opacity: 1; }
.footer-social svg { width: 45px; height: 45px; }
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-section {
  background: var(--sw-page-bg);
  padding: 64px 0;
}
.contact-inner {
  max-width: var(--sw-max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.contact-inner h1 { margin-bottom: 8px; color: var(--sw-blue); }
.contact-inner > p { font-size: 18px; font-weight: 300; color: var(--sw-blue); margin-bottom: 48px; }

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.contact-form .form-group { margin-bottom: 16px; }
.contact-form label {
  display: block;
  font-weight: 700;
  color: var(--sw-blue);
  margin-bottom: 6px;
  font-size: 16px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: var(--sw-font);
  font-size: 16px;
  font-weight: 300;
  color: var(--sw-blue);
  background: white;
  transition: border-color var(--sw-transition);
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--sw-blue); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-info {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-info a { color: var(--sw-blue); font-weight: 300; }
.contact-info a:hover { color: var(--sw-red); opacity: 1; }
@media (max-width: 600px) {
  .contact-form .form-row { grid-template-columns: 1fr; }
}

/* =============================================
   ÃBER UNS â weiÃer Hintergrund, FlieÃtext
   ============================================= */
.about-section {
  background: var(--sw-page-bg);
  padding: 48px 0 80px;
}
.about-inner {
  max-width: var(--sw-max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.about-inner h1 {
  font-weight: 800;
  color: var(--sw-blue);
  margin-bottom: 40px;
}
.about-content {
  max-width: 820px;
}
.about-content p {
  font-size: 16px;
  font-weight: 300;
  color: var(--sw-blue);
  line-height: 1.7em;
  margin-bottom: 16px;
}
.about-content p.body-large {
  font-size: 18px;
  margin-bottom: 8px;
}
.about-content strong {
  font-weight: 700;
  display: block;
  margin-top: 24px;
  margin-bottom: 4px;
}
.about-content a {
  color: var(--sw-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.about-content a:hover { color: var(--sw-red); opacity: 1; }
.about-salty-logo {
  margin: 24px 0 32px;
}
.about-salty-logo img {
  height: 60px;
  width: auto;
}
.about-content--centered {
  text-align: center;
  max-width: 560px;
}

/* =============================================
   WOOCOMMERCE OVERRIDES
   ============================================= */
.woocommerce-wrapper {
  padding: 48px 0;
  max-width: var(--sw-max-width);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.woocommerce ul.products li.product {
  background: var(--sw-card-bg);
  border: 1px solid rgb(0,0,0);
  border-radius: var(--sw-radius-card);
  box-shadow: var(--sw-shadow);
  overflow: hidden;
  transition: transform var(--sw-transition);
}
.woocommerce ul.products li.product:hover { transform: translateY(-4px); }
.woocommerce ul.products li.product img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--sw-font) !important;
  font-weight: 700 !important;
  color: var(--sw-blue) !important;
  font-size: 24px !important;
  padding: 16px 16px 4px !important;
}
.woocommerce ul.products li.product .price {
  color: var(--sw-red) !important;
  font-weight: 700 !important;
  padding: 0 16px 16px !important;
  font-size: 1.1rem !important;
}
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input[type="submit"] {
  background-color: var(--sw-btn-bg) !important;
  color: white !important;
  font-family: var(--sw-btn-font) !important;
  font-weight: var(--sw-btn-weight) !important;
  border-radius: var(--sw-btn-radius) !important;
  border: none !important;
  padding: 14px 32px !important;
  font-size: 16px !important;
  transition: background-color var(--sw-transition) !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background-color: var(--sw-btn-hover) !important;
}
.woocommerce div.product .product_title {
  font-family: var(--sw-font) !important;
  font-weight: 700 !important;
  color: var(--sw-blue) !important;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--sw-red) !important;
  font-weight: 700 !important;
  font-size: 1.8rem !important;
}

/* =============================================
   WOOCOMMERCE PRODUKTSEITE
   ============================================= */

/* Tabs komplett ausblenden â Beschreibung direkt anzeigen */
.woocommerce div.product .woocommerce-tabs ul.tabs,
.woocommerce div.product .woocommerce-tabs ul.tabs li,
.woocommerce #tab-reviews,
.woocommerce #reviews,
.woocommerce .woocommerce-tabs .panel:not(#tab-description) {
  display: none !important;
}

/* Tab-Panel Beschreibung direkt sichtbar, kein Tab-Rahmen */
.woocommerce div.product .woocommerce-tabs {
  border: none !important;
  padding: 0 !important;
  margin-top: 40px !important;
}
.woocommerce div.product .woocommerce-tabs #tab-description {
  display: block !important;
  border: none !important;
  padding: 0 !important;
}

/* Beschreibungstext prominent */
.woocommerce div.product .woocommerce-tabs #tab-description h2 {
  display: none !important; /* "Beschreibung" Ãberschrift ausblenden */
}
.woocommerce div.product .woocommerce-tabs #tab-description p,
.woocommerce div.product .woocommerce-tabs #tab-description li {
  font-size: 18px !important;
  font-weight: 300 !important;
  color: var(--sw-blue) !important;
  line-height: 1.8em !important;
  margin-bottom: 16px !important;
}
.woocommerce div.product .woocommerce-tabs #tab-description strong {
  font-weight: 700 !important;
  color: var(--sw-blue) !important;
}

/* Produkttitel groÃ & blau */
.woocommerce div.product .product_title {
  font-size: 48px !important;
  font-weight: 800 !important;
  color: var(--sw-blue) !important;
  line-height: 1.2 !important;
  margin-bottom: 16px !important;
}

/* Bewertungen-Link ausblenden */
.woocommerce div.product .woocommerce-review-link,
.woocommerce div.product p.stars,
.woocommerce div.product .woocommerce-product-rating {
  display: none !important;
}

/* =============================================
   RESPONSIVE UTILITIES
   ============================================= */
@media (max-width: 768px) {
  :root {
    --sw-h1-size: 40px;
    --sw-h2-size: 36px;
    --sw-h3-size: 32px;
    --sw-h5-size: 24px;
  }
  .section { padding: 40px 0; }
}
