/* ==========================================================================
   GÄU NÄHATELIER V6 — PRICE CATALOG + MOBILE HEADER FINAL
   ========================================================================== */

:root{
  --v6-bg:#faf8f4;
  --v6-card:#fff;
  --v6-soft:#f8f3ef;
  --v6-soft2:#fcfaf8;
  --v6-ink:#2d2824;
  --v6-text:#5f5852;
  --v6-muted:#7a726b;
  --v6-line:#ddd1c8;
  --v6-line2:#ece3dc;
  --v6-accent:#a35f47;
  --v6-accent-dark:#754436;
  --v6-accent-soft:#f0dfd7;
  --v6-dark:#25211e;
}

/* Font distribution */
.v2 h1,
.v2 h2,
.v6-price-category-head h3{
  font-family:"Baskerville","Iowan Old Style","Palatino Linotype",Georgia,serif!important;
}
.v2-content,
.v6-price-table,
.v2-sidebar,
.v2-btn{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue",Arial,sans-serif!important;
}

/* Header logo and hierarchy */
.v2-brand-image{
  width:142px!important;
  height:64px!important;
  flex:0 0 142px!important;
}
.v2-brand-image img{
  width:100%!important;
  height:100%!important;
  object-fit:contain!important;
  object-position:left center!important;
}

/* Mobile/tablet does not need Termin anfragen next to hamburger.
   Bottom CTA already provides Anfrage/WhatsApp/Anrufen. */
@media(max-width:1024px){
  .v2-nav > .v2-btn-primary{
    display:none!important;
  }

  .v2-links{
    display:none!important;
  }

  .v2-menu-btn{
    display:flex!important;
    margin-left:auto!important;
  }

  .v2-mobile-menu{
    max-height:calc(100dvh - 82px)!important;
    overflow-y:auto!important;
    overscroll-behavior:contain!important;
  }

  body.v2-menu-open{
    overflow:hidden!important;
  }
}

/* Mobile menu: quiet premium panel */
.v2-menu-btn{
  width:44px!important;
  height:44px!important;
  min-width:44px!important;
  padding:0!important;
  align-items:center!important;
  justify-content:center!important;
  border:1px solid #d8ccc4!important;
  border-radius:8px!important;
  background:#fff!important;
  color:#312c28!important;
  box-shadow:0 4px 12px rgba(41,33,28,.05)!important;
  font-size:23px!important;
  line-height:1!important;
}
.v2-menu-btn.is-open{
  color:#774838!important;
  background:#f8f1ed!important;
  border-color:#c9aa9b!important;
}
.v2-mobile-menu{
  padding:9px 18px 15px!important;
  background:rgba(250,248,244,.99)!important;
  border-top:1px solid var(--v6-line)!important;
  border-bottom:1px solid var(--v6-line)!important;
  box-shadow:0 18px 36px rgba(39,31,27,.12)!important;
}
.v2-mobile-menu a{
  min-height:49px!important;
  padding:12px 4px!important;
  border-bottom:1px solid #e8dfd8!important;
  color:#403934!important;
  -webkit-text-fill-color:#403934!important;
  font-size:15px!important;
  font-weight:700!important;
}
.v2-mobile-menu a:last-child{border-bottom:0!important}

/* Price intro: no duplicated H1 text */
.v6-price-intro{
  margin-bottom:20px;
}
.v6-price-intro .v2-label{
  margin-bottom:9px!important;
}
.v6-price-intro h2{
  margin:0 0 9px!important;
  color:var(--v6-ink)!important;
  font-size:clamp(30px,3.2vw,40px)!important;
  line-height:1.1!important;
  font-weight:500!important;
  letter-spacing:-.03em!important;
}
.v6-price-intro p{
  max-width:680px;
  margin:0!important;
  color:#706760!important;
  font-size:14px!important;
  line-height:1.65!important;
}

/* Catalogue container */
.v2-price-content{
  margin-top:0!important;
}
.v6-price-catalog{
  display:grid;
  gap:20px;
}

/* Each clothing category = one premium layer/card */
.v6-price-category{
  overflow:hidden;
  border:1px solid var(--v6-line);
  border-radius:14px;
  background:var(--v6-card);
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 10px 28px rgba(55,42,34,.065);
}

