/*
 * Lux Nails Spa — Main Stylesheet
 * Dark luxury theme
 */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #0F0F10;
  --surface:      #171718;
  --surface-2:    #1A1A1B;
  --border:       rgba(201, 162, 77, 0.25);
  --text:         #F5F3EF;
  --muted:        #B8B3A8;
  --accent:       #C9A24D;
  --accent-light: #E6C16A;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --max-w:        1200px;
  --section-py:   clamp(4rem, 10vw, 7rem);
  --gap:          clamp(1.5rem, 4vw, 2.5rem);
  --radius:       4px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
p    { max-width: 65ch; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 400;
  color: var(--text);
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem);   letter-spacing: 0.02em; }
h2 { font-size: clamp(1.75rem, 4vw, 3rem);  letter-spacing: 0.02em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.65rem); }
h4 { font-size: clamp(1rem, 1.8vw, 1.15rem); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-header            { margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.section-header.centered   { text-align: center; }
.section-header.centered p { margin-inline: auto; }
.section-header h2         { margin-bottom: 0.75rem; }
.section-header p          { color: var(--muted); font-size: 1.05rem; line-height: 1.85; }

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.section              { padding-block: var(--section-py); border-top: 1px solid var(--border); }
.section--surface     { background: var(--surface); }
.section--surface-2   { background: var(--surface-2); }
.section--no-border   { border-top: none; }

.grid-2 { display: grid; gap: var(--gap); }
.grid-3 { display: grid; gap: var(--gap); }
.grid-4 { display: grid; gap: var(--gap); }

@media (min-width: 640px)  { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px)  { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
  border-radius: var(--radius);
  padding: 14px 28px;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary         { background: var(--accent); color: #0F0F10; }
.btn-primary:hover   { background: var(--accent-light); }
.btn-outline         { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.btn-outline:hover   { background: rgba(201, 162, 77, 0.08); }
.btn svg             { width: 1rem; height: 1rem; flex-shrink: 0; }

/* === NAVBAR === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 15, 16, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.navbar__inner {
  height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}
.navbar__logo span { color: var(--accent); }

.navbar__nav { display: none; align-items: center; gap: 1.75rem; }

.navbar__nav a {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
  position: relative;
  padding-bottom: 3px;
}
.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.navbar__nav a:hover,
.navbar__nav a.active          { color: var(--text); }
.navbar__nav a:hover::after,
.navbar__nav a.active::after   { transform: scaleX(1); }

.navbar__actions { display: flex; align-items: center; gap: 0.75rem; }

.lang-toggle {
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0.3rem 0.65rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius);
  transition: border-color 0.3s, color 0.3s;
  font-family: var(--font-body);
}
.lang-toggle:hover { border-color: var(--accent); color: var(--accent); }

.menu-toggle {
  background: none; border: none; cursor: pointer; padding: 0.25rem;
  display: flex; flex-direction: column; gap: 5px;
}
.menu-toggle span {
  display: block; width: 22px; height: 1px; background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 4.5rem; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  padding: 2rem clamp(1.25rem, 5vw, 3rem);
  overflow-y: auto;
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 5vw, 2.25rem);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.nav-mobile a:hover,
.nav-mobile a.active { color: var(--accent); }

@media (min-width: 900px) {
  .navbar__nav  { display: flex; }
  .menu-toggle  { display: none; }
}

/* === HERO === */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: 5rem;
  position: relative;
  background: url('../img/hero-bg.jpg') center/cover no-repeat;
  overflow: hidden;
}

.hero__bg {
  position: absolute; inset: 0;
  background: rgba(10, 10, 10, 0.68);
  pointer-events: none; z-index: 0;
}

.hero__content {
  position: relative; z-index: 1;
  max-width: 820px;
  padding-inline: 1.25rem;
}

.hero__wordmark {
  font-family: var(--font-heading);
  font-size: clamp(3.25rem, 9vw, 7rem);
  letter-spacing: 0.2em;
  color: var(--text);
  text-transform: uppercase;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0;
}
.hero__wordmark span {
  color: var(--accent);
  display: block;
  font-size: 0.35em;
  letter-spacing: 0.5em;
  font-weight: 300;
  margin-top: 0.3em;
  opacity: 0.9;
}

.hero__divider {
  width: 50px; height: 1px;
  background: var(--accent);
  margin: 2.5rem auto;
  opacity: 0.6;
}

.hero__tagline {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--muted);
  font-style: italic;
  letter-spacing: 0.04em;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  color: var(--muted); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  z-index: 1;
}
.hero__scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, transparent, var(--accent));
}

/* === SERVICE CARDS === */
.services-grid {
  display: grid; gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--bg);
  padding: 2.5rem;
  transition: background 0.3s ease;
}
.service-card:hover        { background: var(--surface); }
.service-card__num {
  font-family: var(--font-heading);
  font-size: 2.75rem; color: rgba(201,162,77,0.15);
  line-height: 1; margin-bottom: 1.5rem; display: block;
}
.service-card h3           { font-size: 1.3rem; margin-bottom: 0.75rem; }
.service-card p            { color: var(--muted); font-size: 0.875rem; line-height: 1.8; margin-bottom: 1.5rem; }
.service-card__price {
  font-size: 0.68rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent);
}

