/* ===================================================
   Larise Duft Liste – Hauptstylesheet
   lariseduftliste.de | Autor: Mohammad
   =================================================== */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #b08850;
  --gold-light: #d4af70;
  --gold-pale:  #f5edd8;
  --dark:       #1a1a2e;
  --text:       #2d2d2d;
  --text-muted: #777;
  --bg:         #ffffff;
  --bg-soft:    #fafaf8;
  --bg-warm:    #fdf8f0;
  --border:     #ece8e0;
  --shadow:     0 2px 16px rgba(0,0,0,.07);
  --shadow-md:  0 6px 32px rgba(0,0,0,.11);
  --radius:     10px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Lato', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  font-size: 16.5px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-light); }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- TOPBAR --- */
.topbar {
  background: var(--dark);
  color: #e8d9c0;
  font-size: 12.5px;
  padding: 7px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-links { display: flex; gap: 18px; }
.topbar-links a { color: #c8b89a; font-size: 12px; }
.topbar-links a:hover { color: var(--gold-light); }

/* --- HEADER --- */
.site-header {
  background: #fff;
  border-bottom: 1.5px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 24px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dark) !important;
}
.logo-icon { width: 42px; height: 42px; }
.logo-text { display: flex; flex-direction: column; }
.logo-main {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: .3px;
  line-height: 1.2;
}
.logo-sub {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: .5px;
  text-transform: uppercase;
}
.main-nav { display: flex; gap: 8px; align-items: center; }
.main-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  padding: 6px 14px;
  border-radius: 6px;
  letter-spacing: .2px;
  transition: background .2s, color .2s;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--gold-pale);
  color: var(--gold);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
}

/* --- HERO --- */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #2c2547 50%, #1a1a2e 100%);
  color: #fff;
  padding: 80px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(176,136,80,.18) 0%, transparent 60%),
                    radial-gradient(circle at 80% 20%, rgba(176,136,80,.12) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-block;
  background: rgba(176,136,80,.25);
  border: 1px solid rgba(176,136,80,.4);
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-title em { color: var(--gold-light); font-style: italic; }
.hero-sub {
  max-width: 600px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  font-weight: 300;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.stat { text-align: center; padding: 0 32px; }
.stat strong { display: block; font-size: 2rem; font-family: var(--font-serif); color: var(--gold-light); }
.stat span { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.65); }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,.2); }

/* --- BUTTONS --- */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #fff !important;
  padding: 13px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .5px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(176,136,80,.4);
  cursor: pointer;
  border: none;
}
.btn-primary:hover { background: #9a7440; transform: translateY(-1px); box-shadow: 0 7px 24px rgba(176,136,80,.45); }

.btn-secondary {
  display: inline-block;
  border: 2px solid var(--gold);
  color: var(--gold) !important;
  padding: 10px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  margin-top: 14px;
  transition: background .2s, color .2s;
}
.btn-secondary:hover { background: var(--gold-pale); }

/* --- AD PLACEHOLDER --- */
.ad-placeholder {
  background: var(--bg-soft);
  border: 1.5px dashed #d5cfc4;
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 24px 0;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar-ad { min-height: 250px; }
.ad-inline { min-height: 100px; }

/* --- MAIN CONTENT GRID --- */
.main-content { padding-top: 48px; padding-bottom: 60px; }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

/* --- BREADCRUMB --- */
.breadcrumb { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 6px; }

/* --- ARTICLE --- */
.article-header { margin-bottom: 28px; }
.article-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.author-avatar { width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--gold-pale); }
.author-name { display: block; font-weight: 700; font-size: 14px; color: var(--dark); }
.article-date { font-size: 13px; color: var(--text-muted); }
.article-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.article-body h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--dark);
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold-pale);
}
.article-body h3 { font-size: 1.1rem; color: var(--dark); margin: 24px 0 10px; }
.article-body p { margin-bottom: 18px; }
.article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 18px; }
.article-body li { margin-bottom: 8px; }
.article-body section { margin-bottom: 12px; }

