/*
Theme Name: Flatsome Child
Description: Custom Child Theme for Seelenmagnet – Optimized WooCommerce Design
Author: Jozo Slipac
Template: flatsome
Version: 2.0
*/

/* =================================================================
   CSS VARIABLES - Zentrale Farbdefinitionen
   ================================================================= */
:root {
  /* Brand Colors */
  --sm-primary: #c6a063;
  --sm-primary-hover: #b89b5e;
  --sm-primary-dark: #9c7a45;
  --sm-burgundy: #3d1f27;
  --sm-burgundy-dark: #2b151b;
  --sm-text: #381e24;
  --sm-text-light: #786d5e;
  --sm-text-muted: #8f8577;
  
  /* Background Colors */
  --sm-bg-main: #fffbe9;
  --sm-bg-card: #f5efe8;
  --sm-bg-panel: #2e1219;
  --sm-bg-light: #f9f4e5;
  --sm-bg-accent: #f7efe1;
  
  /* Border Colors */
  --sm-border: #f3ead0;
  --sm-border-light: #e7dfce;
  --sm-border-gold: #ecd9b2;
  
  /* Shadows */
  --sm-shadow-sm: 0 4px 12px rgba(56, 30, 36, 0.06);
  --sm-shadow-md: 0 8px 24px rgba(56, 30, 36, 0.12);
  --sm-shadow-lg: 0 14px 42px rgba(198, 160, 99, 0.17);
  --sm-shadow-gold: 0 6px 22px rgba(198, 160, 99, 0.13);
  
  /* Spacing Scale */
  --sm-space-xs: 0.4rem;
  --sm-space-sm: 0.8rem;
  --sm-space-md: 1.2rem;
  --sm-space-lg: 2.4rem;
  --sm-space-xl: 3.6rem;
  
  /* Border Radius */
  --sm-radius-sm: 0.8rem;
  --sm-radius-md: 1.3rem;
  --sm-radius-lg: 1.8rem;
  --sm-radius-pill: 999px;
  
  /* Transitions */
  --sm-transition-fast: 0.15s ease;
  --sm-transition-base: 0.25s ease;
  --sm-transition-slow: 0.35s ease;
  
  /* Typography */
  --sm-font-heading: 'Cinzel', serif;
  --sm-font-body: 'Montserrat', Arial, sans-serif;
}

/* =================================================================
   Schriftarten laden
   ================================================================= */
@font-face {
  font-family: 'Cinzel';
  src: url('/wp-content/fonts/cinzel/Cinzel-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cinzel';
  src: url('/wp-content/fonts/cinzel/Cinzel-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/wp-content/fonts/montserrat/Montserrat-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/wp-content/fonts/montserrat/Montserrat-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/wp-content/fonts/montserrat/Montserrat-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* =================================================================
   Basis-Styles
   ================================================================= */
body {
  font-family: var(--sm-font-body);
  background: var(--sm-bg-main);
  color: var(--sm-text);
  line-height: 1.72;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--sm-font-heading);
  color: var(--sm-primary);
}

a {
  color: var(--sm-text);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--sm-transition-fast);
}

a:hover {
  color: var(--sm-primary);
  text-decoration-thickness: 2px;
}

/* =================================================================
   WooCommerce Produktübersicht
   ================================================================= */
.woocommerce ul.products li.product {
  background: var(--sm-bg-card);
  border-radius: var(--sm-radius-md);
  box-shadow: var(--sm-shadow-md);
  border: 1px solid var(--sm-border);
  padding: 1.8rem 1.1rem;
  text-align: center;
  margin-bottom: 2.1rem;
  transition: transform var(--sm-transition-base), box-shadow var(--sm-transition-base);
}

.woocommerce ul.products li.product:hover {
  box-shadow: var(--sm-shadow-lg);
  transform: translateY(-6px) scale(1.015);
}

.woocommerce ul.products li.product img {
  border-radius: var(--sm-radius-sm);
  box-shadow: var(--sm-shadow-sm);
  margin-bottom: var(--sm-space-md);
  transition: transform var(--sm-transition-fast);
}

.woocommerce ul.products li.product img:hover {
  transform: scale(1.03);
}

.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--sm-font-heading);
  font-weight: 700;
  color: var(--sm-burgundy);
  font-size: 1.21rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.55rem;
}

.woocommerce ul.products li.product .price {
  font-family: var(--sm-font-body);
  color: var(--sm-primary);
  font-weight: 700;
  font-size: 1.07rem;
  margin-bottom: var(--sm-space-md);
}

.woocommerce ul.products li.product .woocommerce-product-details__short-description,
.woocommerce ul.products li.product .short {
  font-family: var(--sm-font-body);
  color: var(--sm-burgundy);
  font-size: 1.01rem;
  margin-bottom: var(--sm-space-md);
}

/* =================================================================
   Gold-Button (wiederverwendbar)
   ================================================================= */
.sm-btn-gold,
.woocommerce ul.products li.product .button,
.single-product .single_add_to_cart_button,
.woocommerce-cart .checkout-button,
.woocommerce-checkout #place_order {
  background-image: linear-gradient(180deg, #f8ecd1 0%, #f0d79a 30%, #c6a063 70%, #9c7a45 100%);
  color: var(--sm-burgundy-dark);
  font-family: var(--sm-font-heading);
  font-weight: 700;
  font-size: 1.09rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--sm-radius-pill);
  padding: 0.75rem 2.1rem;
  border: none;
  box-shadow: var(--sm-shadow-gold);
  transition: transform var(--sm-transition-fast), box-shadow var(--sm-transition-base);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.sm-btn-gold:hover,
.woocommerce ul.products li.product .button:hover,
.single-product .single_add_to_cart_button:hover,
.woocommerce-cart .checkout-button:hover,
.woocommerce-checkout #place_order:hover {
  background-image: linear-gradient(180deg, #fff6df 0%, #f8e4b8 30%, #d4aa6a 70%, #b0833c 100%);
  box-shadow: 0 12px 28px rgba(56, 30, 36, 0.35);
  transform: translateY(-2px);
  color: var(--sm-burgundy-dark);
}

.sm-btn-gold:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(56, 30, 36, 0.25);
}

/* =================================================================
   SINGLE PRODUCT PAGE
   ================================================================= */
.single-product .product {
  display: flex;
  flex-wrap: wrap;
  gap: 4vw;
  align-items: flex-start;
  justify-content: center;
  background: var(--sm-bg-main);
  padding: 3vw 0;
  border-radius: var(--sm-radius-lg);
}

.single-product .product .images {
  flex: 0 0 410px;
  max-width: 410px;
  width: 100%;
  background: var(--sm-bg-card);
  border-radius: var(--sm-radius-md);
  box-shadow: var(--sm-shadow-md);
  padding: 1.7rem;
  text-align: center;
}

.single-product .product .images img {
  width: 100%;
  height: auto;
  border-radius: var(--sm-radius-sm);
  box-shadow: var(--sm-shadow-sm);
}

.single-product .product .summary {
  flex: 1 1 330px;
  max-width: 550px;
  padding: 1.7rem 2vw 1.7rem 0;
}

.single-product .product_title {
  font-family: var(--sm-font-heading);
  color: var(--sm-burgundy);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

.single-product .price {
  font-family: var(--sm-font-body);
  color: var(--sm-primary);
  font-weight: 700;
  font-size: 1.14rem;
  margin-bottom: 1.3rem;
  display: block;
}

.single-product form.cart {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 1.6rem;
}

.single-product .woocommerce-product-details__short-description {
  margin-top: 1.7rem;
  font-family: var(--sm-font-body);
  color: var(--sm-burgundy);
  font-size: 1.08rem;
  line-height: 1.5;
  background: var(--sm-bg-accent);
  border-radius: var(--sm-radius-sm);
  padding: 1.3rem;
  box-shadow: 0 2px 12px rgba(184, 155, 94, 0.1);
}

/* Hide unnecessary WooCommerce elements */
.woocommerce-tabs,
.product-tabs,
.product_meta,
.woocommerce-breadcrumb,
.woocommerce div.product .woocommerce-product-rating,
.woocommerce div.product .woocommerce-product-gallery__trigger,
.stock.in-stock {
  display: none;
}

/* =================================================================
   QUANTITY SELECTOR (MODERN)
   ================================================================= */
.single-product .ux-quantity {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--sm-bg-light);
  border-radius: var(--sm-radius-lg);
  box-shadow: 0 2px 8px rgba(56, 30, 36, 0.07);
  padding: 0.16rem 0.5rem;
  max-width: 138px;
  margin-bottom: var(--sm-space-md);
}

.single-product .ux-quantity__button {
  background: #fff;
  border: 1px solid var(--sm-border-gold);
  border-radius: 50%;
  color: var(--sm-primary-hover);
  font-size: 1.28rem;
  width: 38px;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--sm-transition-fast), border var(--sm-transition-fast);
  box-shadow: 0 1px 4px rgba(198, 160, 99, 0.07);
  cursor: pointer;
  padding: 0;
}

.single-product .ux-quantity__button:hover {
  background: var(--sm-border);
  border-color: var(--sm-primary);
}