/* === TRUST / HYGIENE === */
.trust-grid { display: grid; gap: var(--gap); }
@media (min-width: 640px)  { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }

.trust-item            { padding: 2rem 0; border-top: 1px solid var(--border); }
.trust-item__icon      { font-size: 1.25rem; color: var(--accent); margin-bottom: 1rem; }
.trust-item h4 {
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); margin-bottom: 0.6rem;
}
.trust-item p          { font-size: 0.875rem; color: var(--muted); line-height: 1.75; }

/* === GALLERY === */
.gallery-grid {
  display: grid; gap: 2px;
  grid-template-columns: repeat(2, 1fr);
  background: var(--border);
}
@media (min-width: 640px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--surface);
  position: relative;
}
.gallery-item img            { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease, opacity 0.3s ease; }
.gallery-item:hover img      { transform: scale(1.05); opacity: 0.8; }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--muted); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; gap: 0.6rem;
}
.gallery-placeholder::before {
  content: ''; display: block; width: 20px; height: 1px; background: var(--accent); opacity: 0.4;
}

/* === SPECIALIZED CARE PAGE === */
.spec-list {
  display: grid; gap: 0;
  border: 1px solid var(--border);
}
.spec-item {
  padding: 2.5rem; border-bottom: 1px solid var(--border);
  display: grid; gap: 1.25rem;
  transition: background 0.3s ease;
}
.spec-item:last-child  { border-bottom: none; }
.spec-item:hover       { background: rgba(201,162,77,0.03); }
@media (min-width: 768px) {
  .spec-item { grid-template-columns: 64px 1fr; gap: 2.5rem; }
}
.spec-item__num {
  font-family: var(--font-heading);
  font-size: 2.5rem; color: var(--accent); opacity: 0.25;
  line-height: 1; font-weight: 400;
}
.spec-item__body h3             { font-size: 1.25rem; margin-bottom: 0.75rem; }
.spec-item__body p              { color: var(--muted); font-size: 0.9rem; line-height: 1.85; margin-bottom: 0.75rem; }
.spec-item__note {
  font-size: 0.8rem; color: var(--accent); opacity: 0.85;
  letter-spacing: 0.02em; padding-left: 1rem;
  border-left: 1px solid var(--accent); font-style: italic;
  display: block; max-width: 55ch;
}
.spec-item__price {
  font-size: 0.68rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
}

/* === FAQ === */
.faq-list { max-width: 720px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.5rem 0; font-family: var(--font-body); font-size: 0.95rem;
  font-weight: 500; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; color: var(--text); transition: color 0.3s;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 1.15rem; height: 1.15rem; flex-shrink: 0;
  color: var(--accent); transition: transform 0.3s ease;
}
.faq-item.open .faq-icon   { transform: rotate(180deg); }
.faq-answer {
  display: none; padding-bottom: 1.5rem;
  color: var(--muted); font-size: 0.9rem; line-height: 1.85; max-width: 62ch;
}
.faq-item.open .faq-answer { display: block; }

