/* ===== Yasmini – Clean & Warm ===== */
/* Farben: Warm Charcoal #2a2a2a, Soft Sand #f7f5f2, Accent #c4956a, Muted Rose #b8848f */

:root {
  --color-text: #2a2a2a;
  --color-text-light: #6b6b6b;
  --color-text-muted: #999;
  --color-bg: #fff;
  --color-bg-warm: #f7f5f2;
  --color-bg-card: #faf9f7;
  --color-accent: #c4956a;
  --color-accent-hover: #b8848f;
  --color-border: #eae6e1;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); color: var(--color-text); background: var(--color-bg); -webkit-font-smoothing: antialiased; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== Navigation ===== */
.yas-nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 48px; background: var(--color-bg); border-bottom: 1px solid var(--color-border);
  position: sticky; top: 0; z-index: 1000;
}
.yas-nav .logo img { height: 40px; }
.yas-nav-links { list-style: none; display: flex; gap: 32px; align-items: center; }
.yas-nav-links a {
  font-size: 14px; font-weight: 500; color: var(--color-text-light);
  letter-spacing: 0.03em; transition: color 0.2s;
}
.yas-nav-links a:hover { color: var(--color-text); }
.yas-cart-link { position: relative; display: flex; align-items: center; }
.yas-cart-link svg { stroke: var(--color-text-light); transition: stroke 0.2s; }
.yas-cart-link:hover svg { stroke: var(--color-text); }
.yas-cart-count {
  background: var(--color-accent); color: #fff; font-size: 10px; font-weight: 700;
  border-radius: 50%; width: 18px; height: 18px; display: inline-flex;
  align-items: center; justify-content: center; position: absolute; top: -6px; right: -10px;
}
.yas-mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.yas-mobile-toggle svg { stroke: var(--color-text); }

/* ===== Buttons ===== */
.btn-primary {
  display: inline-block; background: var(--color-accent); color: #fff;
  padding: 14px 36px; font-size: 14px; font-weight: 600; letter-spacing: 0.04em;
  border-radius: 4px; transition: background 0.25s; border: none; cursor: pointer;
  font-family: var(--font-body);
}
.btn-primary:hover { background: var(--color-accent-hover); }
.btn-outline {
  display: inline-block; background: transparent; color: var(--color-text);
  padding: 14px 36px; font-size: 14px; font-weight: 600; letter-spacing: 0.04em;
  border-radius: 4px; border: 1.5px solid var(--color-border); transition: all 0.25s;
  font-family: var(--font-body);
}
.btn-outline:hover { border-color: var(--color-accent); color: var(--color-accent); }
.btn-dark {
  display: inline-block; background: var(--color-text); color: #fff;
  padding: 14px 36px; font-size: 14px; font-weight: 600; letter-spacing: 0.04em;
  border-radius: 4px; transition: background 0.25s; border: none; cursor: pointer;
  font-family: var(--font-body);
}
.btn-dark:hover { background: var(--color-accent); }

/* ===== Section Layout ===== */
.yas-section { padding: 80px 48px; }
.yas-section--products { padding-top: 0; }
.yas-section--reviews { background: var(--color-bg-warm); }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 {
  font-family: var(--font-display); font-size: 32px; font-weight: 500;
  margin-bottom: 10px; letter-spacing: -0.01em;
}
.section-header p { font-size: 15px; color: var(--color-text-muted); font-weight: 400; }

/* ===== Hero ===== */
.yas-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.yas-hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px 80px 48px;
}
.yas-hero-tag {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--color-accent); margin-bottom: 24px;
}
.yas-hero h1 {
  font-family: var(--font-display); font-size: 48px; font-weight: 500;
  line-height: 1.15; margin-bottom: 24px; letter-spacing: -0.02em;
}
.yas-hero h1 em { font-style: italic; color: var(--color-accent-hover); }
.yas-hero p {
  font-size: 16px; color: var(--color-text-light); line-height: 1.75;
  max-width: 400px; margin-bottom: 36px;
}
.yas-hero-buttons { display: flex; gap: 14px; }
.yas-hero-visual { overflow: hidden; }
.yas-hero-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Trust ===== */
.yas-trust {
  display: flex; justify-content: center; gap: 40px; padding: 24px 48px;
  background: var(--color-bg-warm); border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.yas-trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--color-text-light); font-weight: 500;
}
.trust-icon { width: 18px; height: 18px; stroke: var(--color-accent); flex-shrink: 0; }

