/* ========== ROOT & GLOBAL ========== */

:root {
  --st-black: #000000;
  --st-black-soft: #0c0c0c;

  --st-gold-dark: #8e6b0f;
  --st-gold-mid: #d4af37;
  --st-gold-light: #f5e28c;
  --st-gold-text: #d8b24a;

  --st-text-main: #f5f5f5;
  --st-text-muted: #cccccc;

  --st-radius-card: 24px;

  --st-shadow-gold-soft: 0 0 18px rgba(212, 175, 55, 0.45);
  --st-shadow-gold-strong: 0 0 28px rgba(245, 226, 140, 0.55);

  --st-transition-fast: 0.25s ease-out;
  --st-transition-med: 0.45s ease-out;
}

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

html {
  scroll-behavior: smooth;
}

body.st-body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--st-black);
  color: var(--st-text-main);
}

/* GLOBAL: fara subliniere pe link-uri nicaieri */
a,
a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none !important;
}

/* ====== FILM GRAIN OVERLAY (11) ====== */

.st-site-wrapper {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--st-black);
  overflow-x: hidden;
}

.st-film-grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.15;
  background-image: url("../img/grain-overlay.png");
  mix-blend-mode: soft-light;
  z-index: 2;
}

/* ====== INTRO LOADER (1) ====== */

.st-page-intro {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 1;
  transform: scale(1);
  /* fade-out mai lung, cinematic */
  transition:
    opacity 1.2s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.st-page-intro__inner {
  text-align: center;
}

.st-page-intro__logo {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--st-gold-text);
}

.st-body.st-loaded .st-page-intro {
  opacity: 0;
  transform: scale(1.03);
  pointer-events: none;
}

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

.st-main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
  backdrop-filter: blur(10px);
}

.st-main-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.st-logo-min {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: var(--st-gold-text);
}

.st-main-nav {
  display: flex;
  gap: 1.4rem;
  align-items: center;
}

.st-nav-link {
  font-size: 0.92rem;
  color: var(--st-text-main);
  position: relative;
  padding-bottom: 0.1rem;
  transition: color var(--st-transition-fast);
}

.st-nav-link:hover {
  color: var(--st-gold-text);
}

.st-nav-link--cta {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.7);
}

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

.st-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  overflow: hidden;
}

@supports (height: 100dvh) {
  .st-hero { min-height: 100dvh; }
}

.st-hero__video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform-origin: center;
  will-change: transform;
}

.st-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.st-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0, 0, 0, 0.2), transparent 55%), linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.95));
}

.st-hero__content {
  position: relative;
  z-index: 3;
  max-width: 960px;
  text-align: center;
  padding-top: 4rem;
}

.st-hero__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  margin: 0 0 0.75rem;
  letter-spacing: 0.12em;
  text-transform: capitalize;
}

/* ====== LIGHT SWEEP ON H1 (12) ====== */

.st-gold-sweep {
  background: linear-gradient(120deg, #ffffff, var(--st-gold-light), var(--st-gold-mid), #ffffff);
  background-size: 250%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: stGoldSweep 6s ease-in-out infinite;
}

@keyframes stGoldSweep {
  0% {
    background-position: 0% 50%;
  }
  40% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.st-hero__subtitle {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  color: var(--st-text-muted);
}

/* ====== BUTTONS & LIQUID GOLD (9) ====== */

.st-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.6rem;
  border-radius: 999px;
  border: none;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.92rem;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  color: #111;
}

.st-btn--primary {
  box-shadow: var(--st-shadow-gold-soft);
}

/* aur lichid animat */
.st-btn--liquid {
  background: linear-gradient(
    135deg,
    var(--st-gold-dark),
    var(--st-gold-mid),
    var(--st-gold-light),
    var(--st-gold-mid),
    var(--st-gold-dark)
  );
  background-size: 300%;
  animation: stLiquidGold 8s ease-in-out infinite;
}

@keyframes stLiquidGold {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.st-btn--liquid:hover {
  box-shadow: var(--st-shadow-gold-strong);
}

.st-hero__links {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  align-items: center;
  font-size: 0.95rem;
}

.st-hero__links a {
  color: var(--st-text-main);
  position: relative;
  padding-bottom: 0.1rem;
  transition: color var(--st-transition-fast);
}

.st-hero__links a:hover {
  color: var(--st-gold-text);
}

.st-hero__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.18rem;
  width: 0;
  height: 1px;
  background: linear-gradient(135deg, var(--st-gold-dark), var(--st-gold-light));
  transition: width var(--st-transition-med);
}

.st-hero__links a:hover::after {
  width: 100%;
}

/* ====== SECTION BASE ====== */

.st-main {
  background: linear-gradient(to bottom, var(--st-black), var(--st-black-soft));
}

.st-section {
  padding: 5rem 1.5rem;
  background-color: transparent;
}

.st-section:nth-of-type(even) {
  background-color: rgba(12, 12, 12, 0.92);
}

.st-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.st-section__inner--narrow {
  max-width: 780px;
}

.st-section__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 3.1vw, 2.6rem);
  text-align: center;
  margin: 0 0 0.5rem;
}

.st-section__title--gold {
  color: var(--st-gold-text);
}

.st-section__subtitle {
  text-align: center;
  margin: 0 auto 2.5rem;
  max-width: 680px;
  color: var(--st-text-muted);
  font-size: 1rem;
}

