/* =========================================================
   TWOJA WIBRACJA — style.css (uporządkowane)
   Struktura:
   0) Zmienne / baza
   1) Reset / typografia / layout
   2) Header + nawigacja
   3) Sekcje / fullscreen (screen)
   4) Komponenty (buttons, cards, grids, FAQ, footer)
   5) THEME: HOME
   6) THEME: EMOCJE (jasny)
   7) THEME: BOGINI (piasek/świątynia)
   ========================================================= */


/* =========================================================
   0) ZMIENNE (DOMYŚLNIE: ciemny motyw dla HOME)
   ========================================================= */
:root {
  --bg: #0b0c10;
  --panel: rgba(18, 20, 27, 0.80);

  --text: #f5f7ff;
  --muted: rgba(245, 247, 255, 0.75);
  --line: rgba(245, 247, 255, 0.12);

  --accent: #7c5cff;

  --radius: 18px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);

  --header-h: 64px;

  /* fullscreen padding */
  --screen-pad-top: clamp(26px, 6vh, 70px);
  --screen-pad-bot: clamp(34px, 10vh, 110px);
}


/* =========================================================
   1) RESET / PODSTAWY / TYPOGRAFIA
   ========================================================= */
* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.muted { color: var(--muted); }

/* „oddech” na dole przy sticky headerze */
main { padding-bottom: calc(20svh - var(--header-h)); }

/* Nagłówki „mistyczne” */
h1, h2, h3{
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.4px;
}

h1{
  letter-spacing: 0.6px;
  font-size: clamp(28px, 4vw, 46px);
  margin: 0 0 12px;
}

.section h2{
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 0.5px;
}


/* =========================================================
   2) HEADER / NAV (wspólne dla wszystkich stron)
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;  
  width: 100%;
  z-index: 9999;

  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  background: rgba(11, 12, 16, 0.72);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  gap: 16px;
}

.logo img {
  height: 36px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.nav a:hover { color: #f3d38a; }

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
}

.nav.mobile {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 12px 0 16px;
}

.nav.mobile a {
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.nav.mobile.open { display: flex; }


/* =========================================================
   3) SEKCJE / FULLSCREEN (screen)
   - „screen” = 1 ekran (minus header)
   ========================================================= */
.section { padding: 1px 0 70px; }

/* fullscreen section */
.screen{
  min-height: calc(100svh - var(--header-h));
  padding-top: var(--screen-pad-top);
  padding-bottom: var(--screen-pad-bot);

  display: flex;
  align-items: center;

  padding-block: 80px;
}

/* Anchor pod sticky header */
#portale{ scroll-margin-top: calc(var(--header-h) + 24px); }


/* =========================================================
   4) KOMPONENTY WSPÓLNE
   ========================================================= */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 12px 16px;

  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  color: var(--text);

  cursor: pointer;
  transition: transform 0.06s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(245,247,255,0.2);
}

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

.btn.primary {
  background: color-mix(in srgb, var(--accent) 22%, transparent);
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
}
.btn.primary:hover {
  background: color-mix(in srgb, var(--accent) 28%, transparent);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 10px 0 10px;
}

/* Two-column (jeśli wróci) */
.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

/* FAQ (home) */
.faq details {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(18, 20, 27, 0.65);
  margin: 10px 0;
}

.faq summary { cursor: pointer; color: var(--text); font-weight: 650; }
.faq p { margin: 10px 0 0; color: var(--muted); }

.faq h2 {
  text-align: center;
}

/* ALT sekcje na HOME: panel w środku */
.section.alt{
  background: transparent;
  border: none;
  padding: 0;
}

.section.alt .container{
  background: rgba(12, 14, 22, 0.72);
  border: 1px solid var(--line);
  border-radius: 22px;
  backdrop-filter: blur(6px);
  padding: clamp(18px, 3.5vw, 40px);
}

/* „Co kryje się…” — rytm tekstu */
#co-kryje-sie { text-align: center; }
#co-kryje-sie h2{ margin: 0 0 16px; }
#co-kryje-sie .muted {
  max-width: 720px;
  margin: 0 auto 14px;
  text-align: left;
}
#co-kryje-sie .muted:last-child{ margin-bottom: 0; }