/* === CONTACT === */
.contact-grid { display: grid; gap: 4rem; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-detail {
  display: flex; gap: 1.25rem;
  margin-bottom: 2rem; align-items: flex-start;
}
.contact-detail__icon      { color: var(--accent); flex-shrink: 0; margin-top: 0.1rem; }
.contact-detail__icon svg  { width: 1.1rem; height: 1.1rem; }
.contact-detail__text h4 {
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.35rem;
}
.contact-detail__text p,
.contact-detail__text a    { font-size: 1rem; color: var(--text); line-height: 1.6; }
.contact-detail__text a:hover { color: var(--accent); }

.map-container {
  width: 100%; aspect-ratio: 4/3;
  overflow: hidden; border: 1px solid var(--border);
}
.map-container iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) brightness(0.5) contrast(1.2); transition: filter 0.3s; }
.map-container:hover iframe { filter: grayscale(0.7) brightness(0.6) contrast(1.1); }
@media (min-width: 1024px) {
  .map-container { aspect-ratio: unset; height: 520px; }
}

/* === CTA BANNER === */
.cta-banner {
  padding-block: var(--section-py);
  text-align: center;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.cta-banner h2                   { margin-bottom: 1rem; }
.cta-banner p                    { color: var(--muted); margin-bottom: 2.5rem; margin-inline: auto; font-size: 1.05rem; line-height: 1.85; }

/* === TESTIMONIALS PLACEHOLDER === */
.testimonials-placeholder {
  text-align: center; padding: 4rem 2rem;
  border: 1px solid var(--border);
}
.testimonials-placeholder p { color: var(--muted); font-size: 0.875rem; letter-spacing: 0.04em; margin-inline: auto; }

/* === PAGE HERO (interior pages) === */
.page-hero {
  padding-block: clamp(4rem, 8vw, 6rem);
  border-bottom: 1px solid var(--border);
}
.page-hero .section-label  { display: block; }
.page-hero h1              { margin-bottom: 0.75rem; }
.page-hero p               { color: var(--muted); font-size: 1.05rem; line-height: 1.85; max-width: 55ch; }

.breadcrumb {
  font-size: 0.72rem; color: var(--muted);
  margin-bottom: 1.5rem; letter-spacing: 0.06em;
}
.breadcrumb a             { color: var(--muted); transition: color 0.3s; }
.breadcrumb a:hover       { color: var(--accent); }
.breadcrumb span          { margin-inline: 0.5rem; opacity: 0.35; }

/* === VALUES / ABOUT === */
.values-grid { display: grid; gap: var(--gap); }
@media (min-width: 640px)  { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

.value-card   { padding: 2rem 0; border-top: 1px solid var(--accent); }
.value-card h4 {
  font-family: var(--font-heading); font-size: 1.2rem;
  font-weight: 400; margin-bottom: 0.75rem;
}
.value-card p  { color: var(--muted); font-size: 0.875rem; line-height: 1.85; }

/* === STICKY ACTIONS === */
.sticky-actions {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 200;
  display: flex; flex-direction: column; gap: 0.5rem; align-items: flex-end;
}
@media (min-width: 768px) { .sticky-actions { bottom: 2rem; right: 2rem; } }

.sticky-call,
.sticky-whatsapp {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.5rem; border-radius: var(--radius);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  transition: background 0.3s ease; font-family: var(--font-body);
}
.sticky-call svg,
.sticky-whatsapp svg { width: 1rem; height: 1rem; flex-shrink: 0; }

.sticky-call         { background: var(--accent); color: #0F0F10; }
.sticky-call:hover   { background: var(--accent-light); }

.sticky-whatsapp       { background: #1A2B1D; color: #4ADE80; border: 1px solid rgba(74,222,128,0.2); }
.sticky-whatsapp:hover { background: #223521; }

/* === COOKIE NOTICE === */
.cookie-notice {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 1.25rem; z-index: 300; display: none;
}
.cookie-notice.visible { display: block; }
.cookie-inner {
  display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center; justify-content: space-between;
  max-width: var(--max-w); margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.cookie-inner p         { font-size: 0.825rem; color: var(--muted); flex: 1; min-width: 200px; line-height: 1.6; }
.cookie-inner p a       { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.cookie-accept          { font-size: 0.75rem; padding: 0.5rem 1.25rem; white-space: nowrap; }
.cookie-accept:hover    { background: var(--accent-light); }

/* === FOOTER === */
footer { background: var(--surface); border-top: 1px solid var(--border); padding-block: clamp(3rem, 7vw, 5rem); }
.footer-grid { display: grid; gap: 3rem; }
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 4rem; } }

.footer-brand__logo {
  font-family: var(--font-heading); font-size: 1.35rem; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--text);
  margin-bottom: 1rem; display: block;
}
.footer-brand__logo span { color: var(--accent); }
.footer-brand p          { font-size: 0.875rem; color: var(--muted); line-height: 1.8; max-width: 32ch; }

.footer-col h4 {
  font-family: var(--font-body); font-size: 0.68rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1.25rem; font-weight: 600;
}
.footer-col ul          { list-style: none; }
.footer-col li          { margin-bottom: 0.6rem; }
.footer-col a           { font-size: 0.875rem; color: var(--muted); transition: color 0.3s; }
.footer-col a:hover     { color: var(--text); }
.footer-social-link     { display: inline-flex; align-items: center; gap: 0.45rem; }
.footer-social-link svg { flex-shrink: 0; opacity: 0.75; }
.footer-col p           { font-size: 0.875rem; color: var(--muted); line-height: 1.75; margin-bottom: 0.5rem; }

.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; align-items: center;
}
.footer-bottom p,
.footer-bottom a  { font-size: 0.775rem; color: var(--muted); opacity: 0.55; }
.footer-bottom a  { text-decoration: underline; text-underline-offset: 2px; transition: opacity 0.3s; }
.footer-bottom a:hover { opacity: 1; color: var(--accent); }

/* === PRIVACY PAGE === */
.prose { max-width: 720px; }
.prose h2 { font-size: clamp(1.3rem, 3vw, 1.7rem); margin-top: 3rem; margin-bottom: 1rem; }
.prose h3 {
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent);
  margin-top: 2rem; margin-bottom: 0.75rem;
}
.prose p    { color: var(--muted); font-size: 0.925rem; line-height: 1.9; margin-bottom: 1rem; }
.prose ul   { color: var(--muted); font-size: 0.925rem; line-height: 1.9; margin-bottom: 1rem; padding-left: 1.5rem; }
.prose li   { margin-bottom: 0.4rem; }
.prose a    { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

/* === INLINE LIST (used in usluge) === */
.service-list-item {
  padding: 2rem 1.5rem; border-bottom: 1px solid var(--border);
  display: grid; gap: 1rem;
}
.service-list-item:last-child { border-bottom: none; }
@media (min-width: 768px) {
  .service-list-item { grid-template-columns: 1fr 2fr 160px; align-items: start; gap: 2.5rem; }
}
.service-list-item h3 { font-size: 1.2rem; }
.service-list-item p  { color: var(--muted); font-size: 0.875rem; line-height: 1.8; }
.service-list-price   { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); padding-top: 0.2rem; }

/* Compact price-row variant (no description) */
.service-list-item--simple { padding: 0.8rem 1.5rem; }
@media (min-width: 768px) {
  .service-list-item--simple { grid-template-columns: 1fr auto; align-items: center; gap: 2rem; }
}
.service-list-item--simple h3 { font-size: 0.95rem; font-weight: 500; font-family: var(--font-body); }
.service-list-item--simple .service-list-price {
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.02em;
  text-transform: none; white-space: nowrap; padding-top: 0;
}

/* === LANGUAGE TOGGLE === */
.lang-en { display: none; }
html.en .lang-hr { display: none !important; }
html.en .lang-en { display: revert; }

/* === PRAVILNIK / RULES === */
.rules-list { display: grid; gap: 0; border: 1px solid var(--border); }
.rule-item {
  padding: 1.5rem 2rem; border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.rule-item:last-child { border-bottom: none; }
.rule-item:hover { background: rgba(201,162,77,0.04); }
.rule-item h4 {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.4rem;
}
.rule-star { color: var(--accent); margin-right: 0.2rem; }
.rule-item p { color: var(--muted); font-size: 0.875rem; line-height: 1.75; margin: 0; max-width: none; }

/* === CAROUSEL === */
.carousel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.carousel__viewport {
  position: relative;
  overflow: hidden;
  min-height: 200px;
}
.carousel__track {
  display: flex;
  gap: 2px;
  will-change: transform;
  /* transition set by JS */
}
.carousel__slide {
  flex-shrink: 0;
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
  position: relative;
  /* width and height set by JS */
}
.carousel__slide img,
.carousel__slide video {
  width: 100%; height: 100%;
  object-fit: contain; display: block;
  transition: transform 0.4s ease, opacity 0.3s ease;
}
.carousel__slide:hover img,
.carousel__slide:hover video { transform: scale(1.04); opacity: 0.85; }

.carousel__slide-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: rgba(0,0,0,0.55);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  color: #fff;
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(15,15,16,0.65);
  border: 1px solid var(--border);
  color: var(--accent);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.carousel__btn:hover { background: rgba(201,162,77,0.22); border-color: var(--accent); }
.carousel__btn--prev { left: 0.6rem; }
.carousel__btn--next { right: 0.6rem; }

.carousel__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  min-height: 1rem;
}
.carousel__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  flex-shrink: 0;
}
.carousel__dot--active {
  background: var(--accent);
  transform: scale(1.5);
}

.carousel__empty {
  min-height: 260px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid var(--border);
  width: 100%;
}

/* === LIGHTBOX === */
.lightbox {
  position: fixed; inset: 0; z-index: 500;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
}
.lightbox[aria-hidden="true"] { display: none; }

.lightbox__backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 10, 10, 0.93);
  cursor: pointer;
}
.lightbox__inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
  max-width: min(90vw, 820px); width: 100%;
}
.lightbox__img,
.lightbox__video {
  max-height: 78vh; max-width: 100%;
  object-fit: contain; display: block;
  border: 1px solid var(--border);
}
.lightbox__close {
  position: absolute; top: -0.75rem; right: -0.75rem;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s, border-color 0.2s;
}
.lightbox__close:hover { color: var(--text); border-color: var(--accent); }