.single-product .input-text.qty {
  font-family: var(--sm-font-body);
  font-size: 1.14rem;
  width: 40px;
  height: 38px;
  border: 1px solid var(--sm-border-gold);
  border-radius: var(--sm-radius-sm);
  color: var(--sm-text);
  text-align: center;
  background: var(--sm-bg-main);
  margin: 0 0.12rem;
  transition: border var(--sm-transition-fast);
}

.single-product .input-text.qty:focus {
  border-color: var(--sm-primary);
  outline: none;
  background: var(--sm-bg-light);
}

/* =================================================================
   CART & CHECKOUT
   ================================================================= */
.woocommerce-cart table.cart,
.woocommerce-cart table.cart th,
.woocommerce-cart table.cart td,
.woocommerce-cart .cart_totals th,
.woocommerce-cart .cart_totals td {
  color: var(--sm-burgundy);
  font-weight: 700;
}

.woocommerce-cart table.cart th,
.woocommerce-cart .cart_totals th {
  color: var(--sm-primary);
  font-family: var(--sm-font-heading);
}

/* Cart notices - readable & elegant */
.woocommerce-info,
.woocommerce-message,
.woocommerce-notice {
  color: #442929;
  font-weight: 500;
  font-size: 1.05rem;
  background: #fbf6ed;
  border-left: 3px solid #e4cfa4;
  border-radius: var(--sm-radius-sm);
  padding: 1rem 1.2rem;
}

.woocommerce-error {
  background: #fff6f5;
  border-left: 3px solid #e6b0ac;
  color: #993c3c;
  border-radius: var(--sm-radius-sm);
  padding: 1rem 1.2rem;
}

/* Empty cart CTA */
.sm-empty-cart-cta {
  text-align: center;
  margin: 18px 0 36px;
}

/* =================================================================
   CUSTOM PRODUCT GRID (NON-WOOCOMMERCE)
   ================================================================= */
.seelenmagnet-produkt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0;
}

.produkt-box {
  background: var(--sm-bg-card);
  border: 1px solid var(--sm-border);
  box-shadow: var(--sm-shadow-md);
  border-radius: var(--sm-radius-md);
  padding: 1.5rem 1rem 1.7rem;
  text-align: center;
  transition: all var(--sm-transition-base);
  max-width: 370px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.produkt-box img {
  max-width: 220px;
  width: 100%;
  height: auto;
  border-radius: var(--sm-radius-sm);
  margin-bottom: var(--sm-space-md);
  box-shadow: var(--sm-shadow-sm);
}

.produkt-box h3 {
  font-size: 1.19rem;
  color: var(--sm-burgundy);
  font-family: var(--sm-font-heading);
  margin-bottom: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.produkt-box .preis {
  font-weight: 700;
  color: var(--sm-primary);
  font-size: 1.1rem;
  margin-bottom: var(--sm-space-md);
}

/* =================================================================
   PRODUCT SECTION HEADLINES
   ================================================================= */
.seelenmagnet-produkt-headline {
  text-align: center;
  padding: 3.2rem 1.2rem 2.1rem;
  max-width: 1020px;
  margin: 0 auto;
}

.seelenmagnet-produkt-headline h2 {
  font-family: var(--sm-font-heading);
  font-size: clamp(2.1rem, 6vw, 3.3rem);
  color: var(--sm-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1rem;
  line-height: 1.06;
}

.seelenmagnet-produkt-headline p {
  font-family: var(--sm-font-body);
  font-size: clamp(1.08rem, 2vw, 1.37rem);
  color: #e2d3ad;
  letter-spacing: 0.02em;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* =================================================================
   CART ICON (GOLD GRADIENT)
   ================================================================= */
.header .icon-shopping-cart:before {
  background: linear-gradient(180deg, #f8ecd1 0%, #f0d79a 22%, #c6a063 48%, #9c7a45 72%, #7a5b2f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: bold;
}

.header .cart-item .badge {
  background: var(--sm-primary);
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(198, 160, 99, 0.6);
}

/* =================================================================
   MOBILE MENU (FULLSCREEN HAMBURGER)
   ================================================================= */
.off-canvas .mfp-content,
.mobile-sidebar {
  background: var(--sm-burgundy);
  color: var(--sm-bg-main);
  font-family: var(--sm-font-heading);
  width: 100vw;
  height: 100vh;
  max-width: none;
  animation: fadeIn var(--sm-transition-slow);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.off-canvas .nav-sidebar ul li a,
.mobile-sidebar ul li a {
  background: linear-gradient(180deg, #f8ecd1 0%, #f0d79a 25%, #c6a063 55%, #9c7a45 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.6px;
  padding: 0.6rem 0;
  transition: all var(--sm-transition-base);
  display: inline-block;
}

.off-canvas .nav-sidebar ul li a:hover {
  background: linear-gradient(180deg, #fffbe9 0%, #f8ecd1 30%, #c6a063 70%, #b89b5e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  border-bottom: 1px solid rgba(198, 160, 99, 0.5);
}

/* Submenu styling */
.off-canvas .nav-sidebar ul li ul {
  margin-top: 0.3rem;
  margin-bottom: 0.6rem;
  padding-left: 0.8rem;
  border-left: 1px solid rgba(198, 160, 99, 0.25);
}

.off-canvas .nav-sidebar ul li ul li a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.2px;
  background: linear-gradient(180deg, #e8dfc1 0%, #d0b97e 70%, #a89060 100%);
  -webkit-background-clip: text;
  background-clip: text;
  padding: 0.3rem 0;
}

/* Remove menu item borders */
.off-canvas .nav-vertical li,
.off-canvas .nav-vertical li a {
  border: none;
  box-shadow: none;
}

/* =================================================================
   REVIEWS SECTION (CUSTOMER REVIEWS PLUGIN)
   ================================================================= */
.sm-reviews {
  background: var(--sm-burgundy);
  padding: 56px 0;
  color: #f3e9d7;
  --sm-accent: var(--sm-primary);
  --sm-text: #f3e9d7;
  --sm-muted: #bdaea6;
  --sm-panel: var(--sm-bg-panel);
  --sm-border-alpha: rgba(255, 255, 255, 0.08);
  --sm-shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.sm-reviews__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.sm-reviews__title {
  text-align: center;
  color: var(--sm-accent);
  font-family: var(--sm-font-heading);
  font-weight: 700;
  font-size: clamp(26px, 4.5vw, 34px);
  letter-spacing: 0.3px;
  margin: 0 0 24px;
  position: relative;
  padding-bottom: 10px;
}

.sm-reviews__title::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, transparent, var(--sm-primary), transparent);
  opacity: 0.8;
  border-radius: 2px;
}

.sm-reviews .star-rating::before,
.sm-reviews .cr-stars .cr-star.filled {
  color: var(--sm-accent);
}

/* =================================================================
   COOKIE BANNER (REAL COOKIE BANNER)
   ================================================================= */
.rcb-consent-modal .rcb-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rcb-consent-modal .rcb-buttons .rcb-btn {
  width: 100%;
  border-radius: 12px;
  font-weight: 600;
  padding: 12px 18px;
}

.rcb-consent-modal .rcb-btn-accept {
  background: var(--sm-primary);
  color: #fff;
  border: none;
}

.rcb-consent-modal .rcb-btn-accept:hover {
  background: var(--sm-primary-dark);
}

.rcb-consent-modal .rcb-btn-deny {
  background: #fff;
  color: var(--sm-primary);
  border: 2px solid var(--sm-primary);
}

.rcb-consent-modal .rcb-btn-settings {
  background: var(--sm-text);
  color: #fff;
  border: none;
}

/* =================================================================
   PERSONAL DATA FIELDS (BIRTHDATE)
   ================================================================= */
.sm-product-personal label {
  font-family: var(--sm-font-heading);
  font-weight: 700;
  color: var(--sm-text);
  display: block;
  margin-bottom: 6px;
}

.sm-product-personal input[type="date"] {
  display: inline-block;
  width: 160px;
  max-width: 160px;
  padding: 8px 10px;
  border-radius: var(--sm-radius-sm);
  border: 1px solid var(--sm-border-light);
  background: #fff;
}

.sm-product-personal .sm-hint {
  font-family: var(--sm-font-body);
  color: var(--sm-text-light);
  font-size: 0.9rem;
  margin-top: 0.4rem;
}

/* =================================================================
   MODAL (SHARED)
   ================================================================= */
#sm-shared-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
}

#sm-shared-modal.visible {
  display: flex;
}

#sm-shared-modal .sm-inner {
  background: var(--sm-bg-main);
  color: var(--sm-text);
  max-width: 720px;
  width: calc(100% - 40px);
  padding: 20px;
  border-radius: var(--sm-radius-md);
  box-shadow: 0 14px 48px rgba(56, 30, 36, 0.16);
}

#sm-shared-modal h3 {
  margin: 0 0 8px;
  font-family: var(--sm-font-heading);
  font-size: 1.15rem;
}

#sm-shared-modal p {
  margin: 0 0 14px;
  line-height: 1.6;
}

.sm-actions {
  text-align: right;
}

/* =================================================================
   HIDE UNNECESSARY ELEMENTS
   ================================================================= */
.return-to-shop,
.wc-backward,
.off-canvas-cart,
.off-canvas-cart-overlay,
.nav-dropdown {
  display: none;
  visibility: hidden;
  pointer-events: none;
}

/* =================================================================
   CONTENT READABILITY FIX
   ================================================================= */
.entry-content,
.entry-content p,
.entry-content li {
  color: var(--sm-text);
  line-height: 1.72;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  color: var(--sm-primary);
}

.entry-content table {
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--sm-border);
  border-radius: 10px;
  overflow: hidden;
}

.entry-content th,
.entry-content td {
  border-bottom: 1px solid var(--sm-border);
  padding: 0.7rem 0.9rem;
}

.entry-content tr:last-child td {
  border-bottom: none;
}

/* =================================================================
   RESPONSIVE DESIGN
   ================================================================= */
@media (max-width: 1024px) {
  .seelenmagnet-produkt-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .single-product .product {
    flex-direction: column;
    align-items: stretch;
    padding: 1.6rem 0.4rem;
    gap: 2.5vw;
  }
  
  .single-product .product .images,
  .single-product .product .summary {
    max-width: 100%;
    width: 100%;
    padding: 1.2rem 0.5rem;
  }
  
  .single-product .product_title {
    font-size: 1.5rem;
  }
}

@media (max-width: 700px) {
  .seelenmagnet-produkt-grid {
    grid-template-columns: 1fr;
  }
  
  .seelenmagnet-produkt-headline {
    padding-top: 2rem;
    padding-bottom: 1.1rem;
  }
  
  .single-product .ux-quantity {
    max-width: 110px;
    padding: 0.1rem 0.3rem;
  }
  
  .single-product .ux-quantity__button,
  .single-product .input-text.qty {
    width: 32px;
    height: 32px;
    font-size: 1.08rem;
  }
}

@media (max-width: 600px) {
  .sm-reviews {
    padding: 42px 0;
  }
  
  #sm-shared-modal .sm-inner {
    padding: 16px;
    border-radius: 10px;
  }
}

