/* ============================================================
   Health & Beauty Kosmetik – Hauptstylesheet
   ============================================================ */

:root {
  --rose:        #b08b82;
  --rose-light:  #c9a99f;
  --rose-dark:   #7a5e57;
  --rose-pale:   #e8d8d4;
  --rose-bg:     #f5eeec;
  --cream:       #faf6f4;
  --text:        #3a2e2b;
  --text-light:  #7a6560;
  --white:       #ffffff;
  --gold:        #c4a882;
  --shadow:      rgba(122,94,87,0.15);
  --transition:  0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Jost', sans-serif; background: var(--cream); color: var(--text); font-weight: 300; line-height: 1.65; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(155deg, var(--rose-dark) 0%, var(--rose) 50%, var(--rose-light) 100%);
  overflow: hidden;
  padding: 80px 20px 140px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 75% 25%, rgba(255,255,255,0.13) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(0,0,0,0.18) 0%, transparent 50%);
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--cream), transparent);
}
.hero-inner { position: relative; z-index: 2; text-align: center; max-width: 700px; }
.hero-badge {
  display: inline-block;
  font-size: 0.64rem; letter-spacing: 0.38em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 22px; margin-bottom: 28px; font-weight: 300;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 12vw, 9.5rem);
  font-weight: 300; color: #fff; line-height: 0.88; letter-spacing: -0.02em;
}
.hero-title span {
  display: block; font-size: clamp(0.85rem, 2vw, 1.15rem);
  font-weight: 300; letter-spacing: 0.22em; font-style: italic;
  color: rgba(255,255,255,0.7); margin-top: 22px;
  font-family: 'Cormorant Garamond', serif;
}
.hero-divider { width: 48px; height: 1px; background: rgba(255,255,255,0.5); margin: 32px auto; }
.hero-sub { font-size: 0.76rem; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.8); }
.hero-address { margin-top: 30px; color: rgba(255,255,255,0.65); font-size: 0.83rem; letter-spacing: 0.08em; line-height: 2.1; }
.hero-address a { color: rgba(255,255,255,0.92); border-bottom: 1px solid rgba(255,255,255,0.3); }
.hero-btns { display: flex; gap: 16px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.hero-btn {
  padding: 14px 36px; font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 400; cursor: pointer; transition: all var(--transition); border: none; display: inline-block;
}
.hero-btn--primary { background: #fff; color: var(--rose-dark); }
.hero-btn--primary:hover { background: var(--rose-pale); }
.hero-btn--outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.6); }
.hero-btn--outline:hover { background: rgba(255,255,255,0.15); }
.scroll-hint {
  position: absolute; bottom: 110px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.45); font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
.scroll-hint::after { content: ''; width: 1px; height: 44px; background: rgba(255,255,255,0.35); }
@keyframes scrollBounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ===== QUOTE ===== */
.quote-section { background: var(--rose-pale); padding: 80px 40px; text-align: center; }
.quote-text { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-style: italic; font-weight: 300; color: var(--rose-dark); line-height: 1.55; max-width: 580px; margin: 0 auto; }
.quote-text::before { content: '„'; }
.quote-text::after  { content: '"'; }

/* ===== STICKY NAV ===== */
.section-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(250,246,244,0.96); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rose-pale);
}
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; overflow-x: auto; scrollbar-width: none; padding: 0 20px; }
.nav-inner::-webkit-scrollbar { display: none; }
.nav-tab {
  padding: 16px 20px; font-family: 'Jost', sans-serif; font-size: 0.65rem;
  letter-spacing: 0.2em; text-transform: uppercase; font-weight: 400;
  color: var(--text-light); cursor: pointer; white-space: nowrap;
  border: none; border-bottom: 2px solid transparent;
  background: none; transition: all var(--transition);
}
.nav-tab:hover { color: var(--rose-dark); }
.nav-tab.active { color: var(--rose-dark); border-bottom-color: var(--rose); }

