/*
Theme Name: Wutte (1:1)
Theme URI: https://www.weingut-wutte.at/
Author: Generated package
Description: 1:1 Umsetzung der gelieferten Startseite als standalone WordPress Theme ohne Pflicht-Plugin.
Version: 2.0.2
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: wutte
*/

/* === Base Styles (aus der gelieferten HTML-Startseite) === */
:root{
      color-scheme: light;
      --bg:#f8f7f4;
      --fg:#1a1a1a;
      --muted:#4a4a4a;
      --accent:#3f4d27;
      --accent-2:#c6d08e;
      --card:#ffffff;
      --pill-bg:#e6ead3;
      --pill-fg:#3f4d27;
      --danger:#aa0000;
      --footer-bg:#000;
      --footer-fg:#ccc;
      --footer-head:#fff;
      --footer-border:#2a2a2a;
    }
    @media (prefers-color-scheme: dark){
      :root{
        --bg:#111;
        --fg:#f8f7f4;
        --card:#1a1a1a;
        --muted:#bdbdbd;
        --accent:#c6d08e;
        --accent-2:#3f4d27;
        --pill-bg:#3f4d27;
        --pill-fg:#c6d08e;
        --footer-bg:#000;
        --footer-fg:#ccc;
        --footer-head:#fff;
        --footer-border:#2a2a2a;
      }
    }

    *{box-sizing:border-box}
    html{max-width:100%;overflow-x:hidden;}
    body{max-width:100%;overflow-x:hidden;}
    html,body{
      margin:0;
      padding:0;
      font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Arial, sans-serif;
      color:var(--fg);
      background:var(--bg)
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block;height:auto}
    .container{width:min(1100px, 92vw);margin-inline:auto}
    .visually-hidden{
      position:absolute!important;
      width:1px;height:1px;
      padding:0;margin:-1px;overflow:hidden;
      clip:rect(0 0 0 0);white-space:nowrap;border:0;
    }
    :focus-visible{
      outline:3px solid var(--accent);
      outline-offset:2px;
      border-radius:inherit;
    }
    @media (prefers-reduced-motion: reduce){
      *{transition:none!important;scroll-behavior:auto!important}
    }
    @media (prefers-reduced-motion: no-preference){
      html{scroll-behavior:smooth}
    }

    /* Utility-Klassen */
    .flex{display:flex;}
    .inline-flex{display:inline-flex;}
    .flex-wrap{flex-wrap:wrap;}
    .gap-6{gap:6px;}
    .gap-8{gap:8px;}
    .gap-10{gap:10px;}
    .justify-start{justify-content:flex-start;}
    .justify-between{justify-content:space-between;}
    .w-full{width:100%;}
    .block{display:block;}
    .inline-block{display:inline-block;}
    .text-left{text-align:left;}
    .text-right{text-align:right;}
    .text-muted{color:var(--muted);}
    .mt-4{margin-top:4px;}
    .mt-6{margin-top:6px;}
    .mt-8{margin-top:8px;}
    .mt-10{margin-top:10px;}
    .mt-12{margin-top:12px;}
    .mt-16{margin-top:16px;}
    .mb-0{margin-bottom:0;}
    .items-start{align-items:flex-start;}

    .form-input,
    .form-textarea{
      width:100%;
      padding:10px;
      border:1px solid #ddd;
      border-radius:10px;
      font:inherit;
      color:inherit;
      background:var(--card);
    }

    .form-error{
      font-size:12px;
      line-height:1.4;
      color:var(--danger);
      margin:4px 0 0;
      display:none;
      text-align:left;
    }
    .form-status{
      font-size:14px;
      line-height:1.5;
      color:var(--fg);
      text-align:left;
    }
    .ds-hinweis{
      font-size:12px;
      line-height:1.5;
      color:var(--muted);
      text-align:left;
    }
    .badge-open-now,
    .open-badge{
      font-size:12px;
      font-weight:600;
      margin-left:8px;
      display:inline-block;
      padding:4px 8px;
      line-height:1.3;
      border-radius:999px;
      border:1px solid currentColor;
    }
    .wine-meta-list{
      list-style:none;
      padding:0;
      margin:10px 0 0;
      color:var(--fg);
      line-height:1.5;
      font-size:14px;
      text-align:left;
    }
    .wine-tag-row{
      margin-top:8px;
      display:flex;
      gap:6px;
      flex-wrap:wrap;
      color:var(--fg);
      justify-content:flex-start;
    }
    .wine-note{
      margin-top:12px;
      font-weight:600;
      color:#3f4d27;
      text-align:left;
      font-size:13px;
      line-height:1.4;
    }
    .wine-cta{
      margin-top:12px;
      margin-right:auto;
    }
    .weine-status{
      margin:6px 12px 0 12px;
      color:#fff;
      text-align:left;
    }
    .map-embed{
      border:0;
      width:100%;
      height:240px;
      border-radius:12px;
      margin-top:12px;
    }
    .map-note{
      margin-top:8px;
      font-size:14px;
      line-height:1.5;
      color:var(--muted);
      text-align:left;
    }
    .honeypot{
      position:absolute;
      left:-9999px;
    }

    .skip{
      position:absolute;
      left:-9999px;
      top:auto;
      width:1px;
      height:1px;
      overflow:hidden
    }
    .skip:focus{
      position:static;
      width:auto;
      height:auto;
      display:inline-block;
      padding:8px 12px;
      background:#000;
      color:#fff;
      border-radius:8px;
      margin:8px
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      padding:10px 16px;
      border-radius:999px;
      background:var(--accent);
      color:#fff;
      font-weight:600;
      font-size:14px;
      line-height:1.2;
      transition:.2s;
      cursor:pointer;
      border:1px solid rgba(0,0,0,.15);
      box-shadow:0 8px 18px rgba(82,97,49,.35)
    }
    .btn:hover,
    .btn:focus{
      transform:translateY(-1px);
      box-shadow:0 10px 22px rgba(82,97,49,.5)
    }
    .btn--dark{
      background:#222;
      color:#fff;
      box-shadow:0 8px 18px rgba(0,0,0,.5)
    }
    .btn--dark:hover,
    .btn--dark:focus{
      box-shadow:0 10px 22px rgba(0,0,0,.7)
    }
    .btn--section{
      background:var(--accent-2);
      color:var(--accent);
      border:1px solid rgba(63,77,39,.18);
      box-shadow:0 8px 18px rgba(120,140,72,.22);
    }
    .btn--section:hover,
    .btn--section:focus{
      color:var(--accent);
      box-shadow:0 10px 22px rgba(120,140,72,.32);
    }
    .tag,
    .pill{
      display:inline-block;
      padding:6px 10px;
      border-radius:999px;
      background:var(--pill-bg);
      color:var(--pill-fg);
      font-weight:600;
      font-size:13px;
      letter-spacing:.4px
    }
    .small{
      font-size:13px;
      color:var(--muted)
    }

    /* NAV */
    .nav{
      position:sticky;
      top:0;
      background:rgba(248,247,244,.85);
      backdrop-filter:saturate(150%) blur(8px);
      z-index:100;
      border-bottom:1px solid #e6e3db
    }
    @media (prefers-color-scheme: dark){
      .nav{
        background:rgba(17,17,17,.85);
        border-bottom:1px solid #2a2a2a;
      }
    }
    .nav .inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:10px 0;
      position:relative;
      gap:16px;
    }
    .brand{display:flex;gap:10px;align-items:center;min-width:0}
    .brand-link,
    .custom-logo-link{display:inline-flex;align-items:center}
    .brand .logo,
    .brand .custom-logo{
      width:auto;
      height:64px;
      max-width:min(42vw,260px);
      display:block;
      object-fit:contain;
      filter:drop-shadow(0 1px 2px rgba(0,0,0,.18));
    }
    .brand span{
      font-weight:600;
      letter-spacing:.5px;
      color:var(--fg);
      font-size:15px;
    }
    .menu{display:flex}
    .menu ul{
      display:flex;
      gap:20px;
      list-style:none;
      margin:0;
      padding:0
    }
    .menu a{
      opacity:.9;
      font-weight:400;
      font-size:14px;
    }
    .menu a:hover,
    .menu a:focus{opacity:1}

    /* Mobile nav / burger */
    .mobile-menu-wrapper{
      position:relative;
      display:none;
      align-items:center;
    }
    .burger{
      appearance:none;
      border:1px solid #d9d6cd;
      background:var(--accent);
      color:#fff;
      border-radius:999px;
      width:44px;
      height:44px;
      display:none;
      align-items:center;
      justify-content:center;
      font-size:20px;
      line-height:0;
      cursor:pointer;
      box-shadow:0 6px 16px rgba(0,0,0,.15);
      transition:transform .15s ease, box-shadow .15s ease;
      backdrop-filter:saturate(140%) blur(6px);
    }
    .burger:hover,
    .burger:focus{
      transform:translateY(-1px);
      box-shadow:0 10px 22px rgba(0,0,0,.2)
    }
    .mobile-menu{
      position:absolute;
      right:0;
      top:calc(100% + 8px);
      background:var(--card);
      border:1px solid #ece9e1;
      border-radius:16px;
      padding:16px;
      box-shadow:0 24px 40px rgba(0,0,0,.18);
      min-width:200px;
      z-index:1000;
    }
    @media (prefers-color-scheme: dark){
      .mobile-menu{
        background:var(--card);
        border:1px solid #2a2a2a;
      }
    }
    .mobile-menu ul{
      list-style:none;
      padding:0;
      margin:0;
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .mobile-menu a{
      font-weight:600;
      font-size:15px;
      color:var(--fg);
      opacity:.9;
      display:inline-block;
      padding:4px 0;
    }
    .mobile-menu a:hover,
    .mobile-menu a:focus{
      opacity:1;
    }

    .nav-actions{align-items:center;justify-content:flex-end;}

    @media (max-width: 980px){
      .menu{display:none;}
      .mobile-menu-wrapper{display:flex;}
      .nav-actions{margin-left:auto;}
    }
    @media (max-width: 720px){
      .nav .inner{flex-wrap:wrap;}
      .nav-actions{width:100%;justify-content:flex-start;}
      .brand .logo,
      .brand .custom-logo{height:56px;max-width:min(68vw,220px);}
    }

    /* HERO SLIDER */
    .hero-slider{
      position:relative;
      min-height:clamp(520px, 72vh, 900px);
      color:#fff;
      background:#000;
      overflow:hidden;
      isolation:isolate;
    }
    @supports (min-height: 1svh){
      .hero-slider{ min-height:clamp(520px, 72svh, 900px); }
    }
    .hero-slide{
      position:absolute;
      inset:0;
      opacity:0;
      transition:opacity 1.8s ease-in-out;
      background:#000 center center / cover no-repeat;
    }
    .hero-slide.is-active{opacity:1}
    .hero-slide::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg,rgba(0,0,0,.34),rgba(0,0,0,.26));
      pointer-events:none;
    }
    .hero-slide img{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      object-fit:cover;
      object-position:center;
      display:block;
      transform:scale(1.03);
      transition:transform 3s ease-out;
    }
    .hero-slide.is-active img{
      transform:scale(1);
    }
    .hero-content-wrapper{
      position:relative;
      z-index:2;
      display:grid;
      grid-template-columns:1fr;
      align-items:center;
      min-height:clamp(520px, 72vh, 900px);
      padding:96px 0 72px;
    }
    @supports (min-height: 1svh){
      .hero-content-wrapper{ min-height:clamp(520px, 72svh, 900px); }
    }
    .hero-inner-text{
      margin-right:auto;
      max-width:680px;
      text-align:left;
      color:#fff;
      text-shadow:0 2px 8px rgba(0,0,0,.6);
      padding-inline:16px;
    }

    h1{
      font-size:clamp(28px,3.8vw,48px);
      line-height:1.06;
      margin:16px 0 8px;
      color:#fff;
      font-weight:600;
      letter-spacing:-.02em;
      text-align:left;
    }

    /* Hero-Text erst anzeigen, wenn die Zeilen-Animation ihn startet.
       Ohne JavaScript bleibt der Text sichtbar; mit .wutte-js gibt es keinen
       kurzen Flash des kompletten Textes beim Laden. */
    .hero-inner-text .hero-text,
    .hero-inner-text .hero-subline,
    .hero-inner-text .lead{
      opacity:1;
      transform:none;
    }
    .wutte-js .hero-inner-text .hero-text,
    .wutte-js .hero-inner-text .hero-subline,
    .wutte-js .hero-inner-text .lead{
      opacity:0;
      transform:translate3d(-110px, 0, 0);
    }
    .wutte-js .hero-inner-text .hero-text.hero-text-visible,
    .wutte-js .hero-inner-text .hero-subline.hero-text-visible,
    .wutte-js .hero-inner-text .lead.hero-text-visible{
      opacity:1;
      transform:translate3d(0, 0, 0);
    }

    .hero-subline{
      font-size:clamp(15px,1.1vw,18px);
      font-weight:400;
      line-height:1.4;
      margin:0 0 16px;
      color:rgba(255,255,255,.85);
      text-align:left;
    }
    .lead{
      color:#f2f2f2;
      max-width:60ch;
      font-size:16px;
      font-weight:300;
      line-height:1.5;
      text-align:left;
      margin-left:0;
    }

    .hero-controls{
      position:absolute;
      left:0;
      right:0;
      bottom:16px;
      z-index:3;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      pointer-events:auto;
    }
    .hero-dot{
      width:10px;
      height:10px;
      border-radius:999px;
      background:rgba(255,255,255,.4);
      border:1px solid rgba(0,0,0,.4);
      box-shadow:0 4px 10px rgba(0,0,0,.6);
      cursor:pointer;
    }
    .hero-dot.is-active{background:#fff}
    .hero-dot:focus-visible{ outline:2px solid var(--accent); outline-offset:2px; }

    /* SECTION GENERIC */
    section{ padding:72px 0; }
    h2{
      font-size:clamp(22px,2.6vw,30px);
      margin:0 0 24px;
      font-weight:600;
      line-height:1.3;
      color:var(--fg);
      text-align:left;
      opacity:0;
      transform:translateX(60px);
      transition:transform .8s ease-out, opacity .8s ease-out;
    }
    h3{
      font-size:clamp(18px,2vw,20px);
      font-weight:600;
      line-height:1.4;
      margin:0 0 12px;
      color:var(--fg);
      text-align:left;
      opacity:0;
      transform:translateX(60px);
      transition:transform .8s ease-out, opacity .8s ease-out;
    }

    /* Überschriften, die per Zeilen-Animation laufen,
       sollen nicht mit der Standard-TranslateX-Animation kollidieren */
    h2.js-line-animate,
    h3.js-line-animate{
      opacity:1;
      transform:none;
    }

    /* PANELS / LAYOUTS */
    .panel{
      background:var(--card);
      border:1px solid #ece9e1;
      border-radius:18px;
      padding:24px;
      color:var(--fg);
    }
    @media (prefers-color-scheme: dark){
      .panel{
        background:var(--card);
        border:1px solid #2a2a2a;
      }
    }
    .about{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:28px;
      align-items:start;
    }

    /* ÜBER UNS */
    #ueber{padding-top:80px;}
    #ueber .about{
      grid-template-columns:1fr;
      max-width:980px;
      margin-inline:auto;
      row-gap:18px;
    }
    #ueber .panel{
      background:transparent;
      border:none;
      padding:0;
    }
    #ueber figure.figure-bleed-lg{
      margin:0;
      border-radius:18px;
      overflow:hidden;
    }
    #ueber figure.figure-bleed-lg img{
      width:100%;
      height:auto;
      display:block;
    }
    #ueber .about-text h2{
      margin:10px 0 10px;
      font-weight:600;
      line-height:1.3;
      font-size:clamp(24px,2.8vw,32px);
      color:var(--fg);
      text-align:left;
    }
    #ueber .about-text p{
      font-size:18px;
      line-height:1.7;
      color:var(--fg);
      margin:0 0 16px;
      text-align:left;
    }

    /* TRADITION */
    #tradition .about{
      grid-template-columns:1fr;
      max-width:980px;
      margin-inline:auto;
      row-gap:18px;
    }
    #tradition .panel{
      background:transparent;
      border:none;
      padding:0;
    }
    #tradition figure.tradition-figure{
      margin:0;
      border-radius:18px;
      overflow:hidden;
    }
    #tradition figure.tradition-figure img{
      width:100%;
      height:auto;
      display:block;
    }
    #tradition .tradition-text h2{
      margin:10px 0 10px;
      font-weight:600;
      line-height:1.3;
      font-size:clamp(24px,2.8vw,32px);
      color:var(--fg);
      text-align:left;
    }
    #tradition .tradition-text p{
      font-size:18px;
      line-height:1.7;
      color:var(--fg);
      margin:0 0 16px;
      text-align:left;
    }

    /* ARCHITEKTUR */
    .architektur{
      padding:72px 0;
      background:var(--bg);
      color:var(--fg);
    }
    .architektur .inner{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:28px;
      align-items:stretch;
    }
    .architektur .panel{
      background:var(--card);
      border-radius:18px;
      padding:24px;
    }
    .architektur-figure{
      margin:0;
      border-radius:18px;
      overflow:hidden;
    }
    .architektur-figure img{
      width:100%;
      height:auto;
      display:block;
    }
    .architektur-text{
      background:transparent;
      border:none;
      padding:0;
    }
    .architektur-head{
      margin:6px 0 10px;
      font-weight:600;
      font-size:clamp(24px,2.8vw,32px);
      line-height:1.3;
      opacity:0;
      transform:translateX(60px);
      transition:transform .8s ease-out, opacity .8s ease-out;
    }
    .architektur-lead{
      font-size:18px;
      line-height:1.7;
      color:var(--fg);
      margin:0 0 12px;
    }
    .architektur-tags{ display:flex; flex-wrap:wrap; gap:8px; margin-top:12px; }
    .architektur .pill{ background:var(--pill-bg); color:var(--pill-fg); }
    .architektur .architektur-head.in-view{ transform:translateX(0); opacity:1; }

    @media (max-width:900px){
      .architektur .inner{ grid-template-columns:1fr; }
    }

    /* CLAIM */
    .claim{
      padding-top:32px;
    }

    /* WEINE */
    #weine{background:transparent;padding:0}
    .weine-wrapper{
      background:#000;
      color:#fff;
      width:100%;
      padding:72px 0;
    }
    .weine-wrapper h2{
      color:#fff;
      margin:0;
      text-align:left;
      font-size:clamp(22px,2.6vw,30px);
      line-height:1.3;
    }
    .slider{position:relative;padding-inline:58px}
    .slider-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      margin:4px 0 10px;
    }
    .slides{
      display:flex;
      gap:18px;
      overflow:auto;
      padding:4px 0 10px;
      scroll-snap-type:x mandatory;
      scroll-behavior:smooth;
      -webkit-overflow-scrolling: touch;
      min-height:560px;
      scroll-padding-left:0;
      scroll-padding-right:0;
    }
    .wine{
      background:var(--card);
      border:1px solid #ece9e1;
      border-radius:18px;
      padding:18px;
      position:relative;
      min-width:0;
      display:flex;
      flex-direction:column;
      color:var(--fg);
    }
    @media (prefers-color-scheme: dark){
      .wine{ background:var(--card); border:1px solid #2a2a2a; }
    }
    .wine h3{
      margin:10px 0 8px;
      font-size:16px;
      font-weight:600;
      line-height:1.4;
      color:var(--fg);
      text-align:left;
      opacity:0;
      transform:translateX(60px);
      transition:transform .8s ease-out, opacity .8s ease-out;
    }
    .wine p{
      color:var(--muted);
      font-size:14px;
      line-height:1.5;
      margin:0;
      text-align:left;
    }
    .wine-img{ aspect-ratio: 2/3; object-fit: cover; border-radius:12px; }
    .slide{
      scroll-snap-align:start;
      flex:0 0 85%;
      max-width:85%;
    }
    @media (min-width:700px){
      .slide{flex-basis:48%;max-width:48%}
    }
    @media (min-width:1024px){
      .slide{flex-basis:32%;max-width:32%}
    }
    .slider-arrows,
    .slider-controls{
      position:absolute;
      top:50%;
      left:0;
      right:0;
      transform:translateY(-50%);
      display:flex;
      justify-content:space-between;
      align-items:center;
      pointer-events:none;
      padding:0;
      z-index:5;
    }
    .slider-controls .slider-btn,
    .slider-btn{
      appearance:none;
      border:1px solid rgba(255,255,255,.25);
      background:rgba(63,77,39,.9);
      color:#fff;
      border-radius:999px;
      width:46px;
      height:46px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      font-size:22px;
      line-height:1;
      cursor:pointer;
      box-shadow:0 16px 28px rgba(0,0,0,.8);
      transition:transform .15s ease, box-shadow .15s ease, opacity .15s ease;
      backdrop-filter:saturate(140%) blur(6px);
      pointer-events:auto;
      user-select:none;
      touch-action:manipulation;
    }
    .slider-controls .slider-btn:first-child{ transform:translateX(-22px); }
    .slider-controls .slider-btn:last-child{ transform:translateX(22px); }
    .slider-btn[disabled]{ opacity:.35; cursor:default; box-shadow:none; }
    .slider-controls .slider-btn:first-child[disabled]{ transform:translateX(-22px); }
    .slider-controls .slider-btn:last-child[disabled]{ transform:translateX(22px); }
    .slider-btn:hover,
    .slider-btn:focus{ box-shadow:0 16px 28px rgba(0,0,0,1) }
    .slider-controls .slider-btn:first-child:hover,
    .slider-controls .slider-btn:first-child:focus{ transform:translateX(-22px) translateY(-1px); }
    .slider-controls .slider-btn:last-child:hover,
    .slider-controls .slider-btn:last-child:focus{ transform:translateX(22px) translateY(-1px); }

    .note-below{
      margin-top:16px;
      display:block;
      color:#fff;
      font-size:13px;
      line-height:1.4;
      text-align:left;
    }
    .legal-note{
      font-size:12px;
      line-height:1.5;
      color:#fff;
      margin-top:12px;
      text-align:left;
    }

    @media (max-width:700px){
      .slider{padding-inline:42px;}
      .slider-controls .slider-btn:first-child{ transform:translateX(-12px); }
      .slider-controls .slider-btn:last-child{ transform:translateX(12px); }
      .slider-controls .slider-btn:first-child:hover,
      .slider-controls .slider-btn:first-child:focus{ transform:translateX(-12px) translateY(-1px); }
      .slider-controls .slider-btn:last-child:hover,
      .slider-controls .slider-btn:last-child:focus{ transform:translateX(12px) translateY(-1px); }
      .slider-controls .slider-btn:first-child[disabled]{ transform:translateX(-12px); }
      .slider-controls .slider-btn:last-child[disabled]{ transform:translateX(12px); }
      .footer-bottom{flex-direction:column;align-items:flex-start;}
      .footer-legal{margin-left:0;text-align:left;}
      .footer-legal-list{justify-content:flex-start;}
    }

    /* BUSCHENSCHANK CARD */
    .busch-section{
      padding:72px 0;
      background:linear-gradient(180deg, rgba(198,208,142,.12), transparent);
    }
    @media (prefers-color-scheme: dark){
      .busch-section{
        background:linear-gradient(180deg, rgba(63,77,39,.25), transparent);
      }
    }
    .busch-card{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:28px;
      align-items:stretch;
      background:var(--card);
      border:1px solid #ece9e1;
      border-radius:22px;
      padding:24px;
      box-shadow:0 30px 60px rgba(0,0,0,.12);
    }
    @media (prefers-color-scheme: dark){
      .busch-card{ border:1px solid #2a2a2a; background:var(--card); }
    }
    @media (max-width:900px){
      .busch-card{ grid-template-columns:1fr; }
    }
    .busch-card__content{ display:flex; flex-direction:column; gap:14px; }
    .busch-title{
      font-size:clamp(24px,2.8vw,32px);
      margin:6px 0;
      font-weight:600;
      color:var(--fg);
      opacity:1;
      transform:none;
    }
    .busch-sub{
      font-size:18px;
      line-height:1.7;
      margin:0;
      color:var(--fg);
    }
    .busch-chiprow{ display:flex; flex-wrap:wrap; gap:8px; }
    .busch-list{
      margin:4px 0 0;
      padding-left:0;
      list-style:none;
      display:grid;
      gap:6px;
      color:var(--muted);
      font-size:15px;
      text-align:left;
    }
    .busch-list li{
      position:relative;
      padding-left:22px;
    }
    .busch-list li::before{
      content:"•";
      position:absolute;
      left:0;
      top:0;
      line-height:1;
      color:var(--accent);
    }
    .busch-hours{ margin-top:6px; }
    .busch-hours h3{
      margin:4px 0 6px;
      font-size:clamp(18px,2vw,20px);
      font-weight:600;
      color:var(--fg);
      opacity:1;
      transform:none;
    }
    .hours-grid{
      display:grid;
      grid-template-columns:auto 1fr;
      gap:6px 14px;
      margin:0;
      color:var(--fg);
      font-weight:600;
    }
    .busch-actions{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:14px;
    }
    .busch-note{ color:var(--muted); }
    .busch-card__media{
      margin:0;
      border-radius:16px;
      overflow:hidden;
      position:relative;
      background:#000;
    }
    .busch-media-img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
      transform:scale(1.03);
      transition:transform .6s ease;
    }
    .busch-card:hover .busch-media-img{ transform:scale(1.06); }

    .alert{
      margin-top:8px;
      padding:10px 12px;
      border-radius:10px;
      border:1px solid var(--danger);
      background:rgba(170,0,0,.06);
      color:var(--danger);
      font-size:12px;
      line-height:1.5;
      text-align:left;
    }
    @media (prefers-color-scheme: dark){
      .alert{ background:rgba(170,0,0,.18); }
    }

    /* FEIERN – Text + Galerie */
    .feiern-section{
      padding:72px 0;
      background:linear-gradient(180deg, rgba(198,208,142,.12), transparent);
    }
    @media (prefers-color-scheme: dark){
      .feiern-section{
        background:linear-gradient(180deg, rgba(63,77,39,.25), transparent);
      }
    }
    .feiern-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:28px;
      align-items:start;
    }
    @media (max-width:640px){
      .feiern-grid{
        grid-template-columns:1fr;
      }
    }
    .feiern-text h2{
      margin-top:10px;
    }
    .feiern-lead{
      font-size:18px;
      line-height:1.7;
      margin:8px 0 16px;
      text-align:left;
    }
    .feiern-tags{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .feiern-list{
      margin:0 0 12px;
      padding-left:0;
      list-style:none;
      display:grid;
      gap:6px;
      font-size:15px;
      color:var(--muted);
      text-align:left;
    }
    .feiern-list li{
      position:relative;
      padding-left:20px;
    }
    .feiern-list li::before{
      content:"•";
      position:absolute;
      left:0;
      top:0;
      line-height:1;
      color:var(--accent);
    }
    .feiern-note{
      margin-top:6px;
      text-align:left;
    }
    .feiern-actions{
      margin-top:16px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }

    /* Neue, erweiterte Galerie */
    .feiern-gallery{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      grid-auto-rows:160px;
      gap:10px;
    }
    @media (min-width:900px){
      .feiern-gallery{
        grid-template-columns:repeat(3,minmax(0,1fr));
        grid-auto-rows:190px;
      }
    }
    @media (max-width:640px){
      .feiern-gallery{
        grid-template-columns:1fr;
        grid-auto-rows:220px;
      }
    }

    .feiern-figure{
      margin:0;
      padding:0;
      border:none;
      background:transparent;
      border-radius:16px;
      overflow:hidden;
      position:relative;
      cursor:pointer;
      box-shadow:0 10px 24px rgba(0,0,0,.18);
      transition:transform .25s ease, box-shadow .25s ease, opacity .25s ease;
    }
    .feiern-figure img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
      transform:scale(1.02);
      transition:transform .4s ease;
    }
    .feiern-figure::after{
      content:"Vergrößern";
      position:absolute;
      inset:auto 10px 10px 10px;
      padding:4px 10px;
      border-radius:999px;
      font-size:11px;
      letter-spacing:.08em;
      text-transform:uppercase;
      background:rgba(0,0,0,.55);
      color:#fff;
      text-align:center;
      opacity:0;
      transform:translateY(6px);
      transition:opacity .25s ease, transform .25s ease;
    }

    .feiern-figure--wide{
      grid-column:span 2;
    }
    .feiern-figure--tall{
      grid-row:span 2;
    }

    @media (max-width:640px){
      .feiern-figure--wide,
      .feiern-figure--tall{
        grid-column:span 1;
        grid-row:span 1;
      }
    }

    .feiern-figure:hover,
    .feiern-figure:focus-visible{
      transform:translateY(-4px);
      box-shadow:0 18px 36px rgba(0,0,0,.35);
    }
    .feiern-figure:hover img,
    .feiern-figure:focus-visible img{
      transform:scale(1.06);
    }
    .feiern-figure:hover::after,
    .feiern-figure:focus-visible::after{
      opacity:1;
      transform:translateY(0);
    }

    /* KONTAKT */
    #kontakt h2{
      font-weight:600;
      font-size:clamp(22px,2.6vw,30px);
      line-height:1.3;
      color:var(--fg);
      margin:0 0 16px;
      text-align:left;
    }
    #kontakt h3{
      font-weight:600;
      font-size:clamp(18px,2vw,20px);
      line-height:1.4;
      color:var(--fg);
      margin:0 0 12px;
      text-align:left;
    }
    #kontakt .panel{
      background:var(--card);
      border:1px solid #ece9e1;
      border-radius:18px;
      padding:24px;
      color:var(--fg);
    }
    @media (prefers-color-scheme: dark){
      #kontakt .panel{
        border:1px solid #2a2a2a;
        background:var(--card);
        color:var(--fg);
      }
    }

    .faq{
      margin-top:32px;
    }
    .faq h3{
      text-align:left;
      font-size:clamp(18px,2vw,20px);
      line-height:1.4;
      font-weight:600;
      margin:0 0 8px;
      color:var(--fg);
    }
    .faq details{
      border:1px solid #ece9e1;
      border-radius:12px;
      background:var(--card);
      padding:16px;
      margin-bottom:8px;
      color:var(--fg);
    }
    @media (prefers-color-scheme: dark){
      .faq details{
        border:1px solid #2a2a2a;
        background:var(--card);
        color:var(--fg);
      }
    }
    .faq summary{
      cursor:pointer;
      font-weight:600;
      outline:none;
      list-style:none;
    }
    .faq summary::-webkit-details-marker{display:none}
    .faq p{
      font-size:14px;
      line-height:1.5;
      color:var(--muted);
      margin:12px 0 0;
      text-align:left;
    }

    /* FOOTER */
    .footer{
      background:var(--footer-bg);
      color:var(--footer-fg);
      font-size:14px;
      line-height:1.5;
      padding-top:48px;
      margin-top:16px;
    }
    .footer-top{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(min(320px,100%),1fr));
      gap:32px;
      border-bottom:1px solid var(--footer-border);
      padding-bottom:32px;
    }
    .footer-col h4{
      color:var(--footer-head);
      margin:0 0 12px;
      font-weight:600;
      font-size:15px;
      line-height:1.3;
      text-align:left;
    }
    .footer-col p,
    .footer-col li,
    .footer-col address,
    .footer-col a{
      color:var(--footer-fg);
      font-size:14px;
      line-height:1.5;
      margin:0;
      text-decoration:none;
      font-style:normal;
      text-align:left;
    }
    .footer-col a:hover,
    .footer-col a:focus{ color:#fff; }
    .footer-nav-list,
    .footer-legal-list{
      list-style:none;
      padding:0;
      margin:0;
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .footer-legal-list{
      margin-top:16px;
      font-size:13px;
      color:#888;
      line-height:1.4;
    }
    .footer-contact-actions{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:16px;
    }
    .footer-contact-actions .btn{
      font-size:14px;
      padding:10px 14px;
      border-radius:999px;
      line-height:1.2;
    }
    .footer-hours{
      font-size:13px;
      line-height:1.4;
      color:var(--footer-fg);
    }
    .footer-hours strong{
      display:block;
      font-weight:600;
      color:var(--footer-head);
      margin-bottom:4px;
      font-size:14px;
      line-height:1.4;
      text-align:left;
    }
    .footer-bottom{
      padding:16px 0 24px;
      font-size:12px;
      line-height:1.4;
      color:#999;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      text-align:left;
    }
    .footer-copy{margin:0;}
    .footer-legal{margin-left:auto;text-align:right;}
    .footer-legal-list{
      margin-top:0;
      display:flex;
      flex-direction:row;
      flex-wrap:wrap;
      justify-content:flex-end;
      gap:14px;
    }
    .footer-brand-link{display:inline-flex;align-items:center;margin-bottom:10px;}
    .footer-brand-logo{
      width:min(138px,47vw);
      height:auto;
      margin-bottom:0;
      filter:drop-shadow(0 1px 2px rgba(0,0,0,.4));
    }

    /* Lightbox */
    .lightbox{
      position:fixed;
      inset:0;
      background:rgba(0,0,0,.9);
      display:none;
      align-items:center;
      justify-content:center;
      z-index:2000;
    }
    .lightbox.active{display:flex;}
    .lightbox img{
      max-width:90vw;
      max-height:85vh;
      border-radius:12px;
      box-shadow:0 0 40px rgba(0,0,0,.8);
      display:block;
    }
    .lightbox-close-btn{
      position:absolute;
      top:16px;
      right:16px;
      background:#000;
      color:#fff;
      border:1px solid #444;
      border-radius:999px;
      font-size:20px;
      line-height:1;
      width:36px;
      height:36px;
      display:flex;
      align-items:center;
      justify-content:center;
      cursor:pointer;
      box-shadow:0 16px 32px rgba(0,0,0,.8);
    }

    .lightbox-arrow{
      position:absolute;
      top:50%;
      transform:translateY(-50%);
      appearance:none;
      border:1px solid rgba(255,255,255,.25);
      background:rgba(63,77,39,.9);
      color:#fff;
      border-radius:999px;
      width:46px;
      height:46px;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:22px;
      line-height:1;
      cursor:pointer;
      box-shadow:0 16px 28px rgba(0,0,0,.8);
      transition:transform .15s ease, box-shadow .15s ease, opacity .15s ease;
      backdrop-filter:saturate(140%) blur(6px);
      user-select:none;
      touch-action:manipulation;
    }
    .lightbox-arrow--prev{ left:16px; }
    .lightbox-arrow--next{ right:16px; }
    .lightbox-arrow:hover,
    .lightbox-arrow:focus-visible{
      box-shadow:0 16px 28px rgba(0,0,0,1);
      outline:none;
    }
    .lightbox-arrow--prev:hover,
    .lightbox-arrow--prev:focus-visible{
      transform:translateY(-50%) translateY(-1px);
    }
    .lightbox-arrow--next:hover,
    .lightbox-arrow--next:focus-visible{
      transform:translateY(-50%) translateY(-1px);
    }

    @media (max-width:900px){
      .about{grid-template-columns:1fr}
    }
    @media (max-width:640px){
      .menu{display:none}
      .mobile-menu-wrapper{display:flex}
      .burger{display:inline-flex}
      .brand span{display:none;}
      .hero-slider{ min-height:clamp(440px, 78svh, 900px); }
      .hero-content-wrapper{ min-height:clamp(440px, 78svh, 900px); padding-top:80px; }
      .hero-inner-text{
        text-align:left;
        margin:0;
      }

      .footer-nav-list{
        flex-direction:row;
        flex-wrap:wrap;
        gap:10px 14px;
      }
      .footer-nav-list li{
        display:inline-flex;
      }

      .about{
        display:flex;
        flex-direction:column;
      }
      .claim .inner{
        display:flex;
        flex-direction:column;
      }
      .claim .inner .panel:first-child{
        order:2;
      }
      .claim .inner .panel:last-child{
        order:1;
      }
      .busch-card{
        display:flex;
        flex-direction:column;
      }
      .busch-card__media{
        order:1;
      }
      .busch-card__content{
        order:2;
      }
      .feiern-grid{
        display:flex;
        flex-direction:column;
      }
      .feiern-text{
        order:1;
      }
      .feiern-gallery{
        order:2;
      }
    }

    [inert]{ pointer-events:none; }
    [inert] *{ pointer-events:none; }

    .in-view{ transform:translateX(0)!important; opacity:1!important; }

    /* ---------------------------------- */
    /*       ZEILEN-ANIMATION (NEU)      */
    /* ---------------------------------- */

    .js-line-animate{
      position:relative;
    }
    .line-block{
      display:block;
      overflow:hidden;
    }
    .line-block-inner{
      display:inline-block;
      transform:translateX(-60px);
      opacity:0;
      transition:transform 1.9s cubic-bezier(.22,.61,.36,1), opacity 1.9s cubic-bezier(.22,.61,.36,1);
      will-change:transform, opacity;
    }
    .line-block-inner.is-visible{
      transform:translateX(0);
      opacity:1;
    }

    .hero-inner-text{
      overflow:visible;
    }
    .hero-inner-text .hero-text,
    .hero-inner-text .hero-subline,
    .hero-inner-text .lead{
      overflow:visible;
      will-change:transform, opacity;
      transition:transform 2.8s cubic-bezier(.22,.61,.36,1), opacity 2.8s cubic-bezier(.22,.61,.36,1);
    }
    .hero-inner-text .hero-text-hidden,
    .hero-inner-text .hero-subline.hero-text-hidden,
    .hero-inner-text .lead.hero-text-hidden{
      opacity:0;
      transform:translate3d(-110px, 0, 0);
    }
    .hero-inner-text .hero-text-visible,
    .hero-inner-text .hero-subline.hero-text-visible,
    .hero-inner-text .lead.hero-text-visible{
      opacity:1;
      transform:translate3d(0, 0, 0);
    }

















































/* === Header / Mobile Menü Cleanup === */
@media (max-width: 980px){
  .nav .inner{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    align-items:center;
    gap:14px;
  }

  .menu{display:none;}
  .mobile-menu-wrapper{
    display:flex;
    justify-content:flex-end;
    margin-left:auto;
  }

  .nav-actions{
    grid-column:1 / -1;
    width:100%;
    justify-content:center;
    margin-left:0;
  }
}

@media (max-width: 640px){
  .nav .inner{
    grid-template-columns:minmax(0,1fr) auto;
  }

  .brand{
    min-width:0;
  }

  .mobile-menu{
    left:50%;
    right:auto;
    transform:translateX(-50%);
    width:min(92vw, 420px);
    min-width:0;
    padding:18px 20px;
    text-align:center;
  }

  .mobile-menu ul{
    align-items:center;
    gap:10px;
  }

  .mobile-menu li,
  .mobile-menu a{
    width:100%;
    text-align:center;
  }

  .nav-actions{
    justify-content:center;
  }
}

/* === WooCommerce im Weingut-Wutte-Stil === */
.woocommerce-page .site-main,
.woocommerce-page main,
.woocommerce main,
.woocommerce-page main{
  padding-block:40px 72px;
}

.woocommerce .woocommerce-breadcrumb,
.woocommerce-page .woocommerce-breadcrumb{
  color:var(--muted);
  margin-bottom:20px;
  font-size:14px;
}

.woocommerce div.product,
.woocommerce-page div.product{
  background:var(--card);
  border:1px solid #ece9e1;
  border-radius:24px;
  padding:clamp(20px, 3vw, 34px);
  box-shadow:0 22px 50px rgba(0,0,0,.08);
}

@media (prefers-color-scheme: dark){
  .woocommerce div.product,
  .woocommerce-page div.product,
  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product,
  .woocommerce-cart-form,
  .cart-collaterals .cart_totals,
  .woocommerce-checkout-review-order,
  .woocommerce-checkout #customer_details,
  .woocommerce .woocommerce-tabs ul.tabs li,
  .woocommerce .woocommerce-tabs .panel{
    border-color:#2a2a2a;
  }
}

.woocommerce div.product div.images,
.woocommerce-page div.product div.images{
  width:42%;
  margin-bottom:0;
}

.woocommerce div.product div.summary,
.woocommerce-page div.product div.summary{
  width:52%;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper,
.woocommerce-page div.product div.images .woocommerce-product-gallery__wrapper{
  display:flex;
  align-items:flex-start;
  justify-content:center;
}

.woocommerce div.product div.images img,
.woocommerce-page div.product div.images img{
  width:min(100%, 420px);
  margin-inline:auto;
  border-radius:18px;
  box-shadow:0 18px 35px rgba(0,0,0,.12);
  object-fit:contain;
  background:#fff;
}

.woocommerce div.product div.images .flex-control-thumbs,
.woocommerce-page div.product div.images .flex-control-thumbs{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:16px;
  flex-wrap:wrap;
}

.woocommerce div.product div.images .flex-control-thumbs li,
.woocommerce-page div.product div.images .flex-control-thumbs li{
  width:74px;
}

.woocommerce div.product div.images .flex-control-thumbs img,
.woocommerce-page div.product div.images .flex-control-thumbs img{
  width:74px;
  height:104px;
  object-fit:cover;
  box-shadow:none;
  border:1px solid #e6e3db;
  background:var(--card);
}

.woocommerce div.product .product_title,
.woocommerce-page div.product .product_title{
  font-size:clamp(28px, 4vw, 42px);
  line-height:1.1;
  margin-bottom:16px;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce-page div.product p.price,
.woocommerce-page div.product span.price{
  color:var(--accent);
  font-size:clamp(24px, 3vw, 34px);
  font-weight:700;
  margin-bottom:14px;
}

.woocommerce div.product .woocommerce-product-details__short-description,
.woocommerce-page div.product .woocommerce-product-details__short-description,
.woocommerce div.product .summary p,
.woocommerce-page div.product .summary p{
  color:var(--muted);
  line-height:1.7;
}

.woocommerce form.cart,
.woocommerce-page form.cart{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  margin-block:24px 12px;
}

.woocommerce .quantity .qty,
.woocommerce-page .quantity .qty,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce-page #respond input#submit,
.woocommerce-page a.button,
.woocommerce-page button.button,
.woocommerce-page input.button{
  border-radius:999px;
}

.woocommerce .quantity .qty,
.woocommerce-page .quantity .qty{
  min-height:46px;
  padding:8px 12px;
  border:1px solid #d8d4cb;
  background:var(--card);
  color:var(--fg);
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce-page #respond input#submit,
.woocommerce-page a.button,
.woocommerce-page button.button,
.woocommerce-page input.button{
  background:var(--accent);
  color:#fff;
  padding:13px 22px;
  min-height:46px;
  font-weight:600;
  transition:transform .15s ease, opacity .15s ease, box-shadow .15s ease;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce-page #respond input#submit:hover,
.woocommerce-page a.button:hover,
.woocommerce-page button.button:hover,
.woocommerce-page input.button:hover{
  background:var(--accent);
  color:#fff;
  opacity:.95;
  transform:translateY(-1px);
  box-shadow:0 12px 22px rgba(0,0,0,.12);
}

.woocommerce div.product .woocommerce-tabs,
.woocommerce-page div.product .woocommerce-tabs{
  margin-top:32px;
}

.woocommerce .woocommerce-tabs ul.tabs,
.woocommerce-page .woocommerce-tabs ul.tabs{
  padding-left:0;
  margin-bottom:0;
}

.woocommerce .woocommerce-tabs ul.tabs::before,
.woocommerce-page .woocommerce-tabs ul.tabs::before,
.woocommerce .woocommerce-tabs ul.tabs li::before,
.woocommerce .woocommerce-tabs ul.tabs li::after,
.woocommerce-page .woocommerce-tabs ul.tabs li::before,
.woocommerce-page .woocommerce-tabs ul.tabs li::after{
  display:none;
}

.woocommerce .woocommerce-tabs ul.tabs li,
.woocommerce-page .woocommerce-tabs ul.tabs li{
  border:1px solid #ece9e1;
  background:transparent;
  border-radius:999px;
  margin:0 8px 10px 0;
  padding:0;
}

.woocommerce .woocommerce-tabs ul.tabs li a,
.woocommerce-page .woocommerce-tabs ul.tabs li a{
  padding:10px 16px;
}

.woocommerce .woocommerce-tabs .panel,
.woocommerce-page .woocommerce-tabs .panel{
  border:1px solid #ece9e1;
  border-radius:20px;
  padding:22px;
  margin-top:12px;
}

.woocommerce ul.products,
.woocommerce-page ul.products{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:22px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after{
  display:none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product{
  width:auto !important;
  margin:0 !important;
  float:none !important;
  background:var(--card);
  border:1px solid #ece9e1;
  border-radius:22px;
  padding:18px;
  box-shadow:0 18px 40px rgba(0,0,0,.06);
}

.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img{
  width:min(100%, 230px);
  margin:0 auto 16px;
  aspect-ratio:2 / 3;
  object-fit:contain;
  border-radius:16px;
  background:#fff;
  padding:8px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title{
  font-size:20px;
  line-height:1.35;
  padding:0;
}

.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price{
  color:var(--accent);
  font-size:18px;
  font-weight:700;
}

.woocommerce nav.woocommerce-pagination ul,
.woocommerce-page nav.woocommerce-pagination ul{
  border:none;
  display:flex;
  justify-content:center;
  gap:8px;
}

.woocommerce nav.woocommerce-pagination ul li,
.woocommerce-page nav.woocommerce-pagination ul li{
  border:none;
}

.woocommerce nav.woocommerce-pagination ul li span,
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce-page nav.woocommerce-pagination ul li span,
.woocommerce-page nav.woocommerce-pagination ul li a{
  border-radius:999px;
  min-width:42px;
  min-height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.woocommerce-cart-form,
.cart-collaterals .cart_totals,
.woocommerce-checkout-review-order,
.woocommerce-checkout #customer_details{
  background:var(--card);
  border:1px solid #ece9e1;
  border-radius:22px;
  padding:20px;
}

@media (max-width: 980px){
  .woocommerce div.product div.images,
  .woocommerce-page div.product div.images,
  .woocommerce div.product div.summary,
  .woocommerce-page div.product div.summary{
    width:100%;
    float:none;
  }

  .woocommerce div.product div.images,
  .woocommerce-page div.product div.images{
    margin-bottom:24px;
  }

  .woocommerce ul.products,
  .woocommerce-page ul.products{
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 640px){
  .woocommerce div.product,
  .woocommerce-page div.product,
  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product,
  .woocommerce-cart-form,
  .cart-collaterals .cart_totals,
  .woocommerce-checkout-review-order,
  .woocommerce-checkout #customer_details{
    border-radius:18px;
    padding:16px;
  }

  .woocommerce div.product div.images img,
  .woocommerce-page div.product div.images img{
    width:min(100%, 300px);
  }

  .woocommerce ul.products li.product a img,
  .woocommerce-page ul.products li.product a img{
    width:min(100%, 190px);
  }
}


/* === v129 Mobile Header / Menü komplett überarbeitet === */
:root{
  --wutte-mobile-menu-top: 88px;
}

.nav{
  z-index:1200;
}

.mobile-menu-backdrop{
  display:none;
}

@media (max-width: 980px){
  .nav .inner{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    align-items:center;
    gap:14px 16px;
  }

  .menu{
    display:none !important;
  }

  .mobile-menu-wrapper{
    position:static;
    display:flex !important;
    align-items:center;
    justify-content:flex-end;
    margin-left:auto;
  }

  .burger{
    display:inline-flex !important;
    position:relative;
    z-index:1203;
  }

  .mobile-menu-backdrop{
    position:fixed;
    inset:0;
    background:rgba(24,22,18,.34);
    backdrop-filter:blur(6px);
    z-index:1198;
  }

  .mobile-menu{
    position:fixed !important;
    left:50% !important;
    right:auto !important;
    top:var(--wutte-mobile-menu-top) !important;
    width:min(92vw, 420px) !important;
    min-width:0 !important;
    max-height:calc(100svh - var(--wutte-mobile-menu-top) - 20px);
    overflow:auto;
    transform:translate(-50%, -10px);
    border-radius:24px;
    padding:22px 22px 20px;
    text-align:center;
    box-shadow:0 28px 60px rgba(0,0,0,.22);
    border:1px solid rgba(230,227,219,.95);
    z-index:1202;
  }

  body.mobile-menu-open .mobile-menu{
    transform:translate(-50%, 0);
  }

  .mobile-menu ul{
    align-items:center;
    justify-content:center;
    gap:10px;
  }

  .mobile-menu li,
  .mobile-menu li a,
  .mobile-menu a{
    width:100%;
    text-align:center;
  }

  .mobile-menu a{
    display:block;
    padding:10px 14px;
    border-radius:14px;
    font-size:16px;
    font-weight:600;
  }

  .mobile-menu a:hover,
  .mobile-menu a:focus{
    background:rgba(120,140,72,.10);
  }

  .nav-actions{
    grid-column:1 / -1;
    width:100%;
    justify-content:center !important;
    margin-left:0 !important;
    gap:10px !important;
    padding-top:2px;
  }

  .nav-actions .btn{
    min-height:44px;
  }
}

@media (max-width: 640px){
  .nav .inner{
    gap:12px 14px;
    padding:10px 0 12px;
  }

  .brand .logo,
  .brand .custom-logo{
    height:52px;
    max-width:min(62vw,210px);
  }

  .nav-actions{
    display:flex;
    flex-wrap:wrap;
  }

  .nav-actions .btn{
    flex:1 1 140px;
    justify-content:center;
    text-align:center;
  }

  .mobile-menu{
    width:min(94vw, 380px) !important;
    padding:18px 16px 16px;
    border-radius:20px;
  }
}

@media (prefers-color-scheme: dark) and (max-width: 980px){
  .mobile-menu{
    border-color:#2a2a2a;
  }

  .mobile-menu a:hover,
  .mobile-menu a:focus{
    background:rgba(255,255,255,.06);
  }
}

/* === v129 WooCommerce Feinschliff === */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:10px;
}

.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button{
  margin-top:auto;
}

.woocommerce div.product div.images{
  text-align:center;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image,
.woocommerce-page div.product div.images .woocommerce-product-gallery__image{
  display:flex;
  justify-content:center;
}

.woocommerce div.product .summary{
  padding-top:6px;
}

@media (max-width: 640px){
  .woocommerce div.product .product_title,
  .woocommerce-page div.product .product_title{
    font-size:clamp(24px, 7vw, 34px);
  }

  .woocommerce div.product p.price,
  .woocommerce div.product span.price,
  .woocommerce-page div.product p.price,
  .woocommerce-page div.product span.price{
    font-size:clamp(20px, 5.5vw, 28px);
  }
}


/* === v130 WooCommerce Produktseite + Carousel === */
.wine-image-link{
  display:block;
  width:100%;
}

.wine-image-link .wine-img{
  transition:transform .18s ease, box-shadow .18s ease;
}

.wine-image-link:hover .wine-img,
.wine-image-link:focus .wine-img{
  transform:translateY(-2px);
  box-shadow:0 18px 30px rgba(0,0,0,.12);
}

.single-product .wutte-product-variety{
  margin:0 0 10px;
  color:#000;
  font-size:clamp(24px, 3.2vw, 34px);
  line-height:1.15;
  font-weight:700;
}

.single-product .wutte-product-facts{
  display:grid;
  gap:8px;
  margin:22px 0 0;
  padding:18px 0 0;
  border-top:1px solid #ece9e1;
}

.single-product .wutte-product-fact,
.single-product .wutte-product-tags{
  margin:0;
  color:var(--fg);
  line-height:1.65;
}

.single-product .wutte-product-tags{
  display:grid;
  gap:4px;
}

.single-product .wutte-meta-separator{
  padding-inline:6px;
  color:var(--muted);
}

.single-product .product_meta,
.single-product .woocommerce-tabs,
.single-product #reviews,
.single-product .sidebar,
.single-product .widget-area,
.single-product .woocommerce-sidebar,
.single-product aside.widget,
.single-product aside.widget-area{
  display:none !important;
}

.single-product .content-area,
.single-product #primary,
.single-product .site-main{
  width:100%;
  max-width:none;
}

.single-product .woocommerce-Reviews-title,
.single-product .woocommerce-tabs-wrapper,
.single-product .widget_product_search,
.single-product .widget_search,
.single-product .widget_product_categories,
.single-product .widget_nav_menu,
.single-product .widget_recent_entries{
  display:none !important;
}

@media (max-width: 640px){
  .single-product .wutte-product-variety{
    font-size:clamp(22px, 6.2vw, 30px);
  }

  .single-product .wutte-product-facts{
    margin-top:18px;
    padding-top:16px;
  }
}

.wutte-header-cart-fragment{
  display:flex;
  align-items:center;
}

.wutte-header-cart-fragment:empty{
  display:none;
}

.single-product .summary form.cart,
.single-product .summary .single_add_to_cart_button{
  position:relative;
  z-index:5;
}

.single-product .summary .single_add_to_cart_button{
  cursor:pointer;
}

.wutte-cart-notice{
  margin:0 0 14px;
  padding:12px 16px;
  border-radius:14px;
  font-size:15px;
  line-height:1.5;
}

.wutte-cart-notice.is-success{
  background:#eef6ea;
  color:#1f4b24;
  border:1px solid #cfe4c9;
}

.wutte-cart-notice.is-error{
  background:#fff1f1;
  color:#7a1f1f;
  border:1px solid #ebc2c2;
}


/* === v135: Metallisch-chrome Buttons in Header und Footer === */
:root{
  --chrome-text:#171b20;
  --chrome-text-strong:#0f1318;
  --chrome-border:rgba(115,124,134,.72);
  --chrome-shadow:rgba(15,20,26,.22);
  --chrome-shadow-strong:rgba(15,20,26,.32);
  --chrome-sheen:linear-gradient(180deg,
    #ffffff 0%,
    #f2f5f8 10%,
    #d5dbe1 24%,
    #bcc4cc 38%,
    #f5f8fa 55%,
    #c4ccd3 72%,
    #9ca5af 100%);
  --chrome-sheen-hover:linear-gradient(180deg,
    #ffffff 0%,
    #f8fbfd 10%,
    #e0e6eb 26%,
    #c4ccd4 40%,
    #ffffff 57%,
    #d3dae1 76%,
    #aab3bd 100%);
}

.nav-actions .btn,
.footer .btn,
.footer button.btn,
.footer .wp-element-button,
.footer .button,
.burger{
  background-color:#c7ced5 !important;
  background-image:var(--chrome-sheen) !important;
  color:var(--chrome-text) !important;
  border:1px solid var(--chrome-border) !important;
  box-shadow:
    0 12px 26px var(--chrome-shadow),
    inset 0 1px 0 rgba(255,255,255,.92),
    inset 0 -1px 0 rgba(56,64,72,.18) !important;
  text-shadow:0 1px 0 rgba(255,255,255,.55);
  font-weight:700;
}

.nav-actions .btn:hover,
.nav-actions .btn:focus,
.footer .btn:hover,
.footer .btn:focus,
.footer button.btn:hover,
.footer button.btn:focus,
.footer .wp-element-button:hover,
.footer .wp-element-button:focus,
.footer .button:hover,
.footer .button:focus,
.burger:hover,
.burger:focus{
  background-color:#d7dde3 !important;
  background-image:var(--chrome-sheen-hover) !important;
  color:var(--chrome-text-strong) !important;
  border-color:rgba(130,140,151,.82) !important;
  box-shadow:
    0 16px 32px var(--chrome-shadow-strong),
    inset 0 1px 0 rgba(255,255,255,.98),
    inset 0 -1px 0 rgba(56,64,72,.22) !important;
}

.nav-actions .btn:active,
.footer .btn:active,
.footer button.btn:active,
.footer .wp-element-button:active,
.footer .button:active,
.burger:active{
  transform:translateY(0) scale(.99);
  box-shadow:
    0 8px 18px rgba(15,20,26,.24),
    inset 0 2px 3px rgba(88,97,107,.18),
    inset 0 1px 0 rgba(255,255,255,.7) !important;
}

.nav-actions .btn span,
.footer .btn span,
.footer .wp-element-button span,
.footer .button span{
  color:inherit !important;
}

.footer .btn,
.footer button.btn,
.footer .wp-element-button,
.footer .button{
  box-shadow:
    0 10px 24px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.92),
    inset 0 -1px 0 rgba(56,64,72,.18) !important;
}

.burger{
  color:var(--chrome-text-strong) !important;
}

/* === v136: Einheitlicher Chrom-Stil für Tag-Buttons, Block-Buttons und Wine-Carousel-Navigation === */

/* Alle Button-artigen Elemente in den Inhaltsblöcken optisch angleichen */
main .btn,
main button.btn,
main .wp-element-button,
main .button,
main .btn--dark,
main .btn--section,
.wine-actions .btn,
.busch-actions .btn,
.feiern-actions .btn,
.footer-contact-actions .btn,
#kontakt .btn,
.slider-controls .slider-btn,
.slider-btn,
.pill,
.tag{
  background-color:#c7ced5 !important;
  background-image:var(--chrome-sheen) !important;
  color:var(--chrome-text) !important;
  border:1px solid var(--chrome-border) !important;
  box-shadow:
    0 12px 26px var(--chrome-shadow),
    inset 0 1px 0 rgba(255,255,255,.92),
    inset 0 -1px 0 rgba(56,64,72,.18) !important;
  text-shadow:0 1px 0 rgba(255,255,255,.55);
}

main .btn,
main button.btn,
main .wp-element-button,
main .button,
main .btn--dark,
main .btn--section,
.wine-actions .btn,
.busch-actions .btn,
.feiern-actions .btn,
.footer-contact-actions .btn,
#kontakt .btn{
  color:var(--chrome-text-strong) !important;
  font-weight:700;
}

.pill,
.tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:9px 14px;
  font-size:13px;
  line-height:1.15;
  letter-spacing:.2px;
}

.slider-controls .slider-btn,
.slider-btn{
  color:var(--chrome-text-strong) !important;
  font-weight:700;
  border-width:1px !important;
  box-shadow:
    0 12px 26px var(--chrome-shadow),
    inset 0 1px 0 rgba(255,255,255,.92),
    inset 0 -1px 0 rgba(56,64,72,.18) !important;
  backdrop-filter:none;
}

main .btn:hover,
main .btn:focus,
main button.btn:hover,
main button.btn:focus,
main .wp-element-button:hover,
main .wp-element-button:focus,
main .button:hover,
main .button:focus,
main .btn--dark:hover,
main .btn--dark:focus,
main .btn--section:hover,
main .btn--section:focus,
.wine-actions .btn:hover,
.wine-actions .btn:focus,
.busch-actions .btn:hover,
.busch-actions .btn:focus,
.feiern-actions .btn:hover,
.feiern-actions .btn:focus,
.footer-contact-actions .btn:hover,
.footer-contact-actions .btn:focus,
#kontakt .btn:hover,
#kontakt .btn:focus,
.slider-controls .slider-btn:hover,
.slider-controls .slider-btn:focus,
.slider-btn:hover,
.slider-btn:focus,
.pill:hover,
.pill:focus,
.tag:hover,
.tag:focus{
  background-color:#d7dde3 !important;
  background-image:var(--chrome-sheen-hover) !important;
  color:var(--chrome-text-strong) !important;
  border-color:rgba(130,140,151,.82) !important;
  box-shadow:
    0 16px 32px var(--chrome-shadow-strong),
    inset 0 1px 0 rgba(255,255,255,.98),
    inset 0 -1px 0 rgba(56,64,72,.22) !important;
}

main .btn:active,
main button.btn:active,
main .wp-element-button:active,
main .button:active,
main .btn--dark:active,
main .btn--section:active,
.wine-actions .btn:active,
.busch-actions .btn:active,
.feiern-actions .btn:active,
.footer-contact-actions .btn:active,
#kontakt .btn:active,
.slider-controls .slider-btn:active,
.slider-btn:active,
.pill:active,
.tag:active{
  box-shadow:
    0 8px 18px rgba(15,20,26,.24),
    inset 0 2px 3px rgba(88,97,107,.18),
    inset 0 1px 0 rgba(255,255,255,.7) !important;
}

.slider-btn[disabled]{
  opacity:.42;
  color:rgba(23,27,32,.5) !important;
  box-shadow:none !important;
}

/* === v138: Tag- und Link-Buttons stärker chrom-changierend von außen nach innen === */
:root{
  --chrome-deep-text:#f7f9fc;
  --chrome-deep-text-strong:#ffffff;
  --chrome-deep-border:rgba(109,118,128,.96);
  --chrome-deep-shadow:rgba(7,11,16,.36);
  --chrome-deep-shadow-strong:rgba(4,8,13,.48);
  --chrome-sheen-deep:
    linear-gradient(180deg,
      rgba(255,255,255,.24) 0%,
      rgba(255,255,255,.08) 14%,
      rgba(0,0,0,.04) 48%,
      rgba(0,0,0,.18) 100%),
    linear-gradient(90deg,
      #454f59 0%,
      #69737d 12%,
      #9ca6b0 24%,
      #dfe5ea 50%,
      #9ca6b0 76%,
      #69737d 88%,
      #454f59 100%);
  --chrome-sheen-deep-hover:
    linear-gradient(180deg,
      rgba(255,255,255,.30) 0%,
      rgba(255,255,255,.10) 14%,
      rgba(0,0,0,.04) 48%,
      rgba(0,0,0,.20) 100%),
    linear-gradient(90deg,
      #4d5862 0%,
      #76818c 12%,
      #adb7c1 24%,
      #eef2f6 50%,
      #adb7c1 76%,
      #76818c 88%,
      #4d5862 100%);
}

main .btn,
main button.btn,
main .wp-element-button,
main .button,
main .btn--dark,
main .btn--section,
.wine-actions .btn,
.busch-actions .btn,
.feiern-actions .btn,
.footer-contact-actions .btn,
#kontakt .btn,
.slider-controls .slider-btn,
.slider-btn,
.pill,
.tag{
  background-color:#7b858f !important;
  background-image:var(--chrome-sheen-deep) !important;
  color:var(--chrome-deep-text-strong) !important;
  border:1px solid var(--chrome-deep-border) !important;
  box-shadow:
    0 14px 28px var(--chrome-deep-shadow),
    inset 0 1px 0 rgba(255,255,255,.48),
    inset 0 0 0 1px rgba(255,255,255,.08),
    inset 0 -1px 0 rgba(12,16,22,.42) !important;
  text-shadow:0 1px 1px rgba(0,0,0,.42), 0 0 10px rgba(255,255,255,.08);
}

main .btn,
main button.btn,
main .wp-element-button,
main .button,
main .btn--dark,
main .btn--section,
.wine-actions .btn,
.busch-actions .btn,
.feiern-actions .btn,
.footer-contact-actions .btn,
#kontakt .btn,
.slider-controls .slider-btn,
.slider-btn,
.pill,
.tag{
  color:var(--chrome-deep-text-strong) !important;
}

main .btn:hover,
main .btn:focus,
main button.btn:hover,
main button.btn:focus,
main .wp-element-button:hover,
main .wp-element-button:focus,
main .button:hover,
main .button:focus,
main .btn--dark:hover,
main .btn--dark:focus,
main .btn--section:hover,
main .btn--section:focus,
.wine-actions .btn:hover,
.wine-actions .btn:focus,
.busch-actions .btn:hover,
.busch-actions .btn:focus,
.feiern-actions .btn:hover,
.feiern-actions .btn:focus,
.footer-contact-actions .btn:hover,
.footer-contact-actions .btn:focus,
#kontakt .btn:hover,
#kontakt .btn:focus,
.slider-controls .slider-btn:hover,
.slider-controls .slider-btn:focus,
.slider-btn:hover,
.slider-btn:focus,
.pill:hover,
.pill:focus,
.tag:hover,
.tag:focus{
  background-color:#87919b !important;
  background-image:var(--chrome-sheen-deep-hover) !important;
  color:var(--chrome-deep-text-strong) !important;
  border-color:rgba(124,134,145,.98) !important;
  box-shadow:
    0 18px 34px var(--chrome-deep-shadow-strong),
    inset 0 1px 0 rgba(255,255,255,.58),
    inset 0 0 0 1px rgba(255,255,255,.10),
    inset 0 -1px 0 rgba(12,16,22,.48) !important;
}

main .btn:active,
main button.btn:active,
main .wp-element-button:active,
main .button:active,
main .btn--dark:active,
main .btn--section:active,
.wine-actions .btn:active,
.busch-actions .btn:active,
.feiern-actions .btn:active,
.footer-contact-actions .btn:active,
#kontakt .btn:active,
.slider-controls .slider-btn:active,
.slider-btn:active,
.pill:active,
.tag:active{
  box-shadow:
    0 8px 18px rgba(4,8,13,.34),
    inset 0 2px 5px rgba(6,10,15,.38),
    inset 0 1px 0 rgba(255,255,255,.22),
    inset 0 0 0 1px rgba(255,255,255,.05) !important;
}

.slider-btn[disabled]{
  opacity:.5;
  color:rgba(248,250,252,.58) !important;
}

/* === v139: Schwarze Schrift auf allen bearbeiteten Tag-/Link-Buttons und mobil exakt wie Desktop === */
:root{
  --chrome-button-text:#050607;
  --chrome-button-text-hover:#000000;
}

main .btn,
main button.btn,
main .wp-element-button,
main .button,
main .btn--dark,
main .btn--section,
.wine-actions .btn,
.busch-actions .btn,
.feiern-actions .btn,
.footer-contact-actions .btn,
#kontakt .btn,
.slider-controls .slider-btn,
.slider-btn,
.pill,
.tag{
  color:#050607 !important;
  -webkit-text-fill-color:#050607 !important;
  text-shadow:none !important;
  color-scheme:light !important;
  appearance:none !important;
  -webkit-appearance:none !important;
  background-clip:padding-box !important;
}

main .btn:hover,
main .btn:focus,
main button.btn:hover,
main button.btn:focus,
main .wp-element-button:hover,
main .wp-element-button:focus,
main .button:hover,
main .button:focus,
main .btn--dark:hover,
main .btn--dark:focus,
main .btn--section:hover,
main .btn--section:focus,
.wine-actions .btn:hover,
.wine-actions .btn:focus,
.busch-actions .btn:hover,
.busch-actions .btn:focus,
.feiern-actions .btn:hover,
.feiern-actions .btn:focus,
.footer-contact-actions .btn:hover,
.footer-contact-actions .btn:focus,
#kontakt .btn:hover,
#kontakt .btn:focus,
.slider-controls .slider-btn:hover,
.slider-controls .slider-btn:focus,
.slider-btn:hover,
.slider-btn:focus,
.pill:hover,
.pill:focus,
.tag:hover,
.tag:focus,
main .btn:active,
main button.btn:active,
main .wp-element-button:active,
main .button:active,
main .btn--dark:active,
main .btn--section:active,
.wine-actions .btn:active,
.busch-actions .btn:active,
.feiern-actions .btn:active,
.footer-contact-actions .btn:active,
#kontakt .btn:active,
.slider-controls .slider-btn:active,
.slider-btn:active,
.pill:active,
.tag:active{
  color:#000000 !important;
  -webkit-text-fill-color:#000000 !important;
  text-shadow:none !important;
}

@media (max-width: 980px){
  main .btn,
  main button.btn,
  main .wp-element-button,
  main .button,
  main .btn--dark,
  main .btn--section,
  .wine-actions .btn,
  .busch-actions .btn,
  .feiern-actions .btn,
  .footer-contact-actions .btn,
  #kontakt .btn,
  .slider-controls .slider-btn,
  .slider-btn,
  .pill,
  .tag{
    color:#050607 !important;
    -webkit-text-fill-color:#050607 !important;
    text-shadow:none !important;
    color-scheme:light !important;
    appearance:none !important;
    -webkit-appearance:none !important;
    opacity:1 !important;
  }

  main .btn:hover,
  main .btn:focus,
  main button.btn:hover,
  main button.btn:focus,
  main .wp-element-button:hover,
  main .wp-element-button:focus,
  main .button:hover,
  main .button:focus,
  main .btn--dark:hover,
  main .btn--dark:focus,
  main .btn--section:hover,
  main .btn--section:focus,
  .wine-actions .btn:hover,
  .wine-actions .btn:focus,
  .busch-actions .btn:hover,
  .busch-actions .btn:focus,
  .feiern-actions .btn:hover,
  .feiern-actions .btn:focus,
  .footer-contact-actions .btn:hover,
  .footer-contact-actions .btn:focus,
  #kontakt .btn:hover,
  #kontakt .btn:focus,
  .slider-controls .slider-btn:hover,
  .slider-controls .slider-btn:focus,
  .slider-btn:hover,
  .slider-btn:focus,
  .pill:hover,
  .pill:focus,
  .tag:hover,
  .tag:focus,
  main .btn:active,
  main button.btn:active,
  main .wp-element-button:active,
  main .button:active,
  main .btn--dark:active,
  main .btn--section:active,
  .wine-actions .btn:active,
  .busch-actions .btn:active,
  .feiern-actions .btn:active,
  .footer-contact-actions .btn:active,
  #kontakt .btn:active,
  .slider-controls .slider-btn:active,
  .slider-btn:active,
  .pill:active,
  .tag:active{
    color:#000000 !important;
    -webkit-text-fill-color:#000000 !important;
    text-shadow:none !important;
    opacity:1 !important;
  }
}


/* === v140: Dark-Mode mobil wirklich wie Desktop für alle Button-/Tag-Varianten === */
:root,
html,
body{
  color-scheme:only light !important;
}

:is(
  .btn,
  button.btn,
  .wp-element-button,
  .button,
  .btn--dark,
  .btn--section,
  .nav-actions .btn,
  .footer .btn,
  .footer button.btn,
  .footer-contact-actions .btn,
  .wine-actions .btn,
  .busch-actions .btn,
  .feiern-actions .btn,
  #kontakt .btn,
  .slider-controls .slider-btn,
  .slider-btn,
  .pill,
  .tag
),
:is(
  .btn,
  button.btn,
  .wp-element-button,
  .button,
  .btn--dark,
  .btn--section,
  .nav-actions .btn,
  .footer .btn,
  .footer button.btn,
  .footer-contact-actions .btn,
  .wine-actions .btn,
  .busch-actions .btn,
  .feiern-actions .btn,
  #kontakt .btn,
  .slider-controls .slider-btn,
  .slider-btn,
  .pill,
  .tag
):visited{
  background-color:#8d98a3 !important;
  background-image:var(--chrome-sheen-deep) !important;
  color:#000000 !important;
  -webkit-text-fill-color:#000000 !important;
  border:1px solid var(--chrome-deep-border) !important;
  text-shadow:none !important;
  box-shadow:
    0 14px 28px var(--chrome-deep-shadow),
    inset 0 1px 0 rgba(255,255,255,.50),
    inset 0 0 0 1px rgba(255,255,255,.08),
    inset 0 -1px 0 rgba(9,12,17,.42) !important;
  appearance:none !important;
  -webkit-appearance:none !important;
  color-scheme:only light !important;
  forced-color-adjust:none !important;
  filter:none !important;
  mix-blend-mode:normal !important;
  opacity:1 !important;
  -webkit-tap-highlight-color:transparent !important;
  background-blend-mode:normal !important;
  background-clip:padding-box !important;
}

:is(
  .btn,
  button.btn,
  .wp-element-button,
  .button,
  .btn--dark,
  .btn--section,
  .nav-actions .btn,
  .footer .btn,
  .footer button.btn,
  .footer-contact-actions .btn,
  .wine-actions .btn,
  .busch-actions .btn,
  .feiern-actions .btn,
  #kontakt .btn,
  .slider-controls .slider-btn,
  .slider-btn,
  .pill,
  .tag
):hover,
:is(
  .btn,
  button.btn,
  .wp-element-button,
  .button,
  .btn--dark,
  .btn--section,
  .nav-actions .btn,
  .footer .btn,
  .footer button.btn,
  .footer-contact-actions .btn,
  .wine-actions .btn,
  .busch-actions .btn,
  .feiern-actions .btn,
  #kontakt .btn,
  .slider-controls .slider-btn,
  .slider-btn,
  .pill,
  .tag
):focus,
:is(
  .btn,
  button.btn,
  .wp-element-button,
  .button,
  .btn--dark,
  .btn--section,
  .nav-actions .btn,
  .footer .btn,
  .footer button.btn,
  .footer-contact-actions .btn,
  .wine-actions .btn,
  .busch-actions .btn,
  .feiern-actions .btn,
  #kontakt .btn,
  .slider-controls .slider-btn,
  .slider-btn,
  .pill,
  .tag
):active,
:is(
  .btn,
  button.btn,
  .wp-element-button,
  .button,
  .btn--dark,
  .btn--section,
  .nav-actions .btn,
  .footer .btn,
  .footer button.btn,
  .footer-contact-actions .btn,
  .wine-actions .btn,
  .busch-actions .btn,
  .feiern-actions .btn,
  #kontakt .btn,
  .slider-controls .slider-btn,
  .slider-btn,
  .pill,
  .tag
):hover *,
:is(
  .btn,
  button.btn,
  .wp-element-button,
  .button,
  .btn--dark,
  .btn--section,
  .nav-actions .btn,
  .footer .btn,
  .footer button.btn,
  .footer-contact-actions .btn,
  .wine-actions .btn,
  .busch-actions .btn,
  .feiern-actions .btn,
  #kontakt .btn,
  .slider-controls .slider-btn,
  .slider-btn,
  .pill,
  .tag
):focus *,
:is(
  .btn,
  button.btn,
  .wp-element-button,
  .button,
  .btn--dark,
  .btn--section,
  .nav-actions .btn,
  .footer .btn,
  .footer button.btn,
  .footer-contact-actions .btn,
  .wine-actions .btn,
  .busch-actions .btn,
  .feiern-actions .btn,
  #kontakt .btn,
  .slider-controls .slider-btn,
  .slider-btn,
  .pill,
  .tag
):active *,
:is(
  .btn,
  button.btn,
  .wp-element-button,
  .button,
  .btn--dark,
  .btn--section,
  .nav-actions .btn,
  .footer .btn,
  .footer button.btn,
  .footer-contact-actions .btn,
  .wine-actions .btn,
  .busch-actions .btn,
  .feiern-actions .btn,
  #kontakt .btn,
  .slider-controls .slider-btn,
  .slider-btn,
  .pill,
  .tag
) *,
:is(
  .btn,
  button.btn,
  .wp-element-button,
  .button,
  .btn--dark,
  .btn--section,
  .nav-actions .btn,
  .footer .btn,
  .footer button.btn,
  .footer-contact-actions .btn,
  .wine-actions .btn,
  .busch-actions .btn,
  .feiern-actions .btn,
  #kontakt .btn,
  .slider-controls .slider-btn,
  .slider-btn,
  .pill,
  .tag
):visited *{
  color:#000000 !important;
  -webkit-text-fill-color:#000000 !important;
  text-shadow:none !important;
}

@media (max-width: 980px), (hover: none) and (pointer: coarse){
  :is(
    .btn,
    button.btn,
    .wp-element-button,
    .button,
    .btn--dark,
    .btn--section,
    .nav-actions .btn,
    .footer .btn,
    .footer button.btn,
    .footer-contact-actions .btn,
    .wine-actions .btn,
    .busch-actions .btn,
    .feiern-actions .btn,
    #kontakt .btn,
    .slider-controls .slider-btn,
    .slider-btn,
    .pill,
    .tag
  ),
  :is(
    .btn,
    button.btn,
    .wp-element-button,
    .button,
    .btn--dark,
    .btn--section,
    .nav-actions .btn,
    .footer .btn,
    .footer button.btn,
    .footer-contact-actions .btn,
    .wine-actions .btn,
    .busch-actions .btn,
    .feiern-actions .btn,
    #kontakt .btn,
    .slider-controls .slider-btn,
    .slider-btn,
    .pill,
    .tag
  ):hover,
  :is(
    .btn,
    button.btn,
    .wp-element-button,
    .button,
    .btn--dark,
    .btn--section,
    .nav-actions .btn,
    .footer .btn,
    .footer button.btn,
    .footer-contact-actions .btn,
    .wine-actions .btn,
    .busch-actions .btn,
    .feiern-actions .btn,
    #kontakt .btn,
    .slider-controls .slider-btn,
    .slider-btn,
    .pill,
    .tag
  ):focus,
  :is(
    .btn,
    button.btn,
    .wp-element-button,
    .button,
    .btn--dark,
    .btn--section,
    .nav-actions .btn,
    .footer .btn,
    .footer button.btn,
    .footer-contact-actions .btn,
    .wine-actions .btn,
    .busch-actions .btn,
    .feiern-actions .btn,
    #kontakt .btn,
    .slider-controls .slider-btn,
    .slider-btn,
    .pill,
    .tag
  ):active,
  :is(
    .btn,
    button.btn,
    .wp-element-button,
    .button,
    .btn--dark,
    .btn--section,
    .nav-actions .btn,
    .footer .btn,
    .footer button.btn,
    .footer-contact-actions .btn,
    .wine-actions .btn,
    .busch-actions .btn,
    .feiern-actions .btn,
    #kontakt .btn,
    .slider-controls .slider-btn,
    .slider-btn,
    .pill,
    .tag
  ):visited{
    background-color:#8d98a3 !important;
    background-image:var(--chrome-sheen-deep) !important;
    color:#000000 !important;
    -webkit-text-fill-color:#000000 !important;
    border:1px solid var(--chrome-deep-border) !important;
    box-shadow:
      0 14px 28px var(--chrome-deep-shadow),
      inset 0 1px 0 rgba(255,255,255,.50),
      inset 0 0 0 1px rgba(255,255,255,.08),
      inset 0 -1px 0 rgba(9,12,17,.42) !important;
    color-scheme:only light !important;
    forced-color-adjust:none !important;
    filter:none !important;
    mix-blend-mode:normal !important;
    opacity:1 !important;
  }
}


/* === v141: Smoothere Chrom-Changierung + optimierte Textlesbarkeit === */
:root{
  --chrome-smooth-text:#0d1114;
  --chrome-smooth-text-hover:#080a0c;
  --chrome-smooth-border:rgba(108,116,125,.92);
  --chrome-smooth-shadow:rgba(8,12,17,.28);
  --chrome-smooth-shadow-strong:rgba(6,9,13,.38);
  --chrome-sheen-smooth:
    linear-gradient(180deg,
      rgba(255,255,255,.34) 0%,
      rgba(255,255,255,.16) 16%,
      rgba(255,255,255,.04) 34%,
      rgba(0,0,0,.03) 60%,
      rgba(0,0,0,.12) 100%),
    linear-gradient(90deg,
      #59616a 0%,
      #6c757f 10%,
      #88919b 21%,
      #adb5bd 34%,
      #d7dde3 50%,
      #adb5bd 66%,
      #88919b 79%,
      #6c757f 90%,
      #59616a 100%);
  --chrome-sheen-smooth-hover:
    linear-gradient(180deg,
      rgba(255,255,255,.40) 0%,
      rgba(255,255,255,.18) 16%,
      rgba(255,255,255,.05) 34%,
      rgba(0,0,0,.03) 60%,
      rgba(0,0,0,.13) 100%),
    linear-gradient(90deg,
      #626a73 0%,
      #77808a 10%,
      #949da7 21%,
      #bac2ca 34%,
      #e4e9ee 50%,
      #bac2ca 66%,
      #949da7 79%,
      #77808a 90%,
      #626a73 100%);
}

:is(
  main .btn,
  main button.btn,
  main .wp-element-button,
  main .button,
  main .btn--dark,
  main .btn--section,
  .nav-actions .btn,
  .header-cart-button,
  .wine-actions .btn,
  .busch-actions .btn,
  .feiern-actions .btn,
  .footer .btn,
  .footer button.btn,
  .footer-contact-actions .btn,
  #kontakt .btn,
  .slider-controls .slider-btn,
  .slider-btn,
  .pill,
  .tag
){
  background-color:#8b949d !important;
  background-image:var(--chrome-sheen-smooth) !important;
  color:var(--chrome-smooth-text) !important;
  -webkit-text-fill-color:var(--chrome-smooth-text) !important;
  border:1px solid var(--chrome-smooth-border) !important;
  box-shadow:
    0 12px 24px var(--chrome-smooth-shadow),
    inset 0 1px 0 rgba(255,255,255,.52),
    inset 0 0 0 1px rgba(255,255,255,.08),
    inset 0 -1px 0 rgba(13,17,22,.24) !important;
  text-shadow:0 1px 0 rgba(255,255,255,.26) !important;
  font-weight:600;
  letter-spacing:.01em;
}

:is(
  main .btn,
  main button.btn,
  main .wp-element-button,
  main .button,
  main .btn--dark,
  main .btn--section,
  .nav-actions .btn,
  .header-cart-button,
  .wine-actions .btn,
  .busch-actions .btn,
  .feiern-actions .btn,
  .footer .btn,
  .footer button.btn,
  .footer-contact-actions .btn,
  #kontakt .btn,
  .slider-controls .slider-btn,
  .slider-btn,
  .pill,
  .tag
):hover,
:is(
  main .btn,
  main button.btn,
  main .wp-element-button,
  main .button,
  main .btn--dark,
  main .btn--section,
  .nav-actions .btn,
  .header-cart-button,
  .wine-actions .btn,
  .busch-actions .btn,
  .feiern-actions .btn,
  .footer .btn,
  .footer button.btn,
  .footer-contact-actions .btn,
  #kontakt .btn,
  .slider-controls .slider-btn,
  .slider-btn,
  .pill,
  .tag
):focus{
  background-color:#949da6 !important;
  background-image:var(--chrome-sheen-smooth-hover) !important;
  color:var(--chrome-smooth-text-hover) !important;
  -webkit-text-fill-color:var(--chrome-smooth-text-hover) !important;
  border-color:rgba(116,125,135,.96) !important;
  box-shadow:
    0 15px 28px var(--chrome-smooth-shadow-strong),
    inset 0 1px 0 rgba(255,255,255,.58),
    inset 0 0 0 1px rgba(255,255,255,.10),
    inset 0 -1px 0 rgba(13,17,22,.26) !important;
  text-shadow:0 1px 0 rgba(255,255,255,.30) !important;
}

:is(
  main .btn,
  main button.btn,
  main .wp-element-button,
  main .button,
  main .btn--dark,
  main .btn--section,
  .nav-actions .btn,
  .header-cart-button,
  .wine-actions .btn,
  .busch-actions .btn,
  .feiern-actions .btn,
  .footer .btn,
  .footer button.btn,
  .footer-contact-actions .btn,
  #kontakt .btn,
  .slider-controls .slider-btn,
  .slider-btn,
  .pill,
  .tag
):active{
  color:#060708 !important;
  -webkit-text-fill-color:#060708 !important;
  box-shadow:
    0 8px 16px rgba(6,9,13,.24),
    inset 0 2px 5px rgba(8,12,17,.18),
    inset 0 1px 0 rgba(255,255,255,.24),
    inset 0 0 0 1px rgba(255,255,255,.06) !important;
}

.slider-btn[disabled]{
  color:rgba(13,17,20,.42) !important;
  -webkit-text-fill-color:rgba(13,17,20,.42) !important;
  text-shadow:none !important;
}

@media (max-width:980px), (hover:none) and (pointer:coarse){
  :is(
    .btn,
    button.btn,
    .wp-element-button,
    .button,
    .btn--dark,
    .btn--section,
    .nav-actions .btn,
    .header-cart-button,
    .footer .btn,
    .footer button.btn,
    .footer-contact-actions .btn,
    .wine-actions .btn,
    .busch-actions .btn,
    .feiern-actions .btn,
    #kontakt .btn,
    .slider-controls .slider-btn,
    .slider-btn,
    .pill,
    .tag
  ),
  :is(
    .btn,
    button.btn,
    .wp-element-button,
    .button,
    .btn--dark,
    .btn--section,
    .nav-actions .btn,
    .header-cart-button,
    .footer .btn,
    .footer button.btn,
    .footer-contact-actions .btn,
    .wine-actions .btn,
    .busch-actions .btn,
    .feiern-actions .btn,
    #kontakt .btn,
    .slider-controls .slider-btn,
    .slider-btn,
    .pill,
    .tag
  ):hover,
  :is(
    .btn,
    button.btn,
    .wp-element-button,
    .button,
    .btn--dark,
    .btn--section,
    .nav-actions .btn,
    .header-cart-button,
    .footer .btn,
    .footer button.btn,
    .footer-contact-actions .btn,
    .wine-actions .btn,
    .busch-actions .btn,
    .feiern-actions .btn,
    #kontakt .btn,
    .slider-controls .slider-btn,
    .slider-btn,
    .pill,
    .tag
  ):focus,
  :is(
    .btn,
    button.btn,
    .wp-element-button,
    .button,
    .btn--dark,
    .btn--section,
    .nav-actions .btn,
    .header-cart-button,
    .footer .btn,
    .footer button.btn,
    .footer-contact-actions .btn,
    .wine-actions .btn,
    .busch-actions .btn,
    .feiern-actions .btn,
    #kontakt .btn,
    .slider-controls .slider-btn,
    .slider-btn,
    .pill,
    .tag
  ):active,
  :is(
    .btn,
    button.btn,
    .wp-element-button,
    .button,
    .btn--dark,
    .btn--section,
    .nav-actions .btn,
    .header-cart-button,
    .footer .btn,
    .footer button.btn,
    .footer-contact-actions .btn,
    .wine-actions .btn,
    .busch-actions .btn,
    .feiern-actions .btn,
    #kontakt .btn,
    .slider-controls .slider-btn,
    .slider-btn,
    .pill,
    .tag
  ):visited{
    background-color:#8b949d !important;
    background-image:var(--chrome-sheen-smooth) !important;
    color:var(--chrome-smooth-text) !important;
    -webkit-text-fill-color:var(--chrome-smooth-text) !important;
    border:1px solid var(--chrome-smooth-border) !important;
    box-shadow:
      0 12px 24px var(--chrome-smooth-shadow),
      inset 0 1px 0 rgba(255,255,255,.52),
      inset 0 0 0 1px rgba(255,255,255,.08),
      inset 0 -1px 0 rgba(13,17,22,.24) !important;
    text-shadow:0 1px 0 rgba(255,255,255,.26) !important;
    forced-color-adjust:none !important;
    color-scheme:only light !important;
    filter:none !important;
    mix-blend-mode:normal !important;
    opacity:1 !important;
  }
}


/* === v144: Feiern-Lightbox-Pfeile im Chrome-Button-Stil + Wein-CTA zentriert === */
.lightbox-arrow{
  background-color:#c7ced5 !important;
  background-image:var(--chrome-sheen) !important;
  color:var(--chrome-text-strong) !important;
  border:1px solid var(--chrome-border) !important;
  box-shadow:
    0 12px 26px var(--chrome-shadow),
    inset 0 1px 0 rgba(255,255,255,.92),
    inset 0 -1px 0 rgba(56,64,72,.18) !important;
  text-shadow:0 1px 0 rgba(255,255,255,.55);
  backdrop-filter:none !important;
}

.lightbox-arrow:hover,
.lightbox-arrow:focus-visible{
  background-color:#d7dde3 !important;
  background-image:var(--chrome-sheen-hover) !important;
  color:var(--chrome-text-strong) !important;
  border-color:rgba(130,140,151,.82) !important;
  box-shadow:
    0 16px 32px var(--chrome-shadow-strong),
    inset 0 1px 0 rgba(255,255,255,.98),
    inset 0 -1px 0 rgba(56,64,72,.22) !important;
  outline:none;
}

.lightbox-arrow:active{
  box-shadow:
    0 8px 18px rgba(15,20,26,.24),
    inset 0 2px 3px rgba(88,97,107,.18),
    inset 0 1px 0 rgba(255,255,255,.7) !important;
}

.weine-wrapper .wine-actions{
  justify-content:center !important;
}

.weine-wrapper .wine-actions .wine-cta{
  margin-left:auto;
  margin-right:auto;
}


/* === v145: wine carousel Alignment + Öffnungsstatus vereinfacht === */
.weine-wrapper .slides{
  align-items:stretch;
}

.weine-wrapper .slide{
  display:flex;
  align-self:stretch;
}

.weine-wrapper .wine{
  width:100%;
  height:100%;
}

.weine-wrapper .wine-actions{
  width:100%;
  margin-top:auto !important;
  justify-content:center !important;
}

.weine-wrapper .wine-actions .wine-cta{
  margin-left:auto !important;
  margin-right:auto !important;
}

.weine-wrapper .legal-note{
  text-align:center;
}

.open-badge{
  margin-left:8px;
  display:inline;
  padding:0;
  border:0;
  border-radius:0;
  background:none !important;
  box-shadow:none !important;
  line-height:inherit;
}

.open-badge.is-open{
  font-weight:700;
  color:var(--chrome-smooth-text) !important;
  -webkit-text-fill-color:var(--chrome-smooth-text) !important;
  text-shadow:0 1px 0 rgba(255,255,255,.22);
}

.open-badge.is-closed{
  font-weight:700;
  color:#b00020 !important;
  -webkit-text-fill-color:#b00020 !important;
  text-shadow:none;
}


/* === v146: wine carousel cards gleiche Höhe unabhängig von Beschreibungslänge === */
.weine-wrapper .wine{
  display:grid;
  grid-template-rows:auto auto auto 1fr auto;
  align-items:start;
}

.weine-wrapper .wine-desc{
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:4;
  overflow:hidden;
  min-height:calc(1.5em * 4);
}

.weine-wrapper .wine-meta-list{
  margin-top:12px;
}

.weine-wrapper .wine-actions{
  align-self:end;
}

/* === v148: Alte Weinrebe dezent und zentriert als Hintergrund über die ganze Seite === */
body{
  position:relative;
  min-height:100vh;
  isolation:isolate;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  background-image:url('assets/img/alte-weinrebe-bg.png');
  background-repeat:no-repeat;
  background-position:center center;
  background-size:clamp(860px, 66vw, 1180px) auto;
  opacity:.055;
  pointer-events:none;
  z-index:0;
  filter:drop-shadow(0 0 18px rgba(0,0,0,.04));
}
body > *{
  position:relative;
  z-index:1;
}

.weine-wrapper{
  position:relative;
  overflow:hidden;
}

@media (max-width:900px){
  body::before{
    background-position:center center;
    background-size:clamp(460px, 88vw, 760px) auto;
    opacity:.05;
  }
}

/* === Single Product: mehr Abstand + 75% Bildschirmbreite === */
.single-product.woocommerce div.product,
.single-product.woocommerce-page div.product,
.single-product .woocommerce div.product,
.single-product .woocommerce-page div.product{
  width:min(75vw, 1180px);
  margin-inline:auto;
}

.single-product.woocommerce div.product div.images,
.single-product.woocommerce-page div.product div.images,
.single-product .woocommerce div.product div.images,
.single-product .woocommerce-page div.product div.images{
  width:36%;
}

.single-product.woocommerce div.product div.summary,
.single-product.woocommerce-page div.product div.summary,
.single-product .woocommerce div.product div.summary,
.single-product .woocommerce-page div.product div.summary{
  width:46%;
}

.single-product .woocommerce div.product .product_title,
.single-product .woocommerce-page div.product .product_title,
.single-product.woocommerce div.product .product_title,
.single-product.woocommerce-page div.product .product_title{
  margin-bottom:22px;
}

.single-product .wutte-product-variety{
  margin-bottom:20px;
}

.single-product .woocommerce div.product .woocommerce-product-details__short-description,
.single-product .woocommerce-page div.product .woocommerce-product-details__short-description,
.single-product.woocommerce div.product .woocommerce-product-details__short-description,
.single-product.woocommerce-page div.product .woocommerce-product-details__short-description{
  margin-top:24px;
}

@media (max-width: 980px){
  .single-product.woocommerce div.product,
  .single-product.woocommerce-page div.product,
  .single-product .woocommerce div.product,
  .single-product .woocommerce-page div.product{
    width:100%;
  }

  .single-product.woocommerce div.product div.images,
  .single-product.woocommerce-page div.product div.images,
  .single-product .woocommerce div.product div.images,
  .single-product .woocommerce-page div.product div.images,
  .single-product.woocommerce div.product div.summary,
  .single-product.woocommerce-page div.product div.summary,
  .single-product .woocommerce div.product div.summary,
  .single-product .woocommerce-page div.product div.summary{
    width:100%;
  }
}


/* === v149: Single Product Abstand + Weinsorte Animation + globaler Seitenhintergrund === */
body.page main,
body.single main,
body.blog main,
body.archive main,
body.search main,
body.error404 main,
body.woocommerce main,
body.woocommerce-page main{
  background:transparent;
}

.single-product.woocommerce div.product,
.single-product.woocommerce-page div.product,
.single-product .woocommerce div.product,
.single-product .woocommerce-page div.product{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-start;
  justify-content:space-between;
  column-gap:clamp(36px, 5vw, 84px);
  row-gap:clamp(34px, 4vw, 52px);
}

.single-product.woocommerce div.product div.images,
.single-product.woocommerce-page div.product div.images,
.single-product .woocommerce div.product div.images,
.single-product .woocommerce-page div.product div.images{
  float:none;
  flex:0 1 36%;
  width:auto;
  max-width:420px;
  margin-bottom:0;
}

.single-product.woocommerce div.product div.summary,
.single-product.woocommerce-page div.product div.summary,
.single-product .woocommerce div.product div.summary,
.single-product .woocommerce-page div.product div.summary{
  float:none;
  flex:1 1 320px;
  width:auto;
  min-width:min(320px, 100%);
}

.single-product .wutte-product-variety{
  display:block;
  opacity:0;
  transform:translateX(60px);
  transition:transform .8s ease-out, opacity .8s ease-out;
  will-change:transform, opacity;
}

.single-product .wutte-product-variety.in-view{
  transform:translateX(0);
  opacity:1;
}

@media (max-width: 980px){
  .single-product.woocommerce div.product,
  .single-product.woocommerce-page div.product,
  .single-product .woocommerce div.product,
  .single-product .woocommerce-page div.product{
    width:min(92vw, 720px);
    display:block;
  }

  .single-product.woocommerce div.product div.images,
  .single-product.woocommerce-page div.product div.images,
  .single-product .woocommerce div.product div.images,
  .single-product .woocommerce-page div.product div.images{
    width:100%;
    margin-bottom:clamp(28px, 6vw, 42px);
  }

  .single-product.woocommerce div.product div.summary,
  .single-product.woocommerce-page div.product div.summary,
  .single-product .woocommerce div.product div.summary,
  .single-product .woocommerce-page div.product div.summary{
    width:100%;
    min-width:0;
  }
}

@media (max-width: 640px){
  body::before{
    background-size:clamp(420px, 92vw, 760px) auto;
  }
}

/* === v153: Single Product Beschreibung + Weinzeile als getrennte Bloecke === */
.single-product .woocommerce div.product .woocommerce-product-details__short-description,
.single-product .woocommerce-page div.product .woocommerce-product-details__short-description,
.single-product.woocommerce div.product .woocommerce-product-details__short-description,
.single-product.woocommerce-page div.product .woocommerce-product-details__short-description{
  display:block;
  margin-top:24px;
  margin-bottom:0;
  padding:clamp(18px, 2.2vw, 28px);
  background:rgba(255,255,255,.72);
  border:1px solid rgba(111, 64, 34, .12);
  border-radius:28px;
  box-shadow:0 18px 38px rgba(0,0,0,.08);
  backdrop-filter:blur(4px);
}

.single-product .woocommerce div.product .woocommerce-product-details__short-description > *:first-child,
.single-product .woocommerce-page div.product .woocommerce-product-details__short-description > *:first-child,
.single-product.woocommerce div.product .woocommerce-product-details__short-description > *:first-child,
.single-product.woocommerce-page div.product .woocommerce-product-details__short-description > *:first-child{
  margin-top:0;
}

.single-product .woocommerce div.product .woocommerce-product-details__short-description > *:last-child,
.single-product .woocommerce-page div.product .woocommerce-product-details__short-description > *:last-child,
.single-product.woocommerce div.product .woocommerce-product-details__short-description > *:last-child,
.single-product.woocommerce-page div.product .woocommerce-product-details__short-description > *:last-child{
  margin-bottom:0;
}

.single-product .wutte-product-facts{
  margin:clamp(26px, 3vw, 34px) 0 0;
  padding:clamp(18px, 2.2vw, 28px);
  border-top:none;
  background:rgba(255,255,255,.68);
  border:1px solid rgba(111, 64, 34, .12);
  border-radius:28px;
  box-shadow:0 18px 38px rgba(0,0,0,.08);
  backdrop-filter:blur(4px);
}

@media (max-width: 640px){
  .single-product .woocommerce div.product .woocommerce-product-details__short-description,
  .single-product .woocommerce-page div.product .woocommerce-product-details__short-description,
  .single-product.woocommerce div.product .woocommerce-product-details__short-description,
  .single-product.woocommerce-page div.product .woocommerce-product-details__short-description,
  .single-product .wutte-product-facts{
    border-radius:22px;
    padding:18px;
  }

  .single-product .wutte-product-facts{
    margin-top:22px;
  }
}


/* === v154: neues zentriertes Reben-Hintergrundbild + professionelle Block-Produktseite === */
body::before{
  background-image:url('assets/img/rebe-illustration-bg.png');
  background-repeat:no-repeat;
  background-position:center center;
  background-size:clamp(620px, 44vw, 900px) auto;
  opacity:.1;
  filter:none;
}

.single-product.woocommerce div.product,
.single-product.woocommerce-page div.product,
.single-product .woocommerce div.product,
.single-product .woocommerce-page div.product{
  background:transparent;
  border:none;
  box-shadow:none;
  padding:0;
}

.single-product.woocommerce div.product div.images,
.single-product.woocommerce-page div.product div.images,
.single-product .woocommerce div.product div.images,
.single-product .woocommerce-page div.product div.images{
  padding:clamp(20px, 2.2vw, 30px);
  background:rgba(255,255,255,.76);
  border:1px solid rgba(111,64,34,.12);
  border-radius:32px;
  box-shadow:0 24px 54px rgba(0,0,0,.09);
  backdrop-filter:blur(5px);
}

.single-product.woocommerce div.product div.summary,
.single-product.woocommerce-page div.product div.summary,
.single-product .woocommerce div.product div.summary,
.single-product .woocommerce-page div.product div.summary{
  display:flex;
  flex-direction:column;
  gap:0;
}

.single-product .woocommerce div.product .product_title,
.single-product .woocommerce-page div.product .product_title,
.single-product.woocommerce div.product .product_title,
.single-product.woocommerce-page div.product .product_title{
  margin-bottom:14px;
}

.single-product .wutte-product-variety{
  margin:0 0 26px;
}

.single-product .wutte-product-block{
  position:relative;
  padding:clamp(22px, 2.4vw, 32px);
  background:rgba(255,255,255,.76);
  border:1px solid rgba(111,64,34,.12);
  border-radius:30px;
  box-shadow:0 22px 52px rgba(0,0,0,.09);
  backdrop-filter:blur(5px);
}

.single-product .wutte-product-block + .wutte-product-block{
  margin-top:clamp(22px, 2.8vw, 34px);
}

.single-product .wutte-product-block__eyebrow{
  margin:0 0 16px;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(63,77,39,.78);
  font-weight:700;
}

.single-product .wutte-product-block--description .woocommerce-product-details__short-description,
.single-product .wutte-product-block--description .woocommerce-product-details__short-description > *{
  margin-top:0;
}

.single-product .wutte-product-block--description .woocommerce-product-details__short-description{
  margin:0;
  padding:0;
  background:transparent;
  border:none;
  border-radius:0;
  box-shadow:none;
  backdrop-filter:none;
}

.single-product .wutte-product-block--description .woocommerce-product-details__short-description > *:last-child{
  margin-bottom:0;
}

.single-product .wutte-product-block--wine{
  margin-top:clamp(24px, 3vw, 36px);
}

.single-product .wutte-product-price-row{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px 18px;
  padding-bottom:18px;
  margin-bottom:20px;
  border-bottom:1px solid rgba(111,64,34,.12);
}

.single-product .wutte-product-price-label{
  display:block;
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--muted);
  font-weight:700;
}

.single-product .wutte-product-price-value{
  margin:0;
  font-size:clamp(26px, 3.1vw, 36px);
  line-height:1;
  font-weight:700;
  color:#111;
}

.single-product .summary form.cart{
  margin:0;
  padding:0;
  border:none;
}

.single-product .summary .quantity{
  margin-bottom:14px;
}

.single-product .summary .single_add_to_cart_button{
  width:100%;
  min-height:54px;
}

.single-product .wutte-product-facts{
  margin:22px 0 0;
  padding:20px 0 0;
  background:transparent;
  border:none;
  border-top:1px solid rgba(111,64,34,.12);
  border-radius:0;
  box-shadow:none;
  backdrop-filter:none;
}

.single-product .wutte-product-facts .wutte-product-fact strong,
.single-product .wutte-product-facts .wutte-product-tags strong{
  color:#111;
}

.single-product .wutte-product-facts .wutte-product-tags span{
  display:block;
  margin-top:4px;
}

@media (max-width:980px){
  body::before{
    background-size:clamp(500px, 78vw, 760px) auto;
    opacity:.095;
  }

  .single-product.woocommerce div.product div.images,
  .single-product.woocommerce-page div.product div.images,
  .single-product .woocommerce div.product div.images,
  .single-product .woocommerce-page div.product div.images,
  .single-product .wutte-product-block{
    border-radius:26px;
  }
}

@media (max-width:640px){
  body::before{
    background-size:clamp(420px, 92vw, 620px) auto;
    opacity:.09;
  }

  .single-product .wutte-product-block,
  .single-product.woocommerce div.product div.images,
  .single-product.woocommerce-page div.product div.images,
  .single-product .woocommerce div.product div.images,
  .single-product .woocommerce-page div.product div.images{
    padding:18px;
    border-radius:22px;
  }

  .single-product .wutte-product-price-row{
    gap:8px;
  }

  .single-product .wutte-product-price-value{
    font-size:clamp(24px, 8vw, 32px);
  }
}

/* === v155: Weinbeschreibung Titel schwarz + Überblick-Tags in einer Reihe === */
.single-product .wutte-product-block__eyebrow--headline{
  margin:0 0 18px;
  font-size:clamp(18px, 1.8vw, 22px);
  line-height:1.2;
  letter-spacing:0;
  text-transform:none;
  color:#000;
  font-weight:700;
}

.single-product .wutte-product-block--description .woocommerce-product-details__short-description,
.single-product .wutte-product-block--description .woocommerce-product-details__short-description > *{
  color:#1a1a1a;
}

.single-product .wutte-product-facts{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px 12px;
  margin:0 0 22px;
  padding:0;
  background:transparent;
  border:none;
  box-shadow:none;
  backdrop-filter:none;
}

.single-product .wutte-product-fact-chip{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(17,17,17,.12);
  background:rgba(17,17,17,.045);
  color:#111;
  font-size:14px;
  line-height:1.3;
  white-space:nowrap;
}

.single-product .wutte-product-fact-chip strong{
  font-weight:700;
  color:#000;
}

.single-product .wutte-product-fact-chip span{
  display:inline;
  margin:0;
}

.single-product .wutte-product-fact-chip--plain{
  background:rgba(63,77,39,.08);
  border-color:rgba(63,77,39,.14);
  font-weight:600;
}

.single-product .wutte-product-price-row{
  margin-top:0;
}

@media (max-width: 640px){
  .single-product .wutte-product-block__eyebrow--headline{
    font-size:20px;
    margin-bottom:16px;
  }

  .single-product .wutte-product-facts{
    gap:8px;
    margin-bottom:18px;
  }

  .single-product .wutte-product-fact-chip{
    white-space:normal;
  }
}


/* === v156: Typografie wie wutte.weinbauern.at + Weinrebe stärker und hinter allen Produktblöcken sichtbar === */
body::before{
  background-image:url('assets/img/rebe-illustration-bg.png');
  background-repeat:no-repeat;
  background-position:center 38vh;
  background-size:clamp(760px, 52vw, 1080px) auto;
  opacity:.12;
}

.single-product.woocommerce div.product,
.single-product.woocommerce-page div.product,
.single-product .woocommerce div.product,
.single-product .woocommerce-page div.product{
  position:relative;
  isolation:isolate;
}

.single-product.woocommerce div.product::before,
.single-product.woocommerce-page div.product::before,
.single-product .woocommerce div.product::before,
.single-product .woocommerce-page div.product::before{
  content:"";
  position:absolute;
  inset:-28px -20px;
  background-image:url('assets/img/rebe-illustration-bg.png');
  background-repeat:no-repeat;
  background-position:center 34%;
  background-size:clamp(880px, 74vw, 1280px) auto;
  opacity:.16;
  pointer-events:none;
  z-index:0;
}

.single-product.woocommerce div.product > *,
.single-product.woocommerce-page div.product > *,
.single-product .woocommerce div.product > *,
.single-product .woocommerce-page div.product > *{
  position:relative;
  z-index:1;
}

.single-product .wutte-product-variety{
  font-size:clamp(28px, 4vw, 42px);
  line-height:1.1;
  font-weight:600;
  letter-spacing:-.02em;
  color:var(--fg);
}

.single-product .wutte-product-block__eyebrow--headline{
  margin:0 0 24px;
  font-size:clamp(22px, 2.6vw, 30px);
  line-height:1.3;
  letter-spacing:-.01em;
  text-transform:none;
  color:var(--fg);
  font-weight:600;
}

.single-product .wutte-product-block--description .woocommerce-product-details__short-description,
.single-product .wutte-product-block--description .woocommerce-product-details__short-description > *{
  color:var(--muted);
  font-size:16px;
  line-height:1.7;
  font-weight:400;
}

.single-product.woocommerce div.product div.images,
.single-product.woocommerce-page div.product div.images,
.single-product .woocommerce div.product div.images,
.single-product .woocommerce-page div.product div.images{
  background:rgba(255,255,255,.56);
  box-shadow:0 24px 54px rgba(0,0,0,.08);
  backdrop-filter:blur(3px);
}

.single-product .wutte-product-block{
  background:rgba(255,255,255,.54);
  box-shadow:0 22px 52px rgba(0,0,0,.08);
  backdrop-filter:blur(3px);
}

.single-product .wutte-product-fact-chip{
  background:rgba(255,255,255,.42);
  border-color:rgba(17,17,17,.10);
}

.single-product .wutte-product-fact-chip--plain{
  background:rgba(198,208,142,.20);
  border-color:rgba(63,77,39,.16);
}

@media (max-width:980px){
  body::before{
    background-position:center 240px;
    background-size:clamp(620px, 88vw, 860px) auto;
    opacity:.11;
  }

  .single-product.woocommerce div.product::before,
  .single-product.woocommerce-page div.product::before,
  .single-product .woocommerce div.product::before,
  .single-product .woocommerce-page div.product::before{
    inset:-18px -10px;
    background-position:center 26%;
    background-size:clamp(620px, 98vw, 940px) auto;
    opacity:.145;
  }
}

@media (max-width:640px){
  body::before{
    background-position:center 200px;
    background-size:clamp(520px, 110vw, 760px) auto;
    opacity:.105;
  }

  .single-product.woocommerce div.product::before,
  .single-product.woocommerce-page div.product::before,
  .single-product .woocommerce div.product::before,
  .single-product .woocommerce-page div.product::before{
    inset:-12px -4px;
    background-position:center 24%;
    background-size:clamp(520px, 118vw, 760px) auto;
    opacity:.135;
  }

  .single-product .wutte-product-block__eyebrow--headline{
    margin-bottom:20px;
  }

  .single-product .wutte-product-block,
  .single-product.woocommerce div.product div.images,
  .single-product.woocommerce-page div.product div.images,
  .single-product .woocommerce div.product div.images,
  .single-product .woocommerce-page div.product div.images{
    background:rgba(255,255,255,.5);
  }
}


/* === v157: Typografie wie weingut-wutte.at + zentrierte Bereichsangaben über Blocküberschriften === */
html,body,
button,
input,
select,
textarea{
  font-family: Montserrat, system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
}

body{
  font-weight:400;
  letter-spacing:0;
}

h1,h2,h3,h4,h5,h6,
.busch-title,
.architektur-head,
.single-product .wutte-product-variety,
.single-product .wutte-product-block__eyebrow--headline{
  font-family: Montserrat, system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
  font-weight:600;
  letter-spacing:-.015em;
}

.wutte-section-kicker{
  margin:0 0 10px;
  display:block;
  width:100%;
  text-align:center;
  font-size:12px;
  line-height:1.2;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:rgba(63,77,39,.86);
  font-weight:700;
}

.wutte-heading-with-kicker{
  margin-top:0 !important;
  text-align:center !important;
}

#ueber .about-text,
#tradition .tradition-text,
.architektur-text,
.feiern-text,
.busch-card__content,
.weine-wrapper .slider-head{
  display:flex;
  flex-direction:column;
}

.weine-wrapper .slider-head{
  align-items:center;
  gap:0;
  margin-bottom:16px;
}

.weine-wrapper .slider-head .wutte-section-kicker,
.busch-card__content > .wutte-section-kicker,
.feiern-text > .wutte-section-kicker,
.architektur-text > .wutte-section-kicker,
#tradition .tradition-text > .wutte-section-kicker,
#ueber .about-text > .wutte-section-kicker{
  align-self:center;
}

#ueber .about-text h2,
#tradition .tradition-text h2,
.architektur-head,
.busch-title,
.feiern-text h2,
.weine-wrapper h2{
  max-width:20ch;
  margin-left:auto;
  margin-right:auto;
}

#ueber .about-text h2{
  max-width:26ch;
}

#tradition .tradition-text h2,
.architektur-head,
.busch-title,
.feiern-text h2,
.weine-wrapper h2{
  line-height:1.25;
}

@media (max-width:900px){
  .wutte-section-kicker{
    margin-bottom:8px;
    letter-spacing:.2em;
  }

  #ueber .about-text h2,
  #tradition .tradition-text h2,
  .architektur-head,
  .busch-title,
  .feiern-text h2,
  .weine-wrapper h2{
    max-width:100%;
  }
}


/* === v158: Produktseiten-Artikelüberschriften schwarz + Stil wie Index-Blocküberschriften === */
.single-product .woocommerce div.product .product_title,
.single-product .woocommerce-page div.product .product_title,
.single-product.woocommerce div.product .product_title,
.single-product.woocommerce-page div.product .product_title,
.single-product .wutte-product-variety,
.single-product .wutte-product-block__eyebrow--headline{
  font-family: Montserrat, system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
  font-size:clamp(22px,2.6vw,30px);
  line-height:1.3;
  font-weight:600;
  letter-spacing:-.015em;
  color:#000 !important;
  text-align:left;
}

.single-product .wutte-product-variety,
.single-product .woocommerce div.product .product_title,
.single-product .woocommerce-page div.product .product_title,
.single-product.woocommerce div.product .product_title,
.single-product.woocommerce-page div.product .product_title{
  margin:0 0 24px;
}

.single-product .wutte-product-block__eyebrow--headline{
  margin:0 0 24px;
  text-transform:none;
}

@media (max-width:640px){
  .single-product .woocommerce div.product .product_title,
  .single-product .woocommerce-page div.product .product_title,
  .single-product.woocommerce div.product .product_title,
  .single-product.woocommerce-page div.product .product_title,
  .single-product .wutte-product-variety,
  .single-product .wutte-product-block__eyebrow--headline{
    margin-bottom:20px;
  }
}


/* === v159: Spezial-Sonntage Block unter Buschenschank === */
.special-sundays-section{
  padding:0 0 72px;
  background:linear-gradient(180deg, rgba(198,208,142,.08), transparent);
}
@media (prefers-color-scheme: dark){
  .special-sundays-section{
    background:linear-gradient(180deg, rgba(63,77,39,.16), transparent);
  }
}
.special-sundays-card{
  max-width:980px;
  margin:0 auto;
  padding:30px 34px;
  background:var(--card);
  border:1px solid #ece9e1;
  border-radius:22px;
  box-shadow:0 30px 60px rgba(0,0,0,.12);
  text-align:center;
}
@media (prefers-color-scheme: dark){
  .special-sundays-card{
    border:1px solid #2a2a2a;
    background:var(--card);
  }
}
.special-sundays-title{
  margin:0;
  font-family:Montserrat, system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
  font-size:clamp(24px, 2.8vw, 32px);
  line-height:1.25;
  font-weight:600;
  letter-spacing:-.015em;
  color:var(--fg);
  text-align:center;
  text-transform:uppercase;
}
.special-sundays-sub{
  margin:14px 0 24px;
  font-size:18px;
  line-height:1.6;
  color:var(--fg);
  text-align:center;
}
.special-sundays-list{
  display:grid;
  gap:12px;
  max-width:820px;
  margin:0 auto;
}
.special-sundays-list p{
  margin:0;
  padding:12px 0;
  border-top:1px solid rgba(63,77,39,.14);
  display:grid;
  grid-template-columns:auto auto 1fr;
  gap:14px;
  align-items:start;
  text-align:left;
  font-size:17px;
  line-height:1.6;
  color:var(--fg);
}
.special-sundays-list p:first-child{
  border-top:0;
  padding-top:0;
}
.special-sundays-date{
  font-weight:700;
  white-space:nowrap;
}
.special-sundays-sep{
  font-weight:700;
  opacity:.65;
}
.special-sundays-text{
  min-width:0;
}
@media (max-width:700px){
  .special-sundays-card{
    padding:24px 20px;
  }

  .special-sundays-list p{
    grid-template-columns:1fr;
    gap:4px;
    text-align:center;
  }

  .special-sundays-sep{
    display:none;
  }
}


/* === v161: Mobile-Reihenfolge Ton in Ton / Feiern + Chrome-Rahmen Footer === */
@media (max-width:900px){
  .busch-card{
    display:flex !important;
    flex-direction:column !important;
  }

  .busch-card__media{
    order:1 !important;
  }

  .busch-card__content{
    order:2 !important;
  }

  .feiern-grid{
    display:flex !important;
    flex-direction:column !important;
  }

  .feiern-text{
    order:1 !important;
  }

  .feiern-gallery{
    order:2 !important;
  }
}



/* === v167: Saisonale Öffnungszeiten als schwarze Infobox mit rotem Rahmen === */
.seasonal-note{
  margin-top:18px;
  padding:16px 18px;
  border-radius:12px;
  line-height:1.6;
  text-align:left;
}

.seasonal-note__title,
.seasonal-note__intro,
.seasonal-note__outro{
  margin:0;
}

.seasonal-note__title{
  font-size:16px;
  font-weight:700;
  letter-spacing:.01em;
}

.seasonal-note__list{
  margin:12px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.seasonal-note__list li{
  position:relative;
  margin:0;
  padding:0;
  font-size:14px;
  line-height:1.55;
}

.seasonal-note--pause{
  background:#000;
  color:#fff;
  border:1px solid #b30000;
  box-shadow:none;
  text-shadow:none;
}

.seasonal-note--pause .seasonal-note__title,
.seasonal-note--pause .seasonal-note__title strong,
.seasonal-note--pause .seasonal-note__list,
.seasonal-note--pause .seasonal-note__list li,
.seasonal-note--pause .seasonal-note__list strong,
.seasonal-note--pause .seasonal-note__list span,
.busch-note.seasonal-note,
.footer .footer-seasonal-note{
  color:#fff;
  -webkit-text-fill-color:#fff;
}

.seasonal-note--pause .seasonal-note__list strong{
  font-weight:800;
  letter-spacing:.02em;
}

.footer .footer-seasonal-note{
  margin-top:18px;
}

@media (max-width:640px){
  .seasonal-note{
    padding:14px 15px;
    border-radius:10px;
  }

  .seasonal-note__title{
    font-size:15px;
  }

  .seasonal-note__list li{
    font-size:13px;
    line-height:1.5;
  }
}


/* === v163: WooCommerce Produktvorschläge 4 nebeneinander === */
.single-product .related.products ul.products,
.single-product .upsells.products ul.products,
.woocommerce .related.products ul.products,
.woocommerce .upsells.products ul.products{
  grid-template-columns:repeat(4, minmax(0, 1fr)) !important;
  align-items:stretch;
}

.single-product .related.products ul.products li.product,
.single-product .upsells.products ul.products li.product,
.woocommerce .related.products ul.products li.product,
.woocommerce .upsells.products ul.products li.product{
  height:100%;
}

@media (max-width: 1100px){
  .single-product .related.products ul.products,
  .single-product .upsells.products ul.products,
  .woocommerce .related.products ul.products,
  .woocommerce .upsells.products ul.products{
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px){
  .single-product .related.products ul.products,
  .single-product .upsells.products ul.products,
  .woocommerce .related.products ul.products,
  .woocommerce .upsells.products ul.products{
    grid-template-columns:1fr !important;
  }
}


/* === v164: Produktvorschläge auf Produktseiten – Weinsorte, Preis & CTA === */
.single-product .related ul.products li.product,
.single-product .upsells ul.products li.product,
.single-product .related ul.products li.product .woocommerce-LoopProduct-link,
.single-product .upsells ul.products li.product .woocommerce-LoopProduct-link{
  display:flex;
  flex-direction:column;
}

.single-product .related ul.products li.product,
.single-product .upsells ul.products li.product{
  align-items:stretch;
  text-align:center;
  gap:10px;
}

.single-product .related ul.products li.product .woocommerce-loop-product__title,
.single-product .upsells ul.products li.product .woocommerce-loop-product__title{
  min-height:3.2em;
}

.single-product .wutte-loop-product-variety{
  color:#111;
  font-size:13px;
  font-weight:700;
  line-height:1.35;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin:2px 0 0;
}

.single-product .related ul.products li.product .price,
.single-product .upsells ul.products li.product .price{
  color:#111;
  font-size:18px;
  font-weight:700;
  margin:0;
}

.single-product .related ul.products li.product .button,
.single-product .upsells ul.products li.product .button,
.single-product .related ul.products li.product .wutte-loop-product-link,
.single-product .upsells ul.products li.product .wutte-loop-product-link{
  width:100%;
  margin-top:auto;
}


/* === v165: Produktvorschläge ohne Reben-Hintergrund + WooCommerce Live-Preise === */
.single-product .related.products,
.single-product .upsells.products{
  position:relative;
  margin-top:clamp(30px, 4vw, 48px);
  padding:clamp(18px, 2vw, 28px);
  background:rgba(255,255,255,.96);
  background-image:none !important;
  border:1px solid rgba(111,64,34,.12);
  border-radius:28px;
  box-shadow:0 18px 38px rgba(0,0,0,.08);
  backdrop-filter:blur(4px);
}

.single-product .related.products::before,
.single-product .upsells.products::before{
  content:none !important;
}

.single-product .related.products > h2,
.single-product .upsells.products > h2{
  margin-top:0;
}

.weine-wrapper .wine-meta-list del,
.single-product .wutte-product-price-value del,
.single-product .related ul.products li.product .price del,
.single-product .upsells ul.products li.product .price del{
  opacity:.62;
  margin-right:.35em;
}

.weine-wrapper .wine-meta-list ins,
.single-product .wutte-product-price-value ins,
.single-product .related ul.products li.product .price ins,
.single-product .upsells ul.products li.product .price ins{
  text-decoration:none;
}

.weine-wrapper .wine-meta-list .amount,
.single-product .wutte-product-price-value .amount,
.single-product .related ul.products li.product .price .amount,
.single-product .upsells ul.products li.product .price .amount{
  color:inherit;
  font:inherit;
}


/* === v166: Erstes Header-Slider-Bild durch neues Hero-Foto ersetzt === */


/* === v168: Buschenschank Saisonale Öffnungszeiten mit weißem Hintergrund === */
.busch-note.seasonal-note,
.busch-note.seasonal-note.seasonal-note--pause{
  background:#fff;
  color:#000;
  border:1px solid #b30000;
  box-shadow:none;
  text-shadow:none;
}

.busch-note.seasonal-note .seasonal-note__title,
.busch-note.seasonal-note .seasonal-note__title strong,
.busch-note.seasonal-note .seasonal-note__list,
.busch-note.seasonal-note .seasonal-note__list li,
.busch-note.seasonal-note .seasonal-note__list strong,
.busch-note.seasonal-note .seasonal-note__list span{
  color:#000;
  -webkit-text-fill-color:#000;
}


/* === v169: Wutte's Spezialsonntage breiter, klarer und professioneller === */
.special-sundays-section{
  padding:72px 0;
  background:linear-gradient(180deg, rgba(198,208,142,.12), transparent);
}
@media (prefers-color-scheme: dark){
  .special-sundays-section{
    background:linear-gradient(180deg, rgba(63,77,39,.25), transparent);
  }
}
.special-sundays-card{
  width:100%;
  max-width:none;
  margin:0;
  padding:24px;
  background:var(--card);
  border:1px solid #ece9e1;
  border-radius:22px;
  box-shadow:0 30px 60px rgba(0,0,0,.12);
  text-align:left;
}
@media (prefers-color-scheme: dark){
  .special-sundays-card{
    border:1px solid #2a2a2a;
    background:var(--card);
  }
}
.special-sundays-title{
  margin:0;
  text-align:left;
}
.special-sundays-sub{
  margin:10px 0 22px;
  font-size:15px;
  line-height:1.55;
  letter-spacing:.02em;
  text-transform:uppercase;
  color:var(--muted);
  text-align:left;
}
.special-sundays-list{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
  max-width:none;
  margin:0;
}
.special-sundays-list p{
  margin:0;
  min-height:100%;
  padding:16px 18px;
  border:1px solid rgba(63,77,39,.14);
  border-radius:16px;
  background:linear-gradient(180deg, rgba(255,255,255,.72), rgba(248,247,244,.96));
  display:flex;
  flex-direction:column;
  gap:8px;
  align-items:flex-start;
  justify-content:flex-start;
  text-align:left;
  font-size:15px;
  line-height:1.55;
  color:var(--fg);
  box-shadow:0 10px 24px rgba(0,0,0,.06);
}
@media (prefers-color-scheme: dark){
  .special-sundays-list p{
    background:linear-gradient(180deg, rgba(34,34,34,.92), rgba(26,26,26,.96));
    border-color:rgba(255,255,255,.08);
    box-shadow:none;
  }
}
.special-sundays-list p:first-child{
  border-top:1px solid rgba(63,77,39,.14);
  padding-top:16px;
}
.special-sundays-date{
  display:inline-flex;
  align-items:center;
  padding:4px 10px;
  border-radius:999px;
  background:rgba(63,77,39,.08);
  color:var(--accent);
  font-size:12px;
  line-height:1.2;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:700;
  white-space:nowrap;
}
.special-sundays-sep{
  display:none;
}
.special-sundays-text{
  min-width:0;
  font-size:15px;
  line-height:1.55;
  color:var(--fg);
}
@media (max-width:980px){
  .special-sundays-list{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}
@media (max-width:640px){
  .special-sundays-card{
    padding:22px 18px;
  }
  .special-sundays-list{
    grid-template-columns:1fr;
    gap:12px;
  }
  .special-sundays-list p{
    padding:14px 16px;
  }
}


/* === v170: Spezialsonntage mit Kicker, Vormerken und Reservierungs-Hinweis === */
.special-sundays-card > .wutte-section-kicker{
  margin-bottom:10px;
}
.special-sundays-card > .wutte-heading-with-kicker{
  margin-bottom:20px;
}
.special-sundays-note{
  margin:18px 0 0;
  font-size:15px;
  line-height:1.65;
  color:var(--muted);
  text-align:left;
}
.special-sundays-note a{
  color:var(--accent);
  font-weight:700;
  text-decoration:none;
  border-bottom:1px solid currentColor;
}
.special-sundays-note a:hover,
.special-sundays-note a:focus-visible{
  opacity:.88;
}
@media (max-width:640px){
  .special-sundays-card > .wutte-heading-with-kicker{
    margin-bottom:16px;
  }
  .special-sundays-note{
    margin-top:16px;
    font-size:14px;
  }
}


/* === v171: Link-Buttons 10% kleiner, Kontakt-Titel angepasst, Spezialsonntage-Hinweis zentriert === */
a.btn{
  font-size:12.6px !important;
  padding:9px 14px !important;
}

.nav-actions a.btn{
  min-height:40px !important;
}

.special-sundays-note{
  text-align:center;
}


/* === v175: Slider-Timing, mobile Carousel-Navigation, Header-Buttons und Warenkorb-Titel === */
.line-block-inner{
  transform:translateX(-66px);
  transition:transform 1.9s cubic-bezier(.22,.61,.36,1), opacity 1.9s cubic-bezier(.22,.61,.36,1);
}

.nav-actions > a.btn:not(.header-cart-button){
  font-size:10.7px !important;
  padding:7px 11px !important;
  min-height:34px !important;
}

@media (max-width: 640px){
  .nav-actions > a.btn:not(.header-cart-button){
    flex:0 1 auto !important;
  }
}

@media (max-width: 700px){
  .weine-wrapper .slider{
    padding-inline:0 !important;
  }

  .weine-wrapper .slider-controls,
  .weine-wrapper .slider-arrows,
  .weine-wrapper #weiss-prev,
  .weine-wrapper #weiss-next{
    display:none !important;
  }
}

.woocommerce-cart main.container > h1,
.woocommerce-cart .site-main > h1,
.woocommerce-cart .entry-title,
.woocommerce-cart .page-title{
  color:#050607 !important;
  text-shadow:none !important;
  font-weight:600 !important;
  letter-spacing:-.02em;
}


/* LEGAL / STANDARD PAGES */
.legal-page-section{
  padding:48px 0 72px;
}

.legal-page-grid{
  max-width:980px;
  margin:0 auto;
}

.legal-page-header{
  margin:0 0 22px;
}

.legal-page-grid--legal > .legal-page-panel{
  margin-top:0;
}

.legal-page-panel{
  box-shadow:0 18px 40px rgba(0,0,0,.06);
}

.legal-page-title,
.legal-page-panel h1{
  margin:0 0 20px;
  font-size:clamp(30px,4.4vw,48px);
  line-height:1.08;
  color:#000 !important;
  text-align:left;
}

.legal-page-panel h2{
  margin:30px 0 12px;
  font-size:clamp(22px,2.8vw,30px);
  line-height:1.22;
  color:var(--fg);
  text-align:left;
}

.legal-page-panel h3,
.legal-page-panel h4,
.legal-page-panel h5,
.legal-page-panel h6{
  color:var(--fg);
  text-align:left;
}

.legal-page-panel > *:first-child{
  margin-top:0;
}

.legal-page-panel > *:last-child{
  margin-bottom:0;
}

.legal-page-panel p,
.legal-page-panel li,
.legal-page-panel address{
  font-size:18px;
  line-height:1.75;
  color:#000;
  text-align:left;
}

.legal-page-panel ul,
.legal-page-panel ol{
  margin:0 0 18px;
  padding-left:1.4rem;
}

.legal-page-panel strong{
  color:#000;
}

.legal-page-panel a{
  overflow-wrap:anywhere;
}

@media (max-width: 720px){
  .legal-page-section{
    padding:36px 0 56px;
  }

  .legal-page-panel{
    padding:22px;
  }

  .legal-page-panel p,
  .legal-page-panel li,
  .legal-page-panel address{
    font-size:17px;
  }
}


/* === v180: Mobile Header – Kontakt und Anrufen neben dem Logo, ohne neue Zeile === */
@media (max-width: 980px){
  .nav .inner{
    display:grid;
    grid-template-columns:auto minmax(0,1fr) auto;
    align-items:center;
    gap:12px;
  }

  .brand{
    grid-column:1;
    min-width:0;
  }

  .nav-actions{
    grid-column:2;
    grid-row:1;
    width:auto !important;
    min-width:0;
    margin:0 !important;
    padding-top:0 !important;
    justify-content:center !important;
    justify-self:center;
    display:flex;
    flex-wrap:nowrap !important;
    gap:8px !important;
  }

  .nav-actions > a.btn:not(.header-cart-button){
    flex:0 0 auto !important;
    white-space:nowrap;
    font-size:10.2px !important;
    padding:7px 10px !important;
    min-height:34px !important;
  }

  .wutte-header-cart-fragment{
    display:none !important;
  }

  .mobile-menu-wrapper{
    grid-column:3;
    grid-row:1;
    margin-left:0;
    justify-content:flex-end;
  }
}

@media (max-width: 640px){
  .nav .inner{
    gap:10px;
    padding:10px 0;
  }

  .brand .logo,
  .brand .custom-logo{
    height:48px;
    max-width:min(38vw, 150px);
  }

  .nav-actions{
    gap:6px !important;
  }

  .nav-actions > a.btn:not(.header-cart-button){
    font-size:9.6px !important;
    padding:6px 9px !important;
    min-height:32px !important;
  }
}

@media (max-width: 380px){
  .nav .inner{
    gap:8px;
  }

  .brand .logo,
  .brand .custom-logo{
    max-width:min(34vw, 122px);
  }

  .nav-actions{
    gap:5px !important;
  }

  .nav-actions > a.btn:not(.header-cart-button){
    font-size:9px !important;
    padding:6px 8px !important;
  }

  .burger{
    width:40px;
    height:40px;
  }
}


/* === v181: Woo-Deutsch, Header-Minikorb, Subfooter-Service-Icons und sanfter Hero-Lead === */
html{
  -webkit-text-size-adjust:100%;
}

.nav-actions{
  position:relative;
}
.nav,
.nav .inner,
.nav-actions,
.wutte-header-cart-fragment,
.header-cart-wrap{
  overflow:visible !important;
}


.header-cart-wrap{
  position:relative;
  display:flex;
  align-items:center;
  isolation:isolate;
  z-index:1402;
}

.header-cart-button{
  position:relative;
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  min-width:42px;
  min-height:42px;
  padding:0 !important;
  border-radius:999px;
  background:transparent !important;
  background-image:none !important;
  color:var(--accent) !important;
  border:0 !important;
  box-shadow:none !important;
  text-shadow:none !important;
  overflow:visible;
  appearance:none;
  -webkit-appearance:none;
  cursor:pointer;
  font:inherit;
}

.header-cart-button:hover,
.header-cart-button:focus,
.header-cart-button:focus-visible{
  transform:translateY(-1px);
  background:transparent !important;
  box-shadow:none !important;
  color:var(--accent-2) !important;
  outline:none !important;
}

.header-cart-button__icon{
  display:inline-flex;
  width:22px;
  height:22px;
}

.header-cart-button__icon svg{
  width:100%;
  height:100%;
}

.header-cart-button__count{
  position:absolute;
  top:-2px;
  right:-2px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:17px;
  height:17px;
  padding:0 3px;
  border-radius:999px;
  background:rgba(63,77,39,.12);
  color:var(--accent);
  font-size:10px;
  font-weight:700;
  line-height:1;
  border:0;
}

.header-cart-panel{
  position:absolute;
  top:calc(100% + 6px);
  right:0;
  width:min(360px, calc(100vw - 24px));
  opacity:0;
  pointer-events:none;
  transform:translateY(8px);
  transition:opacity .22s ease, transform .22s ease;
  z-index:1410;
}

.header-cart-wrap.is-open .header-cart-panel{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}

.header-cart-wrap.is-open .header-cart-button{
  color:var(--accent-2) !important;
}

.header-cart-panel::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-14px;
  height:18px;
}

.header-cart-panel__inner{
  background:rgba(255,255,255,.98);
  color:var(--fg);
  border:1px solid rgba(63,77,39,.16);
  border-radius:20px;
  box-shadow:0 22px 42px rgba(0,0,0,.16);
  overflow:auto;
  max-height:min(70vh, 560px);
  overscroll-behavior:contain;
  -webkit-overflow-scrolling:touch;
  backdrop-filter:blur(10px);
}

.header-cart-summary{
  padding:16px;
}

.header-cart-summary__title{
  margin:0 0 12px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--accent);
}

.header-cart-summary__list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
}

.header-cart-summary__item{
  display:grid;
  gap:3px;
  padding-bottom:10px;
  border-bottom:1px solid rgba(63,77,39,.1);
}

.header-cart-summary__item:last-child{
  padding-bottom:0;
  border-bottom:0;
}

.header-cart-summary__item--more{
  color:var(--muted);
  font-size:13px;
}

.header-cart-summary__name{
  font-size:14px;
  line-height:1.35;
  font-weight:600;
}

.header-cart-summary__meta{
  font-size:13px;
  color:var(--muted);
}

.header-cart-summary__footer{
  display:grid;
  gap:12px;
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(63,77,39,.1);
}

.header-cart-summary__totals{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  font-size:14px;
}

.header-cart-summary__totals strong{
  color:var(--accent);
}

.header-cart-summary__actions{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:center;
}

.header-cart-summary__link{
  flex:1 1 140px;
  min-height:40px;
  text-align:center;
}

.header-cart-summary__link--checkout{
  background:var(--accent) !important;
  color:#fff !important;
}

.footer-bottom{
  align-items:flex-start;
}

.footer-bottom-meta{
  display:grid;
  gap:10px;
}

.footer-service-icons{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.footer-service-chip{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  padding:0;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  color:#fff;
  cursor:pointer;
  transition:transform .2s ease, background .2s ease, border-color .2s ease;
}

.footer-service-chip:hover,
.footer-service-chip:focus,
.footer-service-chip.is-open{
  transform:translateY(-1px);
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.28);
}

.footer-service-chip__icon{
  display:inline-flex;
  width:18px;
  height:18px;
}

.footer-service-chip__icon svg{
  width:100%;
  height:100%;
}

.footer-service-chip__tooltip{
  position:absolute;
  left:50%;
  bottom:calc(100% + 10px);
  transform:translate(-50%, 8px);
  width:min(220px, 72vw);
  padding:9px 11px;
  border-radius:12px;
  background:#fff;
  color:#121212;
  font-size:12px;
  line-height:1.45;
  box-shadow:0 16px 30px rgba(0,0,0,.24);
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease, transform .2s ease;
}

.footer-service-chip:hover .footer-service-chip__tooltip,
.footer-service-chip:focus .footer-service-chip__tooltip,
.footer-service-chip.is-open .footer-service-chip__tooltip{
  opacity:1;
  transform:translate(-50%, 0);
}

#hero-lead .line-block{
  display:block;
}

#hero-lead .line-block-inner{
  transform:translate3d(-96px, 0, 0);
  opacity:0;
  transition:transform 2.8s cubic-bezier(.22,.61,.36,1), opacity 2.8s cubic-bezier(.22,.61,.36,1);
}

#hero-lead .line-block-inner.is-visible{
  transform:translate3d(0,0,0);
  opacity:1;
}

#hero-lead.hero-text-hidden,
#hero-lead.hero-text-visible{
  opacity:1;
  transform:none;
}

@media (max-width: 980px){
  .header-cart-panel{
    position:fixed;
    top:calc(var(--wutte-mobile-menu-top) + env(safe-area-inset-top, 0px));
    left:50%;
    right:auto;
    width:min(92vw, 380px);
    transform:translate(-50%, 12px);
  }

  .header-cart-wrap.is-open .header-cart-panel,
  .header-cart-wrap:focus-within .header-cart-panel{
    transform:translate(-50%, 0);
  }
}


@media (max-width: 640px){
  .header-cart-button{
    width:38px;
    height:38px;
    min-width:38px;
    min-height:38px;
  }

  .header-cart-button__icon{
    width:18px;
    height:18px;
  }

  .header-cart-button__count{
    min-width:18px;
    height:18px;
    font-size:9px;
  }

  .header-cart-panel{
    width:min(94vw, 360px);
    left:50%;
    right:auto;
    transform:translate(-50%, 12px);
  }

  .header-cart-wrap.is-open .header-cart-panel,
  .header-cart-wrap:focus-within .header-cart-panel{
    transform:translate(-50%, 0);
  }

  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }

  .footer-legal{
    margin-left:0;
    text-align:left;
  }

  .footer-legal-list{
    justify-content:flex-start;
  }
}



@media (max-width: 980px){
  .wutte-header-cart-fragment{
    display:flex !important;
  }

  .nav-actions > a.btn:not(.header-cart-button){
    min-height:34px !important;
  }
}

@media (max-width: 420px){
  body.wutte-has-cart-items .brand .logo,
  body.wutte-has-cart-items .brand .custom-logo{
    max-width:min(30vw, 110px);
  }

  body.wutte-has-cart-items .nav-actions{
    gap:4px !important;
  }

  body.wutte-has-cart-items .nav-actions > a.btn:not(.header-cart-button){
    font-size:8.6px !important;
    padding:6px 7px !important;
  }
}


/* === v185: Header-Warenkorb stabil klickbar === */
.header-cart-wrap.is-open{
  z-index:1412;
}

.header-cart-wrap.is-open .header-cart-panel,
.header-cart-wrap:focus-within .header-cart-panel{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}

.header-cart-panel__inner a,
.header-cart-panel__inner button{
  position:relative;
  z-index:2;
}

@media (max-width: 980px){
  .header-cart-panel{
    position:fixed;
    top:calc(var(--wutte-mobile-menu-top) + env(safe-area-inset-top, 0px));
    left:50%;
    right:auto;
    width:min(92vw, 380px);
    transform:translate(-50%, 12px);
  }

  .header-cart-wrap.is-open .header-cart-panel,
  .header-cart-wrap:focus-within .header-cart-panel{
    transform:translate(-50%, 0);
  }
}

@media (max-width: 640px){
  .header-cart-panel{
    width:min(94vw, 360px);
  }
}


/* === v190 WooCommerce Checkout: Versandmethoden/Selbstabholung sichtbar halten === */
.woocommerce-checkout #shipping_method,
.woocommerce-checkout ul#shipping_method,
.woocommerce-checkout .woocommerce-shipping-methods,
.woocommerce-checkout .woocommerce-shipping-totals,
.woocommerce-checkout .woocommerce-shipping-totals ul,
.wc-block-checkout .wc-block-components-shipping-rates-control,
.wc-block-checkout .wc-block-components-radio-control,
.wp-block-woocommerce-checkout .wc-block-components-shipping-rates-control{
  display:block !important;
  visibility:visible !important;
  opacity:1 !important;
}

.woocommerce-checkout #shipping_method li,
.woocommerce-checkout ul#shipping_method li,
.woocommerce-checkout .woocommerce-shipping-methods li{
  display:flex !important;
  align-items:center;
  gap:.5rem;
  visibility:visible !important;
  opacity:1 !important;
}


/* === v191: Header-Warenkorb als echter Link, damit Klick/Tap überall funktioniert === */
.header-cart-button,
.header-cart-button:visited,
.header-cart-button:hover,
.header-cart-button:focus{
  text-decoration:none !important;
}

.header-cart-button{
  touch-action:manipulation;
  -webkit-tap-highlight-color:transparent;
}

/* === v192: Mobile WooCommerce + Viewport Stabilisierung === */
html,
body{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}

body,
.site,
.site-main,
main,
.nav,
.footer{
  max-width:100vw;
}

.woocommerce,
.woocommerce-page,
.wc-block-cart,
.wc-block-checkout,
.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout{
  max-width:100%;
  overflow-wrap:anywhere;
}

.woocommerce table,
.woocommerce-page table,
.wc-block-cart table,
.wc-block-checkout table{
  max-width:100%;
}

.woocommerce input,
.woocommerce select,
.woocommerce textarea,
.woocommerce button,
.woocommerce-page input,
.woocommerce-page select,
.woocommerce-page textarea,
.woocommerce-page button,
.wc-block-components-text-input input,
.wc-block-components-combobox input,
.wc-block-components-form input,
.wc-block-components-form select,
.wc-block-components-form textarea{
  max-width:100%;
}

.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order,
.woocommerce button.button.alt,
.wc-block-components-checkout-place-order-button,
.wc-block-cart__submit-button{
  position:relative;
  z-index:20;
  pointer-events:auto;
  touch-action:manipulation;
}

.woocommerce-checkout-review-order,
.woocommerce-checkout #customer_details,
.cart-collaterals .cart_totals,
.woocommerce-cart-form{
  min-width:0;
}

@media (max-width: 782px){
  body{
    overflow-x:hidden;
  }

  .container,
  .nav .inner,
  .woocommerce-page .site-main,
  .woocommerce-page main,
  .woocommerce main,
  .wc-block-cart,
  .wc-block-checkout,
  .wp-block-woocommerce-cart,
  .wp-block-woocommerce-checkout{
    width:100%;
    max-width:100%;
  }

  .container{
    padding-left:16px;
    padding-right:16px;
  }

  .nav-actions{
    min-width:0;
  }

  .wutte-header-cart-fragment,
  .header-cart-wrap,
  .header-cart-button{
    max-width:100%;
  }

  .woocommerce form .form-row,
  .woocommerce-page form .form-row{
    width:100% !important;
    float:none !important;
  }

  .woocommerce form .form-row input.input-text,
  .woocommerce form .form-row textarea,
  .woocommerce form .form-row select,
  .woocommerce-page form .form-row input.input-text,
  .woocommerce-page form .form-row textarea,
  .woocommerce-page form .form-row select,
  .select2-container,
  .select2-container .select2-selection{
    width:100% !important;
    max-width:100% !important;
  }

  .woocommerce-cart-form,
  .cart-collaterals,
  .cart-collaterals .cart_totals,
  .woocommerce-checkout #customer_details,
  .woocommerce-checkout-review-order,
  .woocommerce-checkout-payment,
  #payment{
    width:100% !important;
    max-width:100% !important;
    float:none !important;
    clear:both;
  }

  .woocommerce table.shop_table,
  .woocommerce-page table.shop_table{
    display:block;
    width:100%;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
  }

  .woocommerce #payment #place_order,
  .woocommerce-page #payment #place_order,
  .woocommerce button.button.alt,
  .woocommerce a.checkout-button,
  .wc-block-components-checkout-place-order-button,
  .wc-block-cart__submit-button{
    width:100%;
    min-height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-top:14px;
  }

  .wc-block-components-sidebar,
  .wc-block-components-main,
  .wc-block-cart__main,
  .wc-block-cart__sidebar,
  .wc-block-checkout__main,
  .wc-block-checkout__sidebar{
    width:100% !important;
    max-width:100% !important;
    flex-basis:100% !important;
  }

  .wc-block-components-product-name,
  .wc-block-components-totals-item__label,
  .wc-block-components-totals-item__value{
    overflow-wrap:anywhere;
  }
}

@supports (overflow: clip){
  html,
  body{
    overflow-x:clip;
  }
}

/* === KI-J Performance Patch v202 === */
html, body { overflow-x: clip; color-scheme: light; }
@supports not (overflow-x: clip){ html, body { overflow-x:hidden; } }
.hero-slider{ background:#615846; contain:layout paint; }
.hero-slide:first-child::after{ background:linear-gradient(180deg,rgba(0,0,0,.22),rgba(0,0,0,.16)); }
.hero-slide:first-child img{ filter:brightness(1.16) saturate(1.04) contrast(.98); }
@supports (-webkit-touch-callout: none){
  .hero-slide:first-child img{ filter:brightness(1.24) saturate(1.05) contrast(.96); }
  .hero-slide:first-child::after{ background:linear-gradient(180deg,rgba(0,0,0,.14),rgba(0,0,0,.10)); }
}
.hero-slide:not(.is-active){ pointer-events:none; }
.hero-slide img{ will-change:auto; backface-visibility:hidden; }
.feiern-figure img,
.wine img,
.card img,
.wp-block-image img{ content-visibility:auto; }
main section{ content-visibility:auto; contain-intrinsic-size:1px 720px; }
.hero-slider, .nav, footer, main section:first-child{ content-visibility:visible; contain-intrinsic-size:auto; }
@media (max-width: 780px){
  .hero-slider,.hero-content-wrapper{ min-height:clamp(500px, 72svh, 760px); }
  .hero-content-wrapper{ padding-top:92px; }
  .hero-slide:first-child img{ object-position:center 45%; }
}
@media (prefers-reduced-motion: reduce){
  .hero-slide{ transition:none!important; }
  .hero-slide img{ transform:none!important; }
}

/* WooCommerce auf allen Geräten deutsch halten; Shopbereiche nicht durch Übersetzer überschreiben lassen. */
.wutte-force-german-woocommerce,
.wutte-force-german-woocommerce *{
  translate: no;
}

/* === v180: Professionelle WooCommerce-Shopseite direkt im Wutte Theme === */
:root{
  --wutte-shop-ink:#171713;
  --wutte-shop-muted:#5f5d55;
  --wutte-shop-surface:#fffdf8;
  --wutte-shop-line:rgba(63,77,39,.16);
  --wutte-shop-green:#3f4d27;
  --wutte-shop-green-dark:#263118;
  --wutte-shop-gold:#c6d08e;
  --wutte-shop-cream:#f4f0e5;
  --wutte-shop-shadow:0 24px 70px rgba(28,32,17,.12);
}

.wutte-shop-main{padding-block:0 72px !important;background:radial-gradient(circle at 16% 0%, rgba(198,208,142,.24), transparent 28%),linear-gradient(180deg, rgba(248,247,244,.98), rgba(248,247,244,1));}
.wutte-shop-main .container{width:min(1180px, 92vw);}
.wutte-shop-hero{position:relative;overflow:hidden;color:#fff;padding:clamp(46px, 7vw, 96px) 0;margin:0 0 42px;background:radial-gradient(circle at 12% 18%, rgba(198,208,142,.34), transparent 28%),radial-gradient(circle at 88% 0%, rgba(255,255,255,.14), transparent 31%),linear-gradient(135deg, #151913 0%, #2f3c1d 48%, #485b2a 100%);isolation:isolate;}
.wutte-shop-hero::before{content:"";position:absolute;inset:0;background-image:url('assets/img/wutte-winevine-bg.svg');background-repeat:no-repeat;background-position:right -80px center;background-size:min(560px, 58vw);opacity:.18;z-index:-1;}
.wutte-shop-hero::after{content:"";position:absolute;right:-210px;top:-210px;width:620px;height:620px;border-radius:50%;border:92px solid rgba(255,255,255,.055);z-index:-1;}
.wutte-shop-hero__inner{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,1.08fr) minmax(280px,.58fr);gap:clamp(24px, 5vw, 54px);align-items:end;}
.wutte-shop-kicker,.wutte-shop-hero .wutte-section-kicker{width:max-content;max-width:100%;border:1px solid rgba(255,255,255,.24);background:rgba(255,255,255,.11);color:#fff;padding:9px 14px;border-radius:999px;letter-spacing:.09em;backdrop-filter:blur(10px);}
.wutte-shop-hero h1{margin:20px 0 16px;color:#fff;font-size:clamp(44px, 7.2vw, 88px);line-height:.94;letter-spacing:-.075em;text-wrap:balance;}
.wutte-shop-hero__lead{max-width:720px;margin:0 0 26px;color:rgba(255,255,255,.84);font-size:clamp(18px, 2vw, 22px);line-height:1.55;}
.wutte-shop-hero__meta,.wutte-shop-category-chips{display:flex;flex-wrap:wrap;gap:10px;}
.wutte-shop-hero__meta span,.wutte-shop-category-chips a{display:inline-flex;align-items:center;justify-content:center;min-height:42px;padding:9px 14px;border-radius:999px;border:1px solid rgba(255,255,255,.2);background:rgba(255,255,255,.12);color:#fff;text-decoration:none;font-size:14px;font-weight:800;line-height:1.2;backdrop-filter:blur(12px);}
.wutte-shop-category-chips a:hover,.wutte-shop-category-chips a:focus{background:#fff;color:var(--wutte-shop-green-dark);}
.wutte-shop-hero__panel{border:1px solid rgba(255,255,255,.16);border-radius:30px;background:rgba(255,255,255,.1);box-shadow:0 24px 60px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.18);padding:clamp(22px, 3.2vw, 34px);backdrop-filter:blur(18px);}
.wutte-shop-hero__panel p{margin:14px 0 22px;color:rgba(255,255,255,.78);line-height:1.65;}
.wutte-shop-hero__stat{display:flex;align-items:end;gap:14px;padding-bottom:16px;border-bottom:1px solid rgba(255,255,255,.16);}
.wutte-shop-hero__stat strong{font-size:clamp(54px, 7vw, 78px);line-height:.82;letter-spacing:-.07em;color:var(--wutte-shop-gold);}
.wutte-shop-hero__stat span{margin-bottom:3px;color:#fff;font-weight:800;line-height:1.15;}
.wutte-shop-shell{position:relative;padding-bottom:24px;}
.wutte-min-order-note{margin:0 0 20px;padding:15px 18px;border:1px solid rgba(198,208,142,.62);border-radius:18px;background:linear-gradient(135deg, rgba(198,208,142,.28), rgba(255,255,255,.88));color:var(--wutte-shop-green-dark);box-shadow:0 10px 28px rgba(63,77,39,.08);font-weight:850;}
.wutte-shop-shell .woocommerce-result-count,.woocommerce .wutte-shop-shell .woocommerce-result-count{color:var(--wutte-shop-muted);margin:14px 0 20px;font-size:15px;}
.wutte-shop-shell .woocommerce-ordering{margin:0 0 22px;}
.wutte-shop-shell .woocommerce-ordering select,.woocommerce .wutte-shop-shell .woocommerce-ordering select{min-width:250px;border:1px solid var(--wutte-shop-line);border-radius:999px;background:#fff;color:var(--wutte-shop-ink);padding:12px 18px;box-shadow:0 8px 22px rgba(28,32,17,.06);}
.woocommerce .wutte-shop-shell ul.products,.woocommerce-page .wutte-shop-shell ul.products{display:grid !important;grid-template-columns:repeat(4, minmax(0, 1fr));gap:26px !important;margin:0 !important;padding:0 !important;}
.woocommerce .wutte-shop-shell ul.products::before,.woocommerce .wutte-shop-shell ul.products::after,.woocommerce-page .wutte-shop-shell ul.products::before,.woocommerce-page .wutte-shop-shell ul.products::after{display:none !important;}
.woocommerce .wutte-shop-shell ul.products li.product,.woocommerce-page .wutte-shop-shell ul.products li.product{position:relative;display:flex !important;flex-direction:column;align-items:stretch !important;text-align:left !important;float:none !important;width:auto !important;margin:0 !important;padding:0 !important;overflow:hidden;border:1px solid var(--wutte-shop-line) !important;border-radius:28px !important;background:var(--wutte-shop-surface) !important;box-shadow:0 14px 42px rgba(28,32,17,.08) !important;transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;}
.woocommerce .wutte-shop-shell ul.products li.product:hover,.woocommerce-page .wutte-shop-shell ul.products li.product:hover{transform:translateY(-6px);border-color:rgba(63,77,39,.32) !important;box-shadow:0 28px 76px rgba(28,32,17,.15) !important;}
.woocommerce .wutte-shop-shell ul.products li.product a.woocommerce-LoopProduct-link,.woocommerce-page .wutte-shop-shell ul.products li.product a.woocommerce-LoopProduct-link{display:block;color:inherit;text-decoration:none;}
.woocommerce .wutte-shop-shell ul.products li.product a img,.woocommerce-page .wutte-shop-shell ul.products li.product a img{width:100% !important;max-width:none !important;height:auto !important;aspect-ratio:1 / 1;object-fit:contain !important;margin:0 !important;padding:22px !important;border-radius:0 !important;background:radial-gradient(circle at 50% 45%, rgba(255,255,255,.96) 0 34%, rgba(244,240,229,.92) 35% 100%) !important;box-shadow:none !important;}
.woocommerce .wutte-shop-shell ul.products li.product .woocommerce-loop-product__title,.woocommerce-page .wutte-shop-shell ul.products li.product .woocommerce-loop-product__title{min-height:58px;margin:0 !important;padding:18px 20px 7px !important;color:var(--wutte-shop-ink) !important;font-size:18px !important;line-height:1.25 !important;font-weight:850 !important;letter-spacing:-.025em;}
.woocommerce .wutte-shop-shell ul.products li.product .price,.woocommerce-page .wutte-shop-shell ul.products li.product .price{display:block;margin:0 !important;padding:0 20px 2px !important;color:var(--wutte-shop-green) !important;font-size:18px !important;font-weight:900 !important;}
.woocommerce .wutte-shop-shell ul.products li.product .price del,.woocommerce-page .wutte-shop-shell ul.products li.product .price del{color:var(--wutte-shop-muted);opacity:.72;}
.woocommerce .wutte-shop-shell span.onsale,.woocommerce-page .wutte-shop-shell span.onsale{top:14px !important;left:14px !important;right:auto !important;min-width:auto !important;min-height:auto !important;padding:8px 12px !important;border-radius:999px !important;background:var(--wutte-shop-gold) !important;color:#1d2413 !important;font-weight:900 !important;line-height:1 !important;box-shadow:0 10px 24px rgba(0,0,0,.12);}
.woocommerce .wutte-shop-shell ul.products li.product .button,.woocommerce-page .wutte-shop-shell ul.products li.product .button{width:calc(100% - 40px) !important;min-height:50px !important;margin:auto 20px 20px !important;padding:14px 18px !important;border:1px solid rgba(198,208,142,.48) !important;border-radius:999px !important;background:linear-gradient(135deg, var(--wutte-shop-green-dark), var(--wutte-shop-green)) !important;color:#fff !important;text-align:center !important;font-weight:900 !important;line-height:1.1 !important;text-decoration:none !important;box-shadow:0 14px 28px rgba(38,49,24,.20), inset 0 1px 0 rgba(255,255,255,.18) !important;text-shadow:none !important;}
.woocommerce .wutte-shop-shell ul.products li.product .button:hover,.woocommerce-page .wutte-shop-shell ul.products li.product .button:hover,.woocommerce .wutte-shop-shell ul.products li.product .button:focus,.woocommerce-page .wutte-shop-shell ul.products li.product .button:focus{background:linear-gradient(135deg, #1b2410, #4f6330) !important;color:#fff !important;transform:translateY(-1px);box-shadow:0 18px 34px rgba(38,49,24,.26), inset 0 1px 0 rgba(255,255,255,.22) !important;}
.woocommerce .wutte-shop-shell nav.woocommerce-pagination ul,.woocommerce-page .wutte-shop-shell nav.woocommerce-pagination ul{border:0 !important;display:flex !important;justify-content:center;gap:9px;margin-top:40px !important;}
.woocommerce .wutte-shop-shell nav.woocommerce-pagination ul li,.woocommerce-page .wutte-shop-shell nav.woocommerce-pagination ul li{border:0 !important;}
.woocommerce .wutte-shop-shell nav.woocommerce-pagination ul li a,.woocommerce .wutte-shop-shell nav.woocommerce-pagination ul li span,.woocommerce-page .wutte-shop-shell nav.woocommerce-pagination ul li a,.woocommerce-page .wutte-shop-shell nav.woocommerce-pagination ul li span{min-width:44px;min-height:44px;display:grid;place-items:center;border:1px solid var(--wutte-shop-line) !important;border-radius:14px !important;background:#fff !important;color:var(--wutte-shop-ink) !important;font-weight:850;}
.woocommerce .wutte-shop-shell nav.woocommerce-pagination ul li span.current,.woocommerce .wutte-shop-shell nav.woocommerce-pagination ul li a:hover,.woocommerce-page .wutte-shop-shell nav.woocommerce-pagination ul li span.current,.woocommerce-page .wutte-shop-shell nav.woocommerce-pagination ul li a:hover{background:var(--wutte-shop-green) !important;color:#fff !important;}
.woocommerce .wutte-shop-shell div.product,.woocommerce-page .wutte-shop-shell div.product{border:1px solid var(--wutte-shop-line) !important;border-radius:30px !important;background:var(--wutte-shop-surface) !important;box-shadow:var(--wutte-shop-shadow) !important;}
.woocommerce .wutte-shop-shell div.product div.images img,.woocommerce-page .wutte-shop-shell div.product div.images img{border-radius:24px !important;background:radial-gradient(circle at 50% 45%, #fff 0 34%, var(--wutte-shop-cream) 35% 100%) !important;}
.woocommerce .wutte-shop-shell div.product .product_title,.woocommerce-page .wutte-shop-shell div.product .product_title{font-size:clamp(34px, 5vw, 58px) !important;line-height:1.02 !important;letter-spacing:-.06em;}
.woocommerce .wutte-shop-shell div.product p.price,.woocommerce .wutte-shop-shell div.product span.price,.woocommerce-page .wutte-shop-shell div.product p.price,.woocommerce-page .wutte-shop-shell div.product span.price{color:var(--wutte-shop-green) !important;font-size:clamp(25px, 3.2vw, 34px) !important;font-weight:900 !important;}
.woocommerce .wutte-shop-shell div.product form.cart .button,.woocommerce-page .wutte-shop-shell div.product form.cart .button,.woocommerce .wutte-shop-shell a.button,.woocommerce .wutte-shop-shell button.button,.woocommerce .wutte-shop-shell input.button,.woocommerce-page .wutte-shop-shell a.button,.woocommerce-page .wutte-shop-shell button.button,.woocommerce-page .wutte-shop-shell input.button{border:1px solid rgba(198,208,142,.48) !important;background:linear-gradient(135deg, var(--wutte-shop-green-dark), var(--wutte-shop-green)) !important;color:#fff !important;box-shadow:0 14px 28px rgba(38,49,24,.20), inset 0 1px 0 rgba(255,255,255,.18) !important;text-shadow:none !important;}
.woocommerce .wutte-shop-shell a.button:hover,.woocommerce .wutte-shop-shell button.button:hover,.woocommerce .wutte-shop-shell input.button:hover,.woocommerce-page .wutte-shop-shell a.button:hover,.woocommerce-page .wutte-shop-shell button.button:hover,.woocommerce-page .wutte-shop-shell input.button:hover{background:linear-gradient(135deg, #1b2410, #4f6330) !important;color:#fff !important;}
.woocommerce .wutte-shop-shell .woocommerce-message,.woocommerce .wutte-shop-shell .woocommerce-info,.woocommerce .wutte-shop-shell .woocommerce-error,.woocommerce-page .wutte-shop-shell .woocommerce-message,.woocommerce-page .wutte-shop-shell .woocommerce-info,.woocommerce-page .wutte-shop-shell .woocommerce-error{border-top:0 !important;border:1px solid var(--wutte-shop-line) !important;border-radius:18px !important;background:#fff !important;box-shadow:0 12px 32px rgba(28,32,17,.08) !important;}
@media (max-width:1100px){.woocommerce .wutte-shop-shell ul.products,.woocommerce-page .wutte-shop-shell ul.products{grid-template-columns:repeat(3, minmax(0, 1fr));}}
@media (max-width:860px){.wutte-shop-hero__inner{grid-template-columns:1fr;}.wutte-shop-hero__panel{max-width:640px;}.woocommerce .wutte-shop-shell ul.products,.woocommerce-page .wutte-shop-shell ul.products{grid-template-columns:repeat(2, minmax(0, 1fr));gap:18px !important;}}
@media (max-width:620px){.wutte-shop-main .container{width:min(100vw - 22px, 1180px);}.wutte-shop-hero{padding:38px 0 44px;margin-bottom:28px;}.wutte-shop-hero h1{font-size:clamp(38px, 12vw, 56px);}.wutte-shop-hero__meta span,.wutte-shop-category-chips a{width:100%;justify-content:flex-start;}.woocommerce .wutte-shop-shell ul.products,.woocommerce-page .wutte-shop-shell ul.products{grid-template-columns:1fr;}.wutte-shop-shell .woocommerce-ordering,.wutte-shop-shell .woocommerce-ordering select{width:100%;}.woocommerce .wutte-shop-shell ul.products li.product,.woocommerce-page .wutte-shop-shell ul.products li.product{border-radius:22px !important;}}


/* Wutte Pro Shop Integration – Warenkorb Header & Cart Layout */
.wutte-shop-main--cart{padding-bottom:72px !important;}
.wutte-shop-main--cart .wutte-shop-hero{margin-bottom:42px;}
.wutte-shop-main--cart .wutte-shop-hero__actions a{font-weight:900;}
.wutte-cart-section{position:relative;}
.wutte-cart-shell{padding-bottom:32px;}
.wutte-cart-panel{border:1px solid var(--wutte-shop-line) !important;border-radius:30px !important;background:rgba(255,255,255,.94) !important;box-shadow:var(--wutte-shop-shadow) !important;padding:clamp(18px, 3vw, 34px) !important;}
.wutte-cart-panel .legal-page-title{display:none;}
.wutte-cart-panel .woocommerce{margin:0;}
.wutte-cart-panel .woocommerce-cart-form{overflow:hidden;border:1px solid var(--wutte-shop-line);border-radius:24px;background:#fff;box-shadow:0 16px 44px rgba(28,32,17,.08);}
.wutte-cart-panel table.shop_table{margin:0 !important;border:0 !important;border-collapse:separate !important;border-spacing:0 !important;border-radius:24px !important;overflow:hidden;background:#fff;}
.wutte-cart-panel table.shop_table th{background:linear-gradient(135deg, rgba(198,208,142,.24), rgba(244,240,229,.86));color:var(--wutte-shop-green-dark);font-weight:900;text-transform:none;}
.wutte-cart-panel table.shop_table td,.wutte-cart-panel table.shop_table th{border-color:var(--wutte-shop-line) !important;padding:16px !important;}
.wutte-cart-panel table.cart img{width:82px !important;max-width:82px !important;border-radius:18px;background:var(--wutte-shop-cream);padding:8px;}
.wutte-cart-panel table.cart .product-name a{color:var(--wutte-shop-ink);font-weight:900;text-decoration:none;}
.wutte-cart-panel table.cart .product-name a:hover{color:var(--wutte-shop-green);}
.wutte-cart-panel .quantity .qty{min-height:44px;border:1px solid var(--wutte-shop-line);border-radius:999px;background:#fff;text-align:center;font-weight:850;color:var(--wutte-shop-ink);}
.wutte-cart-panel .cart_totals{margin-top:26px;padding:clamp(18px, 3vw, 28px);border:1px solid var(--wutte-shop-line);border-radius:28px;background:linear-gradient(180deg, #fff, rgba(244,240,229,.7));box-shadow:0 18px 50px rgba(28,32,17,.1);}
.wutte-cart-panel .cart_totals h2{margin-top:0;color:var(--wutte-shop-green-dark);font-size:clamp(28px, 4vw, 42px);line-height:1;letter-spacing:-.055em;}
.wutte-cart-panel .wc-proceed-to-checkout a.checkout-button{display:flex !important;align-items:center;justify-content:center;min-height:56px;border-radius:999px !important;background:linear-gradient(135deg, var(--wutte-shop-green-dark), var(--wutte-shop-green)) !important;color:#fff !important;font-weight:950 !important;box-shadow:0 16px 34px rgba(38,49,24,.24), inset 0 1px 0 rgba(255,255,255,.18) !important;}
.wutte-cart-panel .wc-proceed-to-checkout a.checkout-button:hover{background:linear-gradient(135deg, #1b2410, #4f6330) !important;color:#fff !important;transform:translateY(-1px);}
.wutte-cart-panel .woocommerce a.button,.wutte-cart-panel .woocommerce button.button,.wutte-cart-panel .woocommerce input.button{border-radius:999px !important;font-weight:900 !important;}
.wutte-cart-panel .woocommerce-message,.wutte-cart-panel .woocommerce-info,.wutte-cart-panel .woocommerce-error{border-top:0 !important;border:1px solid var(--wutte-shop-line) !important;border-radius:18px !important;background:#fff !important;box-shadow:0 12px 32px rgba(28,32,17,.08) !important;}
@media (max-width:768px){.wutte-cart-panel{padding:14px !important;border-radius:22px !important;}.wutte-cart-panel .woocommerce-cart-form{border-radius:18px;}.wutte-cart-panel table.shop_table_responsive tr{border-bottom:1px solid var(--wutte-shop-line);}.wutte-cart-panel table.shop_table_responsive tr td{padding:13px 14px !important;}.wutte-cart-panel table.cart img{width:68px !important;max-width:68px !important;}}

/* Wutte Pro Shop Integration – Versand/Selbstabholung Hinweis */
.wutte-fulfillment-note{display:grid;gap:6px;margin:0 0 20px;padding:16px 18px;border:1px solid var(--wutte-shop-line);border-radius:20px;background:linear-gradient(135deg, rgba(198,208,142,.28), rgba(255,255,255,.94));color:var(--wutte-shop-green-dark);box-shadow:0 12px 32px rgba(28,32,17,.08);}
.wutte-fulfillment-note strong{font-size:16px;font-weight:950;letter-spacing:-.02em;}
.wutte-fulfillment-note span{color:var(--wutte-shop-muted);font-weight:750;line-height:1.45;}
.wutte-fulfillment-note.is-ready{border-color:rgba(63,77,39,.26);background:linear-gradient(135deg, rgba(198,208,142,.36), rgba(255,255,255,.96));}
.wutte-fulfillment-note.is-pending{border-color:rgba(177,130,58,.30);background:linear-gradient(135deg, rgba(198,208,142,.20), rgba(255,255,255,.96));}


/* Warenkorb: Option "Adresse ändern" im Versandbereich ausblenden */
.woocommerce-cart .shipping-calculator-button,
.woocommerce-cart .woocommerce-shipping-calculator,
.woocommerce-cart .wc-block-components-totals-shipping__change-address-button,
.woocommerce-cart .wc-block-components-shipping-calculator-address,
.woocommerce-cart .wc-block-components-shipping-calculator {
  display: none !important;
}

/* Wutte Fix 1.9.2 – Mengenfelder klassisch rechteckig und gut lesbar */
.woocommerce .quantity,
.woocommerce-page .quantity,
.wc-block-components-quantity-selector {
  display: inline-flex !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  overflow: visible !important;
  border-radius: 0 !important;
}

.woocommerce .quantity .qty,
.woocommerce-page .quantity .qty,
.woocommerce input.qty,
.woocommerce-page input.qty,
.wc-block-components-quantity-selector__input {
  width: 82px !important;
  min-width: 82px !important;
  max-width: 82px !important;
  height: 46px !important;
  min-height: 46px !important;
  padding: 8px 10px !important;
  border: 1px solid #bfb8aa !important;
  border-radius: 6px !important;
  background: #ffffff !important;
  color: #1a1a1a !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  text-align: center !important;
  box-shadow: none !important;
  text-shadow: none !important;
  opacity: 1 !important;
}

.woocommerce .quantity .qty:focus,
.woocommerce-page .quantity .qty:focus,
.woocommerce input.qty:focus,
.woocommerce-page input.qty:focus,
.wc-block-components-quantity-selector__input:focus {
  outline: 2px solid rgba(63, 77, 39, .24) !important;
  outline-offset: 2px !important;
  border-color: var(--accent, #3f4d27) !important;
}

/* Plus/Minus-Buttons von WooCommerce-/Quantity-Plugins ebenfalls rechteckig halten */
.woocommerce .quantity button,
.woocommerce-page .quantity button,
.woocommerce .quantity .plus,
.woocommerce .quantity .minus,
.woocommerce-page .quantity .plus,
.woocommerce-page .quantity .minus,
.woocommerce button.plus,
.woocommerce button.minus,
.woocommerce-page button.plus,
.woocommerce-page button.minus,
.woocommerce .qib-button,
.woocommerce-page .qib-button,
.woocommerce .qty-button,
.woocommerce-page .qty-button,
.wc-block-components-quantity-selector__button {
  width: 44px !important;
  min-width: 44px !important;
  height: 46px !important;
  min-height: 46px !important;
  padding: 0 !important;
  border: 1px solid #bfb8aa !important;
  border-radius: 6px !important;
  background: #f8f7f4 !important;
  color: #1a1a1a !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: none !important;
  text-indent: 0 !important;
  opacity: 1 !important;
}

.woocommerce .quantity button:hover,
.woocommerce-page .quantity button:hover,
.woocommerce .quantity .plus:hover,
.woocommerce .quantity .minus:hover,
.woocommerce-page .quantity .plus:hover,
.woocommerce-page .quantity .minus:hover,
.woocommerce button.plus:hover,
.woocommerce button.minus:hover,
.woocommerce-page button.plus:hover,
.woocommerce-page button.minus:hover,
.woocommerce .qib-button:hover,
.woocommerce-page .qib-button:hover,
.woocommerce .qty-button:hover,
.woocommerce-page .qty-button:hover,
.wc-block-components-quantity-selector__button:hover {
  background: #ece8dc !important;
  color: var(--accent, #3f4d27) !important;
}

/* Falls ein Plugin die Menge als runden Wrapper ausgibt */
.woocommerce .quantity .quantity-button,
.woocommerce-page .quantity .quantity-button,
.woocommerce .quantity.buttons_added,
.woocommerce-page .quantity.buttons_added,
.woocommerce .qib-container,
.woocommerce-page .qib-container {
  border-radius: 6px !important;
  overflow: visible !important;
}

/* Warenkorb: frühere runde Regel gezielt überstimmen */
.wutte-cart-panel .quantity .qty {
  border-radius: 6px !important;
  width: 82px !important;
  min-width: 82px !important;
  color: #1a1a1a !important;
  background: #ffffff !important;
}

@media (max-width: 520px) {
  .woocommerce .quantity .qty,
  .woocommerce-page .quantity .qty,
  .woocommerce input.qty,
  .woocommerce-page input.qty,
  .wc-block-components-quantity-selector__input {
    width: 76px !important;
    min-width: 76px !important;
    max-width: 76px !important;
    height: 44px !important;
    min-height: 44px !important;
    font-size: 16px !important;
  }

  .woocommerce .quantity button,
  .woocommerce-page .quantity button,
  .woocommerce .quantity .plus,
  .woocommerce .quantity .minus,
  .woocommerce-page .quantity .plus,
  .woocommerce-page .quantity .minus,
  .woocommerce button.plus,
  .woocommerce button.minus,
  .woocommerce-page button.plus,
  .woocommerce-page button.minus,
  .woocommerce .qib-button,
  .woocommerce-page .qib-button,
  .woocommerce .qty-button,
  .woocommerce-page .qty-button,
  .wc-block-components-quantity-selector__button {
    width: 40px !important;
    min-width: 40px !important;
    height: 44px !important;
    min-height: 44px !important;
  }
}

/* Checkout: professioneller Header wie Warenkorb mit aktuellen Bestellinfos */
.wutte-shop-main--checkout {
  padding-bottom: 72px !important;
}

.wutte-shop-hero--checkout .wutte-shop-hero__inner {
  align-items: center;
}

.wutte-checkout-hero__panel {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.wutte-checkout-header-fragment {
  display: grid;
  gap: 16px;
}

.wutte-checkout-hero__stat {
  margin-bottom: 2px;
}

.wutte-checkout-hero__stat.is-pickup-only strong {
  color: #f1d897;
}

.wutte-checkout-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.wutte-checkout-summary-card {
  min-height: 92px;
  padding: 14px 15px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px;
  background: rgba(255,255,255,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}

.wutte-checkout-summary-card span {
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.wutte-checkout-summary-card strong {
  color: #fff;
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.16;
  font-weight: 950;
  letter-spacing: -.025em;
}

.wutte-checkout-summary-card .woocommerce-Price-amount {
  color: #fff;
  font-weight: 950;
}

.wutte-checkout-hero__note {
  margin: 0;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.84);
  font-weight: 800;
  line-height: 1.45;
}

.wutte-checkout-hero__note.is-ready {
  border-color: rgba(198,208,142,.45);
  background: rgba(198,208,142,.18);
  color: #fff;
}

.wutte-checkout-hero__note.is-pickup-only {
  border-color: rgba(241,216,151,.44);
  background: rgba(241,216,151,.14);
  color: #fff4d6;
}

.wutte-checkout-panel {
  max-width: 1120px;
  margin-inline: auto;
}

.wutte-checkout-panel .woocommerce-checkout {
  margin-top: 0;
}

.wutte-checkout-panel #customer_details,
.wutte-checkout-panel .woocommerce-checkout-review-order,
.wutte-checkout-panel .woocommerce-checkout-payment {
  border-radius: 24px;
}

@media (max-width: 980px) {
  .wutte-checkout-summary-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .wutte-shop-hero--checkout .wutte-shop-hero__actions a {
    width: 100%;
  }

  .wutte-checkout-summary-card {
    min-height: auto;
  }
}


/* Checkout Header Update 1.9.5: kompakt, nur Warenkorb-Daten, keine zusätzliche 12-Flaschen-Statusbox */
.wutte-shop-hero--checkout .wutte-checkout-summary-grid,
.wutte-shop-hero--checkout .wutte-checkout-summary-card {
  display: none !important;
}

.wutte-shop-hero--checkout .wutte-checkout-hero__panel {
  justify-content: center;
}

.wutte-shop-hero--checkout .wutte-checkout-header-fragment {
  gap: 18px;
}

.wutte-shop-hero--checkout .wutte-checkout-hero__note {
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.18);
}


/* === v195 Checkout Versandzeile: kein weißer Fremdkörper === */
.wutte-checkout-panel .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals.shipping th,
.wutte-checkout-panel .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals.shipping td,
.wutte-checkout-panel .woocommerce-checkout-review-order-table tr.shipping th,
.wutte-checkout-panel .woocommerce-checkout-review-order-table tr.shipping td,
.woocommerce-checkout .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals.shipping th,
.woocommerce-checkout .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals.shipping td,
.woocommerce-checkout .woocommerce-checkout-review-order-table tr.shipping th,
.woocommerce-checkout .woocommerce-checkout-review-order-table tr.shipping td{
  background: linear-gradient(135deg, rgba(63,77,39,.075), rgba(198,208,142,.20)) !important;
  border-top: 1px solid rgba(63,77,39,.14) !important;
  border-bottom: 1px solid rgba(63,77,39,.10) !important;
  color: var(--wutte-shop-green-dark, #2f3b1d) !important;
  vertical-align: middle !important;
}

.wutte-checkout-panel .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals.shipping th,
.wutte-checkout-panel .woocommerce-checkout-review-order-table tr.shipping th,
.woocommerce-checkout .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals.shipping th,
.woocommerce-checkout .woocommerce-checkout-review-order-table tr.shipping th{
  font-weight: 950 !important;
  letter-spacing: -.01em;
  border-radius: 18px 0 0 18px;
}

.wutte-checkout-panel .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals.shipping td,
.wutte-checkout-panel .woocommerce-checkout-review-order-table tr.shipping td,
.woocommerce-checkout .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals.shipping td,
.woocommerce-checkout .woocommerce-checkout-review-order-table tr.shipping td{
  border-radius: 0 18px 18px 0;
}

.woocommerce-checkout #shipping_method,
.woocommerce-checkout ul#shipping_method,
.woocommerce-checkout .woocommerce-shipping-methods,
.wutte-checkout-panel #shipping_method,
.wutte-checkout-panel ul#shipping_method,
.wutte-checkout-panel .woocommerce-shipping-methods{
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.woocommerce-checkout #shipping_method li,
.woocommerce-checkout ul#shipping_method li,
.woocommerce-checkout .woocommerce-shipping-methods li,
.wutte-checkout-panel #shipping_method li,
.wutte-checkout-panel ul#shipping_method li,
.wutte-checkout-panel .woocommerce-shipping-methods li{
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 10px 12px !important;
  border: 1px solid rgba(63,77,39,.18) !important;
  border-radius: 14px !important;
  background: rgba(248,247,244,.58) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55) !important;
  color: var(--wutte-shop-green-dark, #2f3b1d) !important;
  text-align: left !important;
}

.woocommerce-checkout #shipping_method li + li,
.woocommerce-checkout ul#shipping_method li + li,
.woocommerce-checkout .woocommerce-shipping-methods li + li,
.wutte-checkout-panel #shipping_method li + li,
.wutte-checkout-panel ul#shipping_method li + li,
.wutte-checkout-panel .woocommerce-shipping-methods li + li{
  margin-top: 8px !important;
}

.woocommerce-checkout #shipping_method input[type="radio"],
.woocommerce-checkout ul#shipping_method input[type="radio"],
.woocommerce-checkout .woocommerce-shipping-methods input[type="radio"],
.wutte-checkout-panel #shipping_method input[type="radio"],
.wutte-checkout-panel ul#shipping_method input[type="radio"],
.wutte-checkout-panel .woocommerce-shipping-methods input[type="radio"]{
  flex: 0 0 auto !important;
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
  accent-color: var(--wutte-shop-green, #3f4d27);
}

.woocommerce-checkout #shipping_method label,
.woocommerce-checkout ul#shipping_method label,
.woocommerce-checkout .woocommerce-shipping-methods label,
.wutte-checkout-panel #shipping_method label,
.wutte-checkout-panel ul#shipping_method label,
.wutte-checkout-panel .woocommerce-shipping-methods label{
  flex: 1 1 auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: var(--wutte-shop-green-dark, #2f3b1d) !important;
  font-weight: 900 !important;
  line-height: 1.35 !important;
  cursor: pointer !important;
}

.woocommerce-checkout #shipping_method label .amount,
.woocommerce-checkout ul#shipping_method label .amount,
.woocommerce-checkout .woocommerce-shipping-methods label .amount,
.wutte-checkout-panel #shipping_method label .amount,
.wutte-checkout-panel ul#shipping_method label .amount,
.wutte-checkout-panel .woocommerce-shipping-methods label .amount{
  font-weight: 950 !important;
  color: var(--wutte-shop-green-dark, #2f3b1d) !important;
  white-space: nowrap;
}

/* WooCommerce Blocks: Versandauswahl ebenfalls in Wutte-Optik halten */
.wp-block-woocommerce-checkout .wc-block-components-shipping-rates-control,
.wc-block-checkout .wc-block-components-shipping-rates-control{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.wp-block-woocommerce-checkout .wc-block-components-radio-control__option,
.wc-block-checkout .wc-block-components-radio-control__option,
.wp-block-woocommerce-checkout .wc-block-components-radio-control-accordion-option,
.wc-block-checkout .wc-block-components-radio-control-accordion-option{
  background: rgba(248,247,244,.58) !important;
  border: 1px solid rgba(63,77,39,.18) !important;
  border-radius: 14px !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55) !important;
  color: var(--wutte-shop-green-dark, #2f3b1d) !important;
}

.wp-block-woocommerce-checkout .wc-block-components-radio-control__option:has(input:checked),
.wc-block-checkout .wc-block-components-radio-control__option:has(input:checked){
  background: rgba(198,208,142,.26) !important;
  border-color: rgba(63,77,39,.34) !important;
}

@media (max-width: 782px){
  .woocommerce-checkout .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals.shipping th,
  .woocommerce-checkout .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals.shipping td,
  .woocommerce-checkout .woocommerce-checkout-review-order-table tr.shipping th,
  .woocommerce-checkout .woocommerce-checkout-review-order-table tr.shipping td{
    display: block !important;
    width: 100% !important;
    border-radius: 0 !important;
    text-align: left !important;
  }

  .woocommerce-checkout .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals.shipping th,
  .woocommerce-checkout .woocommerce-checkout-review-order-table tr.shipping th{
    border-radius: 18px 18px 0 0 !important;
    padding-bottom: 6px !important;
  }

  .woocommerce-checkout .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals.shipping td,
  .woocommerce-checkout .woocommerce-checkout-review-order-table tr.shipping td{
    border-radius: 0 0 18px 18px !important;
    padding-top: 8px !important;
  }

  .woocommerce-checkout #shipping_method li,
  .woocommerce-checkout ul#shipping_method li,
  .woocommerce-checkout .woocommerce-shipping-methods li{
    padding: 12px !important;
  }
}


/* === v196 Danke-Seite: Header im Warenkorb-/Checkout-Stil === */
.wutte-shop-main--order-received .wutte-shop-hero--order-received {
  margin-bottom: 0;
}

.wutte-shop-hero--order-received .wutte-shop-hero__lead {
  max-width: 760px;
}

.wutte-order-received-hero__panel {
  gap: 18px;
}

.wutte-order-received-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}

.wutte-order-received-mini-card,
.wutte-order-received-info-card {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.12);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
}

.wutte-order-received-mini-card {
  padding: 14px 12px;
  text-align: center;
}

.wutte-order-received-mini-card span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255,255,255,.74);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.wutte-order-received-mini-card strong {
  display: block;
  color: #fff;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 950;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.wutte-order-received-info-card {
  width: 100%;
  padding: 18px;
  color: #fff;
}

.wutte-order-received-info-card h2 {
  margin: 0 0 7px;
  color: #fff;
  font-size: clamp(1.15rem, 2.3vw, 1.55rem);
  font-weight: 950;
  letter-spacing: -.02em;
}

.wutte-order-received-info-card p {
  margin: 0;
  color: rgba(255,255,255,.88);
  font-weight: 700;
  line-height: 1.45;
}

.wutte-order-received-hours,
.wutte-order-received-bank-details {
  margin-top: 14px;
}

.wutte-order-received-hours {
  display: grid;
  gap: 5px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
}

.wutte-order-received-hours strong,
.wutte-order-received-hours span {
  color: #fff;
}

.wutte-order-received-hours strong {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.wutte-order-received-hours span {
  font-weight: 900;
  line-height: 1.35;
}

.wutte-order-received-bank-details {
  display: grid;
  gap: 8px;
}

.wutte-order-received-detail-row {
  display: grid;
  grid-template-columns: minmax(92px, .6fr) minmax(0, 1.4fr);
  gap: 12px;
  align-items: center;
  padding: 11px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
}

.wutte-order-received-detail-row span {
  color: rgba(255,255,255,.72);
  font-size: .77rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.wutte-order-received-detail-row strong {
  color: #fff;
  font-size: .98rem;
  font-weight: 950;
  text-align: right;
  overflow-wrap: anywhere;
}

.wutte-order-received-detail-row.is-iban strong {
  font-size: clamp(.9rem, 1.8vw, 1.06rem);
  letter-spacing: .02em;
}

.wutte-order-received-section .wutte-order-received-panel {
  border-color: rgba(63,77,39,.14);
}

.wutte-order-received-section .woocommerce-order {
  margin-top: 0;
}

@media (max-width: 900px) {
  .wutte-order-received-summary-grid {
    grid-template-columns: 1fr;
  }

  .wutte-order-received-detail-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .wutte-order-received-detail-row strong {
    text-align: left;
  }
}


/* === v199: Shopseite schlanker – Titel, Ergebnisanzahl und Sortierung ausblenden === */
.wutte-shop-main--catalog .woocommerce-products-header,
.wutte-shop-main--catalog .woocommerce-products-header__title,
.wutte-shop-main--catalog .page-title,
.wutte-shop-shell .woocommerce-result-count,
.wutte-shop-shell .woocommerce-ordering {
  display: none !important;
}


/* === v200: Shop-Minimum-Zahl im Header kleiner, Footer-Zahlungsbilder entfernt === */
.wutte-shop-hero__stat--shipping-min strong{
  font-size:clamp(27px, 3.5vw, 39px);
  letter-spacing:-.04em;
  line-height:.95;
}
.wutte-shop-hero__stat--shipping-min span{
  margin-bottom:1px;
}
.footer-service-icons{
  display:none!important;
}

/* === v2.0.1 Checkout: Zahlungsart-Auswahl bei Selbstabholung ausblenden === */
body.woocommerce-checkout.wutte-local-pickup-selected #payment ul.wc_payment_methods,
body.woocommerce-checkout.wutte-local-pickup-selected #payment .wc_payment_methods,
body.woocommerce-checkout.wutte-local-pickup-selected .woocommerce-checkout-payment ul.wc_payment_methods,
body.woocommerce-checkout.wutte-local-pickup-selected .woocommerce-checkout-payment .payment_methods,
body.woocommerce-checkout.wutte-local-pickup-selected .woocommerce-checkout-payment .payment_box,
body.woocommerce-checkout.wutte-local-pickup-selected .woocommerce-checkout-payment .wutte-hide-payment-choice,
body.woocommerce-checkout.wutte-local-pickup-selected .wutte-hide-payment-heading{
  display: none !important;
}

body.woocommerce-checkout.wutte-local-pickup-selected #payment,
body.woocommerce-checkout.wutte-local-pickup-selected .woocommerce-checkout-payment{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding-top: 0 !important;
}

body.woocommerce-checkout.wutte-local-pickup-selected #payment .place-order,
body.woocommerce-checkout.wutte-local-pickup-selected .woocommerce-checkout-payment .place-order{
  display: block !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body.woocommerce-checkout.wutte-local-pickup-selected #payment #place_order,
body.woocommerce-checkout.wutte-local-pickup-selected .woocommerce-checkout-payment #place_order{
  display: flex !important;
}


/* === Update 2026-05-09: Header im Schauer-inspirierten Stil === */
.hero-content-wrapper{
  align-items:end;
  padding:clamp(130px, 18vh, 220px) 0 clamp(70px, 10vh, 120px);
}
.hero-inner-text{
  width:min(100%, 920px);
  max-width:920px;
  margin:0 auto;
  padding-inline:clamp(18px, 4vw, 64px);
  text-align:center;
  text-shadow:0 10px 34px rgba(0,0,0,.42);
}
.hero-inner-text .hero-text{
  margin:0;
  font-size:clamp(46px, 8.2vw, 118px);
  line-height:.86;
  font-weight:600;
  letter-spacing:-.075em;
  text-align:center;
  text-wrap:balance;
  color:#fff;
}
.hero-inner-text .hero-subline{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  width:auto;
  margin:clamp(16px, 2.4vw, 28px) auto 0;
  padding:9px 18px 8px;
  border:1px solid rgba(255,255,255,.42);
  border-radius:999px;
  background:rgba(20,20,18,.16);
  color:rgba(255,255,255,.9);
  font-size:clamp(13px, 1.05vw, 17px);
  line-height:1.1;
  font-weight:600;
  letter-spacing:.18em;
  text-transform:uppercase;
  text-align:center;
  backdrop-filter:blur(8px);
}
.hero-inner-text .lead,
#hero-lead[hidden]{
  display:none !important;
}
.hero-slide::after{
  background:
    linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.1) 42%, rgba(0,0,0,.42) 100%),
    linear-gradient(90deg, rgba(0,0,0,.08), rgba(0,0,0,0) 34%, rgba(0,0,0,.08));
}
.hero-slide:first-child::after{
  background:
    linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.08) 42%, rgba(0,0,0,.4) 100%),
    linear-gradient(90deg, rgba(0,0,0,.06), rgba(0,0,0,0) 34%, rgba(0,0,0,.06));
}
.wutte-js .hero-inner-text .hero-text,
.wutte-js .hero-inner-text .hero-subline,
.wutte-js .hero-inner-text .lead,
.hero-inner-text .hero-text-hidden,
.hero-inner-text .hero-subline.hero-text-hidden,
.hero-inner-text .lead.hero-text-hidden{
  opacity:0;
  transform:translate3d(0, 42px, 0);
  filter:blur(8px);
}
.wutte-js .hero-inner-text .hero-text.hero-text-visible,
.wutte-js .hero-inner-text .hero-subline.hero-text-visible,
.wutte-js .hero-inner-text .lead.hero-text-visible,
.hero-inner-text .hero-text-visible,
.hero-inner-text .hero-subline.hero-text-visible,
.hero-inner-text .lead.hero-text-visible{
  opacity:1;
  transform:translate3d(0, 0, 0);
  filter:blur(0);
}
.hero-inner-text .hero-text,
.hero-inner-text .hero-subline,
.hero-inner-text .lead{
  transition:transform 2.2s cubic-bezier(.19,1,.22,1), opacity 2.2s cubic-bezier(.19,1,.22,1), filter 2.2s cubic-bezier(.19,1,.22,1);
}
.hero-inner-text .line-block{
  display:block;
  overflow:hidden;
}
.hero-inner-text .line-block-inner,
#hero-lead .line-block-inner{
  transform:translate3d(0, 110%, 0);
  opacity:0;
  transition:transform 2.25s cubic-bezier(.19,1,.22,1), opacity 2.25s cubic-bezier(.19,1,.22,1);
}
.hero-inner-text .line-block-inner.is-visible,
#hero-lead .line-block-inner.is-visible{
  transform:translate3d(0, 0, 0);
  opacity:1;
}
.hero-controls{
  bottom:22px;
}
@media (max-width:780px){
  .hero-content-wrapper{
    align-items:end;
    padding-top:110px;
    padding-bottom:72px;
  }
  .hero-inner-text{
    max-width:100%;
    padding-inline:18px;
  }
  .hero-inner-text .hero-text{
    font-size:clamp(42px, 16vw, 76px);
    letter-spacing:-.068em;
  }
  .hero-inner-text .hero-subline{
    letter-spacing:.14em;
  }
}

/* === v202 WooCommerce Header: mehr Zeilenabstand, kein Überschneiden === */
.wutte-pro-shop-active .wutte-shop-hero h1,
.woocommerce-page .wutte-shop-hero h1,
.woocommerce .wutte-shop-hero h1 {
  line-height: 1.12 !important;
  letter-spacing: -0.045em !important;
  margin-top: clamp(22px, 3vw, 30px) !important;
  margin-bottom: clamp(18px, 2.6vw, 28px) !important;
  overflow-wrap: normal;
  word-break: normal;
}

.wutte-pro-shop-active .wutte-shop-hero__lead,
.woocommerce-page .wutte-shop-hero__lead,
.woocommerce .wutte-shop-hero__lead {
  line-height: 1.72 !important;
  margin-bottom: clamp(28px, 3vw, 38px) !important;
}

.wutte-pro-shop-active .wutte-shop-hero__content,
.woocommerce-page .wutte-shop-hero__content,
.woocommerce .wutte-shop-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.wutte-pro-shop-active .wutte-shop-hero__meta,
.woocommerce-page .wutte-shop-hero__meta,
.woocommerce .wutte-shop-hero__meta {
  gap: 14px 12px !important;
  margin-top: 2px;
}

.wutte-pro-shop-active .wutte-shop-hero__meta span,
.woocommerce-page .wutte-shop-hero__meta span,
.woocommerce .wutte-shop-hero__meta span {
  line-height: 1.35 !important;
  min-height: 46px !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  white-space: normal;
}

.wutte-shop-hero--checkout .wutte-shop-hero__inner,
.wutte-shop-hero--order-received .wutte-shop-hero__inner {
  gap: clamp(34px, 5.6vw, 68px) !important;
  align-items: center !important;
}

.wutte-order-received-mini-card strong,
.wutte-order-received-info-card h2,
.wutte-order-received-info-card p,
.wutte-order-received-detail-row strong,
.wutte-order-received-hours span,
.wutte-checkout-hero__note {
  line-height: 1.45 !important;
}

@media (max-width: 760px) {
  .wutte-pro-shop-active .wutte-shop-hero,
  .woocommerce-page .wutte-shop-hero,
  .woocommerce .wutte-shop-hero {
    padding-top: 44px !important;
    padding-bottom: 50px !important;
  }

  .wutte-pro-shop-active .wutte-shop-hero h1,
  .woocommerce-page .wutte-shop-hero h1,
  .woocommerce .wutte-shop-hero h1 {
    font-size: clamp(34px, 10.4vw, 52px) !important;
    line-height: 1.16 !important;
    letter-spacing: -0.035em !important;
  }

  .wutte-pro-shop-active .wutte-shop-hero__lead,
  .woocommerce-page .wutte-shop-hero__lead,
  .woocommerce .wutte-shop-hero__lead {
    font-size: 17px !important;
    line-height: 1.78 !important;
  }
}

/* === v203 WooCommerce Danke-Seite: Versandbestellung klarer abgegrenzt === */
.wutte-shop-hero--order-received .wutte-shop-hero__meta {
  margin-top: clamp(18px, 2.4vw, 28px) !important;
  padding-top: clamp(14px, 1.8vw, 20px) !important;
  border-top: 1px solid rgba(255,255,255,.20) !important;
}

.wutte-shop-hero--order-received .wutte-shop-hero__meta span {
  border-color: rgba(255,255,255,.34) !important;
  background: rgba(255,255,255,.16) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 10px 24px rgba(0,0,0,.10) !important;
}

.wutte-shop-hero--order-received .wutte-order-received-hero__panel {
  display: flex !important;
  flex-direction: column !important;
  gap: clamp(24px, 3.2vw, 36px) !important;
}

.wutte-shop-hero--order-received .wutte-order-received-summary-grid {
  margin-bottom: 0 !important;
}

.wutte-shop-hero--order-received .wutte-order-received-info-card {
  position: relative;
  margin: 0 !important;
  padding: clamp(24px, 3vw, 32px) !important;
  border-radius: 24px !important;
  border: 1.5px solid rgba(255,255,255,.34) !important;
  background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.10)) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 18px 42px rgba(0,0,0,.16) !important;
}

.wutte-shop-hero--order-received .wutte-order-received-info-card::before,
.wutte-shop-hero--order-received .wutte-order-received-info-card::after {
  content: "";
  position: absolute;
  left: clamp(18px, 2.4vw, 28px);
  right: clamp(18px, 2.4vw, 28px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
  pointer-events: none;
}

.wutte-shop-hero--order-received .wutte-order-received-info-card::before {
  top: -13px;
}

.wutte-shop-hero--order-received .wutte-order-received-info-card::after {
  bottom: -13px;
}

.wutte-shop-hero--order-received .wutte-order-received-info-card--bank {
  border-color: rgba(198,208,142,.68) !important;
  background: linear-gradient(135deg, rgba(198,208,142,.25), rgba(255,255,255,.12)) !important;
}

.wutte-shop-hero--order-received .wutte-order-received-info-card h2 {
  margin: 0 0 14px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid rgba(255,255,255,.22) !important;
  line-height: 1.28 !important;
}

.wutte-shop-hero--order-received .wutte-order-received-info-card p {
  line-height: 1.68 !important;
  max-width: 56ch;
}

.wutte-shop-hero--order-received .wutte-shop-hero__actions {
  margin-top: 0 !important;
  padding-top: clamp(6px, 1vw, 10px) !important;
}

@media (max-width: 760px) {
  .wutte-shop-hero--order-received .wutte-order-received-hero__panel {
    gap: 28px !important;
  }

  .wutte-shop-hero--order-received .wutte-order-received-info-card {
    padding: 22px !important;
  }

  .wutte-shop-hero--order-received .wutte-order-received-info-card::before {
    top: -15px;
  }

  .wutte-shop-hero--order-received .wutte-order-received-info-card::after {
    bottom: -15px;
  }
}