@media (max-width: 520px) {
  .sm-hint-btn {
    font-size: 0.85rem;
    padding: 6px 8px;
  }
}

@media (max-width: 420px) {
  .sm-product-personal input[type="date"] {
    width: 140px;
    max-width: 140px;
  }
}

/* ===========================
   SEELENMAGNET – Fullscreen Hamburger Menü
=========================== */

/* Overlay auf ganzen Bildschirm */
.off-canvas .mfp-content,
.mobile-sidebar {
  background:#3d1f27 !important;
  color:#fffbe9 !important;
  font-family:'Cinzel',serif !important;
  width:100vw !important;
  height:100vh !important;
  left:0 !important;
  top:0 !important;
  max-width:none !important;
  border:none !important;
}

/* Menü-Links: Echtgold */
.off-canvas .nav-sidebar ul li a,
.mobile-sidebar ul li a {
  background:linear-gradient(180deg,#f8ecd1 0%,#f0d79a 25%,#c6a063 55%,#9c7a45 85%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent !important;
  font-size:clamp(1.1rem,2vw,1.5rem);
  font-weight:600;
  letter-spacing:0.6px;
  text-transform:none;
  padding:0.6rem 0;
  transition:all 0.3s ease;
  display:inline-block;
}

/* Hover: leichter Schimmer + Unterstreichung */
.off-canvas .nav-sidebar ul li a:hover,
.mobile-sidebar ul li a:hover {
  background:linear-gradient(180deg,#fffbe9 0%,#f8ecd1 30%,#c6a063 70%,#b89b5e 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent !important;
  border-bottom:1px solid rgba(198,160,99,0.5);
}

/* Aktiver Menüpunkt */
.off-canvas .nav-sidebar ul li.active > a {
  background:linear-gradient(180deg,#fff6d1,#f0d79a,#c6a063);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent !important;
  font-weight:700;
}

/* Logo im Menü zentrieren */
.off-canvas .nav-sidebar .logo,
.mobile-sidebar .logo {
  margin:1rem auto 2rem;
  display:block;
  max-width:140px;
}

/* Dezent weiches Einblenden */
.off-canvas .mfp-content {
  animation:fadeIn 0.35s ease;
}
@keyframes fadeIn {
  from { opacity:0; transform:translateY(10px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ===========================
   Untermenü-Styling im Hamburger Menü – klar abgesetzt
=========================== */

/* Container für Untermenüs */
.off-canvas .nav-sidebar ul li ul,
.mobile-sidebar ul li ul {
  margin-top:0.3rem;
  margin-bottom:0.6rem;
  padding-left:0.8rem; /* Einzug für gesamte Gruppe */
  border-left:1px solid rgba(198,160,99,0.25); /* feine Linie, sehr dezent */
}

/* Links in Untermenüs */
.off-canvas .nav-sidebar ul li ul li a,
.mobile-sidebar ul li ul li a {
  font-size:0.85rem !important;   /* deutlich kleiner */
  font-weight:400 !important;     /* dünner als Hauptmenü */
  letter-spacing:0.2px;
  line-height:1.4;
  background:linear-gradient(180deg,#e8dfc1 0%,#d0b97e 70%,#a89060 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent !important;
  padding:0.3rem 0;
  display:block;
}

/* Hover-Effekt für Untermenüs */
.off-canvas .nav-sidebar ul li ul li a:hover,
.mobile-sidebar ul li ul li a:hover {
  background:linear-gradient(180deg,#fffbe9 0%,#f0d79a 40%,#c6a063 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent !important;
}
/* ======================
   SEELENMAGNET – Mobile Menü Fix
   ====================== */

/* Striche entfernen */
.off-canvas .nav-vertical li,
.off-canvas .nav-vertical li a {
  border: none !important;
  box-shadow: none !important;
}

/* Standard-Icon anpassen */
.off-canvas .nav-vertical .menu-item-has-children > a .icon-angle-down {
  position: static !important; /* raus aus dem Rand */
  margin-left: .3em;           /* minimaler Abstand */
  font-size: .9em;             /* kleiner, dezenter */
}

/* =========================
   SEELENMAGNET – Off‑Canvas Menü Fix
   Pfeil neben Text, Text zentriert, Striche weg
   ========================= */

/* Striche sicher weg */
.off-canvas .nav-vertical li,
.off-canvas .nav-vertical li a {
  border: none !important;
  box-shadow: none !important;
}

/* 1) Flex-Layout am LI deaktivieren, damit nichts auseinandergezogen wird */
.off-canvas .nav-vertical .menu-item-has-children {
  display: block !important;              /* statt flex */
  text-align: center;                      /* zentrierter Text */
}

/* 2) Link normal inline lassen */
.off-canvas .nav-vertical .menu-item-has-children > a {
  display: inline-block !important;
  padding-right: 0 !important;
  vertical-align: middle;
}

/* 3) Pfeil (button.toggle) direkt neben den Text holen */
.off-canvas .nav-vertical .menu-item-has-children > .toggle {
  position: static !important;             /* raus aus absolut/rechts */
  display: inline-flex !important;         /* in die Zeile neben <a> */
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  margin-left: .6em;                       /* Abstand Text – Pfeil */
  padding: 0 !important;
  width: auto !important;
  height: auto !important;
  background: none !important;
  border: 0 !important;
}

/* 4) Icon selbst feinjustieren + Drehung beim Öffnen */
.off-canvas .nav-vertical .menu-item-has-children > .toggle i {
  font-size: .95em;
  line-height: 1;
  top: 0 !important;
  transform: none;
  transition: transform .25s ease;
  transform-origin: 50% 50%;
}
.off-canvas .nav-vertical .menu-item-has-children.active > .toggle i,
.off-canvas .nav-vertical .menu-item-has-children.open > .toggle i,
.off-canvas .nav-vertical .menu-item-has-children.ux-open > .toggle i {
  transform: rotate(180deg);
}

/* 5) Falls ein globales Flex die Kinder wieder auseinanderzieht – härterer Reset */
.off-canvas .nav-vertical .menu-item-has-children > a,
.off-canvas .nav-vertical .menu-item-has-children > .toggle {
  max-width: 100%;
}

/* ═══════════════════════════════════════════════════════════════
   SEELENMAGNET.DE - MASTER CSS FILE (CLEAN & OPTIMIZED)
   Alle Sections in einem File - Performance-optimiert
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   GLOBAL VARIABLES (alle Sections teilen diese)
   ═══════════════════════════════════════════════════════════════ */
:root {
  /* Brand Colors */
  --color-gold-primary: #c6a063;
  --color-gold-light: #f4d27a;
  --color-gold-dark: #b48a4e;
  --color-wine-primary: #381e24;
  --color-wine-dark: #2b1218;
  --color-wine-hover: #572b36;
  
  /* Text Colors */
  --color-text-primary: #381e24;
  --color-text-light: #ffffff;
  --color-text-muted: #666666;
  
  /* Backgrounds */
  --color-bg-white: #ffffff;
  --color-bg-cream: #fffaeb;
  --color-bg-wine: #3d1f27;
  
  /* Borders & Effects */
  --color-border: #f3ead0;
  --shadow-card: 0 10px 30px rgba(56, 30, 36, 0.12);
  --shadow-button: 0 6px 20px rgba(198, 160, 99, 0.4);
  
  /* Typography */
  --font-heading: 'Cinzel', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Transitions */
  --transition-fast: 0.25s ease;
  --transition-base: 0.3s ease;
}

/* ═══════════════════════════════════════════════════════════════
   1. HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
.sm-hero {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-wine-primary);
}

.sm-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sm-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sm-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  pointer-events: none;
}

.sm-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.sm-hero__title {
  margin: 0 0 24px;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--color-text-light);
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  animation: fadeInUp 0.8s ease-out;
}

.sm-hero__subtitle {
  margin: 0 auto 40px;
  max-width: 800px;
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #fffef6;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  animation: fadeIn 1s ease-out 0.3s both;
}

.sm-hero__subtitle strong {
  font-weight: 600;
  color: var(--color-gold-light);
}

.sm-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════════
   2. BUTTONS (GLOBAL - alle Sections nutzen diese)
   ═══════════════════════════════════════════════════════════════ */
.sm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all var(--transition-base);
  cursor: pointer;
}

.sm-btn--gold {
  background: linear-gradient(180deg, var(--color-gold-light) 0%, var(--color-gold-primary) 100%);
  color: var(--color-wine-primary);
  border: none;
  box-shadow: 0 4px 12px rgba(198, 160, 99, 0.4);
}

.sm-btn--gold:hover {
  background: linear-gradient(180deg, #fff2b2 0%, #e5bf79 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(198, 160, 99, 0.6);
}

.sm-btn--wine {
  background: var(--color-wine-primary);
  color: var(--color-text-light);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.sm-btn--wine:hover {
  background: var(--color-wine-hover);
  color: var(--color-gold-light);
  border-color: var(--color-gold-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.sm-btn:active {
  transform: translateY(-1px);
}

.sm-btn:focus-visible {
  outline: 3px solid var(--color-gold-primary);
  outline-offset: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   3. EXPECTS SECTION ("Das erwartet dich")
   ═══════════════════════════════════════════════════════════════ */
.sm-expects {
  background: radial-gradient(
    circle at 50% 40%, 
    #4a2a2e 0%, 
    var(--color-wine-primary) 80%
  );
  padding: 80px 0;
}

.sm-expects__wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.sm-expects__title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 800;
  color: var(--color-gold-primary);
  margin: 0 0 48px;
}

.sm-expects__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 16px auto 0;
  background: var(--color-gold-primary);
  border-radius: 2px;
  box-shadow: 0 2px 6px rgba(198, 160, 99, 0.5);
}

.sm-expects__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
}

.sm-expects__card {
  flex: 1 1 300px;
  max-width: 330px;
  background: linear-gradient(
    145deg,
    rgba(80, 50, 55, 0.9) 0%,
    rgba(56, 30, 36, 0.85) 100%
  );
  backdrop-filter: blur(8px);
  border-radius: 24px;
  border: 1px solid rgba(198, 160, 99, 0.3);
  box-shadow: 
    0 10px 35px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.sm-expects__card:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 15px 45px rgba(198, 160, 99, 0.25),
    0 10px 35px rgba(0, 0, 0, 0.4);
  border-color: rgba(198, 160, 99, 0.6);
}

.sm-expects__icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin: 0 auto 16px;
  display: block;
  filter: drop-shadow(0 0 8px rgba(198, 160, 99, 0.3));
  transition: transform var(--transition-base), filter var(--transition-base);
}

.sm-expects__card:hover .sm-expects__icon {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(198, 160, 99, 0.5));
}

.sm-expects__card-title {
  color: var(--color-gold-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.08rem, 3.5vw, 1.25rem);
  font-weight: 700;
  margin: 12px 0 8px;
  line-height: 1.3;
}

.sm-expects__card-text {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 3vw, 1.05rem);
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0;
  opacity: 0.95;
}

/* ═══════════════════════════════════════════════════════════════
   4. CREATOR SECTION ("Werde Schöpfer")
   ═══════════════════════════════════════════════════════════════ */
.sm-creator {
  background: var(--color-bg-white);
  padding: 80px 0;
}

.sm-creator__wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.sm-creator__title {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 4.6vw, 2.3rem);
  font-weight: 800;
  text-align: center;
  margin: 0 0 32px;
  color: var(--color-wine-primary);
}

.sm-creator__title::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  margin: 16px auto 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--color-gold-primary) 50%,
    transparent 100%
  );
  border-radius: 2px;
}

.sm-creator__card {
  background: var(--color-bg-cream);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  padding: 48px 32px;
}

.sm-creator__text {
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.3vw, 1.12rem);
  line-height: 1.7;
}

.sm-creator__text p {
  margin: 0 0 20px;
}

.sm-creator__text strong {
  font-weight: 700;
  color: var(--color-wine-primary);
}

.sm-creator__prompt {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-gold-primary);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 32px 0;
  font-style: italic;
}