.article-intro {
  font-size: 1.1rem;
  line-height: 1.85;
  color: #444;
  border-left: 4px solid var(--gold);
  padding-left: 20px;
  margin-bottom: 32px;
  background: var(--gold-pale);
  padding: 18px 18px 18px 22px;
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* TOC */
.toc-box {
  background: var(--bg-warm);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 32px 0;
}
.toc-title { font-family: var(--font-serif); font-size: 1rem; margin-bottom: 14px; }
.toc-list { padding-left: 20px; }
.toc-list li { margin-bottom: 7px; }
.toc-list a { font-size: 14px; font-weight: 600; }

/* Info box */
.info-box {
  display: flex;
  gap: 14px;
  background: #eff8ff;
  border: 1.5px solid #b8dff5;
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 24px 0;
  font-size: 14.5px;
}
.info-icon { font-size: 1.3rem; flex-shrink: 0; }

/* Feature list */
.feature-list { list-style: none; padding: 0; }
.feature-list li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li span { font-size: 1.2rem; flex-shrink: 0; }

/* Tables */
.table-wrapper {
  overflow-x: auto;
  margin: 20px 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.perfume-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}
.perfume-table th {
  background: var(--dark);
  color: var(--gold-light);
  padding: 12px 16px;
  text-align: left;
  font-size: 13px;
  letter-spacing: .5px;
  white-space: nowrap;
}
.perfume-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
}
.perfume-table tr:nth-child(even) td { background: var(--bg-soft); }
.perfume-table tr:hover td { background: var(--gold-pale); }
.perfume-table td:first-child { font-weight: 700; color: var(--gold); }

/* Tips grid */
.tips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}
.tip-card {
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.tip-icon { font-size: 1.6rem; margin-bottom: 10px; }
.tip-card h3 { font-size: .97rem; margin-bottom: 8px; color: var(--dark); }
.tip-card p { font-size: 14px; color: #555; margin: 0; }

/* Conclusion */
.conclusion-box {
  background: linear-gradient(135deg, var(--dark) 0%, #2c2547 100%);
  border-radius: var(--radius);
  padding: 30px 32px;
  margin: 24px 0;
}
.conclusion-box blockquote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: #e8d9c0;
  line-height: 1.75;
}
.conclusion-box cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-size: 13px;
  color: var(--gold-light);
  letter-spacing: .5px;
}

/* Article footer */
.article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 24px;
  margin-top: 40px;
  border-top: 1.5px solid var(--border);
}
.article-tags, .article-share { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; font-size: 13.5px; }
.article-tags a {
  background: var(--gold-pale);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 12.5px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  font-weight: 700;
  font-size: 14px;
  color: var(--text) !important;
}
.share-btn:hover { background: var(--gold-pale); }

/* --- SIDEBAR --- */
.sidebar { position: sticky; top: 80px; }
.sidebar-widget {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.widget-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold-pale);
}

/* Category cards */
.cat-cards { display: flex; flex-direction: column; gap: 10px; }
.cat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  transition: all .2s;
  color: var(--text) !important;
}
.cat-card:hover { border-color: var(--gold); background: var(--gold-pale); }
.cat-emoji { font-size: 1.4rem; }
.cat-card span:not(.cat-emoji) { font-weight: 700; font-size: 14px; display: block; }
.cat-card small { color: var(--text-muted); font-size: 12px; }

/* Popular list */
.popular-list { list-style: none; padding: 0; }
.popular-list li { border-bottom: 1px solid var(--border); padding: 9px 0; }
.popular-list li:last-child { border-bottom: none; }
.popular-list a { font-size: 14px; font-weight: 600; color: var(--text); }
.popular-list a:hover { color: var(--gold); }

