/*
Theme Name:  Silent Truths
Theme URI:   https://www.silent-truths.com
Author:      SilentTruths
Author URI:  https://www.silent-truths.com
Description: Custom Theme fuer silent-truths.com. Dark, minimal, purple-accented emotional content blog.
Version:     1.0.3
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: silent-truths
*/

/* ====================================================================
   LOKALE FONTS — DSGVO-KONFORM
   Fonts herunterladen: https://gwfh.mranftl.com/fonts/noto-serif
                        https://gwfh.mranftl.com/fonts/montserrat
   Benoetigt: Noto Serif 400/400i/700/700i + Montserrat 300/400/500/600
   Ablegen unter: wp-content/themes/silent-truths/fonts/
   ==================================================================== */

@font-face {
  font-family: 'Noto Serif';
  src: url('fonts/NotoSerif-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Serif';
  src: url('fonts/NotoSerif-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Serif';
  src: url('fonts/NotoSerif-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Serif';
  src: url('fonts/NotoSerif-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('fonts/Montserrat-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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

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

@font-face {
  font-family: 'Montserrat';
  src: url('fonts/Montserrat-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ====================================================================
   RESET + CUSTOM PROPERTIES
   ==================================================================== */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black:              #000000;
  --dark:               #0a0a0a;
  --card:               #111111;
  --card-border:        #1a1a1a;
  --white:              #ffffff;
  --grey:               #cccccc;
  --muted:              #888888;
  --purple:             #9b59b6;
  --purple-bright:      #a855f7;
  --purple-glow:        rgba(168, 85, 247, 0.25);
  --purple-glow-strong: rgba(168, 85, 247, 0.45);
  --serif: 'Noto Serif', Georgia, 'Times New Roman', serif;
  --sans:  'Montserrat', 'Helvetica Neue', Arial, sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ====================================================================
   ANIMATIONEN
   ==================================================================== */

/* Ruhiger, gleichmaessiger Light-Sweep fuer die Free-Download-Box */
@keyframes st-lauflicht {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ====================================================================
   SIGNATURE GLOW LINE
   ==================================================================== */

.glow-line {
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 10%,
    rgba(168, 85, 247, 0.0)  20%,
    rgba(168, 85, 247, 0.7)  40%,
    rgba(200, 140, 255, 1)   50%,
    rgba(168, 85, 247, 0.7)  60%,
    rgba(168, 85, 247, 0.0)  80%,
    transparent 90%
  );
  position: relative;
}

.glow-line::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 10%;
  right: 10%;
  height: 20px;
  background: radial-gradient(
    ellipse at center,
    rgba(168, 85, 247, 0.5)  0%,
    rgba(168, 85, 247, 0.15) 40%,
    transparent 70%
  );
  filter: blur(4px);
}

.glow-line::after {
  content: '';
  position: absolute;
  top: -3px;
  left: 30%;
  right: 30%;
  height: 9px;
  background: radial-gradient(
    ellipse at center,
    rgba(200, 160, 255, 0.8) 0%,
    rgba(168, 85, 247, 0.3)  50%,
    transparent 80%
  );
  filter: blur(6px);
}

.glow-line--small {
  width: 120px;
  margin: 0 auto;
  height: 2px;
}

.glow-line--small::before {
  left: 0;
  right: 0;
  height: 14px;
  top: -6px;
}

.glow-line--small::after {
  left: 10%;
  right: 10%;
  height: 8px;
  top: -2px;
}

/* ====================================================================
   HEADER / BRANDING
   ==================================================================== */

.site-header {
  text-align: center;
  padding: 2rem 1rem 1.5rem;
}

/* ── Theme-Logo als Fallback (silenttruths_logo.jpg) ── */

.site-logo-img-link {
  display: inline-block;
  margin-bottom: 0.6rem;
  line-height: 0;
  border-radius: 50%;
}

.site-logo-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  filter: drop-shadow(0 0 18px var(--purple-glow-strong));
}

/* ── WordPress Custom Logo (the_custom_logo()) ── */

.custom-logo-link {
  display: inline-block;
  margin-bottom: 0.6rem;
}

.custom-logo-link img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 0 18px var(--purple-glow-strong));
  display: block;
}

/* ── Brand Name ── */

.site-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.6rem;
  text-decoration: none;
  display: block;
}

.site-name:hover {
  color: var(--grey);
  text-decoration: none;
}

/* ====================================================================
   HERO SECTION
   ==================================================================== */

.hero {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
  text-align: center;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.2rem;
  color: var(--white);
}

.hero h1 span {
  color: var(--purple-bright);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ====================================================================
   CONTENT AREA
   ==================================================================== */

.content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
}

/* ====================================================================
   QUOTE CARD
   Subtiler lila Hintergrundschimmer über verstärktes ::before
   ==================================================================== */

.quote-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2.2rem 2rem;
  margin-bottom: 2rem;
  position: relative;
  box-shadow:
    0 0 30px rgba(168, 85, 247, 0.08),
    inset 0 0 40px rgba(168, 85, 247, 0.03);
  transition: box-shadow 0.4s ease;
}

.quote-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 13px;
  /* Stärkerer Hintergrundschimmer als bisher */
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.14) 0%,
    rgba(168, 85, 247, 0.06) 40%,
    transparent 70%
  );
  z-index: -1;
  opacity: 1;
}