.sm-creator__prompt strong {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  font-style: normal;
}

.sm-creator__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ═══════════════════════════════════════════════════════════════
   5. THEMEN SECTION (3 Boxen)
   ═══════════════════════════════════════════════════════════════ */
.sm-themen {
  background: var(--color-bg-white);
  padding: 80px 0;
}

.sm-themen__wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.sm-themen__title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 48px;
  background: linear-gradient(90deg, var(--color-gold-light) 0%, var(--color-gold-primary) 50%, var(--color-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sm-themen__title::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, transparent 0%, var(--color-gold-primary) 50%, transparent 100%);
  border-radius: 2px;
}

.sm-themen__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.sm-themen__card {
  flex: 1 1 300px;
  max-width: 340px;
  background: var(--color-bg-cream);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.sm-themen__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 45px rgba(198, 160, 99, 0.22);
}

.sm-themen__icon {
  width: 150px;
  height: auto;
  margin: 0 auto 20px;
  display: block;
}

.sm-themen__card-title {
  color: var(--color-wine-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 3.5vw, 1.28rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.sm-themen__card-text {
  font-size: clamp(0.95rem, 3vw, 1.05rem);
  color: var(--color-text-primary);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════════════════════════════
   6. ABOUT SECTION ("Über mich")
   ═══════════════════════════════════════════════════════════════ */
.sm-about {
  background: var(--color-bg-wine);
  padding: 80px 0;
}

.sm-about__wrap {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 24px;
}

.sm-about__title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 5vw, 2.2rem);
  font-weight: 800;
  margin: 0 0 40px;
  background: linear-gradient(90deg, var(--color-gold-light) 0%, var(--color-gold-primary) 50%, var(--color-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sm-about__title::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, transparent 0%, var(--color-gold-primary) 50%, transparent 100%);
  border-radius: 2px;
}

.sm-about__card {
  background: rgba(63, 44, 46, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  box-shadow: 0 10px 35px rgba(255, 255, 255, 0.06);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.sm-about__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 55px rgba(255, 255, 255, 0.1);
}

.sm-about__img {
  width: 100%;
  max-width: 300px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.sm-about__img img {
  width: 100%;
  height: auto;
  display: block;
}

.sm-about__text {
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: clamp(1rem, 3.2vw, 1.1rem);
  line-height: 1.7;
  max-width: 700px;
}

.sm-about__text p {
  margin: 0 0 18px;
}

.sm-about__text strong {
  font-weight: 700;
  color: var(--color-gold-light);
}

/* ═══════════════════════════════════════════════════════════════
   7. SHOP SECTION (Produkte)
   ═══════════════════════════════════════════════════════════════ */
.sm-shop {
  background: var(--color-bg-white);
  padding: 80px 0;
}

.sm-shop__header {
  max-width: 1100px;
  margin: 0 auto 48px;
  padding: 0 24px;
  text-align: center;
}

.sm-shop__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sm-shop__title .accent {
  color: var(--color-gold-primary);
}

.sm-shop__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: #b89b5e;
  max-width: 600px;
  margin: 0 auto;
}

.sm-shop__wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.sm-shop__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.sm-shop__card {
  background: var(--color-bg-cream);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 16px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.sm-shop__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(56, 30, 36, 0.14);
}

.sm-shop__img {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 1 / 1;
  background: #f6f1e2;
}

.sm-shop__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-base);
}

.sm-shop__card:hover .sm-shop__img img {
  transform: scale(1.05);
}

.sm-shop__card-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.6vw, 1.18rem);
  font-weight: 800;
  text-align: center;
  margin: 8px 0;
  color: var(--color-text-primary);
}

.sm-shop__card-title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.sm-shop__card-title a:hover {
  color: #9a7b3f;
}

.sm-shop__desc {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2.4vw, 1.02rem);
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.6;
  margin: 0 0 16px;
}

.sm-shop__meta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sm-shop__price {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.2vw, 1.08rem);
  font-weight: 800;
  color: var(--color-text-primary);
}

.sm-shop__buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold-primary);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 24px;
  text-decoration: none;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-button);
}

.sm-shop__buy-btn:hover {
  background: var(--color-wine-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

/* ═══════════════════════════════════════════════════════════════
   8. REVIEWS SECTION (Bewertungen)
   ═══════════════════════════════════════════════════════════════ */
.sm-reviews {
  background: var(--color-bg-wine);
  padding: 80px 0;
}

.sm-reviews__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.sm-reviews__header {
  text-align: center;
  margin-bottom: 48px;
}

.sm-reviews__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5.6vw, 2.8rem);
  font-weight: 800;
  margin: 0 0 12px;
  background: linear-gradient(90deg, var(--color-gold-light) 0%, var(--color-gold-primary) 50%, var(--color-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sm-reviews__title::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, transparent 0%, var(--color-gold-primary) 50%, transparent 100%);
  border-radius: 2px;
}

.sm-reviews__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 3.6vw, 1.18rem);
  color: var(--color-text-light);
  opacity: 0.95;
  max-width: 800px;
  margin: 0 auto;
}