/* ===== Kategorien ===== */
.yas-cat-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
  max-width: 900px; margin: 0 auto;
}
.yas-cat-card {
  background: var(--color-bg); border-radius: 6px; padding: 28px 16px; text-align: center;
  transition: all 0.25s; border: 1px solid var(--color-border); display: block;
}
.yas-cat-card:hover { border-color: var(--color-accent); }
.yas-cat-name { font-size: 14px; font-weight: 600; color: var(--color-text); margin-bottom: 4px; }
.yas-cat-count { font-size: 12px; color: var(--color-text-muted); }

/* ===== Produkt-Grid ===== */
.yas-product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  max-width: 1100px; margin: 0 auto;
}
.yas-product-card {
  border-radius: 6px; overflow: hidden; transition: transform 0.2s; display: block;
}
.yas-product-card:hover { transform: translateY(-3px); }
.yas-product-img {
  width: 100%; height: 300px; background: var(--color-bg-card);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; border-radius: 6px;
}
.yas-product-img img { width: 100%; height: 100%; object-fit: contain; padding: 16px; }
.yas-product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--color-accent); color: #fff; font-size: 10px; font-weight: 700;
  padding: 4px 10px; border-radius: 3px; text-transform: uppercase; letter-spacing: 0.08em;
}
.yas-product-info { padding: 16px 2px 8px; }
.yas-product-brand {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--color-accent); font-weight: 600; margin-bottom: 4px;
}
.yas-product-name { font-size: 15px; font-weight: 600; margin-bottom: 2px; color: var(--color-text); }
.yas-product-meta { font-size: 12px; color: var(--color-text-muted); margin-bottom: 10px; }
.yas-product-bottom { display: flex; justify-content: space-between; align-items: center; }
.yas-product-price { font-size: 18px; font-weight: 700; color: var(--color-text); }
.yas-product-cart {
  width: 34px; height: 34px; border-radius: 6px; background: var(--color-accent);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer; transition: background 0.2s; border: none;
  font-family: inherit;
}
.yas-product-cart:hover { background: var(--color-accent-hover); }

/* ===== Story ===== */
.yas-story { display: grid; grid-template-columns: 1fr 1fr; background: var(--color-bg-warm); }
.yas-story-img { min-height: 460px; overflow: hidden; }
.yas-story-img img { width: 100%; height: 100%; object-fit: cover; }
.yas-story-content {
  display: flex; flex-direction: column; justify-content: center; padding: 80px 64px;
}
.yas-story-tag {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--color-accent); margin-bottom: 20px;
}
.yas-story-content h2 {
  font-family: var(--font-display); font-size: 32px; font-weight: 500;
  line-height: 1.25; margin-bottom: 20px;
}
.yas-story-content p { font-size: 15px; color: var(--color-text-light); line-height: 1.8; margin-bottom: 16px; }
.yas-story-address { font-size: 14px; font-weight: 600; color: var(--color-text); margin-top: 12px; }
.yas-story-hours {
  margin-top: 20px; padding: 20px 24px; background: var(--color-bg);
  border-radius: 6px; display: inline-block; border: 1px solid var(--color-border);
}
.yas-story-hours p { font-size: 13px; color: var(--color-text-light); margin-bottom: 0; line-height: 1.9; }