.lightbox__caption { text-align: center; max-width: 60ch; }
.lightbox__title {
  font-family: var(--font-heading); font-size: 1.15rem;
  color: var(--text); font-weight: 400; margin-bottom: 0.4rem; max-width: none;
}
.lightbox__desc { font-size: 0.875rem; color: var(--muted); line-height: 1.7; max-width: none; }

/* === UTILITIES === */
.text-accent  { color: var(--accent); }
.text-muted   { color: var(--muted); }
.text-center  { text-align: center; }
.mt-1         { margin-top: 1rem; }
.mt-2         { margin-top: 2rem; }
.mt-3         { margin-top: 3rem; }
.mb-0         { margin-bottom: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   REVIEW FORM PAGE HERO  (extends existing .page-hero)
═══════════════════════════════════════════════════════════════════════════ */
/* .page-hero base styles already defined above — these are additive */
.page-hero__title {
  /* uses global h1 sizing; override weight for interior page feel */
  font-weight: 300;
}
.page-hero__sub {
  /* uses .page-hero p rule — no extra rule needed */
}

/* ═══════════════════════════════════════════════════════════════════════════
   REVIEW FORM  (ostavi-recenziju)
═══════════════════════════════════════════════════════════════════════════ */
.review-form-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.review-form {
  display: grid;
  gap: 1.5rem;
}

/* Honeypot — visually hidden, not interactable */
.rf-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

/* 2-column grid for short fields */
.rf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 560px) { .rf-grid { grid-template-columns: 1fr; } }