/* ====== REVEAL ANIMATIONS ====== */

.st-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.st-reveal.st-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====== CARDS BASE ====== */

.st-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.st-cards-grid--club {
  margin-top: 2rem;
}

.st-card {
  position: relative;
  border-radius: var(--st-radius-card);
  overflow: hidden;
  background: #111;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: transform var(--st-transition-med), box-shadow var(--st-transition-med), border-color var(--st-transition-med);
}

.st-card__image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.st-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 55%);
}

.st-card__content {
  position: absolute;
  inset: auto 1.6rem 1.6rem 1.6rem;
}

.st-card__title {
  margin: 0 0 0.4rem;
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
}

.st-card__title--gold {
  color: var(--st-gold-text);
}

.st-card__text {
  margin: 0;
  font-size: 0.96rem;
  color: var(--st-text-main);
}

/* club cards */
.st-card--club {
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.18), #050505);
  border-radius: 32px;
  padding: 2.2rem 2.1rem;
  overflow: visible;
}

.st-card__halo {
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(245, 226, 140, 0.18), transparent 68%);
  opacity: 0;
  transition: opacity var(--st-transition-med);
  pointer-events: none;
}

.st-card__content--club {
  position: relative;
  inset: 0;
}

.st-card--club .st-card__title {
  color: #fff;
  margin-bottom: 0.6rem;
}

.st-card--club .st-card__text {
  color: var(--st-text-muted);
}

.st-card--social .st-card__content {
  inset: auto 1.6rem 1.6rem 1.6rem;
}

.st-card:hover {
  box-shadow: var(--st-shadow-gold-soft);
  border-color: rgba(212, 175, 55, 0.7);
}

.st-card--club:hover .st-card__halo {
  opacity: 1;
}

/* ====== ABOUT & TIMELINE ====== */

.st-about-text p {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--st-text-main);
}

.st-about-signature {
  margin-top: 1.5rem;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--st-gold-text);
  text-align: center;
}

.st-timeline {
  margin-top: 2.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 1.5rem;
}

.st-timeline__item {
  position: relative;
  margin-bottom: 1.8rem;
  padding-left: 0.5rem;
}

.st-timeline__dot {
  position: absolute;
  left: -1.7rem;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--st-gold-light), var(--st-gold-mid));
  box-shadow: 0 0 12px rgba(245, 226, 140, 0.8);
}

.st-timeline__content h4 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.st-timeline__content p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--st-text-muted);
}

/* ====== PALETTE SECTION ====== */

.st-section--palette {
  text-align: center;
}

.st-palette-block {
  margin-bottom: 3.5rem;
}

.st-section__title--palette-second {
  margin-top: 0;
}

.st-swatches-group {
  margin-top: 1.3rem;
}

.st-swatches-row {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.9rem;
}

.st-swatch {
  --swatch-color: #ffffff;
  --swatch-gloss: 0;

  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.35) var(--swatch-gloss), transparent 55%), var(--swatch-color);
  box-shadow: 0 0 0 rgba(245, 226, 140, 0);
  cursor: default;
  outline: none;
  padding: 0;
  appearance: none;
  transition: box-shadow 0.4s ease-out, transform 0.4s ease-out, border-color 0.4s ease-out;
}

.st-swatch.is-active {
  box-shadow: 0 0 22px rgba(245, 226, 140, 0.8);
  border-color: rgba(245, 226, 140, 0.9);
  transform: scale(1.06);
}

.st-swatches-label {
  font-size: 0.95rem;
  color: var(--st-text-muted);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* ====== BOOKING & ACCOUNT ====== */

.st-booking-placeholder {
  border-radius: 20px;
  border: 1px dashed rgba(212, 175, 55, 0.6);
  padding: 2rem;
  text-align: center;
  color: var(--st-text-muted);
}

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

.st-footer {
  padding: 1.8rem 1.5rem 4.5rem;
  background: #050505;
}

.st-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--st-text-muted);
}

.st-footer__brand {
  font-family: "Playfair Display", serif;
  color: var(--st-gold-text);
}

/* ====== QUICKBAR MOBILE ====== */

.st-quickbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  bottom: env(safe-area-inset-bottom, 0);
  z-index: 60;
  display: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.85));
  backdrop-filter: blur(16px);
  padding: 0.4rem 0.6rem 0.6rem;
  box-shadow: 0 -12px 20px rgba(0, 0, 0, 0.9);
}

.st-quickbar__item {
  flex: 1;
  margin: 0 0.3rem;
  padding: 0.65rem 0.4rem;
  border-radius: 999px;
  font-size: 0.85rem;
  text-align: center;
  color: #f7f7f7;
  border: 1px solid rgba(212, 175, 55, 0.45);
}

.st-quickbar__item--primary {
  background: linear-gradient(
    135deg,
    var(--st-gold-dark),
    var(--st-gold-mid),
    var(--st-gold-light),
    var(--st-gold-mid),
    var(--st-gold-dark)
  );
  background-size: 300%;
  animation: stLiquidGold 8s ease-in-out infinite;
  color: #111;
}

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

