/* =============================================
   SALON VERA - Główne style
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --gold-dark: #a07840;
  --dark: #1c1c1c;
  --dark-2: #2a2a2a;
  --cream: #faf7f2;
  --cream-2: #f2ece0;
  --white: #ffffff;
  --gray: #888888;
  --gray-light: #cccccc;
  --text: #2c2c2c;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Lato', 'Segoe UI', sans-serif;
  --transition: 0.3s ease;
  --shadow: 0 4px 30px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.15);
}

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

body {
  font-family: var(--font-sans);
  color: var(--text);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.25;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 550px;
  margin: 0 auto 3rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,169,110,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.btn-dark:hover {
  background: var(--dark-2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* --- Layout helpers --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-pad {
  padding: 6rem 0;
}

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

/* =============================================
   NAWIGACJA
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(28, 28, 28, 0.97);
  backdrop-filter: blur(10px);
  padding: 0.9rem 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  cursor: pointer;
}

.navbar-logo img {
  height: 48px;
  width: auto;
  border-radius: 4px;
}

.navbar-logo-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 700;
}

.navbar-logo-text span {
  color: var(--gold);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

@media (max-width: 1100px) {
  .navbar-links { gap: 1.1rem; }
  .navbar-links a { font-size: 0.78rem; }
}

.navbar-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.25rem 0;
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--gold);
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
  width: 100%;
}

.navbar-cta {
  padding: 0.55rem 1.2rem;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  border-radius: 50px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Mobile menu --- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
}

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--gold); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1c1c1c 0%, #2d2416 50%, #1c1c1c 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28,28,28,0.9) 40%, rgba(28,28,28,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.4);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
}

.hero-badge span {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.hero h1 .accent { color: var(--gold); }

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
}

/* =============================================
   O NAS
   ============================================= */
.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-images {
  position: relative;
  height: 520px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 85%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-hover);
}

.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-hover);
  border: 5px solid var(--cream);
}

.about-badge {
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  background: var(--dark);
  color: var(--white);
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-hover);
  z-index: 2;
}

.about-badge-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}

.about-badge-text {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  line-height: 1.3;
  margin-top: 0.3rem;
}

.about-text .section-subtitle {
  margin: 0 0 2rem;
  text-align: left;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: white;
}

.about-feature-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  color: var(--dark);
}

.about-feature-desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.5;
}

/* =============================================
   REZERWACJA (CTA)
   ============================================= */