.sm-reviews__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.sm-reviews__col-title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.35rem);
  font-weight: 700;
  color: var(--color-gold-primary);
  margin: 0 0 8px;
}

.sm-reviews__col-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 2.4vw, 0.98rem);
  color: var(--color-text-light);
  opacity: 0.9;
  margin: 0 0 16px;
}



/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE - TABLET
   ═══════════════════════════════════════════════════════════════ */


@media (max-width: 768px) {
  .sm-hero {
    min-height: 500px;
  }

  .sm-hero__content {
    padding: 40px 20px;
  }

  .sm-creator,
  .sm-themen,
  .sm-about,
  .sm-shop,
  .sm-reviews {
    padding: 60px 0;
  }

  .sm-themen__grid {
    gap: 24px;
  }

  .sm-shop__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sm-reviews__grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE - MOBILE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .sm-hero {
    min-height: 480px;
  }

  .sm-hero__content {
    padding: 30px 16px;
  }

  .sm-hero__buttons {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .sm-btn {
    width: 100%;
    min-width: auto;
  }

  .sm-creator,
  .sm-themen,
  .sm-about,
  .sm-shop,
  .sm-reviews {
    padding: 48px 0;
  }

  .sm-creator__card {
    padding: 32px 20px;
  }

  .sm-themen__card,
  .sm-about__card {
    padding: 28px 20px;
  }

  .sm-shop__grid {
    grid-template-columns: 1fr;
  }

  .sm-creator__buttons {
    flex-direction: column;
    width: 100%;
  }
}

/* ===== MOBILE: Shop Reviews wie Google Card Layout ===== */
@media (max-width: 900px) {
  /* Shop Column wird zur Card */
  .sm-rev__shop {
    background: rgba(255, 250, 235, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    padding: clamp(1rem, 2.4vw, 1.4rem);
    position: relative;
  }

  /* Header innerhalb */
  .sm-rev__shop .sm-rev__col-header {
    margin-bottom: 0.75rem;
  }

  /* Slider Wrap kein extra Style */
  .sm-rev__slider-wrap {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    padding-top: 2rem !important; /* Nur Platz für Counter */
    margin-top: 0 !important;
    position: relative !important;
    min-height: 300px !important; /* WICHTIG: Mindesthöhe! */
  }

  /* Slider muss sichtbar sein */
  .sm-rev__slider {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 250px !important;
    width: 100% !important;
  }

  /* CusRev Slider Container */
  #sm-reviews .cr-reviews-slider {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Slick List & Track */
  #sm-reviews .cr-reviews-slider .slick-list {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  #sm-reviews .cr-reviews-slider .slick-track {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Review Cards */
  #sm-reviews .cr-review,
  #sm-reviews .cr-review-card {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  #sm-reviews .cr-review-card-inner {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Counter Badge Position */
  .sm-rev__counter {
    position: absolute !important;
    top: -14px !important; /* Außerhalb der Card */
    right: 16px !important;
    z-index: 30 !important;
  }
}

@media (max-width: 600px) {
  .sm-rev__shop {
    padding: 1rem;
  }

  .sm-rev__slider-wrap {
    padding-top: 1.5rem !important;
    min-height: 280px !important;
  }

  .sm-rev__slider {
    min-height: 220px !important;
  }
	
	
}

/* ═══════════════════════════════════════════════════════════════
   SEELENMAGNET.DE - UNTERSEITEN CSS (CLEAN & OPTIMIZED)
   Für alle Unterseiten-Pages
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   ÜBER MICH PAGE
   ═══════════════════════════════════════════════════════════════ */

/* Hero */
.sm-about-page__hero {
  position: relative;
  min-height: clamp(400px, 55vh, 650px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, 
      rgba(0,0,0,.65) 0%, 
      rgba(0,0,0,.45) 30%, 
      rgba(0,0,0,.15) 60%, 
      rgba(0,0,0,0) 100%
    ),
    url('https://seelenmagnet.de/wp-content/uploads/2025/08/seelenmagnet.de-ueber-mich-.png') center 65%/cover no-repeat;
  color: white;
}

.sm-about-page__hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: left;
}

.sm-about-page__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.sm-about-page__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  max-width: 18ch;
  background: linear-gradient(135deg, #ffffff 0%, #fffbe9 30%, #f8ecd1 60%, #c6a063 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 3px 12px rgba(0,0,0,0.9));
}

.sm-about-page__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  max-width: 50ch;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.9);
}

/* Story Section */
.sm-about-page__story {
  background: linear-gradient(to bottom, white 0%, white 70%, rgba(255, 251, 233, 0.75) 100%);
  padding: clamp(4rem, 10vw, 8rem) 0 0;
}

.sm-about-page__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.sm-about-page__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.sm-about-page__image-wrap {
  grid-column: 1 / 5;
  position: sticky;
  top: 48px;
}

.sm-about-page__image {
  border-radius: clamp(1rem, 2vw, 2rem);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(56, 30, 36, 0.15);
  aspect-ratio: 3 / 4;
}

.sm-about-page__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.sm-about-page__image:hover img {
  transform: scale(1.05);
}

.sm-about-page__content {
  grid-column: 6 / 13;
}

.sm-about-page__intro {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-text-primary);
  margin: 0 0 32px;
  font-family: var(--font-body);
}

.sm-about-page__intro strong {
  color: var(--color-gold-primary);
  font-weight: 700;
}

.sm-about-page__text {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.8;
  color: var(--color-text-primary);
}

.sm-about-page__text p {
  margin: 0 0 24px;
}

.sm-about-page__text a {
  color: var(--color-wine-primary);
  font-weight: 600;
  text-decoration: underline;
  transition: color var(--transition-base);
}

.sm-about-page__text a:hover {
  color: var(--color-gold-primary);
}

.sm-about-page__highlight {
  margin-top: 48px;
  padding: 32px;
  background: linear-gradient(135deg, #fffbe9 0%, #fffaf0 100%);
  border-left: 4px solid var(--color-gold-primary);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sm-about-page__highlight-text {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: var(--color-text-primary);
  margin: 0;
}

.sm-about-page__highlight-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-gold-primary);
  margin-bottom: 12px;
}

/* CTA Section */
.sm-about-page__cta {
  background: linear-gradient(to bottom, rgba(255, 251, 233, 0.75) 0%, #fffbe9 100%);
  padding: clamp(3.5rem, 8vw, 5rem) 0 clamp(3rem, 8vw, 6rem);
}

.sm-about-page__cta-container {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.sm-about-page__cta-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 12px;
}

.sm-about-page__cta-text {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  color: var(--color-text-primary);
  margin: 0 0 48px;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.sm-about-page__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .sm-about-page__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sm-about-page__image-wrap {
    grid-column: 1 / -1;
    position: relative;
    top: 0;
    max-width: 500px;
    margin: 0 auto;
  }

  .sm-about-page__content {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .sm-about-page__hero {
    min-height: clamp(450px, 60vh, 600px);
    background:
      linear-gradient(90deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.35) 100%),
      url('https://seelenmagnet.de/wp-content/uploads/2025/08/seelenmagnet.de-ueber-mich-.png') center bottom/cover no-repeat;
  }

  .sm-about-page__cta-buttons {
    flex-direction: column;
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════════
   KENNENLERN-TERMIN PAGE
   ═══════════════════════════════════════════════════════════════ */

.sm-kennenlernen__hero {
  position: relative;
  min-height: clamp(220px, 34vw, 400px);
  display: flex;
  align-items: center;
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.38), rgba(0,0,0,0.28)),
    url('https://seelenmagnet.de/wp-content/uploads/2025/08/Termin-Kennenlehrnen-Seelenmagnet.png') center/cover no-repeat;
  color: white;
}

.sm-kennenlernen__hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  width: 100%;
}

.sm-kennenlernen__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.9rem, 5.2vw, 2.8rem);
  line-height: 1.2;
  margin: 0;
  background: linear-gradient(90deg, #c6a063 0%, #e2c283 35%, #fff2c6 55%, #d4b070 75%, #c6a063 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 3px 18px rgba(0, 0, 0, 0.35));
}

.sm-kennenlernen__content {
  background: white;
  padding: clamp(2.4rem, 5vw, 3rem) 0;
}

.sm-kennenlernen__wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.sm-kennenlernen__wrap--intro {
  margin-bottom: 32px;
}

.sm-kennenlernen__introtext p {
  font-family: var(--font-body);
  color: var(--color-text-primary);
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  line-height: 1.6;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.sm-kennenlernen__wrap--grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 900px) {
  .sm-kennenlernen__wrap--grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(1.6rem, 3vw, 2rem);
    align-items: start;
  }
}

.sm-kennenlernen__info,
.sm-kennenlernen__form-wrapper {
  border-radius: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.1rem, 2.4vw, 1.3rem);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.sm-kennenlernen__info {
  background: linear-gradient(135deg, rgba(255, 250, 240, 0.95) 0%, rgba(255, 250, 240, 1) 100%);
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 16px rgba(56, 30, 36, 0.06);
}