/* ===== SECTIONS ===== */
.page-section { padding: 90px 20px; }
.page-section--alt { background: var(--rose-bg); }
.container { max-width: 900px; margin: 0 auto; }
.section-header { margin-bottom: 52px; }
.section-label { font-size: 0.62rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--rose); font-weight: 400; margin-bottom: 10px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 300; color: var(--text); line-height: 1.1; }
.section-divider { width: 38px; height: 1px; background: var(--rose); margin-top: 18px; }
.text-center { text-align: center; }
.text-center .section-divider { margin-left: auto; margin-right: auto; }

/* ===== PRICE LIST ===== */
.price-list { border-top: 1px solid var(--rose-pale); }
.price-row { display: flex; justify-content: space-between; align-items: baseline; padding: 18px 6px; border-bottom: 1px solid rgba(176,139,130,0.13); transition: background var(--transition); gap: 20px; }
.price-row:hover { background: rgba(176,139,130,0.05); }
.price-name { font-size: 0.9rem; font-weight: 300; color: var(--text); letter-spacing: 0.02em; flex: 1; }
.price-amount { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 400; color: var(--rose-dark); white-space: nowrap; letter-spacing: 0.04em; }

/* ===== HIGHLIGHT BOX ===== */
.highlight-box { border: 1px solid var(--rose-pale); background: var(--rose-pale); padding: 32px 36px; max-width: 460px; margin-top: 40px; }
.paket-tag { font-size: 0.59rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--rose-dark); font-weight: 500; margin-bottom: 10px; }
.highlight-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; color: var(--text); margin-bottom: 10px; }
.highlight-desc { font-size: 0.82rem; color: var(--text-light); font-style: italic; font-family: 'Cormorant Garamond', serif; margin-bottom: 20px; line-height: 1.65; }
.highlight-price { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 300; color: var(--rose-dark); }

/* ===== PAKETE ===== */
.pakete-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 20px; }
.paket-card { border: 1px solid var(--rose-pale); padding: 34px 30px; background: var(--white); transition: box-shadow var(--transition), transform var(--transition); position: relative; overflow: hidden; }
.paket-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--rose-pale); }
.paket-card.premium::before { background: linear-gradient(90deg, var(--rose-dark), var(--rose-light)); }
.paket-card:hover { box-shadow: 0 14px 48px var(--shadow); transform: translateY(-3px); }
.paket-card.premium { background: linear-gradient(140deg, var(--rose-dark) 0%, var(--rose) 100%); border-color: transparent; }
.paket-card .paket-tag { margin-bottom: 12px; }
.paket-card.premium .paket-tag { color: rgba(255,255,255,0.6); }
.paket-name { font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; font-weight: 400; color: var(--text); margin-bottom: 14px; line-height: 1.2; }
.paket-card.premium .paket-name { color: #fff; }
.paket-desc { font-size: 0.78rem; color: var(--text-light); line-height: 2; font-weight: 300; margin-bottom: 28px; }
.paket-card.premium .paket-desc { color: rgba(255,255,255,0.72); }
.paket-price { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: var(--rose-dark); }
.paket-card.premium .paket-price { color: #fff; }
.paket-price small { font-size: 1rem; font-family: 'Jost', sans-serif; font-weight: 200; opacity: 0.6; }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 12px; margin-top: 12px; }
.gallery-item { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--rose-pale); cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(122,94,87,0.3); opacity: 0; transition: opacity var(--transition); display: flex; align-items: center; justify-content: center; color: #fff; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 200px; background: var(--rose-pale); color: var(--rose-light); font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; gap: 10px; }

/* ===== BOOKING FORM ===== */
.booking-section { background: var(--rose-dark); padding: 90px 20px; }
.booking-section .section-label { color: var(--rose-pale); }
.booking-section .section-title { color: #fff; }
.booking-section .section-divider { background: rgba(255,255,255,0.3); margin: 18px auto; }
.booking-box { background: var(--cream); max-width: 680px; margin: 40px auto 0; padding: 48px 44px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-row.single { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 0.63rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-light); font-weight: 400; }
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 16px; border: 1px solid var(--rose-pale); background: #fff;
  font-family: 'Jost', sans-serif; font-size: 0.88rem; font-weight: 300;
  color: var(--text); outline: none; transition: border-color var(--transition); width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--rose); }