/* ===== Reviews ===== */
.yas-review-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 960px; margin: 0 auto;
}
.yas-review-card {
  background: var(--color-bg); border-radius: 6px; padding: 32px;
  border: 1px solid var(--color-border);
}
.yas-review-stars { color: var(--color-accent); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.yas-review-text { font-size: 14px; color: var(--color-text-light); line-height: 1.75; margin-bottom: 20px; }
.yas-review-author { font-size: 14px; font-weight: 600; color: var(--color-text); }
.yas-review-location { font-size: 12px; color: var(--color-text-muted); margin-top: 2px; }

/* ===== CTA ===== */
.yas-cta {
  background: var(--color-text); padding: 72px 48px; text-align: center;
}
.yas-cta h2 {
  font-family: var(--font-display); font-size: 30px; font-weight: 500;
  color: #fff; margin-bottom: 12px;
}
.yas-cta h2 em { font-style: italic; opacity: 0.7; }
.yas-cta p { font-size: 15px; color: rgba(255,255,255,0.6); margin-bottom: 32px; }
.yas-cta .btn-primary { background: var(--color-accent); }
.yas-cta .btn-primary:hover { background: var(--color-accent-hover); }

/* ===== Shop / Filter ===== */
.yas-shop { max-width: 1100px; margin: 0 auto; padding: 0 48px 80px; }
.yas-shop-filters { display: flex; gap: 16px; align-items: center; margin-bottom: 36px; flex-wrap: wrap; }
.yas-search-input {
  flex: 1; min-width: 200px; padding: 12px 20px; border: 1.5px solid var(--color-border);
  border-radius: 4px; font-size: 14px; font-family: inherit; outline: none;
}
.yas-search-input:focus { border-color: var(--color-accent); }
.yas-filter-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.yas-filter-btn {
  padding: 8px 18px; border-radius: 4px; border: 1.5px solid var(--color-border);
  background: var(--color-bg); font-size: 13px; font-weight: 500; cursor: pointer;
  transition: all 0.2s; font-family: inherit;
}
.yas-filter-btn:hover { border-color: var(--color-accent); color: var(--color-accent); }
.yas-filter-btn.active { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }
.yas-no-results { text-align: center; padding: 60px 20px; color: var(--color-text-muted); font-size: 16px; }

/* ===== Produkt-Detail ===== */
.yas-product-page { max-width: 1100px; margin: 0 auto; padding: 24px 48px 80px; }
.yas-breadcrumb { font-size: 13px; color: var(--color-text-muted); margin-bottom: 28px; }
.yas-breadcrumb a { color: var(--color-text-light); }
.yas-breadcrumb a:hover { color: var(--color-accent); }
.yas-product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.yas-product-image-wrap {
  background: var(--color-bg-card); border-radius: 6px; overflow: hidden;
  display: flex; align-items: center; justify-content: center; min-height: 480px;
}
.yas-product-image-wrap img { max-width: 100%; max-height: 520px; object-fit: contain; padding: 24px; cursor: pointer; }
.yas-product-thumbs { display: flex; gap: 10px; margin-top: 14px; }
.yas-thumb {
  width: 72px; height: 72px; border-radius: 4px; overflow: hidden;
  border: 2px solid transparent; cursor: pointer; background: var(--color-bg-card);
  transition: border-color 0.2s;
}
.yas-thumb.active { border-color: var(--color-accent); }
.yas-thumb:hover { border-color: var(--color-accent-hover); }
.yas-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.yas-product-details { display: flex; flex-direction: column; justify-content: center; }
.yas-pd-brand {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--color-accent); font-weight: 600; margin-bottom: 8px;
}
.yas-pd-title {
  font-family: var(--font-display); font-size: 32px; font-weight: 500;
  margin-bottom: 10px; letter-spacing: -0.01em;
}
.yas-pd-price { font-size: 26px; font-weight: 700; margin-bottom: 24px; }
.yas-pd-meta { margin-bottom: 28px; }
.yas-pd-meta-row {
  display: flex; gap: 8px; padding: 10px 0; border-bottom: 1px solid var(--color-border);
  font-size: 14px;
}
.yas-pd-meta-label { color: var(--color-text-muted); min-width: 100px; }
.yas-pd-meta-value { font-weight: 500; }
.yas-pd-desc { font-size: 15px; color: var(--color-text-light); line-height: 1.75; margin-bottom: 28px; }
.yas-pd-btn {
  background: var(--color-accent); color: #fff; border: none;
  padding: 16px 32px; font-size: 15px; font-weight: 600; letter-spacing: 0.03em;
  border-radius: 4px; cursor: pointer; transition: background 0.25s; font-family: inherit;
  width: 100%;
}
.yas-pd-btn:hover { background: var(--color-accent-hover); }
.yas-pd-sku { font-size: 12px; color: var(--color-text-muted); margin-top: 16px; }
.yas-similar { margin-top: 80px; }