/* Category header */
.v6-price-category-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  min-height:62px;
  padding:14px 18px;
  background:linear-gradient(135deg,#f1e2da 0%,#f8f0eb 72%,#fbf7f4 100%);
  border-bottom:1px solid #d9c7bd;
}
.v6-price-category-head h3{
  position:relative;
  margin:0!important;
  padding-left:22px;
  color:#49352d!important;
  font-size:21px!important;
  line-height:1.18!important;
  font-weight:600!important;
  letter-spacing:-.015em!important;
}
.v6-price-category-head h3:before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  width:10px;
  height:10px;
  transform:translateY(-50%) rotate(45deg);
  border:1px solid #aa6951;
  background:#fffaf7;
}
.v6-price-category-head > span{
  flex:0 0 auto;
  color:#97604d;
  font-size:9px;
  font-weight:850;
  letter-spacing:.11em;
  text-transform:uppercase;
}

/* True 2-column table: no third empty legacy column */
.v6-price-table{
  width:100%;
  border-collapse:collapse;
  border-spacing:0;
  table-layout:fixed;
}
.v6-price-table tr{
  transition:background-color .16s ease;
}
.v6-price-table tr:nth-child(even){
  background:var(--v6-soft2);
}
.v6-price-table tr:hover{
  background:#faf3ee;
}
.v6-price-table td{
  padding:14px 18px;
  border-bottom:1px solid var(--v6-line2);
  vertical-align:middle;
}
.v6-price-table tr:last-child td{
  border-bottom:0;
}

.v6-price-service{
  position:relative;
  width:auto;
  padding-left:38px!important;
  color:#403934;
  font-size:14px;
  line-height:1.42;
  font-weight:620;
}
.v6-price-service:before{
  content:"";
  position:absolute;
  left:19px;
  top:50%;
  width:7px;
  height:1px;
  transform:translateY(-50%);
  background:#c48972;
}

.v6-price-value{
  width:170px;
  text-align:right;
  white-space:nowrap;
  color:#744638;
  font-size:14px;
  line-height:1.3;
  font-weight:800;
  font-variant-numeric:tabular-nums;
}
.v6-price-value.is-request{
  color:#6d493d;
}
.v6-price-value.is-request:before{
  content:"";
  display:inline-block;
}

/* Notice */
.v2-notice{
  margin-top:20px!important;
  padding:15px 17px!important;
  border:1px solid #e0d4cc!important;
  border-left:3px solid var(--v6-accent)!important;
  border-radius:9px!important;
  background:#fbf7f4!important;
  color:#69615b!important;
  box-shadow:0 6px 18px rgba(53,41,34,.035)!important;
  font-size:13px!important;
  line-height:1.62!important;
}
.v2-notice strong{
  color:#5c3d32!important;
}

/* Sidebar aligned to catalogue */
.v2-sidecard{
  border:1px solid var(--v6-line)!important;
  border-radius:12px!important;
  box-shadow:0 8px 22px rgba(55,42,34,.045)!important;
}
.v2-sidecard + .v2-sidecard{
  margin-top:16px!important;
}
.v2-sidelinks a{
  border-radius:6px!important;
  transition:background-color .16s ease,color .16s ease!important;
}
.v2-sidelinks a:hover{
  background:#faf3ee!important;
  color:var(--v6-accent-dark)!important;
}

/* Buttons: flat but lightly framed */
.v2-btn{
  transform:none!important;
  border-radius:7px!important;
  box-shadow:none!important;
}
.v2-btn:hover,
.v2-btn:active{
  transform:none!important;
  box-shadow:none!important;
}
.v2-btn-primary{
  background:var(--v6-accent)!important;
  border-color:var(--v6-accent)!important;
  color:#fff!important;
  -webkit-text-fill-color:#fff!important;
}
.v2-btn-primary:hover{
  background:var(--v6-accent-dark)!important;
  border-color:var(--v6-accent-dark)!important;
  color:#fff!important;
  -webkit-text-fill-color:#fff!important;
}

/* Contact button contrast */
.v2-contact .v2-btn-secondary{
  background:transparent!important;
  border-color:#8a776c!important;
  color:#fff!important;
  -webkit-text-fill-color:#fff!important;
}
.v2-contact .v2-btn-secondary:hover{
  background:#fff!important;
  border-color:#fff!important;
  color:#2e2925!important;
  -webkit-text-fill-color:#2e2925!important;
}

