:root {
    --bg: #f7f1eb;
    --card: #ffffff;
    --text-main: #111;
    --text-muted: #777;
    --border-soft: rgba(0,0,0,0.06);
    --shadow-soft: 0 14px 30px rgba(0,0,0,0.06);

    --scrollbar: #d9c6a3; /* PREMIUM GOLD-BEIGE */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--bg);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Bilder NICHT klickbar – Anti-Kopierschutz */
img {
    max-width: 100%;
    display: block;

    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
}

.page {
    max-width: 1120px;
    margin: 0 auto;
    padding: 1.5rem 1rem 4rem;
    position: relative;
    z-index: 1;
}

/* ------------------------------
   FULL PAGE BACKGROUND (4 IMAGES)
   Replaces the old side banners.
------------------------------ */

body{
    position: relative;
    overflow-x: hidden;
}

/* Full-page background base */
body::before{
    content: "";
    position: fixed;
    inset: 0;
    background: var(--bg);
    pointer-events: none;
    z-index: -2;
}

/* Chaotic brand collage (uses img/bg/bg1..bg4.png, repeated) */
.bg-chaos{
    position: fixed;
    inset: -6vh -6vw;
    pointer-events: none;
    z-index: -1;
    opacity: 0.35; /* requested transparency */
    overflow: hidden;
}

.bg-chaos .tile{
    position: absolute;
    width: var(--w, 38vw);
    left: var(--x, 10vw);
    top: var(--y, 10vh);
    transform: rotate(var(--r, 0deg));
    transform-origin: center;
    filter: grayscale(100%) contrast(1.06);
    opacity: var(--o, 1);
}

.bg-chaos .tile img{
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 900px){
    .bg-chaos{
        inset: -10vh -10vw;
        opacity: 0.35;
    }
    .bg-chaos .tile{
        width: var(--w, 70vw);
        left: var(--x, 10vw);
        top: var(--y, 10vh);
        transform: rotate(var(--r, 0deg));
    }
}


/* Ensure legacy side-banners never show */
.side-banner{
    display: none !important;
    background-image: none !important;
}

/* ------------------------------
   HEADER
------------------------------ */

.top-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.top-logo:hover {
    transform: translateX(5px);
}
.top-logo img { 
    width: 90px;
    transition: transform 0.3s ease;
}
.top-logo:hover img {
    transform: rotate(-5deg);
}

.top-logo-text {
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin-bottom: 2.5rem;
}

.nav-center {
    display: flex;
    gap: 2.3rem;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    justify-content: center;
}

/* klickbare Nav-Links */
.nav-center span,
.nav-center a {
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}
.nav-center span:hover,
.nav-center a:hover {
    color: #8b7355;
}
.nav-center span::after,
.nav-center a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #8b7355;
    transition: width 0.3s ease;
}
.nav-center span:hover::after,
.nav-center a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    justify-content: flex-end;
}