.sm-kennenlernen__form-wrapper {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(198, 160, 99, 0.2);
  box-shadow: 0 8px 32px rgba(56, 30, 36, 0.08);
}

.sm-kennenlernen__info:hover,
.sm-kennenlernen__form-wrapper:hover {
  transform: translateY(-2px);
}

.sm-kennenlernen__h2 {
  font-family: var(--font-heading);
  color: var(--color-gold-dark);
  margin: 0.2rem 0 24px;
  font-size: clamp(1.15rem, 3vw, 1.35rem);
  font-weight: 700;
}

.sm-kennenlernen__bullets {
  font-family: var(--font-body);
  color: var(--color-text-primary);
  line-height: 1.72;
  margin: 0;
  padding-left: 1.3em;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
}

.sm-kennenlernen__bullets li {
  margin-bottom: 0.6rem;
}

.sm-kennenlernen__note {
  display: block;
  margin-top: 24px;
  color: var(--color-text-muted);
  font-size: clamp(0.875rem, 2.2vw, 1rem);
  line-height: 1.5;
  font-family: var(--font-body);
}

.sm-kennenlernen__note a {
  color: var(--color-text-primary);
  font-weight: 600;
  text-decoration: underline;
  transition: color var(--transition-base);
}

.sm-kennenlernen__note a:hover {
  color: var(--color-gold-primary);
}

/* ═══════════════════════════════════════════════════════════════
   KONTAKT PAGE
   ═══════════════════════════════════════════════════════════════ */

.sm-kontakt__hero {
  position: relative;
  min-height: clamp(260px, 36vw, 420px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.08) 100%),
    url('https://seelenmagnet.de/wp-content/uploads/2025/08/kontakt-seelenmagnet.de_.png') center/cover no-repeat;
  color: white;
}

.sm-kontakt__hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.sm-kontakt__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 5.2vw, 2.8rem);
  line-height: 1.2;
  margin: 0 0 12px;
  background: linear-gradient(90deg, #c6a063 0%, #dcbc7a 40%, #ead7a3 70%, #fffbe6 90%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
}

.sm-kontakt__sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.4vw, 1.06rem);
  line-height: 1.55;
  margin: 0;
  color: white;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.sm-kontakt__grid {
  background: white;
  padding: clamp(2rem, 4vw, 4rem) 0;
}

.sm-kontakt__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.2rem, 3.6vw, 2.4rem);
  align-items: start;
}

@media (max-width: 980px) {
  .sm-kontakt__inner {
    grid-template-columns: 1fr;
  }
}

.sm-kontakt__card {
  border-radius: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.1rem, 2.6vw, 2rem);
  background: rgba(255, 250, 233, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(198, 160, 99, 0.2);
  box-shadow: 0 8px 32px rgba(56, 30, 36, 0.10);
}

.sm-kontakt__info {
  background: rgba(255, 255, 255, 0.90);
  padding: clamp(1.1rem, 2.2vw, 1.6rem);
}

.sm-kontakt__card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
}

.sm-kontakt__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--color-gold-primary);
}

.sm-kontakt__card-title {
  margin: 0;
  font-size: clamp(1.05rem, 2.4vw, 1.18rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-weight: 700;
}

.sm-kontakt__info-title {
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2.6vw, 1.3rem);
  margin: 0.1rem 0 24px;
  font-weight: 700;
}

.sm-kontakt__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.sm-kontakt__list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.sm-kontakt__list-text {
  margin: 0;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 2.2vw, 1rem);
  line-height: 1.6;
}

.sm-kontakt__list a {
  color: var(--color-gold-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-base);
}

.sm-kontakt__list a:hover {
  color: var(--color-gold-dark);
  text-decoration: underline;
}

.sm-kontakt__divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 24px 0;
  opacity: 0.6;
}

.sm-kontakt__hours {
  margin: 0.2rem 0 0;
  color: var(--color-text-muted);
  font-size: clamp(0.875rem, 2.2vw, 1rem);
  font-family: var(--font-body);
}

.sm-kontakt__privacy {
  display: block;
  margin-top: 24px;
  color: var(--color-text-muted);
  font-size: clamp(0.875rem, 2.2vw, 1rem);
  line-height: 1.5;
  font-family: var(--font-body);
}

.sm-kontakt__privacy a {
  color: var(--color-text-primary);
  font-weight: 600;
  text-decoration: underline;
  transition: color var(--transition-base);
}

.sm-kontakt__privacy a:hover {
  color: var(--color-gold-primary);
}

.sm-kontakt__cta {
  background: white;
  padding: 0 0 clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.sm-btn__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  line-height: 1.3;
}

.sm-btn__line1,
.sm-btn__line2 {
  display: block;
}

@media (max-width: 680px) {
  .sm-kontakt__hero {
    min-height: clamp(240px, 45vw, 340px);
    background-position: center;
  }

  .sm-kontakt__title {
    font-size: clamp(1.4rem, 6vw, 1.75rem);
  }
}

/* ═══════════════════════════════════════════════════════════════
   MUSIK & FREQUENZEN PAGE
   ═══════════════════════════════════════════════════════════════ */

.sm-musik__hero {
  position: relative;
  padding: clamp(3.2rem, 8vw, 6.2rem) 0;
  color: white;
  text-align: center;
  background: 
    linear-gradient(to bottom, rgba(56, 30, 36, 0.54), rgba(56, 30, 36, 0.62)),
    url('https://seelenmagnet.de/wp-content/uploads/2025/07/seelenmagnet.de-musik.png') center/cover no-repeat;
}

.sm-musik__hero-inner {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 24px;
}

.sm-musik__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  line-height: 1.2;
  margin: 0 0 24px;
  background: linear-gradient(90deg, #c6a063 0%, #dcbc7a 40%, #ead7a3 70%, #fffbe6 88%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
}

.sm-musik__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 3.5vw, 1.25rem);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 600px;
  color: #f5e9c9;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.sm-musik__content {
  background: white;
  padding: clamp(2.2rem, 6vw, 3.6rem) 0;
}

.sm-musik__wrap {
  max-width: 830px;
  margin: 0 auto;
  padding: 0 24px;
}

.sm-musik__text {
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 3.2vw, 1.12rem);
  line-height: 1.72;
}

.sm-musik__text p {
  margin: 0 0 1.15rem;
}

.sm-musik__text a {
  color: var(--color-wine-primary);
  font-weight: 600;
  text-decoration: underline;
  transition: color var(--transition-base);
}

.sm-musik__text a:hover {
  color: var(--color-gold-primary);
}

.sm-musik__cta {
  background: #fffaeb;
  padding: clamp(3.5rem, 8vw, 5rem) 0 clamp(2.2rem, 6vw, 3.4rem);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   INNERER KOMPASS PAGE
   ═══════════════════════════════════════════════════════════════ */

.sm-kompass__hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: clamp(420px, 62vh, 720px);
}

.sm-kompass__media {
  position: absolute;
  inset: 0;
  margin: 0;
}

.sm-kompass__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sm-kompass__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(56, 30, 36, 0.38) 0%, rgba(56, 30, 36, 0.72) 100%);
}

.sm-kompass__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(36px, 6vw, 54px) 24px;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(12px, 2vw, 18px);
}

.sm-kompass__title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  color: white;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  font-size: clamp(2rem, 5.8vw, 3.2rem);
}

.sm-kompass__sub {
  margin: 0 auto;
  max-width: 720px;
  font-family: var(--font-body);
  color: white;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
  font-size: clamp(1.04rem, 2.8vw, 1.28rem);
  line-height: 1.7;
}

.sm-kompass__wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px) 24px;
}

.sm-kompass__card {
  border-radius: clamp(1.2rem, 2vw, 1.6rem);
  background: #fffaeb;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 35px rgba(56, 30, 36, 0.12);
  padding: clamp(1.8rem, 5.2vw, 3rem) clamp(1.2rem, 4.8vw, 2.4rem);
}

.sm-kompass__text {
  font-family: var(--font-body);
  color: var(--color-text-primary);
  font-size: clamp(1rem, 2.4vw, 1.12rem);
  line-height: 1.82;
}

.sm-kompass__text p {
  margin: 0 0 1.15rem;
}

.sm-kompass__text a {
  color: var(--color-wine-primary);
  font-weight: 600;
  text-decoration: underline;
  transition: color var(--transition-base);
}

.sm-kompass__text a:hover {
  color: var(--color-gold-primary);
}

.sm-kompass__h3 {
  font-family: var(--font-heading);
  color: var(--color-wine-primary);
  margin: 32px 0 24px;
  font-size: clamp(1.15rem, 2.6vw, 1.3rem);
  font-weight: 700;
}

.sm-kompass__list {
  margin: 0 0 1.8rem 1.1em;
  padding: 0;
  list-style: disc;
}

.sm-kompass__list li {
  margin: 0.24rem 0;
}

.sm-kompass__actions {
  display: flex;
  gap: clamp(0.8rem, 2vw, 1.2rem);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .sm-kompass__hero {
    min-height: clamp(360px, 56vh, 580px);
  }
}

/* ═══════════════════════════════════════════════════════════════
   GEDANKEN/EMOTIONEN/HANDLUNGEN PAGE
   ═══════════════════════════════════════════════════════════════ */