/* ===== Warenkorb ===== */
.yas-cart { max-width: 800px; margin: 0 auto; padding: 48px; }
.yas-cart h1 { font-family: var(--font-display); font-size: 32px; text-align: center; margin-bottom: 36px; }
.yas-cart-empty { text-align: center; padding: 60px 20px; color: var(--color-text-muted); }
.yas-cart-empty p { margin-bottom: 20px; font-size: 16px; }
.yas-cart-item {
  display: grid; grid-template-columns: 80px 1fr auto auto;
  gap: 16px; align-items: center; padding: 24px 0; border-bottom: 1px solid var(--color-border);
}
.yas-cart-item-img { width: 80px; height: 80px; background: var(--color-bg-card); border-radius: 4px; overflow: hidden; }
.yas-cart-item-img img { width: 100%; height: 100%; object-fit: contain; }
.yas-cart-item-title { font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.yas-cart-item-meta { font-size: 12px; color: var(--color-text-muted); }
.yas-cart-item-price { font-size: 18px; font-weight: 700; }
.yas-cart-item-remove { background: none; border: none; font-size: 18px; color: #ccc; cursor: pointer; padding: 8px; }
.yas-cart-item-remove:hover { color: var(--color-accent-hover); }
.yas-cart-shipping { margin-top: 28px; padding: 24px; background: var(--color-bg-warm); border-radius: 6px; }
.yas-cart-shipping h3 { font-size: 14px; font-weight: 600; margin-bottom: 14px; }
.yas-shipping-option { display: flex; align-items: center; gap: 8px; font-size: 14px; margin-bottom: 10px; cursor: pointer; }
.yas-cart-total { margin-top: 28px; }
.yas-cart-total-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 15px; }
.yas-cart-total-final { font-size: 20px; font-weight: 700; border-top: 2px solid var(--color-text); padding-top: 16px; margin-top: 8px; }
.yas-cart-actions { display: flex; gap: 12px; margin-top: 28px; justify-content: flex-end; }
.yas-checkout-btn {
  background: var(--color-accent); color: #fff; border: none;
  padding: 16px 48px; font-size: 15px; font-weight: 600;
  border-radius: 4px; cursor: pointer; transition: background 0.25s; font-family: inherit;
}
.yas-checkout-btn:hover { background: var(--color-accent-hover); }

/* ===== Danke ===== */
.yas-danke { max-width: 600px; margin: 0 auto; padding: 80px 20px; text-align: center; }
.yas-danke-icon { font-size: 48px; margin-bottom: 24px; color: var(--color-accent); }
.yas-danke h1 { font-family: var(--font-display); font-size: 32px; margin-bottom: 16px; }
.yas-danke p { font-size: 16px; color: var(--color-text-light); margin-bottom: 32px; line-height: 1.7; }
.yas-danke-info { background: var(--color-bg-warm); border-radius: 6px; padding: 24px; margin-bottom: 32px; text-align: left; }
.yas-danke-info p { font-size: 14px; color: var(--color-text-light); margin-bottom: 4px; }

/* ===== Seiten (Impressum etc.) ===== */
.yas-page { max-width: 800px; margin: 0 auto; padding: 48px; }
.yas-page h1 { font-family: var(--font-display); font-size: 32px; margin-bottom: 28px; }
.page-content { font-size: 15px; color: var(--color-text-light); line-height: 1.8; }
.page-content h2 { font-size: 20px; font-weight: 600; margin: 28px 0 12px; color: var(--color-text); }
.page-content p { margin-bottom: 12px; }
.page-content a { color: var(--color-accent); }

/* ===== Footer ===== */
.yas-footer {
  padding: 56px 48px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; border-top: 1px solid var(--color-border);
}
.footer-brand { margin-bottom: 16px; }
.footer-brand img { height: 32px; }
.yas-footer .footer-desc { font-size: 13px; color: var(--color-text-muted); line-height: 1.8; }
.yas-footer h4 {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--color-text); margin-bottom: 16px;
}
.yas-footer a { display: block; font-size: 13px; color: var(--color-text-light); line-height: 2.2; }
.yas-footer a:hover { color: var(--color-accent); }
.footer-bottom {
  grid-column: 1 / -1; text-align: center; padding-top: 28px;
  border-top: 1px solid var(--color-border); font-size: 12px; color: var(--color-text-muted);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .yas-nav { padding: 14px 20px; }
  .yas-nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--color-bg); flex-direction: column; padding: 24px;
    gap: 16px; border-bottom: 1px solid var(--color-border); z-index: 999;
  }
  .yas-nav-links.open { display: flex; }
  .yas-mobile-toggle { display: block; }

  .yas-hero { grid-template-columns: 1fr; }
  .yas-hero-content { padding: 48px 24px; text-align: center; }
  .yas-hero h1 { font-size: 34px; }
  .yas-hero p { max-width: 100%; }
  .yas-hero-buttons { justify-content: center; }
  .yas-hero-visual { max-height: 360px; }

  .yas-trust { flex-wrap: wrap; gap: 16px 24px; padding: 20px 24px; }
  .yas-section { padding: 56px 24px; }
  .yas-cat-grid { grid-template-columns: repeat(2, 1fr); }

  .yas-section--products { padding: 0 24px 56px; }
  .yas-product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .yas-product-img { height: 220px; }

  .yas-story { grid-template-columns: 1fr; }
  .yas-story-img { max-height: 300px; }
  .yas-story-content { padding: 48px 24px; }

  .yas-review-grid { grid-template-columns: 1fr; }

  .yas-shop { padding: 0 24px 56px; }
  .yas-shop-filters { flex-direction: column; }

  .yas-product-page { padding: 20px 24px 56px; }
  .yas-product-layout { grid-template-columns: 1fr; gap: 28px; }

  .yas-cart { padding: 24px; }
  .yas-cart-actions { flex-direction: column; }
  .yas-checkout-btn { width: 100%; text-align: center; }

  .yas-cta { padding: 56px 24px; }
  .yas-footer { grid-template-columns: 1fr; gap: 28px; padding: 40px 24px; }
}