.form-group textarea { resize: vertical; min-height: 90px; }
.voucher-row { display: flex; gap: 12px; }
.voucher-row input { flex: 1; }
.voucher-msg { font-size: 0.78rem; margin-top: 6px; }
.voucher-msg.valid   { color: #27ae60; }
.voucher-msg.invalid { color: #c0392b; }

/* ===== HOURS ===== */
.hours-section { background: var(--rose-dark); padding: 90px 40px; text-align: center; }
.hours-inner { max-width: 600px; margin: 0 auto; }
.hours-table { margin: 44px auto; display: inline-flex; flex-direction: column; gap: 14px; }
.hours-row { display: flex; gap: 52px; align-items: baseline; }
.hours-day { font-size: 0.67rem; letter-spacing: 0.27em; text-transform: uppercase; color: rgba(255,255,255,0.5); min-width: 180px; text-align: right; font-weight: 300; }
.hours-time { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; color: rgba(255,255,255,0.92); font-weight: 300; letter-spacing: 0.04em; }
.hours-note { font-size: 0.72rem; color: rgba(255,255,255,0.5); letter-spacing: 0.15em; text-transform: uppercase; font-weight: 300; margin-top: 14px; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 52px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-block h3 { font-size: 0.63rem; letter-spacing: 0.27em; text-transform: uppercase; color: var(--rose); font-weight: 400; margin-bottom: 8px; }
.contact-block p { font-size: 0.88rem; font-weight: 300; line-height: 1.85; }
.contact-block a { color: var(--rose-dark); border-bottom: 1px solid var(--rose-pale); }
.contact-map iframe { display: block; border: 1px solid var(--rose-pale); }

/* ===== FOOTER ===== */
.site-footer { background: var(--text); padding: 64px 40px 48px; text-align: center; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 2.1rem; font-weight: 300; color: var(--rose-pale); letter-spacing: 0.08em; margin-bottom: 8px; }
.footer-tagline { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 28px; }
.footer-links { display: flex; gap: 28px; justify-content: center; margin-bottom: 28px; flex-wrap: wrap; }
.footer-links a { font-size: 0.67rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-links a:hover { color: var(--rose-pale); }
.footer-copy { font-size: 0.78rem; line-height: 2.1; color: rgba(255,255,255,0.35); }
.footer-copy a { color: var(--rose-pale); opacity: 0.7; }
.footer-copy span { display: block; margin-top: 14px; font-size: 0.62rem; opacity: 0.35; }

/* ===== BUTTONS ===== */
.btn { padding: 14px 34px; font-family: 'Jost', sans-serif; font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 400; cursor: pointer; transition: all var(--transition); border: none; display: inline-block; }
.btn-primary { background: var(--rose-dark); color: #fff; }
.btn-primary:hover { background: var(--rose); }
.btn-outline { background: transparent; color: var(--rose-dark); border: 1px solid var(--rose-dark); }
.btn-outline:hover { background: var(--rose-dark); color: #fff; }
.btn-full { width: 100%; text-align: center; display: block; }
.btn-success { background: #27ae60; color: #fff; }
.btn-success:hover { background: #219a52; }
.btn-danger { background: #c0392b; color: #fff; }
.btn-danger:hover { background: #a93226; }
.btn-sm { padding: 7px 16px; font-size: 0.6rem; letter-spacing: 0.15em; }
.btn-warning { background: #e67e22; color: #fff; }
.btn-warning:hover { background: #d35400; }

/* ===== LIGHTBOX ===== */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 20000; align-items: center; justify-content: center; padding: 20px; cursor: zoom-out; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 20px; right: 28px; background: none; border: none; color: #fff; font-size: 2.2rem; cursor: pointer; opacity: 0.7; }
.lightbox-close:hover { opacity: 1; }

/* ===== SUCCESS PAGE ===== */
.success-box { max-width: 600px; margin: 80px auto; padding: 60px 48px; background: #fff; border: 1px solid var(--rose-pale); text-align: center; }
.success-icon { font-size: 3rem; margin-bottom: 20px; }
.success-title { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--text); margin-bottom: 12px; }
.success-msg { font-size: 0.88rem; color: var(--text-light); line-height: 1.85; font-weight: 300; }

/* ===== ADMIN BASE ===== */
.admin-body { background: #f4f6f9; font-family: 'Jost', sans-serif; font-weight: 300; }
.admin-layout { display: flex; min-height: 100vh; }

/* Sidebar */
.sidebar {
  width: 240px; flex-shrink: 0;
  background: var(--text);
  display: flex; flex-direction: column;
  position: fixed; top: 0; left: 0; bottom: 0;
  z-index: 100; overflow-y: auto;
}
.sidebar-logo { padding: 28px 24px 22px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.sidebar-logo-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 300; color: var(--rose-pale); line-height: 1.2; }
.sidebar-logo-sub { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-top: 4px; }
.sidebar-nav { flex: 1; padding: 16px 0; }
.sidebar-section { font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.25); padding: 14px 24px 6px; }
.sidebar-link {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 24px; font-size: 0.82rem; font-weight: 300;
  color: rgba(255,255,255,0.55); transition: all var(--transition); cursor: pointer;
  border-left: 3px solid transparent;
  text-decoration: none;
}
.sidebar-link:hover, .sidebar-link.active { color: #fff; background: rgba(255,255,255,0.06); border-left-color: var(--rose); }
.sidebar-link svg { width: 16px; height: 16px; opacity: 0.6; flex-shrink: 0; }
.sidebar-link:hover svg, .sidebar-link.active svg { opacity: 1; }
.sidebar-footer { padding: 20px 24px; border-top: 1px solid rgba(255,255,255,0.08); }
.sidebar-user { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-bottom: 10px; }

/* Main area */
.admin-main { margin-left: 240px; flex: 1; display: flex; flex-direction: column; }
.admin-topbar { background: #fff; padding: 18px 32px; border-bottom: 1px solid #e8ecf0; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 50; }
.admin-page-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300; color: var(--text); }
.admin-content { padding: 32px; flex: 1; }

/* Cards */
.card { background: #fff; padding: 28px 32px; margin-bottom: 24px; border: 1px solid #e8ecf0; }
.card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 400; color: var(--text); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid #f0f3f6; }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; margin-bottom: 28px; }
.stat-card { background: #fff; padding: 24px 28px; border: 1px solid #e8ecf0; }
.stat-value { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 300; color: var(--rose-dark); line-height: 1; }
.stat-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-light); margin-top: 6px; }

/* Tables */
.data-table { width: 100%; border-collapse: collapse; font-size: 0.84rem; }
.data-table th { text-align: left; padding: 12px 16px; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-light); border-bottom: 2px solid #e8ecf0; font-weight: 400; }
.data-table td { padding: 14px 16px; border-bottom: 1px solid #f0f3f6; vertical-align: middle; font-weight: 300; }
.data-table tr:hover td { background: #fafbfc; }
.data-table .actions { display: flex; gap: 8px; }

/* Status badges */
.badge { display: inline-block; padding: 4px 12px; font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 400; }
.badge-pending   { background: #fef9c3; color: #7a6b00; }
.badge-confirmed { background: #d1fae5; color: #065f46; }
.badge-cancelled { background: #fee2e2; color: #7f1d1d; }
.badge-completed { background: #e0e7ff; color: #3730a3; }
.badge-active    { background: #d1fae5; color: #065f46; }
.badge-redeemed  { background: #e0e7ff; color: #3730a3; }
.badge-expired   { background: #fee2e2; color: #7f1d1d; }

/* Admin forms */
.admin-form { max-width: 640px; }
.admin-form .form-group { margin-bottom: 18px; }
.admin-form label { font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-light); font-weight: 400; display: block; margin-bottom: 7px; }
.admin-form input, .admin-form select, .admin-form textarea {
  padding: 11px 15px; border: 1px solid #e8ecf0; background: #fafbfc;
  font-size: 0.88rem; font-weight: 300; color: var(--text); outline: none;
  transition: border-color var(--transition); width: 100%;
}
.admin-form input:focus, .admin-form select:focus, .admin-form textarea:focus { border-color: var(--rose); background: #fff; }
.admin-form textarea { min-height: 90px; resize: vertical; }

/* Flash */
.flash-msg { padding: 13px 20px; font-size: 0.84rem; font-weight: 300; border-radius: 2px; margin-bottom: 20px; }
.flash-msg.success { background: #d1fae5; color: #065f46; }
.flash-msg.error   { background: #fee2e2; color: #7f1d1d; }
.flash-msg.info    { background: #dbeafe; color: #1e40af; }

/* Pagination */
.pagination { display: flex; gap: 6px; margin-top: 20px; justify-content: center; }
.page-btn { padding: 8px 14px; border: 1px solid #e8ecf0; background: #fff; font-size: 0.8rem; cursor: pointer; transition: all var(--transition); }
.page-btn:hover, .page-btn.active { background: var(--rose-dark); color: #fff; border-color: var(--rose-dark); }

/* Upload */
.upload-area { display: block; border: 2px dashed var(--rose-pale); padding: 40px 20px; text-align: center; cursor: pointer; transition: all var(--transition); }
.upload-area:hover { border-color: var(--rose); background: rgba(176,139,130,0.04); }
.upload-area input { display: none; }
.img-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 12px; margin-top: 20px; }
.img-item { position: relative; aspect-ratio: 1; background: var(--rose-pale); overflow: hidden; }
.img-item img { width: 100%; height: 100%; object-fit: cover; }
.img-del { position: absolute; top: 4px; right: 4px; background: rgba(0,0,0,0.65); color: #fff; border: none; cursor: pointer; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; font-size: 13px; }
.img-del:hover { background: #c0392b; }

/* QR Gutscheine */
.voucher-card { border: 1px solid #e8ecf0; background: #fff; padding: 28px; text-align: center; }
.voucher-card .qr-wrap { background: #fff; padding: 16px; display: inline-block; border: 1px solid #e8ecf0; margin: 16px 0; }
.voucher-card .voucher-code { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 400; color: var(--text); letter-spacing: 0.15em; }
.voucher-card .voucher-amount { font-size: 1.5rem; font-family: 'Cormorant Garamond', serif; color: var(--rose-dark); font-weight: 300; margin: 8px 0; }
.voucher-card .voucher-desc { font-size: 0.78rem; color: var(--text-light); }
.scanner-box { border: 2px solid var(--rose-pale); padding: 20px; text-align: center; margin-top: 16px; min-height: 200px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
#reader { width: 100%; max-width: 400px; }

/* Responsive */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .admin-main { margin-left: 0; }
  .sidebar { transform: translateX(-100%); transition: transform var(--transition); }
  .sidebar.open { transform: translateX(0); }
  .booking-box { padding: 32px 24px; }
}
@media (max-width: 600px) {
  .pakete-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hours-row { flex-direction: column; align-items: center; gap: 6px; }
  .hours-day { text-align: center; min-width: auto; }
  .admin-content { padding: 20px 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media print {
  .sidebar, .admin-topbar, .btn, .img-del, .actions { display: none !important; }
  .admin-main { margin-left: 0; }
  .voucher-card { border: 1px solid #999; page-break-inside: avoid; }
}