.sm-geh__hero {
  position: relative;
  color: white;
  text-align: center;
  padding: clamp(3.4rem, 8vw, 6.6rem) 0;
  background: 
    linear-gradient(to bottom, rgba(56, 30, 36, 0.5), rgba(56, 30, 36, 0.64)),
    url('https://seelenmagnet.de/wp-content/uploads/2025/07/seelenmagnet.de-handlung-emotionen-gedanken.png') center/cover no-repeat;
}

.sm-geh__hero-inner {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 24px;
}

.sm-geh__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.9rem, 5.2vw, 2.8rem);
  line-height: 1.2;
  margin: 0 0 24px;
  background: linear-gradient(90deg, #c6a063 0%, #dcbc7a 40%, #ead7a3 70%, #fffbe6 90%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
}

.sm-geh__sub {
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 3.4vw, 1.22rem);
  line-height: 1.62;
  margin: 0 auto;
  max-width: 620px;
  color: #f5e9c9;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.sm-geh__content {
  background: linear-gradient(to bottom, white 0%, white 70%, rgba(255, 250, 235, 0.75) 100%);
  padding: clamp(2.4rem, 6vw, 3.6rem) 0 0;
}

.sm-geh__wrap {
  max-width: 830px;
  margin: 0 auto;
  padding: 0 24px;
}

.sm-geh__copy {
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.6vw, 1.12rem);
  line-height: 1.72;
  margin: 0 0 1.15rem;
}

.sm-geh__copy a {
  color: var(--color-wine-primary);
  font-weight: 600;
  text-decoration: underline;
  transition: color var(--transition-base);
}

.sm-geh__copy a:hover {
  color: var(--color-gold-primary);
}

.sm-geh__h2 {
  font-family: var(--font-heading);
  color: #b89b5e;
  font-size: clamp(1.14rem, 2.8vw, 1.3rem);
  line-height: 1.25;
  margin: 0 0 24px;
  font-weight: 700;
}

.sm-geh__h3 {
  font-family: var(--font-heading);
  color: #b89b5e;
  font-size: clamp(1.08rem, 2.5vw, 1.2rem);
  margin: 1.2rem 0 0.6rem;
  font-weight: 700;
}

.sm-geh__list {
  list-style: disc;
  padding-left: 1.2em;
  margin: 0 0 1.6rem;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  line-height: 1.72;
}

.sm-geh__list li {
  margin: 0.24rem 0;
}

.sm-geh__list a {
  color: var(--color-wine-primary);
  font-weight: 600;
  text-decoration: underline;
  transition: color var(--transition-base);
}

.sm-geh__list a:hover {
  color: var(--color-gold-primary);
}

.sm-geh__quote {
  background: #fff6d8;
  border: 1px solid #e9d9a8;
  border-left: 4px solid var(--color-gold-primary);
  color: #4a2f34;
  padding: clamp(1rem, 2.8vw, 1.15rem) clamp(1.1rem, 3vw, 1.4rem);
  border-radius: 0.9rem;
  margin: 0.4rem 0 1.1rem;
  box-shadow: 0 10px 30px rgba(56, 30, 36, 0.10);
}

.sm-geh__quote em {
  color: var(--color-text-primary);
  font-style: italic;
  font-weight: 600;
}

.sm-geh__quote2 {
  background: #fff6d8;
  border: 1px solid #e9d9a8;
  border-left: 4px solid var(--color-gold-primary);
  color: #3e262b;
  padding: clamp(1rem, 2.8vw, 1.15rem) clamp(1.1rem, 3vw, 1.4rem);
  border-radius: 0.9rem;
  margin: 1.2rem 0 0;
  box-shadow: 0 10px 30px rgba(56, 30, 36, 0.10);
  text-align: center;
  font-weight: 600;
}

.sm-geh__quote2 strong {
  color: var(--color-wine-dark);
  font-weight: 800;
}

.sm-geh__cta {
  background: linear-gradient(to bottom, rgba(255, 250, 235, 0.75) 0%, #fffaeb 100%);
  padding: clamp(3.5rem, 8vw, 5rem) 0 clamp(2.2rem, 6vw, 3.4rem);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE - GLOBAL MOBILE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 600px) {
  .sm-about-page__cta-buttons,
  .sm-kompass__actions {
    flex-direction: column;
    width: 100%;
  }

  .sm-btn {
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE FIXES
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .sm-hero__content,
  .sm-kennenlernen__content,
  .sm-kontakt__grid,
  .sm-musik__wrap,
  .sm-kompass__wrap,
  .sm-geh__wrap {
    padding-left: 24px;
    padding-right: 24px;
  }
  
  .sm-hero__buttons,
  .sm-about-page__cta-buttons,
  .sm-kompass__actions,
  .sm-geh__cta {
    max-width: calc(100% - 32px);
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .sm-hero__content,
  .sm-kennenlernen__content,
  .sm-kontakt__grid,
  .sm-musik__wrap,
  .sm-kompass__wrap,
  .sm-geh__wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .sm-hero__buttons,
  .sm-about-page__cta-buttons,
  .sm-kompass__actions,
  .sm-geh__cta {
    max-width: calc(100% - 24px);
  }
}

/* ═══════════════════════════════════════════════════════════════
   SEELENMAGNET - FOOTER STYLES (OPTIMIERT & EXTERN)
   ═══════════════════════════════════════════════════════════════ */

/* Base Footer */
#sm-footer.sm-foot {
  --gold: #c6a063;
  --gold-light: #f8ecd1;
  --gold-dark: #9c7a45;
  --wine: #381e24;
  --text-light: #fffbe9;
  --text-muted: rgba(255, 255, 255, 0.65);
  
  background: var(--wine);
  color: var(--text-light);
  padding: clamp(3.2rem, 6vw, 4rem) clamp(1.2rem, 3vw, 1.6rem) clamp(1.8rem, 3vw, 2rem);
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Container */
.sm-foot__wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: clamp(2.4rem, 5vw, 3rem);
  text-align: center;
}

/* Columns */
.sm-foot__col {
  flex: 1;
  min-width: 260px;
}

/* Logo */
.sm-foot__logo {
  max-width: 140px;
  height: auto;
  margin: 0 auto 1.2rem;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.sm-foot__logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(198, 160, 99, 0.4));
}

/* Text */
.sm-foot__intro,
.sm-foot__desc {
  margin: 0;
  line-height: 1.6;
  font-size: clamp(0.92rem, 2.5vw, 1rem);
  color: var(--text-light);
  opacity: 0.9;
}

/* Titles */
.sm-foot__title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.1rem, 3vw, 1.25rem);
  font-weight: 700;
  margin: 0 0 1rem;
  background: linear-gradient(180deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.4px;
}

/* Contact Items */
.sm-foot__contact {
  margin-bottom: 1.5rem;
}

.sm-foot__contact-item {
  margin: 0 0 0.75rem;
  font-size: clamp(0.92rem, 2.5vw, 1rem);
}

.sm-foot__label {
  opacity: 0.7;
  margin-right: 0.3em;
}

/* Links */
.sm-foot__link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  display: inline-block;
}

.sm-foot__link:hover,
.sm-foot__link:focus {
  color: var(--gold);
  text-shadow: 0 0 8px rgba(198, 160, 99, 0.4);
}

.sm-foot__link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.sm-foot__link--alt {
  color: #b89b5e;
}

.sm-foot__link--alt:hover,
.sm-foot__link--alt:focus {
  color: #f0d79a;
}

/* Legal Links */
.sm-foot__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  justify-content: center;
  margin-top: 1rem;
}

/* Divider */
.sm-foot__divider {
  max-width: 1200px;
  margin: clamp(2rem, 4vw, 2.5rem) auto clamp(1.2rem, 3vw, 1.5rem);
  height: 1px;
  border: none;
  background: var(--gold);
  opacity: 0.3;
}