.booking {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.booking::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.booking-text .section-label { color: var(--gold-light); }

.booking-text .section-title { color: var(--white); }

.booking-text .section-subtitle {
  color: rgba(255,255,255,0.6);
  text-align: left;
  margin: 0 0 0;
}

.booking-options {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.booking-option {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all var(--transition);
  text-decoration: none;
}

.booking-option:hover {
  background: rgba(201,169,110,0.1);
  border-color: rgba(201,169,110,0.3);
  transform: translateX(6px);
}

.booking-option-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.booking-option-icon.phone { background: linear-gradient(135deg, #667eea, #764ba2); }
.booking-option-icon.booksy { background: linear-gradient(135deg, #f093fb, #f5576c); }

.booking-option-title {
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.booking-option-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.booking-option-value {
  font-size: 1.05rem;
  color: var(--gold-light);
  font-weight: 600;
}

.booking-option-arrow {
  margin-left: auto;
  color: rgba(255,255,255,0.25);
  font-size: 1.2rem;
  transition: all var(--transition);
}

.booking-option:hover .booking-option-arrow {
  color: var(--gold);
  transform: translateX(4px);
}

/* =============================================
   USŁUGI PREVIEW (na index)
   ============================================= */
.services-preview {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  background: var(--white);
}

.service-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.service-card-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.service-card-desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.service-card-price {
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

/* =============================================
   GALERIA PREVIEW
   ============================================= */
.gallery-preview {
  background: var(--cream-2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-label {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* =============================================
   OPINIE
   ============================================= */
.reviews {
  background: var(--white);
}


/* =============================================
   GODZINY & KONTAKT STRIP
   ============================================= */
.info-strip {
  background: linear-gradient(135deg, var(--dark) 0%, #2d2416 100%);
  padding: 4rem 0;
}

.info-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.info-strip-item-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.info-strip-item-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.info-strip-item-value {
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1.5;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: #111111;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-logo img {
  height: 44px;
  border-radius: 4px;
}

.footer-logo-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
}

.footer-logo-name span { color: var(--gold); }

.footer-desc {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--white);
}

.footer-col-title {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold-light); }

.footer-hours { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-hour-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

.footer-hour-day { color: rgba(255,255,255,0.5); }
.footer-hour-time { color: var(--white); font-weight: 500; }
.footer-hour-time.closed { color: var(--gray); font-style: italic; }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 1.5rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom a {
  color: var(--gold);
  transition: color var(--transition);
}

.footer-bottom a:hover { color: var(--gold-light); }

/* =============================================
   RESPONSYWNOŚĆ
   ============================================= */
@media (max-width: 1024px) {
  .about-grid,
  .booking-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-images { height: 380px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .navbar-links { display: none; }
  .hamburger { display: flex; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .info-strip-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .section-pad { padding: 4rem 0; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .container { padding: 0 1.25rem; }
  .booking-option { flex-wrap: wrap; }
}

/* =============================================
   FOOTER LEGAL (dane firmowe)
   ============================================= */
.footer-legal {
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
  text-align: center;
}
.footer-legal-main {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-legal-main strong { color: rgba(255,255,255,0.55); font-weight: 600; }
.footer-legal-sep { color: rgba(255,255,255,0.15); }
.footer-legal-addr {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.22);
  line-height: 1.5;
}
.footer-legal-addr a { color: var(--gold); opacity: 0.7; }
.footer-legal-addr a:hover { opacity: 1; }

/* =============================================
   OPINIE — SLIDER (strzałki + dots + swipe)
   ============================================= */

/* Rząd z oceną */
.reviews-score-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 0 auto 2.5rem;
  flex-wrap: wrap;
}
.reviews-score-box {
  background: var(--cream);
  border-radius: 20px;
  padding: 1.25rem 2rem;
  text-align: center;
  min-width: 160px;
}
.reviews-score-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.reviews-score-stars {
  font-size: 1.1rem;
  color: #f5a623;
  margin: 0.3rem 0 0.2rem;
  letter-spacing: 0.05em;
}
.reviews-score-sub {
  font-size: 0.78rem;
  color: var(--gray);
}
.reviews-score-live {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--gray);
  font-style: italic;
}
.reviews-score-live .live-dot {
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(74,222,128,0.7);
  flex-shrink: 0;
}

/* Wrapper slidera */
.rev-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Strzałki */
.rev-arrow {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--cream-2);
  background: var(--white);
  color: var(--dark);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  z-index: 2;
}
.rev-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(201,169,110,0.35);
}
.rev-arrow:active { transform: scale(0.96); }
.rev-arrow:disabled {
  opacity: 0.3;
  cursor: default;
  transform: none;
}

/* Track wrapper — overflow hidden */
.rev-track-wrap {
  overflow: hidden;
  width: 100%;
  border-radius: 16px;
}

/* Track — flex, przesuwa się przez transform */
.rev-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  cursor: grab;
  user-select: none;
}
.rev-track.dragging {
  transition: none;
  cursor: grabbing;
}

/* Karta opinii */
.rev-card {
  flex-shrink: 0;
  background: var(--cream);
  border-radius: 16px;
  padding: 1.6rem 1.5rem;
  box-sizing: border-box;
  border: 1.5px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
  text-align: left;
}
.rev-card.active {
  border-color: rgba(201,169,110,0.35);
  box-shadow: 0 6px 28px rgba(0,0,0,0.09);
}
.rev-card-stars {
  font-size: 1rem;
  color: #f5a623;
  margin-bottom: 0.85rem;
  letter-spacing: 0.05em;
}
.rev-card-text {
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-style: italic;
}
.rev-card-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.rev-card-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.rev-card-author { font-weight: 700; font-size: 0.85rem; color: var(--dark); }
.rev-card-date   { font-size: 0.72rem; color: var(--gray); margin-top: 0.1rem; }
.rev-card-source {
  margin-left: auto;
  font-size: 0.7rem;
  color: var(--gray-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Dots */
.rev-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.rev-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cream-2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.rev-dot.active {
  background: var(--gold);
  width: 22px;
  border-radius: 4px;
}

/* Live badge (stary - usunięty, zostawiamy score-row) */
.reviews-live-badge { display: none; }