@media (max-width: 960px) {
  .st-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .st-main-header__inner {
    padding-inline: 1rem;
  }

  .st-main-nav {
    gap: 0.9rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .st-main-header__inner {
    padding-inline: 1rem;
  }

  .st-main-nav {
    display: none;
  }

  .st-section {
    padding: 3.5rem 1.2rem;
  }

  .st-cards-grid {
    grid-template-columns: 1fr;
  }

  .st-card__image img {
    height: 230px;
  }

  .st-timeline {
    border-left: none;
    padding-left: 0;
  }

  .st-timeline__item {
    padding-left: 0;
    padding-top: 1.1rem;
    margin-left: 0;
  }

  .st-timeline__dot {
    position: static;
    margin: 0 auto 0.5rem;
    display: block;
  }

  .st-timeline__content {
    text-align: center;
  }

  .st-footer {
    padding-bottom: 3.5rem;
  }

  .st-quickbar {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 1600px) {
  .st-hero__title {
    font-size: 4.6rem;
  }
}

/* --- Programeaza-te: centrare si aliniere --- */
.st-section--booking .st-section__inner {
  text-align: center;
}

.st-section--booking .st-booking-placeholder {
  display: inline-block;
  margin-top: 3rem;
  padding: 3rem 2rem;
  border-radius: 40px;
}

.st-section--booking .st-booking-placeholder .st-btn {
  display: inline-block;
  margin: 0 auto 1.5rem;
}

/* text sub buton */
.st-programare-note {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* --- Contul meu: centrare text + buton --- */
.st-section--account .st-section__inner {
  text-align: center;
}

.st-section--account .st-section__title {
  margin-bottom: 1rem;
}

.st-section--account .st-section__subtitle {
  max-width: 720px;
  margin: 0 auto 2rem;
}

.st-section--account .st-btn {
  margin-top: 1rem;
}

/* === CONTUL MEU — centrare buton === */

.st-section--account .st-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;   /* centrează titlu, text și buton pe axa orizontală */
  text-align: center;
}

.st-section--account .st-section__subtitle {
  max-width: 900px;
  margin: 0 auto 2rem;
}

.st-account-cta {
  display: flex;
  justify-content: center;  /* împinge butonul fix în centru */
  width: 100%;
  margin-top: 1.5rem;
}

.st-account-cta .st-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  min-width: clamp(260px, 40vw, 520px);
}
/* ====== PALETTE SECTION ====== */

.st-section--palette {
  text-align: center;
}

.st-palette-block {
  margin-bottom: 3.5rem;
}

.st-section__title--palette-second {
  margin-top: 0;
}

.st-swatches-group {
  margin-top: 1.3rem;
}

.st-swatches-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(44px, 1fr));
  justify-items: center;
  column-gap: 1.1rem;
  row-gap: 0.9rem;
  margin-bottom: 0.9rem;
}

.st-swatch {
  --swatch-color: #ffffff;
  --swatch-gloss: 0;

  width: 100%;
  max-width: 52px;
  min-width: 34px;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(255, 255, 255, 0.35) var(--swatch-gloss),
      transparent 55%
    ),
    var(--swatch-color);
  box-shadow: 0 0 0 rgba(245, 226, 140, 0);
  cursor: default;
  outline: none;
  padding: 0;
  appearance: none;
  transition:
    box-shadow 0.4s ease-out,
    transform 0.4s ease-out,
    border-color 0.4s ease-out;
}

.st-swatch.is-active {
  box-shadow: 0 0 22px rgba(245, 226, 140, 0.8);
  border-color: rgba(245, 226, 140, 0.9);
  transform: scale(1.06);
}

.st-swatches-label {
  font-size: 0.95rem;
  color: var(--st-text-muted);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}


/* ===== V2 additions ===== */

/* ==== V2 Intro overlay (campaign) ==== */
.st-page-intro__title{
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--st-gold-dark), var(--st-gold-mid), var(--st-gold-light));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
  margin: 0;
}
.st-page-intro__sub{
  margin-top: 0.9rem;
  font-size: 0.98rem;
  color: rgba(245,245,245,0.82);
  max-width: 42ch;
  margin-left:auto;
  margin-right:auto;
}
.st-page-intro__line{
  width: min(220px, 52vw);
  height: 1px;
  margin: 1rem auto 0;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.85), transparent);
  opacity: 0.85;
  animation: stIntroLine 2.2s ease-in-out infinite;
}
@keyframes stIntroLine { 0%,100%{opacity:.55; transform:scaleX(.78);} 50%{opacity:.95; transform:scaleX(1);} }