.nav-cart {
    cursor: pointer;
    letter-spacing: .14em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.nav-cart:hover {
    color: #8b7355;
    transform: translateY(-1px);
}

/* ------------------------------
   TITEL
------------------------------ */

.section-title {
    font-size: 1.4rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-top: 2.2rem;
    margin-bottom: .3rem;
}

.section-sub {
    font-size: .9rem;
    color: var(--text-muted);
    margin-bottom: 1.6rem;
}

/* Hinweis "Swipe →" */
.slide-hint {
    font-size: .78rem;
    color: #bca98d;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    opacity: 0.65;
}

/* ------------------------------
   SLIDER
------------------------------ */

.slider-wrapper {
    overflow: hidden;
    margin-bottom: 2.6rem;
}



.slider, .slider * {
    -webkit-user-select: none;
    user-select: none;
}
.slider {
    display: flex;
    gap: 1.4rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
    scrollbar-width: none;
    cursor: grab;
}

.slider::-webkit-scrollbar { display: none; }

.slider.is-dragging {
    cursor: grabbing;
}

/* ------------------------------
   PRODUCT CARD
------------------------------ */

.product-card {
    min-width: 24%;
    max-width: 24%;
    flex: 0 0 auto;

    background: var(--card);
    border-radius: 20px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    padding: 1rem;
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.product-card img {
    border-radius: 14px;
    margin-bottom: .8rem;
    transition: transform 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card h3 {
    font-size: .9rem;
    margin-bottom: .18rem;
}

.product-card .price {
    font-size: .82rem;
    color: var(--text-muted);
    margin-bottom: .6rem;
}

.product-card .btn {
    width: 100%;
    padding: .7rem;
    border: none;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.product-card .btn:hover {
    background: #8b7355;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* ------------------------------
   GOLD SCROLL-PROGRESSBAR
------------------------------ */

.scroll-progress {
    width: 100%;
    height: 4px;
    background: rgba(0,0,0,0.08);
    border-radius: 5px;
    margin-top: .4rem;
    overflow: hidden;
}

.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--scrollbar);
    border-radius: 5px;
    transition: width .15s linear;
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 900px) {
    html, body {
        max-width: 100%;
        overflow-x: hidden;
    }


    .page {
        max-width: 100%;
        padding: 1.25rem 0.9rem 3rem;
    }

    .top-logo {
        transform: translateX(0);
        margin-bottom: 0.9rem;
    }

    .top-logo img {
        width:  70px;
    }

    .nav {
        grid-template-columns: 1fr;
        row-gap: 0.6rem;
        margin-bottom: 1.9rem;
    }

    .nav-center {
        flex-wrap: wrap;
        gap:  1.3rem;
        font-size: 0.7rem;
        letter-spacing: 0.16em;
        justify-content: center;
    }

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

    .section-title {
        font-size: 1.2rem;
        letter-spacing: 0.13em;
        text-align: center;
    }

    .section-sub {
        font-size: 0.8rem;
        text-align: center;
    }

    .slider-wrapper {
        margin-bottom: 2.1rem;
    }

    .product-card {
        min-width: 80%;
        max-width: 80%;
    }

        /* 🔥 Mobile-Regel:
       Banner schmaler, aber auf allen Seiten sichtbar */
    .side-banner {
        display: block;
        width: 220px;
        filter: blur(1.4px);
        opacity: 0.88;
    }
}

@media (max-width: 700px) {

    .page {
        padding: 1.1rem 0.75rem 2.8rem;
    }

    .section-title {
        font-size: 1.1rem;
    }

    .section-sub {
        font-size: 0.78rem;
    }

    .product-card {
        min-width: 85%;
        max-width: 85%;
    }
}



/* MOBILE FIX: Header & Seite ohne horizontales Scrollen */
@media (max-width: 900px) {

    /* Horizontales Scrollen komplett verhindern */
    html, body {
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Seite nicht breiter als Bildschirm */
    .page {
        max-width: 100% !important;
        padding: 1.25rem 0.9rem 3rem !important;
    }

    /* Logo etwas kleiner und nicht nach links geschoben */
    .top-logo {
        transform: translateX(0) !important;
        margin-bottom: 0.9rem !important;
    }

    .top-logo img {
        width: 80px !important;
    }

    /* NAV: alles untereinander, mittig, kein Überlauf */
    .nav {
        grid-template-columns: 1fr !important;
        row-gap: 0.6rem !important;
        margin-bottom: 1.9rem !important;
    }

    .nav-center {
        flex-wrap: wrap !important;
        gap: 1.2rem !important;
        font-size: 0.7rem !important;
        letter-spacing: 0.16em !important;
        justify-content: center !important;
    }

    .nav-right {
        justify-content: center !important;
    }

    .nav-cart {
        font-size: 0.7rem !important;
    }
}

/* FOOTER - GLOBAL */
.footer {
    margin-top: 5rem;
    padding-top: 3rem;
    padding-bottom: 2.5rem;
    border-top: 1px solid rgba(0,0,0,0.08);
    font-size: 0.85rem;
    color: #555;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #777;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    font-size: 0.8rem;
}

.footer-links a {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #8b7355;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #8b7355;
}

.footer-links a:hover::after {
    width: 100%;
}

@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}


/* Product gallery thumbnail (product.html) */
.thumb.active{
    outline: 2px solid rgba(17,17,17,.65);
    outline-offset: 2px;
}


/* Contact form status */
#contactStatus{display:none;margin-top:12px;padding:10px 12px;border-radius:10px;font-size:0.95rem;border:1px solid rgba(0,0,0,0.12);background: rgba(255,255,255,0.7);}
#contactStatus.ok{border-color: rgba(0,0,0,0.12);}
#contactStatus.error{border-color: rgba(140,0,0,0.25);}


/* PayTR iFrame checkout */
.paytr-status{
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
}
.paytr-status.ok{ border-color: rgba(0,0,0,0.12); }
.paytr-status.info{ border-color: rgba(0,0,0,0.12); }
.paytr-status.error{ border-color: rgba(255,0,0,0.25); }

.paytr-wrap{
  margin-top: 14px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.85);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
#paytriframe{ min-height: 560px; }
@media (max-width: 900px){
  #paytriframe{ min-height: 620px; }
}


/* Product page layout */
.product-page{ padding: 26px 0 40px; }
.product-grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}
.product-media{
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 18px;
  padding: 14px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.product-main-image{
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.80);
}
.product-main-image img{
  width: 100%;
  height: auto;
  display: block;
}
.thumb-row{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.thumb{
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.80);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.thumb img{
  width: 100%;
  height: 70px;
  object-fit: cover;
  display: block;
}
.thumb:hover{ transform: translateY(-1px); box-shadow: 0 10px 20px rgba(0,0,0,0.10); }
.thumb.active{ border-color: rgba(0,0,0,0.35); }

.product-info{
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 18px;
  padding: 18px 18px 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.prod-label-wrap{ margin-bottom: 10px; }
.prod-label{
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .06em;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.75);
}
.prod-title{
  margin: 0;
  font-size: 28px;
  letter-spacing: .02em;
}
.prod-price{
  margin-top: 6px;
  font-size: 18px;
  opacity: .9;
}
.prod-desc{
  margin-top: 12px;
  font-size: 14px;
  opacity: .85;
  line-height: 1.55;
}
.option-block{ margin-top: 16px; }
.option-title{ font-size: 13px; opacity: .8; margin-bottom: 10px; }
.option-pills{ display: flex; flex-wrap: wrap; gap: 10px; }
.option-pill{
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.75);
  padding: 9px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.option-pill:hover{ transform: translateY(-1px); box-shadow: 0 10px 20px rgba(0,0,0,0.10); }
.option-pill.active{
  border-color: rgba(0,0,0,0.35);
  background: rgba(255,255,255,0.95);
}

.cta-row{ display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.btn-add-to-cart{
  flex: 1 1 220px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #111;
  color: #fff;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.btn-add-to-cart:hover{ transform: translateY(-1px); box-shadow: 0 14px 30px rgba(0,0,0,0.18); }
.btn-secondary{
  flex: 1 1 160px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.85);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-secondary:hover{ transform: translateY(-1px); box-shadow: 0 10px 20px rgba(0,0,0,0.10); }

.small-hint{ margin-top: 12px; font-size: 12px; opacity: .7; }

.toast{
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  background: rgba(17,17,17,0.95);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 9999;
}
.toast.visible{
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

@media (max-width: 980px){
  .product-grid{ grid-template-columns: 1fr; }
  .thumb-row{ grid-template-columns: repeat(4, 1fr); }
  .thumb img{ height: 64px; }
}


/* ------------------------------
   UX IMPROVEMENTS
------------------------------ */

.wa-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:9999;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.10);
  box-shadow:0 16px 30px rgba(0,0,0,.10);
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:.72rem;
}
.wa-float:hover{transform:translateY(-1px)}
.wa-float .wa-ico{
  width:28px;height:28px;border-radius:999px;
  display:inline-flex;align-items:center;justify-content:center;
  background:#111;color:#fff;
  font-size:14px;letter-spacing:0;
}
.wa-float .wa-text{color:#111;font-weight:700}

@media(max-width:600px){
  .wa-float{right:14px;bottom:14px;padding:10px 12px}
  .wa-float .wa-text{display:none}
}

/* Trust strip (homepage + checkout) */
.shop-highlights{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
  margin: 0 0 2.4rem;
}
.shop-highlights .hi{
  background: rgba(255,255,255,.88);
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  padding:14px 14px;
  box-shadow: 0 14px 30px rgba(0,0,0,.06);
}
.shop-highlights .hi b{
  display:block;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:.78rem;
  margin-bottom:6px;
}
.shop-highlights .hi span{
  display:block;
  color: rgba(0,0,0,.62);
  font-size:.88rem;
  line-height:1.35;
}
@media(max-width:900px){
  .shop-highlights{grid-template-columns:1fr;}
}

/* Cart/Checkout shipping selector */
.shipto{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,.10);
}
.shipto label{
  display:block;
  font-size:.72rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color: rgba(0,0,0,.55);
  margin-bottom:8px;
}
.shipto select{
  width:100%;
  padding:12px 14px;
  border-radius: 12px;
  border:1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.92);
}
.shipto .shipnote{
  margin-top:8px;
  font-size:.85rem;
  color: rgba(0,0,0,.60);
}

.shipnote{
  margin-top:8px;
  font-size:.85rem;
  color: rgba(0,0,0,.60);
}

/* Sticky Add-to-cart bar (product page) */
.sticky-cartbar{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9998;
  background: rgba(255,255,255,.96);
  border-top: 1px solid rgba(0,0,0,.10);
  backdrop-filter: blur(10px);
  padding: 10px 14px;
  display:none;
}
.sticky-cartbar .row{
  max-width: 1120px;
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}
.sticky-cartbar .price{
  font-weight:800;
  letter-spacing:.06em;
}
.sticky-cartbar .btn{
  border:0;
  border-radius:999px;
  padding: 12px 16px;
  background:#111;
  color:#fff;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:.8rem;
  cursor:pointer;
}
@media(max-width:900px){
  .sticky-cartbar{display:block;}
  body{padding-bottom:72px;}
}


/* ---------- Trust bar ---------- */
.trustbar{
  display:flex;
  gap:14px;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  padding:10px 14px;
  margin:10px auto 0;
  max-width:1100px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  backdrop-filter: blur(8px);
  border-radius:14px;
}
.trustbar-item{
  font-size:12px;
  letter-spacing:.2px;
  color:rgba(0,0,0,.78);
  white-space:nowrap;
}
@media (max-width:520px){
  .trustbar{justify-content:flex-start}
  .trustbar-item{white-space:normal}
}

/* ---------- Product shipping estimate + related ---------- */
.ship-est{
  margin-top:12px;
  padding:10px 12px;
  border-radius:12px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(0,0,0,.06);
  font-size:12px;
  color:rgba(0,0,0,.7);
}

.related-wrap{
  margin-top:34px;
}
.related-title{
  font-size:18px;
  letter-spacing:.2px;
  margin:0 0 12px 0;
}
.related-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:14px;
}
.related-card{
  cursor:pointer;
  border-radius:16px;
  overflow:hidden;
  background:rgba(255,255,255,.85);
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  transition: transform .15s ease, box-shadow .15s ease;
}
.related-card:hover{
  transform: translateY(-2px);
  box-shadow:0 16px 40px rgba(0,0,0,.10);
}
.related-card img{
  width:100%;
  height:170px;
  object-fit:cover;
  display:block;
}
.related-meta{
  padding:12px 12px 14px;
}
.related-name{
  font-size:13px;
  margin:0 0 6px 0;
  color:rgba(0,0,0,.85);
}
.related-price{
  font-size:12px;
  color:rgba(0,0,0,.62);
}
@media (max-width:980px){
  .related-grid{grid-template-columns:repeat(2, minmax(0, 1fr));}
  .related-card img{height:160px;}
}