.rf-field { display: flex; flex-direction: column; gap: 0.4rem; }
.rf-field--full { grid-column: 1 / -1; }

.rf-field label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.rf-field input,
.rf-field select,
.rf-field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.rf-field input:focus,
.rf-field select:focus,
.rf-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 162, 77, 0.12);
}
.rf-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23B8B3A8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.rf-field select option { background: var(--surface); }
.rf-field textarea { resize: vertical; min-height: 140px; line-height: 1.65; }
.rf-field input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(0.6); cursor: pointer; }

.rf-error {
  font-size: 0.75rem;
  color: #E05252;
  min-height: 1em;
}

.rf-char-count {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: right;
  opacity: 0.6;
}

.rf-privacy {
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.7;
  line-height: 1.6;
}

.rf-gdpr-label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--muted);
}
.rf-gdpr-label input[type="checkbox"] {
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--accent);
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}
.rf-gdpr-label a { color: var(--accent); }
.rf-gdpr-label a:hover { color: var(--accent-light); }

.rf-submit { display: flex; justify-content: flex-start; }

.rf-submit-btn {
  position: relative;
  min-width: 200px;
  justify-content: center;
  gap: 0.6rem;
}
.rf-submit-btn.loading .rf-submit-text { opacity: 0; }
.rf-submit-btn.loading .rf-spinner { display: block; }
.rf-spinner {
  display: none;
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 18px; height: 18px;
  border: 2px solid rgba(15,15,16,0.3);
  border-top-color: #0F0F10;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* ── Star widget ── */
.star-widget { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

.star-widget__stars { display: flex; gap: 2px; }

.star-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
  color: rgba(201, 162, 77, 0.18);
  transition: color 0.15s ease, transform 0.12s ease;
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  outline: none;
}
.star-btn:focus-visible {
  box-shadow: 0 0 0 2px var(--accent);
}
.star-btn.star-hover { color: rgba(201, 162, 77, 0.65); transform: scale(1.1); }
.star-btn.star-selected { color: var(--accent); transform: scale(1.08); }

.star-widget__label {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  transition: color 0.2s;
  min-width: 8ch;
}
.star-widget__label.has-value { color: var(--accent-light); }

/* ── Review popup ── */
.rf-popup {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.rf-popup[aria-hidden="true"] { display: none; }

.rf-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.88);
  cursor: pointer;
}