/* ==== V2 Cookies banner (fixed, consistent) ==== */
.st-cookie {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(92vw, 980px);
  z-index: 10050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.st-cookie.is-visible{ opacity:1; pointer-events:auto; }
.st-cookie__inner{
  display:flex; gap:14px; align-items:center; justify-content:space-between;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(10,10,10,0.92);
  border: 1px solid rgba(212,175,55,0.22);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
}
.st-cookie__text{ font-size:0.92rem; line-height:1.35; color: rgba(245,245,245,0.88); }
.st-cookie__actions{ display:flex; gap:10px; }
.st-cookie__btn{
  border: 1px solid rgba(212,175,55,0.55);
  background: linear-gradient(90deg, rgba(142,107,15,0.95), rgba(212,175,55,0.95), rgba(245,226,140,0.95));
  color:#0b0b0b;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  cursor:pointer;
}
.st-cookie__btn--ghost{ background: transparent; color: rgba(245,245,245,0.92); }
@media (max-width: 768px){
  .st-cookie__inner{ flex-direction:column; align-items:stretch; }
  .st-cookie__actions{ width:100%; }
  .st-cookie__btn{ width:100%; text-align:center; }
}

/* ==== V2 PALETTE (categories) ==== */
.st-palette-cats { display: grid; gap: 14px; margin-top: 1.5rem; }
.st-palette-cat { border: 1px solid rgba(212,175,55,0.18); border-radius: 20px; background: rgba(12,12,12,0.55); overflow: hidden; }
.st-palette-cat__btn{
  width:100%; background: transparent; border:0; color: var(--st-text-main);
  display:flex; justify-content:space-between; align-items:center;
  padding: 16px 18px; cursor:pointer;
  font-family:"Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  letter-spacing:0.12em; text-transform:uppercase; font-weight:700; font-size:0.92rem;
}
.st-palette-cat__btn:hover{ background: rgba(212,175,55,0.06); }
.st-palette-cat__chev{ width: 12px; height:12px; border-right:2px solid rgba(245,245,245,0.65); border-bottom:2px solid rgba(245,245,245,0.65); transform: rotate(45deg); transition: transform var(--st-transition-fast); }
.st-palette-cat.is-open .st-palette-cat__chev{ transform: rotate(-135deg); }

.st-palette-cat__panel{ display:none; padding: 0 18px 18px; }
.st-palette-cat.is-open .st-palette-cat__panel{ display:block; }

.st-palette-cat__label{ margin-top:10px; font-size:0.9rem; color: var(--st-text-muted); }
.st-swatches-row { gap: 12px; flex-wrap: wrap; }
.st-swatch{ width: 38px; height: 38px; border-radius: 999px; }
@media (max-width:768px){
  .st-palette-cat__btn{ padding: 14px 14px; }
  .st-palette-cat__panel{ padding: 0 14px 14px; }
  .st-swatch{ width: 34px; height: 34px; }
}

/* ==== V2 CRM styling (scoped) ==== */
.st-page--booking .stc5-booking,
.st-page--account .stc5-account{
  margin-top: 2.5rem;
}

/* soften plugin cards to match theme */
.st-page--booking .stc5-booking-card,
.st-page--account .stc5-account{
  background: rgba(12,12,12,0.65) !important;
  border: 1px solid rgba(212,175,55,0.18) !important;
  border-radius: 24px !important;
  box-shadow: 0 20px 55px rgba(0,0,0,0.55) !important;
  backdrop-filter: blur(10px);
}
.st-page--booking .stc5-booking-title,
.st-page--account .stc5-account h1,
.st-page--account .stc5-account h2,
.st-page--account .stc5-account h3{
  font-family: "Playfair Display", serif !important;
}
.st-page--booking .stc5-submit-btn{
  border-radius: 999px !important;
  background: linear-gradient(90deg, rgba(142,107,15,0.95), rgba(212,175,55,0.95), rgba(245,226,140,0.95)) !important;
  color:#0b0b0b !important;
  font-weight: 800 !important;
}
.st-page--booking .stc5-slot-btn{
  border-radius: 999px !important;
  border: 1px solid rgba(212,175,55,0.35) !important;
}
.st-page--booking .stc5-slot-btn.is-selected{
  box-shadow: var(--st-shadow-gold-soft) !important;
}
.st-page--account .stc5-table{
  width:100%;
}
.st-page--account .stc5-table th{
  color: rgba(245,245,245,0.8) !important;
}


/* ==== V2 FIX: footer link colors ==== */
.st-footer a,
.st-footer a:visited{
  color: rgba(245,245,245,0.85);
  text-decoration: none;
}
.st-footer a:hover{
  color: var(--st-gold-mid);
}


/* ==== V2.1: Club preview (homepage) ==== */
.st-club-preview{ margin:18px 0 8px; padding:16px 16px 14px; border:1px solid rgba(224,188,26,0.18); border-radius:18px; background: rgba(12,12,12,0.55); backdrop-filter: blur(10px); }
.st-club-preview__labels{ display:flex; justify-content:space-between; font-size:.82rem; letter-spacing:.12em; text-transform:uppercase; color: rgba(245,245,245,0.72); }
.st-club-preview__bar{ position:relative; height:10px; margin:12px 0 10px; border-radius:999px; background: rgba(245,245,245,0.10); overflow:hidden; }
.st-club-preview__fill{ position:absolute; left:0; top:0; bottom:0; width:0; background: linear-gradient(90deg, rgba(156,122,20,0.9), rgba(224,188,26,0.95), rgba(245,229,138,0.95)); }
.st-club-preview__dot{ position:absolute; top:50%; width:14px; height:14px; transform: translate(-50%,-50%); border-radius:50%; background: rgba(245,229,138,0.95); box-shadow: 0 0 0 4px rgba(224,188,26,0.18), 0 10px 28px rgba(0,0,0,0.55); animation: stDotPulse 2.6s ease-in-out infinite; }
@keyframes stDotPulse{ 0%,100%{ transform:translate(-50%,-50%) scale(1); } 50%{ transform:translate(-50%,-50%) scale(1.08); } }
.st-club-preview__tick{ position:absolute; top:50%; width:2px; height:14px; transform:translate(-50%,-50%); background: rgba(245,245,245,0.18); }
.st-club-preview__tick--left{ left:0%; }
.st-club-preview__tick--mid{ left:50%; }
.st-club-preview__tick--right{ left:100%; }
.st-club-preview__text{ margin-top:6px; color: rgba(245,245,245,0.78); font-size:.95rem; line-height:1.45; }

/* ==== V2.1: Account dashboard header ==== */
.st-dashboard{ margin-bottom:18px; padding:18px; border-radius:22px; background: rgba(12,12,12,0.65); border: 1px solid rgba(224,188,26,0.18); box-shadow: 0 20px 60px rgba(0,0,0,0.55); }
.st-dashboard__top{ display:flex; gap:14px; align-items:center; justify-content:space-between; flex-wrap:wrap; }
.st-badge-tier{ display:inline-flex; align-items:center; gap:10px; padding:10px 14px; border-radius:999px; border:1px solid rgba(224,188,26,0.22); background: rgba(0,0,0,0.35); }
.st-badge-tier__dot{ width:10px; height:10px; border-radius:50%; background: rgba(245,229,138,0.95); }
.st-badge-tier--classic .st-badge-tier__dot{ background: rgba(224,188,26,0.55); }
.st-badge-tier--gold .st-badge-tier__dot{ background: rgba(245,229,138,0.95); }
.st-badge-tier--black{ border-color: rgba(245,229,138,0.22); }
.st-badge-tier--black .st-badge-tier__dot{ background: rgba(245,229,138,0.95); box-shadow: 0 0 0 4px rgba(224,188,26,0.18); }
.st-dashboard__hello{ font-family:'Playfair Display',serif; font-size:1.35rem; margin:0; }
.st-dashboard__sub{ margin:4px 0 0; color: rgba(245,245,245,0.72); }
.st-dashboard__grid{ display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:12px; margin-top:14px; }
.st-metric{ padding:14px; border-radius:18px; background: rgba(0,0,0,0.28); border:1px solid rgba(245,245,245,0.10); }
.st-metric__label{ font-size:.8rem; letter-spacing:.12em; text-transform:uppercase; color: rgba(245,245,245,0.65); margin:0 0 8px; }
.st-metric__value{ font-family:'Playfair Display',serif; font-size:1.5rem; margin:0; }
.st-progress{ margin-top:12px; }
.st-progress__row{ display:flex; justify-content:space-between; align-items:center; gap:10px; color: rgba(245,245,245,0.72); font-size:.92rem; }
.st-progress__bar{ position:relative; height:10px; margin-top:10px; border-radius:999px; background: rgba(245,245,245,0.10); overflow:hidden; }
.st-progress__fill{ position:absolute; left:0; top:0; bottom:0; width:0; background: linear-gradient(90deg, rgba(156,122,20,0.9), rgba(224,188,26,0.95), rgba(245,229,138,0.95)); }

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

/* ==== V2.1: Booking pre-header + points box ==== */
.st-preheader{ margin-bottom:16px; padding:18px; border-radius:22px; background: rgba(12,12,12,0.55); border: 1px solid rgba(245,245,245,0.10); }
.st-preheader h1{ font-family:'Playfair Display',serif; margin:0 0 10px; font-size:1.7rem; }
.st-preheader p{ margin:0; color: rgba(245,245,245,0.78); line-height:1.55; }
.st-points-box{ margin-top:14px; padding:14px; border-radius:18px; border:1px solid rgba(224,188,26,0.18); background: rgba(0,0,0,0.30); }
.st-points-box__top{ display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap; }
.st-pill{ display:inline-flex; gap:8px; align-items:center; padding:8px 12px; border-radius:999px; background: rgba(0,0,0,0.35); border:1px solid rgba(245,245,245,0.10); color: rgba(245,245,245,0.82); font-size:.92rem; }
.st-pill strong{ color: rgba(245,229,138,0.95); font-weight:600; }
.st-page--booking .st-booking-wrapper select,
.st-page--booking .st-booking-wrapper input,
.st-page--account .st-account-wrapper select,
.st-page--account .st-account-wrapper input{
  border-radius:14px !important;
  border:1px solid rgba(245,245,245,0.14) !important;
  background: rgba(0,0,0,0.35) !important;
  color: rgba(245,245,245,0.86) !important;
  padding:10px 12px !important;
}
.st-page--booking .st-booking-wrapper button,
.st-page--account .st-account-wrapper button{
  border-radius:999px !important;
}


/* ==== V2.4: Hero crop controls + blurred backdrop when using image ==== */
.st-hero-media-image{
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.st-hero-media-image::before{
  content: "";
  position: absolute;
  inset: -20px;
  background-image: var(--st-hero-img);
  background-size: cover;
  background-position: center;
  filter: blur(18px);
  transform: scale(1.12);
  opacity: 0.55;
}
.st-hero-media-image img{
  position: relative;
  z-index: 2;
}


/* ==== FIX V2.4.2: About alignment + Footer link color (override conflicts) ==== */
.st-section.st-section--about .st-about-text,
.st-section.st-section--about .st-about-text p{
  text-align: center !important;
}
.st-section.st-section--about .st-about-text{
  max-width: 860px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.st-section.st-section--about .st-about-text p strong{
  display: inline !important;
  text-align: inherit !important;
}

.st-footer a,
.st-footer a:visited,
.st-footer a:active{
  color: var(--st-text-muted) !important;
  text-decoration: none !important;
}
.st-footer a:hover{
  color: var(--st-gold-text) !important;
  text-decoration: none !important;
}


/* ==== V2.4.3: Hero title single-line on mobile ==== */
@media (max-width: 520px){
  .st-hero__title{
    white-space: nowrap;
    font-size: clamp(1.85rem, 8.2vw, 2.55rem);
    letter-spacing: 0.06em;
  }
}
@media (max-width: 380px){
  .st-hero__title{
    font-size: clamp(1.65rem, 8.0vw, 2.2rem);
    letter-spacing: 0.045em;
  }
}


/* ==== V2.4.3: Subtle load transition ==== */
.st-site-wrapper{
  opacity: 0;
  transition: opacity 520ms ease;
  will-change: opacity;
}
.st-body.st-loaded .st-site-wrapper{
  opacity: 1;
}




/* ==== V2.4.4: iOS safe-area quickbar (sticky) ==== */
.st-quickbar{
  padding-bottom: calc(0.6rem + env(safe-area-inset-bottom, 0px));
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}
.st-quickbar__item{
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px){
  body.st-body{
    padding-bottom: 4.6rem; /* space for quickbar */
  }
}


/* ==== V2.4.5: Quickbar spacing so footer remains visible ==== */
@media (max-width: 960px){
  body.st-body{
    padding-bottom: calc(5.8rem + env(safe-area-inset-bottom, 0px));
  }
  .st-footer{
    padding-bottom: calc(6.2rem + env(safe-area-inset-bottom, 0px));
  }
}


/* ==== V2.4.6: Account tables (premium, theme-native) ==== */
.st-account-section{
  margin-top: 2.2rem;
}
.st-account-section__title{
  font-family: var(--st-font-display);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 1.05rem;
  color: var(--st-gold-text);
  margin: 0 0 1rem;
}
.st-account-table-wrap{
  border: 1px solid rgba(224,188,26,0.16);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(0,0,0,0.28);
  backdrop-filter: blur(10px);
}
.st-account-table{
  width: 100%;
  border-collapse: collapse;
}
.st-account-table th,
.st-account-table td{
  padding: 0.95rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  vertical-align: top;
}
.st-account-table th{
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.72);
}
.st-account-table td{
  color: rgba(245,245,245,0.9);
}
.st-account-table--compact th,
.st-account-table--compact td{
  padding: 0.85rem 1rem;
}
.st-account-small{
  margin-top: .25rem;
  font-size: .86rem;
  color: rgba(245,245,245,0.68);
}
.st-badge{
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .35rem .6rem;
  border-radius: 999px;
  font-size: .86rem;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.25);
}
.st-badge::before{
  content:"";
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: rgba(224,188,26,0.85);
  box-shadow: 0 0 0 3px rgba(224,188,26,0.14);
}
.st-badge--confirmata::before{ background: rgba(224,188,26,0.9); }
.st-badge--noua::before{ background: rgba(245,229,138,0.9); }
.st-badge--anulata::before{ background: rgba(210,210,210,0.65); }
.st-badge--finalizata::before{ background: rgba(156,122,20,0.95); }

.st-account-guest__box{
  margin-top: 1rem;
  border: 1px solid rgba(224,188,26,0.16);
  border-radius: 22px;
  background: rgba(0,0,0,0.28);
  padding: 1.25rem;
}

@media (max-width: 820px){
  .st-account-table th:nth-child(4),
  .st-account-table td:nth-child(4){
    display:none;
  }
}
@media (max-width: 560px){
  .st-account-table-wrap{
    border-radius: 18px;
  }
  .st-account-table th,
  .st-account-table td{
    padding: .8rem .75rem;
  }
}


/* ==== V2.4.7: Hide plugin account dashboard on Contul Meu (we render premium layout) ==== */
.logged-in.st-page-contul-meu [class^="stc5-"],
.logged-in.st-page-contul-meu [class*=" stc5-"]{
  display: none !important;
}

/* ==== V2.4.8: Account enhancements ==== */

.st-dashboard__ministats{
  display:flex;
  gap:1.1rem;
  flex-wrap:wrap;
  margin: 0.9rem 0 0.4rem;
  color: var(--st-text-muted);
  font-size: 0.98rem;
}
.st-mini strong{ color: var(--st-text); font-weight: 600; }

.st-badge-tier--gold{ box-shadow: 0 0 0 1px rgba(224,188,26,0.18), 0 0 28px rgba(224,188,26,0.12); }
.st-badge-tier--black{ box-shadow: 0 0 0 1px rgba(224,188,26,0.22), 0 0 40px rgba(224,188,26,0.16); }
.st-badge-tier--gold .st-badge-tier__dot,
.st-badge-tier--black .st-badge-tier__dot{
  animation: stGlowPulse 2.8s ease-in-out infinite;
}
@keyframes stGlowPulse{
  0%,100%{ transform: scale(1); opacity: .75; }
  50%{ transform: scale(1.22); opacity: 1; }
}

.st-account-filters{
  display:flex;
  gap: .55rem;
  flex-wrap: wrap;
  margin: .7rem 0 1.0rem;
}
.st-filter-btn{
  appearance:none;
  border: 1px solid rgba(224,188,26,0.22);
  background: rgba(0,0,0,0.32);
  color: var(--st-text);
  border-radius: 999px;
  padding: .52rem .9rem;
  font-size: .92rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}
.st-filter-btn:hover{ transform: translateY(-1px); border-color: rgba(224,188,26,0.38); }
.st-filter-btn.is-active{
  background: rgba(224,188,26,0.18);
  border-color: rgba(224,188,26,0.55);
}

.st-th-action, .st-td-action{ width: 180px; }
@media (max-width: 860px){
  .st-th-action, .st-td-action{ width: auto; }
}
.st-link-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: .5rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(224,188,26,0.35);
  color: var(--st-gold-text);
  text-decoration:none;
  background: rgba(0,0,0,0.25);
  transition: transform .22s ease, background .22s ease;
  white-space: nowrap;
}
.st-link-btn:hover{ transform: translateY(-1px); background: rgba(224,188,26,0.10); }