/* Copyright */
.sm-foot__copyright {
  text-align: center;
  font-size: clamp(0.82rem, 2.2vw, 0.88rem);
  color: var(--text-muted);
  margin: 0;
  letter-spacing: 0.3px;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1000px) {
  .sm-foot__wrap {
    flex-direction: column;
    align-items: center;
    gap: clamp(2rem, 5vw, 2.5rem);
  }

  .sm-foot__col {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  #sm-footer.sm-foot {
    padding: clamp(2.4rem, 6vw, 3rem) 1rem clamp(1.4rem, 3vw, 1.8rem);
  }

  .sm-foot__logo {
    max-width: 110px;
  }

  .sm-foot__title {
    font-size: clamp(1.05rem, 4vw, 1.15rem);
  }

  .sm-foot__legal {
    gap: 0.4rem 0.8rem;
  }

  .sm-foot__legal .sm-foot__link {
    font-size: 0.9rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   ACCESSIBILITY
   ═══════════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  .sm-foot__logo,
  .sm-foot__link {
    transition: none !important;
  }

  .sm-foot__logo:hover {
    transform: none !important;
  }
}

@media (prefers-contrast: high) {
  .sm-foot__link:focus-visible {
    outline-width: 3px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PRINT
   ═══════════════════════════════════════════════════════════════ */

@media print {
  #sm-footer.sm-foot {
    background: white;
    color: black;
    padding: 20px;
  }

  .sm-foot__title {
    -webkit-text-fill-color: initial;
    color: black;
  }

  .sm-foot__link {
    color: black;
    text-decoration: underline;
  }

  .sm-foot__divider {
    background: black;
  }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE CTA BUTTONS FIX - 
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  /* Kontakt CTA - Override original padding */
  section.sm-kontakt > .sm-kontakt__cta,
  .sm-kontakt > .sm-kontakt__cta {
    padding: 0 20px clamp(2rem, 4vw, 3rem) 20px !important;
  }
  
  /* Gedanken CTA - Override original padding */
  section.sm-geh > .sm-geh__cta,
  .sm-geh > .sm-geh__cta {
    padding: clamp(3.5rem, 8vw, 5rem) 20px clamp(2.2rem, 6vw, 3.4rem) 20px !important;
  }
  
  /* Musik CTA - Override original padding */
  section.sm-musik > .sm-musik__cta,
  .sm-musik > .sm-musik__cta {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  
  /* Buttons selbst - direkter Selector */
  .sm-kontakt__cta > a.sm-btn,
  .sm-geh__cta > a.sm-btn,
  .sm-musik__cta > a.sm-btn {
    max-width: calc(100% - 32px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 480px) {
  section.sm-kontakt > .sm-kontakt__cta,
  .sm-kontakt > .sm-kontakt__cta {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  
  section.sm-geh > .sm-geh__cta,
  .sm-geh > .sm-geh__cta {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  
  section.sm-musik > .sm-musik__cta,
  .sm-musik > .sm-musik__cta {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  
  .sm-kontakt__cta > a.sm-btn,
  .sm-geh__cta > a.sm-btn,
  .sm-musik__cta > a.sm-btn {
    max-width: calc(100% - 24px) !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   GEDANKEN BUTTONS - GAP HINZUFÜGEN
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  /* Gap zwischen den 2 Buttons */
  .sm-geh__cta {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    align-items: center !important;
  }
}



/* ═══════════════════════════════════════════════════════════════
   FONT LOADING OPTIMIERUNG - GEGEN FLACKERN
   ═══════════════════════════════════════════════════════════════ */

/* Cinzel Font */
@font-face {
  font-family: 'Cinzel';
  font-display: swap; /* Zeigt Fallback sofort, wechselt smooth */
  src: local('Cinzel');
}

/* Montserrat Font */
@font-face {
  font-family: 'Montserrat';
  font-display: swap;
  src: local('Montserrat');
}

/* Fallback Font Styles - ähnlich zu Custom Fonts */
body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

h1, h2, h3, .sm-hero__title {
  font-family: 'Cinzel', Georgia, serif;
}

/* ═══════════════════════════════════════════════════════════════
   KONTAKT & KENNENLERN - GLEICHE BREITE WIE BUTTONS
   ═══════════════════════════════════════════════════════════════ */

/* Mobile - Boxen so breit wie Button */
@media (max-width: 768px) {
  /* Kontakt Grid & Inner - gleiche Padding wie Button */
  .sm-kontakt__grid,
  .sm-kontakt__inner {
    padding-left: 20px !important;
    padding-right: 20px !important;
    max-width: 100% !important; /* Keine max-width Beschränkung */
  }
  
  /* Kennenlern Content - gleiche Padding wie Button */
  .sm-kennenlernen__content,
  .sm-kennenlernen__wrap {
    padding-left: 20px !important;
    padding-right: 20px !important;
    max-width: 100% !important;
  }
  
  /* Cards selbst - volle Breite */
  .sm-kontakt__card,
  .sm-kontakt__info {
    max-width: 100% !important;
  }
}

@media (max-width: 480px) {
  .sm-kontakt__grid,
  .sm-kontakt__inner,
  .sm-kennenlernen__content,
  .sm-kennenlernen__wrap {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* Desktop - Normal breit */
@media (min-width: 769px) {
  .sm-kontakt__inner {
    max-width: 1200px !important;
  }
  
  .sm-kennenlernen__wrap {
    max-width: 1100px !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SEELENMAGNET FREQUENZ PAGES - EXTERNAL CSS
   Für alle 30 Frequenz-Seiten (14-30 Hz, 30-60 Hz, etc.)
   ═══════════════════════════════════════════════════════════════ */

/* CSS Variables */
.seelenmagnet-frequenz-wrapper {
  --gold: #c6a063;
  --wine: #471e24;
  --text: #381e24;
  --panel: #fffaf0;
  --border: #f3ead0;
  --yt: #FF0000;
  --sp: #1DB954;
}

/* Reset für Wrapper */
.seelenmagnet-frequenz-wrapper * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Main Wrapper */
.seelenmagnet-frequenz-wrapper {
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3.5vw, 32px);
}

/* Frequenz Section */
.seelenmagnet-frequenz-wrapper .sm-frequenz {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 10px 35px rgba(56, 30, 36, 0.12);
  padding: clamp(24px, 4vw, 48px) clamp(20px, 4vw, 40px);
}

/* Heading */
.seelenmagnet-frequenz-wrapper .sm-frequenz h1 {
  font-family: 'Cinzel', serif;
  color: var(--text);
  font-size: clamp(2rem, 5.5vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 0.5em 0;
  text-align: center;
}

/* Subtitle (außerhalb Box) */
.seelenmagnet-frequenz-wrapper .sm-frequenz .sm-sub {
  font-family: 'Montserrat', sans-serif;
  color: var(--wine);
  font-size: clamp(1.02rem, 2.6vw, 1.2rem);
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}

/* Combined Box (Text + Buttons) */
.seelenmagnet-frequenz-wrapper .sm-combined-box {
  background: #3D1F27;
  border: 1.5px solid var(--gold);
  border-radius: 20px;
  padding: clamp(1.2rem, 3vw, 2rem);
  box-shadow: 0 4px 16px rgba(56, 30, 36, 0.06);
}

/* Subtitle (innerhalb Box) */
.seelenmagnet-frequenz-wrapper .sm-sub-inside {
  font-family: 'Montserrat', sans-serif;
  color: #C6A063;
  font-size: clamp(1.02rem, 2.6vw, 1.2rem);
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}

/* Button Grid */
.seelenmagnet-frequenz-wrapper .sm-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 0;
}

@media (max-width: 640px) {
  .seelenmagnet-frequenz-wrapper .sm-actions {
    grid-template-columns: 1fr;
  }
}

/* Platform Buttons */
.seelenmagnet-frequenz-wrapper .btn-platform {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 3.3vw, 1.12rem);
  padding: 1rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  background: #fff;
  color: var(--wine);
  border: 1.5px solid var(--border);
  box-shadow: 0 6px 24px rgba(40, 12, 15, 0.10);
  transition: transform 0.15s ease, box-shadow 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  outline: none;
  cursor: pointer;
}

.seelenmagnet-frequenz-wrapper .btn-platform:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(40, 12, 15, 0.16);
}

.seelenmagnet-frequenz-wrapper .btn-platform:active {
  transform: translateY(0);
}

.seelenmagnet-frequenz-wrapper .btn-platform svg {
  height: 28px;
  width: 28px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

/* Button Variants */
.seelenmagnet-frequenz-wrapper .btn-youtube {
  --accent: var(--yt);
  border-color: rgba(255, 0, 0, 0.35);
}

.seelenmagnet-frequenz-wrapper .btn-spotify {
  --accent: var(--sp);
  border-color: rgba(29, 185, 84, 0.35);
}

.seelenmagnet-frequenz-wrapper .btn-youtube:hover,
.seelenmagnet-frequenz-wrapper .btn-spotify:hover {
  color: #fff;
  border-color: transparent;
}

/* Button Hover Effect */
.seelenmagnet-frequenz-wrapper .btn-platform::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--accent, var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
  z-index: 0;
}

.seelenmagnet-frequenz-wrapper .btn-platform:hover::before {
  transform: scaleX(1);
}

.seelenmagnet-frequenz-wrapper .btn-platform > * {
  position: relative;
  z-index: 1;
}

.seelenmagnet-frequenz-wrapper .btn-platform:hover svg {
  transform: scale(1.05);
}

/* Note & Hinweise */
.seelenmagnet-frequenz-wrapper .sm-note,
.seelenmagnet-frequenz-wrapper .sm-hinweise {
  font-family: 'Montserrat', sans-serif;
  color: #6a5357;
  font-size: 0.92rem;
  line-height: 1.5;
}

.seelenmagnet-frequenz-wrapper .sm-note {
  margin-top: 1.5rem;
  text-align: center;
  font-style: italic;
}

.seelenmagnet-frequenz-wrapper .sm-hinweise {
  margin: 1.2rem 0 0 0;
  padding-left: 1.5rem;
}

.seelenmagnet-frequenz-wrapper .sm-hinweise li {
  margin: 0.5rem 0;
}

/* ═══════════════════════════════════════════════════════════════
   FONT OPTIMIZATION - font-display: swap
   Macht ALLE Fonts sofort sichtbar (kein Flackern)
   ═══════════════════════════════════════════════════════════════ */

/* Universal fix für alle @font-face */
@font-face {
  font-display: swap !important;
}

/* Spezifisch für deine Fonts */
@font-face {
  font-family: 'Cinzel';
  font-display: swap !important;
}

@font-face {
  font-family: 'Montserrat';
  font-display: swap !important;
}

@font-face {
  font-family: 'fl-icons';
  font-display: swap !important;
}