/* Footer (wspólny szkielet) */
.site-footer{
  padding: 30px 0 30px;
  border-top: 1px solid var(--line);
  background: rgba(12, 14, 22, 0.75);
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.footer-logo img{
  height: 46px;
  width: auto;
  display: block;
}

.footer-tagline{
  margin: 12px 0 10px;
  max-width: 40ch;
  line-height: 1.5;
  font-size: 14px;
  opacity: 0.8;
}

.footer-title{
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.85;
}

.footer-col{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a{
  font-size: 12px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-col a:hover{ color: #b59241; }

@media (max-width: 860px){
  .footer-grid{ grid-template-columns: 1fr; gap: 22px; }
}


/* =========================================================
   PODSTRONY: KOLEKCJE (EMOCJE + BOGINI) — WSPÓLNY SZKIELET
   ========================================================= */

.title-wrap{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title-display{
  margin: 10px 0 8px;
  font-size: clamp(52px, 7vw, 96px);
  letter-spacing: 1.2px;
  line-height: 1.02;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;

  background: linear-gradient(180deg, #c6a85b 100%, #525457 0%, #b9923f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

/* Intro */
.intro{ padding: 34px 0 18px; }

.intro-card{
  width: min(920px, 92%);
  margin: 0 auto;
  padding: 22px 26px;
  border-radius: 22px;
  backdrop-filter: blur(6px);
  position: relative;
}

.intro-lead{
  margin: 0;
  font-size: 17px;
  line-height: 1.9;
  text-align: center;
}

@media (max-width: 700px){
  .intro-card{ padding: 18px 18px; }
  .intro-lead{ font-size: 15px; }
}

/* Grid kart produktów */
.grid.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

@media (max-width: 860px){
  .grid.cards { grid-template-columns: 1fr; }
}

/* Card (wspólna baza, kolory per theme) */
.card{
  border-radius: 22px;
  padding: 0;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover{
  transform: translateY(-4px);
}

/* Produkt: cover + body */
.product-card{ padding: 0; overflow: hidden; }

.product-cover{
  aspect-ratio: 4 / 1;
  width: 100%;
  overflow: hidden;
}

.product-cover img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.product-card:hover .product-cover img{ transform: scale(1.12); }

.product-body{
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 170px;
}

.product-title{
  margin: 0;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.2px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.product-short{
  margin: 0;
  line-height: 1.55;
  font-size: 15px;
  max-width: 44ch;
}

.price-row{
  margin-top: 14px;
  justify-content: center;
}

.product-btn{
  padding: 8px 14px;
  border-radius: 999px;

  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: none;

  transition: all .2s ease;
}


/* =========================================================
   5) THEME: HOME (strona główna)
   ========================================================= */

.theme-home { position: relative; }

/* Tło gwiazd */
.theme-home::after{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: url("../assets/home_page/background/stars.png") center/cover no-repeat;
  opacity: 0.8;
  filter: blur(0.2px) contrast(110%);
}

/* WELCOME */
.welcome{
  min-height: calc(100svh - var(--header-h));
  display: grid;
  place-items: center;
  padding: 0;
}

.welcome-inner{ text-align: center; }

.welcome-kicker{
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 5vw, 64px);
  letter-spacing: 1px;
  color: rgba(245,247,255,0.85);
  text-shadow: 0 10px 30px rgba(0,0,0,.45);

  opacity: 0;
  transform: translateY(10px);
  animation: welcomeFadeUp 1.6s ease-out forwards;
  animation-delay: .25s;
}

@keyframes welcomeFadeUp{
  to { opacity: 1; transform: translateY(0); }
}

/* Portale: układ nagłówka + drzwi */
.portals{
  display: flex;
  align-items: center;
}

.portals-inner{
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 4vh, 40px);
  width: 100%;
}

.portals-heading{
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.portals-title{
  margin: 0;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.1;

  color: rgba(245,247,255,0.92);
  text-shadow: 0 18px 50px rgba(0,0,0,.6);
}

/* Drzwi (grid) */
.doors-grid{
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  gap: 100px;
  margin-top: 30px;
  align-items: end;
}

/* Pojedyncze drzwi */
.door{
  display:grid;
  justify-items:center;
  gap: 12px;
  padding: 10px 6px 6px;
  border-radius: 22px;
  background: transparent;
  border: 1px solid transparent;

  position: relative;
  isolation: isolate;

  transition: transform .18s ease, filter .18s ease;
}

.door img{
  width: 100%;
  max-width: 320px;
  height: clamp(280px, 45vh, 400px);
  object-fit: contain;

  filter: drop-shadow(0 22px 28px rgba(0,0,0,.55));
  transform: translateY(0);
  transition: transform .18s ease, filter .18s ease;
}

.door:hover{
  transform: translateY(-4px);
  filter: brightness(1.08);
}

.door:hover img{
  transform: translateY(-8px) scale(1.02);
}

/* Glow (puls + hover) */
.door::before{
  content:"";
  position:absolute;
  inset: 40px 20px 70px 20px;
  z-index: -1;

  border-radius: 36px;
  filter: blur(26px);
  opacity: 0.75;

  animation: glowPulse 6s ease-in-out infinite;
}

.door:nth-child(1)::before{
  background: radial-gradient(circle at 50% 35%,
    rgba(255, 190, 210, 0.55),
    rgba(255, 190, 210, 0.18),
    transparent 68%);
}

.door:nth-child(2)::before{
  background: radial-gradient(circle at 50% 35%,
    rgba(212, 176, 106, 0.55),
    rgba(212, 176, 106, 0.18),
    transparent 68%);
}

.door:nth-child(3)::before{
  background: radial-gradient(circle at 50% 35%,
    rgba(110, 231, 255, 0.55),
    rgba(110, 231, 255, 0.18),
    transparent 68%);
}

@keyframes glowPulse{
  0%,100%{ opacity: .55; transform: scale(1); }
  50%{ opacity: .85; transform: scale(1.04); }
}

.door::after{
  content:"";
  position:absolute;
  inset: 26px -10px 54px -10px;
  border-radius: 40px;

  z-index: -1;
  opacity: 0;
  filter: blur(60px);
  transform: scale(1);
  transition: opacity .22s ease, transform .22s ease, filter .22s ease;
}

.door:hover::after{
  opacity: 1;
  transform: scale(1.2);
}

.door:nth-child(1):hover::after{
  background: radial-gradient(circle at 50% 35%,
    rgba(255, 210, 225, 0.55),
    rgba(255, 210, 225, 0.18),
    transparent 70%);
}

.door:nth-child(2):hover::after{
  background: radial-gradient(circle at 50% 35%,
    rgba(232, 198, 128, 0.55),
    rgba(232, 198, 128, 0.18),
    transparent 70%);
}

.door:nth-child(3):hover::after{
  background: radial-gradient(circle at 50% 35%,
    rgba(220, 250, 255, 0.70),
    rgba(110, 231, 255, 0.22),
    transparent 70%);
}

/* Podpis */
.door-label{ text-align:center; position: relative; }

.door-label h3{
  margin: 0;
  font-size: 21px;
  letter-spacing: .6px;
  font-weight: 500;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.door-label h3::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  width: 40px;
  height:1px;
  background: linear-gradient(to right, transparent, #d4b06a, transparent);
  transform: translateX(-50%);
  transition: width .3s ease;
}

.door:hover .door-label h3::after{ width: 90px; }


/* =========================================================
   6) THEME: EMOCJE (jasny)
   - tylko różnice względem wspólnej bazy komponentów
   ========================================================= */
.theme-emotions-light{
  --text: #111319;
  --muted: rgba(17, 19, 25, 0.70);
  --line: rgba(17, 19, 25, 0.12);
  --panel: rgba(255,255,255,0.75);
  --accent: #f1b7c9;

  background: #f7f4f3;
  position: relative;
}

/* Jasny header/footer */
.theme-emotions-light .site-header{
  background: rgba(247, 244, 243, 0.72);
  border-bottom: 1px solid var(--line);
}

.theme-emotions-light .site-footer{
  background: #e7e1e3;
  border-top: 1px solid rgba(17,19,25,0.08);
}

.theme-emotions-light .nav a{
  font-weight: 500;
  color: rgba(21, 21, 21, 0.674);
}
.theme-emotions-light .nav a:hover { color: #c6a85b; }
.theme-emotions-light .menu-btn{ color: var(--text); }

/* Tytuł kolekcji (wspólne) */
.theme-emotions-light .collection-title{
  position: relative;
  padding: 60px 0 40px;
  overflow: hidden;
  text-align: center;
}

.theme-emotions-light .collection-title::before{
  content:"";
  position:absolute;
  inset: -25% -10%;
  pointer-events:none;
  z-index: 0;
  opacity: 1;
}

/* „płyta” pod tytułem – wspólne (może być nadpisane w theme) */
.theme-emotions-light .collection-title::after{
  content:"";
  position:absolute;
  inset: 0;
  z-index: 0;
  pointer-events:none;

  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(2px);
}

.theme-emotions-light .collection-title .container{
  position: relative;
  z-index: 1;
}

/* Efekt tła w tytule kolekcji (EMOCJE) */
.theme-emotions-light .collection-title::before{
  background:
    radial-gradient(900px 520px at 18% 30%, rgba(241, 183, 201, 0.40), transparent 60%),
    radial-gradient(900px 520px at 88% 25%, rgba(181, 225, 255, 0.34), transparent 62%),
    radial-gradient(700px 420px at 55% 70%, rgba(255,255,255,0.22), transparent 65%);
  filter: blur(16px);
}

/* .theme-emotions-light .title-img img{
  max-width: min(1300px, 100vw);
  height: auto;
  display: block;
  margin-bottom: 1px;
  transform: translateY(5px); 
} */

.theme-emotions-light .title-img img{
  width: min(600px, 95vw);  /* ← GŁÓWNA GAŁKA ROZMIARU */
  height: auto;
  display: block;
  margin: 0 auto;
  transform: translateY(5px);  /* GAŁKA tytułu */
}

.theme-emotions-light .intro{
  padding: 1px 0 0;
  transform: translateY(40px);  /* GAŁKA panelu */
}

/* Intro card (EMOCJE) */
.theme-emotions-light .intro-card{
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(17,19,25,0.08);
  box-shadow: 0 14px 36px rgba(0,0,0,0.06);
}
.theme-emotions-light .intro-lead{ color: rgba(17,19,25,0.78); }


.theme-emotions-light #products.section{
  padding-top: 30px; /* opuszcza całą sekcję niżej (gałka) */
}

/* Card + teksty (EMOCJE) */
.theme-emotions-light .card{
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(17, 19, 25, 0.08);
  backdrop-filter: blur(6px);
}
.theme-emotions-light .card:hover{ box-shadow: 0 20px 40px rgba(0,0,0,0.08); }

.theme-emotions-light .product-title{ color: rgba(17, 19, 25, 0.92); }
.theme-emotions-light .product-short{ color: rgba(17,19,25,0.70); }

.theme-emotions-light .product-btn{
  border: 1px solid rgba(17,19,25,0.14);
  background: transparent;
  color: rgba(17,19,25,0.85);
}
.theme-emotions-light .product-btn:hover{
  background: rgba(17,19,25,0.05);
  border-color: rgba(17,19,25,0.25);
}


/* =========================================================
   7) THEME: BOGINI (piasek/świątynia)
   - tylko różnice względem wspólnej bazy komponentów
   ========================================================= */
.theme-goddess{
  --bg: #f3ede3;
  --text: rgba(28, 22, 16, 0.92);
  --muted: rgba(28, 22, 16, 0.72);
  --line: rgba(28, 22, 16, 0.12);

  --gold: #b58a3b;
  --gold-soft: #d9bd82;
  --gold-line: rgba(181,138,59,0.35);

  background: var(--bg);
}

.theme-goddess::after{
  content: none;
}

.theme-goddess .goddess-hero{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.theme-goddess .goddess-hero::before{
  content:"";
  position: absolute;
  inset: 0;
  z-index: -1;            /* teraz już bezpiecznie */
  background: url("../assets/bogini/background/tlo_bogini_2.png") center/cover no-repeat;
  opacity: 0.7;
  filter: blur(0.2px) contrast(110%);
}

.theme-goddess .goddess-hero > *{
  position: relative;
  z-index: 1;
}

.theme-goddess #products.section{
  background: var(--bg);
  position: relative;
  z-index: 1;
}


/* Header */
.theme-goddess .site-header{
  background: rgb(235, 231, 231);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}

.theme-goddess .nav a{
  color: rgba(21, 21, 21, 0.674);
  font-weight: 500;
}
.theme-goddess .nav a:hover{ color: rgba(196, 142, 88, 0.92); }


/* ===== BOGINI: dopasowanie układu do koła w tle ===== */

/* Mniej „pustego” paddingu na ekranie — inaczej wszystko spada w dół */
.theme-goddess .screen{
  padding-block: clamp(28px, 5vh, 56px);
}

/* Wrapper wewnątrz .screen (to Twoje <div style="width:100%">) */
.theme-goddess .screen > div{
  display: flex;
  flex-direction: column;
  align-items: center;      /* poziome centrowanie w osi koła */
  justify-content: center;  /* pionowe centrowanie jako grupa */
  width: 100%;

  /* TO jest główna gałka do dopasowania do koła */
  transform: translateY(clamp(-1px, -6vh, -30px));
}

.theme-goddess .title-img img{
  max-width: min(1300px, 100vw);
  height: auto;
  display: block;
  margin-bottom: 1px;
  transform: translateY(-20px);  /* GAŁKA tytułu */
}

.theme-goddess .intro{
  padding: 1px 0 0;
  transform: translateY(-100px);  /* GAŁKA panelu */
}

/* Title section (Bogini) */
.theme-goddess .collection-title{
  padding: 0;
}

.theme-goddess .title-display{
  margin: 0 0 14px;
  font-size: clamp(52px, 7vw, 96px);
  letter-spacing: 1.4px;
  line-height: 1.02;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;

  background: linear-gradient(180deg, #c6a85b 100%, #525457 0%, #b9923f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;

  position: relative;
  transition: text-shadow .4s ease, transform .4s ease;
}

/* ===== BOGINI — hover glow dla tytułu ===== */

.theme-goddess .title-display::after{
  content: "";
  position: absolute;
  inset: -20px;
  z-index: -1;

  background: radial-gradient(
      circle at 50% 50%,
      rgba(212, 177, 106, 0.167),
      rgba(212,176,106,0.25),
      transparent 30%
  );

  filter: blur(40px);
  opacity: 0;
  transition: opacity .4s ease, transform .4s ease;
  transform: scale(0.9);
}

/* Hover efekt */
.theme-goddess .title-display:hover{
  text-shadow:
    0 0 12px rgba(212, 177, 106, 0.142),
    0 0 40px rgba(212,176,106,0.4);
  transform: translateY(-2px);
}

.theme-goddess .title-display:hover::after{
  opacity: 1;
  transform: scale(1.1);
}

.theme-goddess .intro-card{
  width: 870px;
  padding: 32px 48px;

  background: rgb(235, 231, 231);
  border: 1px solid rgba(181,138,59,0.20);
  box-shadow: 0 14px 40px rgba(120, 86, 40, 0.14);
}

/* Tekst — większy rytm i naturalne łamanie */
.theme-goddess .intro-lead{
  max-width: 820px;
  margin: 0 auto;

  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.2;

  color: rgba(28,22,16,0.82);
}

.theme-goddess #products.section{
  padding-top: 30px; /* opuszcza całą sekcję niżej (gałka) */
}

.theme-goddess #products.section h2{
  text-align: center;
  margin: 0 0 35px;         /* odstęp od kart */
  padding-top: 20px;        /* dodatkowy „spokój” w pionie */
  color: #947e46;
  text-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

.theme-goddess #products.section h3{
  font-size: 22px;
}

.theme-goddess .grid.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 27px;
  align-items: stretch;
}

/* Cards (Bogini) */
.theme-goddess .card{
  background: rgb(235, 231, 231);
  border: 1px solid rgba(28,22,16,0.10);
  box-shadow: 0 18px 44px rgba(120, 86, 40, 0.10);
}
.theme-goddess .card:hover{
  border-color: rgba(181,138,59,0.28);
  box-shadow: 0 24px 70px rgba(120, 86, 40, 0.14);
}

/* ===== Badge: niedostępne ===== */
.product-badge{
  position: absolute;
  top: 12px;
  left: 12px;

  padding: 6px 12px;
  border-radius: 999px;

  font-size: 11px;
  letter-spacing: .6px;
  text-transform: uppercase;
  font-weight: 600;

  color: #fff;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);

  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}


/* Cover overlay (Bogini) */
.theme-goddess .product-cover{
  position: relative;
  filter: saturate(92%) contrast(102%);
}
.theme-goddess .product-cover::after{
  content:"";
  position:absolute;
  inset: 0;
  pointer-events:none;
  background:
    radial-gradient(circle at 50% 10%, rgba(255,255,255,0.35), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,0.00), rgba(60,45,25,0.18));
}

/* Teksty + button (Bogini) */
.theme-goddess .product-title{
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 450;
  letter-spacing: 0.3px;
  color: rgba(28,22,16,0.92);
}
.theme-goddess .product-short{ 
  color: rgba(28,22,16,0.70);
  font-size: 15px;
}

.theme-goddess .product-btn{
  border: 1px solid rgba(181,138,59,0.42);
  color: rgba(28,22,16,0.88);
  background: rgba(181,138,59,0.08);
}
.theme-goddess .product-btn:hover{
  background: rgba(181,138,59,0.14);
  border-color: rgba(139,99,37,0.55);
  box-shadow: 0 14px 28px rgba(181,138,59,0.16);
}

/* Footer (Bogini) */
.theme-goddess .site-footer{
  background: rgb(235, 231, 231);
  border-top: 1px solid rgba(28,22,16,0.10);
}


/* =========================================================
   8) RESPONSYWNOŚĆ (global)
   ========================================================= */
@media (max-width: 860px) {
  .nav { display: none; }
  .menu-btn { display: inline-flex; }

  .doors-grid{ grid-template-columns: 1fr; }
  .door img{ height: 380px; }

  .two-col { grid-template-columns: 1fr; }

  .screen{
    padding-top: clamp(18px, 5vh, 44px);
    padding-bottom: clamp(24px, 7vh, 70px);
  }

  .nav a{
    font-size: 12px;
    letter-spacing: 1px;
  }
}


/* =========================================================
   8) CZAKRY
   ========================================================= */
.theme-chakras{
  --text: #111319;
  --muted: rgba(17, 19, 25, 0.70);
  --line: rgba(17, 19, 25, 0.12);
  --panel: rgba(255,255,255,0.75);
  --accent: #f1b7c9;

  background: #f7f4f3;   /* baza pod aurą */
  position: relative;
  isolation: isolate;     /* gwarancja warstw */
}

.theme-chakras::before{
  content:"";
  position: absolute;
  inset: 0;
  z-index: -1;            /* teraz już bezpiecznie */
  background: url("../assets/czakry/background/chakras-proch.png") center/cover no-repeat;
  opacity: 0.7;
  filter: blur(0.2px) contrast(110%);
}

.theme-chakras .screen{
  align-items: flex-start;
  padding-top: clamp(20px, 4vh, 60px);
  padding-bottom: 40px;
}

.theme-chakras .screen > div{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.theme-chakras .site-header{
  background: rgb(235, 231, 231);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}

.theme-chakras .nav a{
  color: rgba(21, 21, 21, 0.674);
  font-weight: 500;
}
.theme-chakras .nav a:hover{ color: rgba(196, 142, 88, 0.92); }


.theme-chakras .collection-title{
  padding: 20px 0 10px;
}

.theme-chakras .title-img img{
  max-width: min(900px, 90vw);
  height: auto;
  display: block;
  margin-bottom: 1px;
  transform: translateY(-20px);  /* GAŁKA tytułu */
}

.theme-chakras .intro{
  padding: 1px 0 0;
  transform: translateY(-120px);  /* GAŁKA panelu */
}

.theme-chakras .intro-card{
  width: 850px;
  padding: 25px 48px;

  background: rgb(235, 231, 231);
  border: 1px solid rgba(181,138,59,0.20);
  box-shadow: 0 14px 40px rgba(120, 86, 40, 0.14);

  margin-top: -1px;
}

/* Tekst — większy rytm i naturalne łamanie */
.theme-chakras .intro-lead{
  max-width: 820px;
  margin: 0 auto;

  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.2;

  color: rgba(28,22,16,0.82);
}

.theme-chakras #products.section{
  padding-top: 30px; /* opuszcza całą sekcję niżej (gałka) */
}

.theme-chakras #products.section h2{
  text-align: center;
  margin: 0 0 26px;         /* odstęp od kart */
  padding-top: 20px;        /* dodatkowy „spokój” w pionie */
  color: #6f613d;
  text-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

.theme-chakras #products.section h3{
  font-size: 22px;
}


.theme-chakras .grid.cards{
  display: grid;
  grid-template-columns: 1fr; /* 1 kolumna */
  gap: 50px;                  /* rytm pionowy */
  align-items: stretch;
  width: min(400px, 92%);
  margin-inline: auto;
}

.theme-chakras .card{
  background: rgb(235, 231, 231);
  border: 1px solid rgba(28,22,16,0.10);
  box-shadow: 0 18px 44px rgba(120, 86, 40, 0.10);
}
.theme-chakras .card:hover{
  border-color: rgba(181,138,59,0.28);
  box-shadow: 0 24px 70px rgba(120, 86, 40, 0.14);
}

/* Cover overlay (Bogini) */
.theme-chakras .product-cover{
  position: relative;
  filter: saturate(92%) contrast(102%);
}
.theme-chakras .product-cover::after{
  content:"";
  position:absolute;
  inset: 0;
  pointer-events:none;
  background:
    radial-gradient(circle at 50% 10%, rgba(255,255,255,0.35), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,0.00), rgba(60,45,25,0.18));
}

.theme-chakras .site-footer{
  background: rgb(235, 231, 231);
  border-top: 1px solid rgba(28,22,16,0.10);
}