.quote-card:hover {
  box-shadow:
    0 0 40px rgba(168, 85, 247, 0.14),
    inset 0 0 40px rgba(168, 85, 247, 0.04);
}

.quote-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  line-height: 1.65;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.quote-dash {
  width: 30px;
  height: 2px;
  background: var(--purple-bright);
  border-radius: 2px;
  margin-top: 1rem;
}

/* ====================================================================
   PROSE BLOCKS
   ==================================================================== */

.prose {
  margin-bottom: 2.5rem;
}

.prose p {
  color: var(--grey);
  font-size: 0.98rem;
  line-height: 1.85;
  margin-bottom: 1.1rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose p strong {
  color: var(--white);
  font-weight: 500;
}

.prose .highlight {
  color: var(--purple-bright);
  font-weight: 500;
}

/* ====================================================================
   SECTION DIVIDER
   ==================================================================== */

.divider {
  width: 40px;
  height: 2px;
  background: var(--purple-bright);
  margin: 2.5rem auto;
  border-radius: 2px;
  opacity: 0.5;
}

/* ====================================================================
   INLINE FREEBIE CTA  [st_freebie_cta]
   Lauflicht-Rahmen (::after) + verstärkter Hintergrundschimmer
   ==================================================================== */

.inline-cta {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
  box-shadow:
    0 0 35px rgba(168, 85, 247, 0.09),
    inset 0 0 40px rgba(168, 85, 247, 0.04);
}

/* Subtiler Hintergrundschimmer */
.inline-cta::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 13px;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.18) 0%,
    rgba(168, 85, 247, 0.08) 40%,
    transparent 70%
  );
  z-index: -1;
  opacity: 1;
}

/* Ruhiger animierter Light-Sweep nur auf der Free-Download-Box */
.inline-cta::after {
  content: '';
  position: absolute;
  inset: -1px;
  padding: 1px;
  border-radius: 13px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 15%,
    rgba(168, 85, 247, 0.4)  40%,
    rgba(200, 140, 255, 0.6) 50%,
    rgba(168, 85, 247, 0.4)  60%,
    transparent 85%,
    transparent 100%
  );
  background-size: 400% 100%;
  animation: st-lauflicht 9s linear infinite;
  will-change: background-position;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.inline-cta-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple-bright);
  margin-bottom: 0.5rem;
}

.inline-cta-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.inline-cta-text {
  font-size: 0.9rem;
  color: var(--grey);
  margin-bottom: 1.3rem;
  line-height: 1.7;
}

/* ====================================================================
   CTA SECTION — DUAL PRODUCTS
   Lauflicht-Rahmen (::after) + verstärkter Hintergrundschimmer
   ==================================================================== */

.cta-section {
  max-width: 780px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  text-align: center;
}