.rf-popup__box {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: popIn 0.25s ease;
}
.rf-popup__box--success { border-color: rgba(74, 222, 128, 0.3); }

@keyframes popIn {
  from { opacity: 0; transform: scale(0.92) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.rf-popup__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(224, 82, 82, 0.08);
  border: 1px solid rgba(224, 82, 82, 0.2);
  display: flex; align-items: center; justify-content: center;
  color: #E05252;
}
.rf-popup__icon--success {
  background: rgba(74, 222, 128, 0.08);
  border-color: rgba(74, 222, 128, 0.2);
  color: #4ADE80;
}

.rf-popup__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.4;
}

.rf-popup__msg {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

.rf-popup__close {
  margin-top: 0.5rem;
  min-width: 140px;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HOMEPAGE REVIEWS  (review cards on index.html)
═══════════════════════════════════════════════════════════════════════════ */
.reviews-carousel {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  min-height: 120px;
}
.reviews-carousel__viewport {
  flex: 1;
  overflow: hidden;
}
.reviews-carousel__track {
  display: flex;
  will-change: transform;
}
.reviews-carousel__btn {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(201,162,77,0.06);
  border: 1px solid var(--border);
  color: var(--accent);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.reviews-carousel__btn:hover { background: rgba(201,162,77,0.16); border-color: var(--accent); }

.review-card-pub {
  flex-shrink: 0;
  box-sizing: border-box;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color 0.2s;
}
.review-card-pub:hover { border-color: rgba(201, 162, 77, 0.4); }

.rc-grid {
  display: grid;
  grid-template-columns: 0.95fr auto 1.8fr;
  column-gap: 1.25rem;
  align-items: stretch;
  min-height: 170px;
}

.rc-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.55rem;
}

.rc-stars {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.rc-star { font-size: 1.05rem; line-height: 1; }
.rc-star--filled { color: var(--accent); }
.rc-star:not(.rc-star--filled) { color: rgba(201, 162, 77, 0.2); }
.rc-label {
  font-size: 0.85rem;
  color: var(--accent);
  margin-left: 0.35rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.rc-name-big {
  font-size: 2.1rem;
  line-height: 1.05;
  font-weight: 700;
  color: var(--text);
}

.rc-service-big {
  font-size: 1.25rem;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.rc-left-rule {
  height: 1px;
  width: 100%;
  background: rgba(201, 162, 77, 0.18);
  margin-top: 0.35rem;
  margin-bottom: 0.35rem;
}

.rc-date-big {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
}

.rc-divider {
  width: 1px;
  background: rgba(201, 162, 77, 0.55);
  align-self: stretch;
  margin: 0.6rem 0;
  border-radius: 1px;
}

.rc-right {
  display: flex;
  align-items: center;
}

.rc-comment {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
}

@media (max-width: 720px) {
  .rc-grid {
    grid-template-columns: 1fr;
    row-gap: 1rem;
  }
  .rc-divider {
    width: 100%;
    height: 1px;
    margin: 0;
    background: rgba(201, 162, 77, 0.35);
  }
}

.reviews-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  font-size: 0.875rem;
  padding: 2rem 0;
  opacity: 0.7;
}

.reviews-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════
   3D FLIP CARD
═══════════════════════════════════════════════════════════════ */
.card-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 3rem 0 2rem;
  perspective: 1200px;
}

.card-showcase__hint {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.flip-card {
  width: 30rem;
  height: 19rem;
  border-radius: 18px;
  cursor: pointer;
  position: relative;
  transform: translateZ(0);
  -webkit-tap-highlight-color: transparent;
}

.flip-card-inner {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1.5px rgba(201, 162, 77, 0.65),
    0 0 28px rgba(201, 162, 77, 0.12);
}

.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-face {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0.1px);
}

.flip-card-back {
  transform: rotateY(180deg) translateZ(0.1px);
}

.flip-card-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (hover: hover) {
  .flip-card:hover .flip-card-inner {
    transform: rotateY(var(--ry, 0deg)) rotateX(var(--rx, 0deg)) translateY(-4px) scale(1.02);
  }
  .flip-card.flipped:hover .flip-card-inner {
    transform: rotateY(calc(180deg + var(--ry, 0deg))) rotateX(var(--rx, 0deg)) translateY(-4px) scale(1.02);
  }
}

@media (max-width: 480px) {
  .flip-card {
    width: min(24rem, 100%);
    height: 15rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS — STEPS
═══════════════════════════════════════════════════════════════ */
.steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 640px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step__num {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid var(--accent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}

.step__body h3 {
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
}

.step__body p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   LOYALTY STAMP GRID
═══════════════════════════════════════════════════════════════ */
.stamp-section {
  text-align: center;
}

.stamp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  max-width: 480px;
  margin: 2rem auto;
}

.stamp-item {
  aspect-ratio: 1;
  border: 2px dashed rgba(201, 162, 77, 0.3);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: rgba(201, 162, 77, 0.25);
  gap: 0.2rem;
  transition: border-color 0.2s, color 0.2s;
}

.stamp-item--earned {
  border-color: rgba(201, 162, 77, 0.55);
  color: var(--accent);
}

.stamp-item--reward {
  border: 2px solid var(--accent);
  background: rgba(201, 162, 77, 0.07);
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.stamp-item__label {
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  color: var(--accent);
  font-weight: 600;
}

.stamp-note {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 40ch;
  margin: 0 auto;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════
   CONDITIONS LIST
═══════════════════════════════════════════════════════════════ */
.conditions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 540px;
}

.conditions-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.conditions-list li::before {
  content: '—';
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.05em;
}

/* ═══════════════════════════════════════════════════════════════
   GIFT CARD FORM
═══════════════════════════════════════════════════════════════ */
.gf-wrap {
  max-width: 700px;
  margin: 0 auto;
}

.gf-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
}

.gf-success {
  display: none;
  text-align: center;
  padding: 3rem 1.5rem;
}

.gf-success svg {
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.gf-success h3 {
  margin-bottom: 0.6rem;
}

.gf-success p {
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .gf-form {
    grid-template-columns: 1fr;
  }
}