/* Tablet */
@media(min-width:701px) and (max-width:1024px){
  .v2-brand-image{
    width:126px!important;
    height:58px!important;
    flex-basis:126px!important;
  }

  .v6-price-category-head{
    padding-left:17px;
    padding-right:17px;
  }

  .v6-price-table td{
    padding:13px 16px;
  }

  .v6-price-service{
    padding-left:35px!important;
  }

  .v6-price-service:before{
    left:17px;
  }

  .v6-price-value{
    width:150px;
  }
}

/* Mobile */
@media(max-width:700px){
  body.v2{
    padding-bottom:86px!important;
  }

  .v2-brand-image{
    width:100px!important;
    height:48px!important;
    flex-basis:100px!important;
  }

  .v2-nav{
    min-height:68px!important;
  }

  .v2-menu-btn{
    width:42px!important;
    height:42px!important;
    min-width:42px!important;
  }

  .v6-price-intro{
    margin-bottom:15px;
  }

  .v6-price-intro h2{
    font-size:29px!important;
  }

  .v6-price-intro p{
    font-size:13px!important;
  }

  .v6-price-catalog{
    gap:15px;
  }

  .v6-price-category{
    border-radius:11px;
    box-shadow:0 7px 20px rgba(55,42,34,.055);
  }

  .v6-price-category-head{
    min-height:56px;
    padding:12px 13px;
  }

  .v6-price-category-head h3{
    padding-left:18px;
    font-size:18px!important;
  }

  .v6-price-category-head h3:before{
    width:8px;
    height:8px;
  }

  .v6-price-category-head > span{
    font-size:8px;
  }

  .v6-price-table,
  .v6-price-table tbody{
    display:block;
    width:100%;
  }

  .v6-price-table tr{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    gap:10px;
    align-items:center;
    padding:12px 13px;
    border-bottom:1px solid var(--v6-line2);
    background:#fff;
  }

  .v6-price-table tr:nth-child(even){
    background:#fdfbf9;
  }

  .v6-price-table tr:last-child{
    border-bottom:0;
  }

  .v6-price-table td{
    display:block;
    width:auto!important;
    min-width:0;
    padding:0!important;
    border:0!important;
    background:transparent!important;
  }

  .v6-price-service{
    padding-left:14px!important;
    color:#403934;
    font-size:13px;
    line-height:1.38;
  }

  .v6-price-service:before{
    left:0;
    width:6px;
  }

  .v6-price-value{
    padding-left:6px!important;
    text-align:right;
    font-size:12.5px;
  }

  /* Mobile footer CTA: labels always white */
  .v2-mobilebar{
    z-index:2147483000!important;
    display:grid!important;
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
  }

  .v2-mobilebar a,
  .v2-mobilebar a:link,
  .v2-mobilebar a:visited,
  .v2-mobilebar a:hover,
  .v2-mobilebar a:active,
  .v2-mobilebar a:focus,
  .v2-mobilebar a *,
  .v2-mobilebar span,
  .v2-mobilebar strong,
  .v2-mobilebar small{
    color:#fff!important;
    -webkit-text-fill-color:#fff!important;
    opacity:1!important;
  }

  .v2-mobilebar a:last-child{
    background:var(--v6-accent)!important;
  }

  /* Contact actions stack */
  .v2-contact .v2-actions,
  .v2-content .v2-actions{
    display:grid!important;
    grid-template-columns:1fr!important;
    gap:9px!important;
    width:100%!important;
  }

  .v2-contact .v2-actions .v2-btn,
  .v2-content .v2-actions .v2-btn{
    width:100%!important;
    min-height:48px!important;
  }

  .v2-wa-float{
    display:none!important;
  }
}

/* Very narrow phones */
@media(max-width:380px){
  .v6-price-table tr{
    grid-template-columns:1fr;
    gap:5px;
  }

  .v6-price-value{
    padding-left:14px!important;
    text-align:left;
  }

  .v6-price-category-head{
    align-items:flex-start;
  }

  .v6-price-category-head > span{
    margin-top:4px;
  }
}