.cta-section-intro {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--grey);
  margin-bottom: 2rem;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.cta-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2.2rem 1.6rem;
  box-shadow:
    0 0 40px rgba(168, 85, 247, 0.09),
    inset 0 0 40px rgba(168, 85, 247, 0.04);
  text-align: center;
  position: relative;
}

/* Subtiler Hintergrundschimmer */
.cta-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 17px;
  background: linear-gradient(
    160deg,
    rgba(168, 85, 247, 0.16) 0%,
    rgba(168, 85, 247, 0.07) 45%,
    transparent 70%
  );
  z-index: -1;
  opacity: 1;
}

/* Statischer lila Schimmer-Rahmen — kein animierter Effekt */
.cta-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  padding: 1px;
  border-radius: 17px;
  background: linear-gradient(
    145deg,
    rgba(168, 85, 247, 0.35) 0%,
    rgba(168, 85, 247, 0.15) 35%,
    transparent 65%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Kein versetzter Delay mehr noetig */
.cta-card:nth-child(2)::after {
  background: linear-gradient(
    145deg,
    rgba(168, 85, 247, 0.35) 0%,
    rgba(168, 85, 247, 0.15) 35%,
    transparent 65%
  );
  animation: none;
}

.cta-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple-bright);
  margin-bottom: 0.6rem;
}

.cta-card h2 {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  margin-bottom: 0.7rem;
  color: var(--white);
  line-height: 1.4;
}

.cta-card p {
  color: var(--grey);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* ====================================================================
   BUTTONS
   ==================================================================== */

.cta-button {
  display: inline-block;
  background: var(--purple-bright);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.95rem 2.4rem;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.04em;
  box-shadow: 0 0 25px var(--purple-glow), 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #b366e0;
  box-shadow: 0 0 40px var(--purple-glow-strong), 0 6px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
  color: var(--white);
  text-decoration: none;
}

.cta-button--small {
  font-size: 0.88rem;
  padding: 0.75rem 1.8rem;
}

/* ====================================================================
   HOME / BLOG ARCHIV
   ==================================================================== */

.home-intro {
  text-align: center;
  padding: 3rem 1.5rem 2rem;
  max-width: 720px;
  margin: 0 auto;
}

.home-intro h1 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.home-intro p {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.8;
}

.posts-grid {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.06);
  transition: box-shadow 0.4s ease;
  text-decoration: none;
  display: block;
}

.post-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--purple-glow), transparent 60%);
  z-index: -1;
  opacity: 0.3;
}

.post-card:hover {
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.12);
  text-decoration: none;
}

.post-card-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple-bright);
  margin-bottom: 0.6rem;
}

.post-card h2 {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 0.8rem;
}

.post-card-excerpt {
  color: var(--grey);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* ====================================================================
   FOOTER
   ==================================================================== */

.site-footer {
  text-align: center;
  padding: 2rem 1rem 2.5rem;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.site-footer__copy {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.site-footer__copy a {
  color: var(--purple-bright);
  text-decoration: none;
}

.site-footer__copy a:hover {
  text-decoration: underline;
}

/* ====================================================================
   FOOTER LEGAL NAVIGATION
   ==================================================================== */

.legal-nav {
  margin-bottom: 1rem;
}

.legal-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem 1.4rem;
}

/* WordPress wp_nav_menu erzeugt <ul class="menu"> */
.legal-nav ul.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem 1.4rem;
}

.legal-nav__item,
.legal-nav ul.menu li {
  display: flex;
  align-items: center;
}

.legal-nav__link,
.legal-nav ul.menu li a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}

.legal-nav__link:hover,
.legal-nav ul.menu li a:hover {
  color: var(--purple-bright);
}

.legal-nav__link--active,
.legal-nav ul.menu li.current-menu-item a,
.legal-nav ul.menu li.current_page_item a {
  color: var(--purple-bright);
}

/* ====================================================================
   LEGAL PAGES (page.php)
   ==================================================================== */

.legal-page-header {
  text-align: center;
  padding: 3rem 1.5rem 2.5rem;
  max-width: 720px;
  margin: 0 auto;
}

