:root{
  --bg:#fffaf9;
  --text:#5a3f45;
  --muted:#9a7d84;
  --card:#ffffff;

  /* Hochzeit / Rosé / Gold */
  --primary:#d89aa4;
  --primary-dark:#c27d89;
  --accent:#eecfd3;
  --gold:#c9a06b;
  --gold-soft:#e8d2b0;

  --danger:#ef4444;
  --border:#f0d9dd;
  --header-bg:linear-gradient(135deg,#fff7f8 0%, #fdeef1 55%, #fffaf7 100%);
  --header-shadow:0 6px 18px rgba(186, 125, 141, 0.12);
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
}

a{
  color:var(--text);
  text-decoration:none;
}

.container{
  max-width:1100px;
  margin:0 auto;
  padding:1rem;
}

/* =========================
   HEADER HOCHZEITS-STYLE
   ========================= */
.site-header{
  background:var(--header-bg);
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  z-index:10;
  box-shadow:var(--header-shadow);
  backdrop-filter:blur(8px);
}

.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
}

.site-header .brand{
  display:flex;
  align-items:center;
  gap:.75rem;
  font-weight:700;
  font-size:1.2rem;
  color:#b76e79;
}

.site-header .brand img{
  height:54px;
  width:auto;
  display:block;
}

.site-header .search{
  display:flex;
  gap:.5rem;
  align-items:center;
  flex:1;
  justify-content:center;
  min-width:260px;
}

.site-header input,
.site-header select{
  padding:.6rem .75rem;
  border:1px solid #e7c7cd;
  border-radius:.75rem;
  background:#fffdfd;
  color:var(--text);
  outline:none;
  transition:border-color .2s ease, box-shadow .2s ease;
}

.site-header input:focus,
.site-header select:focus{
  border-color:var(--primary);
  box-shadow:0 0 0 3px rgba(216,154,164,.18);
}

.site-header button{
  padding:.6rem 1rem;
  border:0;
  background:linear-gradient(135deg,var(--primary),var(--primary-dark));
  color:white;
  border-radius:.75rem;
  cursor:pointer;
  font-weight:600;
  box-shadow:0 4px 10px rgba(194,125,137,.22);
  transition:transform .15s ease, box-shadow .2s ease, opacity .2s ease;
}

.site-header button:hover{
  transform:translateY(-1px);
  box-shadow:0 8px 16px rgba(194,125,137,.28);
}

nav{
  display:flex;
  align-items:center;
  gap:.25rem;
  flex-wrap:wrap;
}

nav a{
  margin-left:0;
  padding:.55rem .8rem;
  border-radius:.7rem;
  color:#7a5660;
  font-weight:500;
  transition:background .2s ease, color .2s ease;
}

nav a:hover{
  background:rgba(216,154,164,.12);
  color:#b76e79;
}

/* =========================
   REST DEINER BASIS-STYLES
   ========================= */
.grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:1rem}

.card{
  background:var(--card);
  border:1px solid #f0dfe2;
  border-radius:1rem;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

.card img{
  width:100%;
  height:200px;
  object-fit:cover;
  background:#f6e9ec;
}

.card .p{padding:.75rem}

.badge{
  display:inline-block;
  background:#f8e7ea;
  color:#8b5e67;
  border-radius:999px;
  padding:.15rem .5rem;
  font-size:.8rem;
  margin-right:.25rem;
}

.price{font-weight:700}

.btn{
  display:inline-block;
  padding:.6rem .9rem;
  border-radius:.6rem;
  border:1px solid #e7c7cd;
  background:#fff;
  cursor:pointer;
}

.btn.primary{
  background:linear-gradient(135deg,var(--primary),var(--primary-dark));
  border-color:var(--primary);
  color:#fff;
}

.btn.danger{
  background:var(--danger);
  border-color:var(--danger);
  color:#fff;
}

.form{display:grid;gap:.75rem;max-width:650px}

.form input,.form select,.form textarea{
  padding:.7rem;
  border:1px solid #e7c7cd;
  border-radius:.5rem;
}

.form label{font-size:.9rem;color:var(--muted)}

.flash{
  padding:.6rem .8rem;
  border-radius:.5rem;
  margin:.75rem 0;
}

.flash.success{
  background:#f6ecee;
  border:1px solid #e7c7cd;
  color:#7a5660;
}

.flash.error{
  background:#fee2e2;
  border:1px solid #fecaca;
}

.site-footer{
  margin-top:2rem;
  border-top:1px solid #f0d9dd;
  background:#fffdfd;
}

.table{width:100%;border-collapse:collapse}
.table th,.table td{border-bottom:1px solid #f0d9dd;padding:.6rem;text-align:left}
.empty{color:var(--muted);padding:1rem 0}

/* Carousel */
.carousel{
  background:#fff;
  border:1px solid #f0d9dd;
  border-radius:1rem;
  overflow:hidden;
}

.carousel-viewport{position:relative;overflow:hidden}
.carousel-track{display:flex;transition:transform .3s ease}
.carousel-slide{min-width:100%}

.carousel-slide img{
  width:100%;
  height:auto;
  display:block;
  max-height:520px;
  object-fit:contain;
  background:#fcf5f6;
}

.carousel-controls{
  display:flex;
  justify-content:space-between;
  gap:.5rem;
  padding:.5rem;
}

.carousel-prev,.carousel-next{
  border:1px solid #e7c7cd;
  background:#fff;
  border-radius:.5rem;
  padding:.4rem .7rem;
  cursor:pointer;
}

.carousel-prev[disabled],.carousel-next[disabled]{opacity:.4;cursor:not-allowed}

.carousel-dots{
  display:flex;
  gap:.4rem;
  justify-content:center;
  padding:.5rem 0;
}

.carousel-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  border:1px solid #caa1aa;
  background:#fff;
  cursor:pointer;
}

.carousel-dot.active{background:#b76e79}

.carousel-thumbs{
  display:flex;
  gap:.5rem;
  overflow:auto;
  padding:.5rem;
  background:#fff8f9;
  border-top:1px solid #f0d9dd;
}

.carousel-thumb{
  border:2px solid transparent;
  border-radius:.5rem;
  cursor:pointer;
  flex:0 0 auto;
}

.carousel-thumb img{
  width:70px;
  height:70px;
  object-fit:cover;
  display:block;
  border-radius:.4rem;
  background:#f6e9ec;
}

.carousel-thumb.active{border-color:#b76e79}

/* Responsive */
@media (max-width: 900px){
  .site-header .container{
    flex-direction:column;
    align-items:stretch;
  }

  .site-header .brand{
    justify-content:center;
  }

  .site-header .search{
    width:100%;
  }

  nav{
    justify-content:center;
  }
}