.st-account-table tr.is-hidden{ display:none; }

.st-progress__fill{ transition: width 900ms ease; }


/* =========================
   Tarife Drawer (Services)
   ========================= */
.st-services__actions{ margin-top: 18px; display:flex; justify-content:center; }
.st-btn--ghost.st-tarife-open{
  background: transparent;
  border: 1px solid rgba(224,188,26,0.45);
  color: rgba(245,229,138,0.95);
  padding: 12px 18px;
  border-radius: 999px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.st-btn--ghost.st-tarife-open:hover{
  transform: translateY(-1px);
  border-color: rgba(245,229,138,0.72);
  box-shadow: 0 0 0 3px rgba(224,188,26,0.08);
}

.st-tarife-overlay{
  position: fixed; inset: 0;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(10px);
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
  z-index: 9997;
}
.st-tarife-drawer{
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: min(520px, 92vw);
  background: rgba(0,0,0,.92);
  border-left: 1px solid rgba(224,188,26,0.22);
  box-shadow: -30px 0 80px rgba(0,0,0,.55);
  transform: translateX(110%);
  transition: transform .28s ease;
  z-index: 9998;
  display:flex;
  flex-direction:column;
}
.st-tarife-drawer__header{
  padding: 22px 22px 14px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 16px;
}
.st-tarife-drawer__title{
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  color: rgba(245,229,138,0.98);
  letter-spacing: .02em;
}
.st-tarife-drawer__subtitle{
  margin-top: 6px;
  font-family: "Playfair Display", serif;
  color: rgba(224,188,26,0.95);
  opacity: .92;
}
.st-tarife-close{
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(224,188,26,0.25);
  background: rgba(255,255,255,0.03);
  color: rgba(245,245,245,0.95);
  font-size: 26px;
  line-height: 40px;
  cursor:pointer;
}
.st-tarife-drawer__body{
  padding: 6px 22px 16px;
  overflow:auto;
}
.st-tarife-list{
  border-top: 1px solid rgba(224,188,26,0.15);
  border-bottom: 1px solid rgba(224,188,26,0.15);
}
.st-tarife-row{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.st-tarife-row:last-child{ border-bottom: 0; }
.st-tarife-name{ color: rgba(255,255,255,0.92); }
.st-tarife-price{ color: rgba(245,229,138,0.98); font-weight: 700; white-space: nowrap; }
.st-tarife-note{
  margin-top: 14px;
  opacity: .82;
  font-size: .95rem;
}
.st-tarife-drawer__footer{
  padding: 18px 22px 22px;
  border-top: 1px solid rgba(224,188,26,0.12);
}
.st-tarife-cta{ width: 100%; justify-content:center; }

/* Active state */
body.st-tarife-open .st-tarife-overlay{ opacity: 1; pointer-events: auto; }
body.st-tarife-open .st-tarife-drawer{ transform: translateX(0); }

/* Mobile: bottom drawer */
@media (max-width: 760px){
  .st-tarife-drawer{
    top: auto; bottom: 0; right: 0; left: 0;
    width: 100vw;
    height: 85vh;
    border-left: 0;
    border-top: 1px solid rgba(224,188,26,0.22);
    border-radius: 22px 22px 0 0;
    transform: translateY(110%);
  }
  body.st-tarife-open .st-tarife-drawer{ transform: translateY(0); }
}

/* Booking plugin price alignment override (centered) */
.stc5-price-row, .stc5-total{
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

/* Services - Tarife button position */
.st-services__actions{
  display:flex;
  justify-content:center;
  margin-bottom: 2rem;
}
.st-services__actions--below{
  margin-top: 2.2rem;
  margin-bottom: 0;
}
@media (max-width: 768px){
  .st-services__actions--below{ margin-top: 1.6rem; }
}

@media (max-width: 768px){
  .st-hero__content{ padding-top: 2.2rem; }
}

/* ==========================
   BLOG (premium, minimalist)
   ========================== */
.st-page--blog .st-blog-head{ text-align:center; margin: 10px 0 34px; }
.st-page--blog .st-blog-subtitle{ max-width: 740px; margin: 10px auto 0; opacity: .88; }

.st-blog-grid{ display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
@media (max-width: 1024px){ .st-blog-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px){ .st-blog-grid{ grid-template-columns: 1fr; } }

.st-blog-card{ border-radius: 22px; overflow:hidden; border: 1px solid rgba(255,255,255,.08); background: rgba(0,0,0,.35); box-shadow: 0 18px 60px rgba(0,0,0,.45); }
.st-blog-card__link{ display:block; color: inherit; text-decoration:none; }
.st-blog-card__thumb{ position:relative; aspect-ratio: 16/10; overflow:hidden; background: rgba(255,255,255,.03); }
.st-blog-card__thumb img{ width:100%; height:100%; object-fit:cover; display:block; filter: saturate(.95) contrast(1.02); transform: scale(1.03); transition: transform .35s ease, opacity .35s ease; }
.st-blog-card__thumb--empty{ background: linear-gradient(135deg, rgba(156,122,20,.20), rgba(0,0,0,.35)); }
.st-blog-card__body{ padding: 18px 18px 16px; }
.st-blog-card__title{ margin: 0 0 8px; font-size: 20px; line-height: 1.15; }
.st-blog-card__meta{ margin: 0 0 10px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; opacity: .7; }
.st-blog-card__excerpt{ margin: 0 0 14px; opacity: .9; }
.st-blog-card__cta{ display:inline-block; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: 12px; color: var(--st-gold, #E0BC1A); }

.st-blog-card:hover .st-blog-card__thumb img{ transform: scale(1.08); }

.st-blog-pagination{ margin-top: 26px; }
.st-blog-pagination ul{ display:flex; gap: 10px; list-style:none; justify-content:center; padding:0; margin:0; }
.st-blog-pagination a, .st-blog-pagination span{ display:inline-flex; align-items:center; justify-content:center; width: 40px; height: 40px; border-radius: 999px; border: 1px solid rgba(224,188,26,.25); color: #fff; text-decoration:none; background: rgba(0,0,0,.35); }
.st-blog-pagination .current{ background: rgba(224,188,26,.18); border-color: rgba(224,188,26,.55); }

/* ==========================
   SINGLE POST
   ========================== */
.st-post__kicker{ margin: 0 0 10px; opacity:.8; }
.st-post__kicker a{ color: var(--st-gold, #E0BC1A); text-decoration:none; }
.st-post__title{ margin: 0 0 18px; font-size: clamp(28px, 4.2vw, 44px); line-height: 1.05; }
.st-post__hero{ margin: 0 0 22px; overflow:hidden; border-radius: 22px; border: 1px solid rgba(255,255,255,.08); box-shadow: 0 18px 60px rgba(0,0,0,.45); }
.st-post__hero img{ width:100%; height:auto; display:block; }
.st-post__content{ line-height: 1.75; }
.st-post__content h2{ margin-top: 26px; }
.st-post__content a{ color: var(--st-gold, #E0BC1A); text-decoration:none; border-bottom: 1px solid rgba(224,188,26,.25); }
.st-post__content a:hover{ border-bottom-color: rgba(224,188,26,.65); }
.st-post__foot{ margin-top: 26px; }


/* ==========================
   NEWSLETTER INTEGRATION
   ========================== */
.st-footer-newsletter-wrap{max-width:1100px;margin:0 auto 20px;padding:0 20px;}
.stc5-newsletter-box{margin:0 auto 12px;}
.stc5-newsletter-box__inner{border:1px solid rgba(224,188,26,.2);border-radius:24px;background:linear-gradient(180deg,rgba(14,14,14,.94),rgba(6,6,6,.96));box-shadow:0 20px 60px rgba(0,0,0,.32);padding:26px;}
.stc5-newsletter-box__copy h3{margin:0 0 8px;font-size:clamp(24px,3vw,34px);}
.stc5-newsletter-box__copy p{margin:0 0 18px;opacity:.88;max-width:720px;}
.stc5-newsletter-form__grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:12px;}
.stc5-newsletter-form input[type="text"],
.stc5-newsletter-form input[type="email"]{width:100%;min-height:52px;border-radius:16px;border:1px solid rgba(255,255,255,.1);background:rgba(255,255,255,.03);color:#fff;padding:0 16px;font:inherit;}
.stc5-newsletter-form input::placeholder{color:rgba(255,255,255,.55);}
.stc5-newsletter-form__consent,
.stc5-newsletter-consent{display:flex;gap:10px;align-items:flex-start;font-size:14px;line-height:1.55;color:rgba(255,255,255,.86);}
.stc5-newsletter-form__consent input,
.stc5-newsletter-consent input{margin-top:4px;accent-color:#E0BC1A;}
.stc5-newsletter-form__submit{margin-top:14px;min-height:50px;padding:0 22px;border-radius:999px;border:1px solid rgba(224,188,26,.38);background:linear-gradient(135deg,rgba(156,122,20,.24),rgba(224,188,26,.16));color:#f7e8af;font-weight:700;letter-spacing:.08em;text-transform:uppercase;cursor:pointer;}
.stc5-newsletter-message{margin:0 0 14px;padding:12px 14px;border-radius:14px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08);}
.stc5-newsletter-message--success{border-color:rgba(224,188,26,.3);color:#f6e8a9;}
.stc5-newsletter-message--error{border-color:rgba(255,120,120,.25);color:#ffd4d4;}
.stc5-field--newsletter-consent{margin-top:10px;}
@media (max-width: 768px){
  .st-footer-newsletter-wrap{padding:0 16px;}
  .stc5-newsletter-box__inner{padding:20px;}
  .stc5-newsletter-form__grid{grid-template-columns:1fr;}
  .stc5-newsletter-form__submit{width:100%;}
}