.legal-page-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple-bright);
  margin-bottom: 1rem;
}

.legal-page-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  color: var(--grey);
  font-size: 0.96rem;
  line-height: 1.85;
}

.legal-content h2 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--card-border);
}

.legal-content h3 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 1.8rem;
  margin-bottom: 0.5rem;
}

.legal-content h4 {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--grey);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
}

.legal-content p {
  margin-bottom: 1rem;
  color: var(--grey);
}

.legal-content strong {
  color: var(--white);
  font-weight: 500;
}

.legal-content ul,
.legal-content ol {
  margin: 0.8rem 0 1.2rem 1.4rem;
  color: var(--grey);
}

.legal-content ul {
  list-style: none;
  margin-left: 0;
}

.legal-content ul li {
  margin-bottom: 0.4rem;
  line-height: 1.75;
}

.legal-content ul li::before {
  content: '\2014\0020';
  color: var(--purple-bright);
  font-weight: 500;
}

.legal-content ol li {
  margin-bottom: 0.4rem;
  line-height: 1.75;
}

.legal-content a {
  color: var(--purple-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a:hover {
  color: #c084fc;
}

.legal-content hr {
  border: none;
  border-top: 1px solid var(--card-border);
  margin: 2rem 0;
}

.legal-back-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-back:hover {
  color: var(--purple-bright);
  text-decoration: none;
}

/* ====================================================================
   RESPONSIVE
   ==================================================================== */

@media (max-width: 640px) {
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero              { padding: 2rem 1.2rem 1.5rem; }
  .quote-card        { padding: 1.6rem 1.3rem; }
  .cta-card          { padding: 2rem 1.3rem; }

  .site-logo-img     { width: 56px; height: 56px; }
  .custom-logo-link img { width: 56px; height: 56px; }

  .legal-page-header { padding: 2rem 1.2rem 2rem; }
  .legal-content     { padding: 0 1.2rem 2rem; }
  .legal-back-wrap   { padding: 0 1.2rem 2rem; }

  .legal-nav__list,
  .legal-nav ul.menu { gap: 0.4rem 1rem; }
}

/* ====================================================================
   SHOP SECTION (home.php)
   ==================================================================== */

.shop-section {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 1.5rem 1rem;
  text-align: center;
}

.shop-intro {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--grey);
  margin-bottom: 2rem;
}

/* Eine Karte pro Zeile, volle Container-Breite */
.shop-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* Shop-Karte: identische Optik wie .cta-card */
.shop-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2.2rem 1.6rem;
  text-align: center;
  position: relative;
  box-shadow:
    0 0 40px rgba(168, 85, 247, 0.09),
    inset 0 0 40px rgba(168, 85, 247, 0.04);
}

/* Subtiler Hintergrundschimmer (wie .cta-card::before) */
.shop-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 17px;
  background: linear-gradient(
    160deg,
    rgba(168, 85, 247, 0.16) 0%,
    rgba(168, 85, 247, 0.07) 45%,
    transparent 70%
  );
  z-index: -1;
  opacity: 1;
}

/* Statischer lila Schimmer-Rahmen (wie .cta-card::after) */
.shop-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  padding: 1px;
  border-radius: 17px;
  background: linear-gradient(
    145deg,
    rgba(168, 85, 247, 0.35) 0%,
    rgba(168, 85, 247, 0.15) 35%,
    transparent 65%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.shop-card-badge {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple-bright);
  margin-bottom: 0.6rem;
}

.shop-card-title {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 0.7rem;
}

.shop-card-description {
  color: var(--grey);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Trennlinie zwischen Shop und Read */
.shop-read-divider {
  width: 40px;
  height: 2px;
  background: var(--purple-bright);
  margin: 2rem auto;
  border-radius: 2px;
  opacity: 0.3;
}

/* "Read"-Label über dem Blog-Archiv */
.read-section-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 1.2rem;
}

/* ── Responsive Shop-Grid ── */

@media (max-width: 480px) {
  .shop-grid {
    gap: 1rem;
  }

  .shop-card {
    padding: 2rem 1.3rem;
  }
}