/* Newsletter */
.newsletter-widget p { font-size: 13.5px; color: #666; margin-bottom: 16px; }
.newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.newsletter-input {
  border: 1.5px solid var(--border);
  border-radius: 7px;
  padding: 10px 14px;
  font-size: 14px;
  width: 100%;
  outline: none;
  transition: border-color .2s;
}
.newsletter-input:focus { border-color: var(--gold); }
.newsletter-btn { width: 100%; }

/* --- CATEGORIES SECTION --- */
.categories-section {
  background: var(--bg-warm);
  padding: 70px 0;
  border-top: 1.5px solid var(--border);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-align: center;
  color: var(--dark);
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 44px;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.category-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--text) !important;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.category-icon { font-size: 2.4rem; }
.category-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--dark);
}
.category-card p { font-size: 14.5px; color: #666; flex-grow: 1; line-height: 1.7; }
.cat-link { color: var(--gold); font-weight: 700; font-size: 14px; }

/* --- FOOTER --- */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo { width: 42px; height: 42px; margin-bottom: 16px; }
.footer-about p { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,.65); }
.footer-links h4 {
  color: var(--gold-light);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.65); font-size: 14px; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  line-height: 1.9;
}
.disclaimer { font-size: 12px; margin-top: 4px; }

/* --- CATEGORY PAGE SPECIFIC --- */
.page-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #2c2547 60%, #1a1a2e 100%);
  color: #fff;
  padding: 55px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(176,136,80,.15), transparent 60%);
}
.page-hero .hero-content { position: relative; }
.page-hero-icon { font-size: 2.8rem; margin-bottom: 14px; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 14px;
}
.page-hero p { max-width: 580px; margin: 0 auto; color: rgba(255,255,255,.8); font-size: 1rem; }

.category-page-content { padding: 52px 0 70px; }
.category-page-grid { display: grid; grid-template-columns: 1fr 300px; gap: 48px; }
.search-filter {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.search-input, .filter-select {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
  background: #fff;
}
.search-input { flex: 1; min-width: 200px; }
.search-input:focus, .filter-select:focus { border-color: var(--gold); }

.full-table-section h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.full-table-section > p { color: #666; font-size: 14.5px; margin-bottom: 24px; }

/* Rating badges */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
}
.rating-5 { background: #d4edda; color: #155724; }
.rating-4 { background: #d1ecf1; color: #0c5460; }

/* About page */
.about-section { padding: 60px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-text h2 { font-family: var(--font-serif); font-size: 1.8rem; margin-bottom: 20px; color: var(--dark); }
.about-text p { font-size: 15px; line-height: 1.85; margin-bottom: 16px; color: #555; }
.about-author-card {
  background: var(--bg-warm);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  text-align: center;
}
.author-big-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-pale);
  font-size: 2rem;
}
.author-bio-name { font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: 8px; }
.author-bio-role { font-size: 13px; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.author-bio-text { font-size: 14px; line-height: 1.8; color: #666; }

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .content-grid, .category-page-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .categories-grid { grid-template-columns: 1fr; gap: 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .tips-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .main-nav { display: none; flex-direction: column; position: absolute; top: 65px; left: 0; right: 0; background: #fff; padding: 16px 24px; border-bottom: 1.5px solid var(--border); box-shadow: var(--shadow-md); z-index: 99; }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .hero { padding: 50px 0 44px; }
  .hero-stats { gap: 0; }
  .stat { padding: 0 18px; }
  .stat strong { font-size: 1.4rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .topbar-links { display: none; }
  .article-footer { flex-direction: column; }
  .header-inner { position: relative; }
}

/* --- UTILITY --- */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Artikel Dropdown ──────────────────── */
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dropdown-btn {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  padding: 6px 14px;
  border-radius: 6px;
  letter-spacing: .2px;
  transition: background .2s, color .2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  display: flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}
.nav-dropdown-btn:hover,
.nav-dropdown-btn.active {
  background: var(--gold-pale);
  color: var(--gold);
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  min-width: 220px;
  z-index: 999;
  overflow: hidden;
  flex-direction: column;
}
.nav-dropdown-menu.open { display: flex; }
.nav-dropdown-menu a {
  display: block;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text) !important;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { background: var(--gold-pale); color: var(--gold) !important; }

@media (max-width: 640px) {
  .nav-dropdown { width: 100%; }
  .nav-dropdown-btn { width: 100%; justify-content: flex-start; padding: 6px 0; border-radius: 0; }
  .nav-dropdown-menu { position: static; transform: none; box-shadow: none; border: none; border-left: 3px solid var(--gold-pale); margin-left: 12px; border-radius: 0; }
  .nav-dropdown-menu a { padding: 8px 12px; font-size: 13.5px; }
}
