/* ── CUSTOM FONT ── */
@font-face {
  font-family: 'Noteworthy';
  src: url('fonts/Noteworthy-Lt.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ── KURATORNIA SITE STYLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

[data-theme="dark"] {
  --bg: #17252A;
  --bg2: #1c2e34;
  --bg3: #1f343b;
  --surface: #1f3840;
  --surface2: #254048;
  --border-c: rgba(58,175,169,0.12);
  --border2: rgba(58,175,169,0.25);
  --text: #DEF2F1;
  --text2: #8bbfbc;
  --text3: #4a8884;
  --accent: #3AAFA9;
  --accent-dim: rgba(58,175,169,0.15);
  --accent-glow: rgba(58,175,169,0.35);
  --badge-bg: rgba(58,175,169,0.18);
  --badge-text: #6dcfca;
  --card-shadow: 0 1px 3px rgba(0,0,0,0.35), 0 8px 32px rgba(0,0,0,0.3);
  --card-hover-shadow: 0 2px 6px rgba(0,0,0,0.45), 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(58,175,169,0.25);
  --gradient-hero: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(58,175,169,0.15), transparent);
  --noise-opacity: 0.02;
  --cta-text: #FEFFFF;
}

[data-theme="light"] {
  --bg: #DEF2F1;
  --bg2: #c9ecea;
  --bg3: #b4e4e2;
  --surface: #FEFFFF;
  --surface2: #edf8f7;
  --border-c: rgba(43,122,120,0.1);
  --border2: rgba(43,122,120,0.2);
  --text: #17252A;
  --text2: #2B7A78;
  --text3: #5aadaa;
  --accent: #3AAFA9;
  --accent-dim: rgba(58,175,169,0.12);
  --accent-glow: rgba(58,175,169,0.3);
  --badge-bg: rgba(58,175,169,0.14);
  --badge-text: #2B7A78;
  --card-shadow: 0 1px 3px rgba(23,37,42,0.07), 0 8px 32px rgba(23,37,42,0.09);
  --card-hover-shadow: 0 2px 6px rgba(23,37,42,0.1), 0 20px 60px rgba(23,37,42,0.13), 0 0 0 1px rgba(58,175,169,0.25);
  --gradient-hero: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(58,175,169,0.18), transparent);
  --noise-opacity: 0.015;
  --cta-text: #FEFFFF;
}

body {
  font-family: 'Noteworthy', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.4s ease;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: var(--noise-opacity);
  pointer-events: none;
  z-index: 0;
}

.hero-glow {
  position: fixed;
  top: -40vh;
  left: 50%;
  transform: translateX(-50%);
  width: 120vw;
  height: 80vh;
  background: var(--gradient-hero);
  pointer-events: none;
  z-index: 0;
}

nav.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  height: 64px;
  border-bottom: 1px solid var(--border-c);
  background: rgba(222,242,241,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background 0.4s ease, border-color 0.4s ease;
}
[data-theme="dark"] nav.site-nav { background: rgba(23,37,42,0.88); }

.nav-logo {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-logo span { color: var(--accent); }

.nav-center { display: flex; gap: 0.2rem; }
.nav-link {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text2);
  padding: 0.4rem 0.9rem;
  border-radius: 99px;
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}
.nav-link:hover, .nav-link.active { color: var(--text); background: var(--surface2); }

.nav-right { display: flex; align-items: center; gap: 1rem; }

.toggle-btn {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border2);
  background: var(--surface);
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.toggle-btn:hover { border-color: var(--accent); }
.toggle-btn svg { width: 18px; height: 18px; transition: transform 0.4s, opacity 0.3s; position: absolute; }
.icon-sun { color: var(--accent); }
.icon-moon { color: var(--text2); }
[data-theme="dark"] .icon-sun { opacity: 1; transform: rotate(0deg); }
[data-theme="dark"] .icon-moon { opacity: 0; transform: rotate(90deg); }
[data-theme="light"] .icon-sun { opacity: 0; transform: rotate(-90deg); }
[data-theme="light"] .icon-moon { opacity: 1; transform: rotate(0deg); }

.search-wrap {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 99px;
  padding: 0.35rem 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-wrap:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-dim); }
.search-wrap input { background: none; border: none; outline: none; font-family: 'Noteworthy', sans-serif; font-size: 0.82rem; color: var(--text); width: 160px; }
.search-wrap input::placeholder { color: var(--text3); }
.search-wrap svg { width: 14px; height: 14px; color: var(--text3); flex-shrink: 0; }

.hero {
  position: relative; z-index: 1;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 8vw, 6rem);
  text-align: center;
  overflow: hidden;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Noteworthy', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.25rem;
  opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 24px; height: 1px; background: var(--accent); opacity: 0.5;
}
.hero h1 {
  font-family: 'Noteworthy', sans-serif;
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 300; line-height: 1.15; letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero h1 .hero-line { display: block;
margin-bottom: 30px; }
.hero h1 em { font-style: italic; color: var(--accent); font-weight: 300; }
.hero-sub {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--text2);
  max-width: 480px; margin: 0 auto 2.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.9s forwards;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--accent);
  color: var(--cta-text);
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.04em;
  padding: 0.75rem 1.8rem; border-radius: 99px;
  cursor: pointer; border: none;
  opacity: 0; animation: fadeUp 0.8s 1.1s forwards;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: inherit;
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--accent-glow); }
.hero-cta svg { width: 16px; height: 16px; }

.ticker-wrap {
  border-top: 1px solid var(--border-c);
  border-bottom: 1px solid var(--border-c);
  overflow: hidden; padding: 0.75rem 0;
  position: relative; z-index: 1;
}
.ticker { display: flex; gap: 3rem; animation: ticker 80s linear infinite; white-space: nowrap; width: max-content; }
.ticker-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-family: 'Noteworthy', sans-serif;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text3); flex-shrink: 0;
}
.ticker-item .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.section { position: relative; z-index: 1; padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 5vw, 4rem); }
.section-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
.section-label { font-family: 'Noteworthy', sans-serif; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.4rem; }
.section-title { font-family: 'Noteworthy', sans-serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 300; letter-spacing: -0.01em; }
.section-count { font-size: 0.8rem; color: var(--text3); font-family: 'Noteworthy', sans-serif; }

.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; }
.filter-pill {
  font-size: 0.8rem; padding: 0.45rem 1.1rem; border-radius: 99px;
  border: 1px solid var(--border2); background: transparent;
  color: var(--text2); cursor: pointer;
  transition: all 0.2s; font-family: 'Noteworthy', sans-serif;
}
.filter-pill:hover { color: var(--text); border-color: var(--text3); }
.filter-pill.active { background: var(--accent); color: var(--cta-text); border-color: var(--accent); font-weight: 500; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr)); gap: 1.5rem; }
.product-card {
  background: var(--surface);
  border: 1px solid var(--border-c);
  border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column;
  cursor: pointer; position: relative;
  box-shadow: var(--card-shadow);
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1), box-shadow 0.35s cubic-bezier(0.23,1,0.32,1), border-color 0.2s;
}
.product-card:hover { transform: translateY(-6px) scale(1.01); box-shadow: var(--card-hover-shadow); border-color: var(--border2); }
.card-img-wrap { position: relative; background: var(--surface2); aspect-ratio: 4/3; overflow: hidden; border-radius: 16px 16px 0 0; display: flex; align-items: center; justify-content: center; }
.card-img-wrap .ph { width: 100%; height: 100%; object-fit: cover; }
.card-badge {
  position: absolute; top: 12px; left: 12px;
  font-size: 0.68rem; font-family: 'Noteworthy', sans-serif;
  letter-spacing: 0.06em; color: var(--badge-text);
}

.price-row { display: flex; align-items: baseline; gap: 0.4rem; }
.price-badge {
  font-size: 0.78rem; font-family: 'Noteworthy', sans-serif;
  font-weight: 700; color: var(--accent); letter-spacing: 0.03em;
}
.card-rating {
  position: absolute; top: 12px; right: 12px;
  display: flex; align-items: center; gap: 4px;
  font-size: 0.72rem; font-weight: 500;
  background: var(--surface); border: 1px solid var(--border-c);
  border-radius: 99px; padding: 0.25rem 0.6rem; color: var(--text);
  font-family: sans-serif;
}
.star { color: var(--accent); font-size: 10px; }
.stars { color: var(--accent); letter-spacing: 1px; font-size: 0.85rem; line-height: 1; }

.card-body { padding: 1.1rem 1.2rem 1.2rem; display: flex; flex-direction: column; flex: 1; }
.card-cat { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text3); margin-bottom: 0.4rem; font-family: 'Crimson Pro', serif; font-weight: 600; }
.card-title { font-family: 'Crimson Pro', serif; font-size: 1.25rem; font-weight: 600; line-height: 1.2; letter-spacing: 0; margin-bottom: 0.6rem; color: var(--text); transition: color 0.2s; }
.product-card:hover .card-title { color: var(--text); }
.card-desc { font-size: 0.95rem; color: var(--text2); line-height: 1.55; margin-bottom: auto; padding-bottom: 1rem; font-family: 'Crimson Pro', serif; }
.card-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border-c); padding-top: 0.9rem; margin-top: 0.9rem; }
.card-price { display: flex; flex-direction: column; }
.price-current { font-size: 1.3rem; font-weight: 600; letter-spacing: -0.02em; color: #2B7A78; }
.price-normal { color: #2B7A78; }
.price-discount { color: #1a9e4a; }
.price-old { font-size: 0.78rem; color: #e05c5c; text-decoration: line-through; }
.card-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--accent); color: var(--cta-text);
  font-size: 0.78rem; font-weight: 500; padding: 0.55rem 1.1rem;
  border-radius: 99px; transition: transform 0.15s, box-shadow 0.15s;
  border: none; cursor: pointer; font-family: 'Crimson Pro', serif; font-weight: 600; letter-spacing: 0.04em;
}
.card-btn:hover { transform: scale(1.04); box-shadow: 0 4px 16px var(--accent-glow); }
.card-btn svg { width: 13px; height: 13px; }

.banners-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 5rem clamp(1.5rem, 5vw, 4rem) 4rem;
  position: relative; z-index: 1;
}

.banner-float {
  animation: float 6s ease-in-out infinite;
}
.banner-float:nth-child(2) { animation-delay: -3s; }

.featured-banner {
  position: relative;
  border-radius: 20px; 
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border-c);
  display: flex; 
  align-items: stretch;
  height: 380px; /* Set a specific height so they match exactly */
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), box-shadow 0.4s ease;
}
.featured-banner:hover {
  transform: scale(1.025);
  box-shadow: 0 24px 60px var(--accent-glow);
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.banner-content { flex: 1; padding: clamp(1.5rem, 3vw, 2.2rem); display: flex; flex-direction: column; justify-content: center; }
.banner-eyebrow { font-family: 'Noteworthy', sans-serif; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem; }
.banner-title { font-family: 'Noteworthy', sans-serif; font-size: clamp(1.2rem, 2.2vw, 1.75rem); font-weight: 300; line-height: 1.15; margin-bottom: 0.75rem; }
.banner-title em { color: var(--accent); font-style: italic; }
.banner-sub { font-size: 0.82rem; color: var(--text2); max-width: 320px; margin-bottom: 1.1rem; line-height: 1.55; }
.banner-visual {
  flex: 1;
  background: var(--surface2);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.banner-visual-placeholder { width: 100%; height: 100%; object-fit: cover; user-select: none; }

.banner-price-tag {
  display: inline-flex;
  flex-direction: column;
  align-self: flex-start;
  line-height: 1.15;
  gap: 0.05rem;
  margin-bottom: 1.2rem;
}
.banner-price-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: 'Nunito Sans', sans-serif;
}
.banner-price-value {
  font-family: 'Noteworthy', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-top: 4px;
}
.banner-price-old {
  font-family: 'Noteworthy', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #e05c5c;
  text-decoration: line-through;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-top: 3px;
}
.banner-price-new {
  color: #2eab72 !important;
}

@media (max-width: 860px) {
  .banners-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .banner-visual { display: none; }
}

.stats-bar {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px; background: var(--border-c);
  border-top: 1px solid var(--border-c);
  border-bottom: 1px solid var(--border-c);
  position: relative; z-index: 1;
}
.stat-item { background: var(--bg); padding: 2rem; text-align: center; }
.stat-num { font-family: 'Noteworthy', sans-serif; font-size: 2.8rem; font-weight: 300; color: var(--text); line-height: 1; margin-bottom: 0.3rem; }
.stat-num span { color: var(--accent); }
.stat-label { font-size: 0.75rem; color: var(--text3); letter-spacing: 0.08em; text-transform: uppercase; font-family: 'Noteworthy', sans-serif; }

footer { position: relative; z-index: 1; background: var(--bg2); border-top: 1px solid var(--border-c); padding: clamp(1.25rem, 2.5vw, 2rem) clamp(1.5rem, 5vw, 4rem); }
.footer-minimal { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.4rem; max-width: 520px; margin: 0 auto; padding: 0.5rem 0; }
.footer-brand { font-family:'Nunito Sans', sans-serif; font-size: 1.15rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-brand span { color: var(--accent); }
.footer-desc { font-size: 0.78rem; line-height: 1.55; color: var(--text2); }

.footer-faq { max-width: 720px; margin: 1.5rem auto 0; padding: 1.25rem 0 0.5rem; border-top: 1px solid var(--border-c); }
.footer-faq .faq-heading { font-family: 'Noteworthy', sans-serif; font-size: 1.4rem; font-weight: 500; margin-bottom: 0.5rem; text-align: center; }
.footer-faq .faq-item { border-top: 1px solid var(--border-c); }
.footer-faq .faq-item:last-child { border-bottom: 1px solid var(--border-c); }
.footer-faq .faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 0.85rem 0; cursor: pointer; font-family: inherit;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-size: 0.88rem; color: var(--text); font-weight: 500;
}
.footer-faq .faq-q .chev { transition: transform 0.3s; color: var(--accent); flex-shrink: 0; display:flex; }
.footer-faq .faq-q .chev svg { width: 14px; height: 14px; }
.footer-faq .faq-item.open .faq-q .chev { transform: rotate(180deg); }
.footer-faq .faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  font-size: 0.84rem; color: var(--text2); line-height: 1.6;
}
.footer-faq .faq-item.open .faq-a { max-height: 300px; padding: 0 0 0.85rem; }

@media (max-width: 768px) {
  .nav-center { display: none; }
  .search-wrap input { width: 110px; }
}
@media (max-width: 480px) {
  .banner-visual {
  min-height: 300px; display: none; }
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* ── PRODUCT MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: 2rem;
}
.modal-overlay.open { display: flex; animation: overlayFadeIn 0.25s ease forwards; }
@keyframes overlayFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.modal {
  width: 80vw; height: 80vh; max-width: 1400px;
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: 20px; overflow: hidden;
  display: grid; grid-template-columns: 40% 60%;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  animation: modalSlideIn 0.3s cubic-bezier(0.23,1,0.32,1) forwards;
  position: relative;
}
@keyframes modalSlideIn {
  from { opacity: 0; transform: scale(0.94) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 5;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border2);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--text); transition: all 0.2s;
}
.modal-close:hover { background: var(--accent); color: var(--cta-text); border-color: var(--accent); transform: rotate(90deg); }
.modal-close svg { width: 18px; height: 18px; }

.modal-gallery {
  background: var(--surface2);
  overflow-y: auto; overflow-x: hidden;
  padding: 1rem;
  border-right: 1px solid var(--border-c);
  display: flex; flex-direction: column; gap: 0.75rem;
}
.modal-gallery::-webkit-scrollbar { width: 6px; }
.modal-gallery::-webkit-scrollbar-track { background: transparent; }
.modal-gallery::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 99px; }

.gallery-thumb {
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--surface);
  border: 1px solid var(--border-c);
  border-radius: 12px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumb--empty {
  aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center;
  color: var(--text3); font-size: 0.8rem; font-family: 'Noteworthy', sans-serif;
  cursor: default;
}
.gallery-thumb--empty:hover { transform: none; border-color: var(--border-c); box-shadow: none; }
.gallery-thumb:hover { transform: translateY(-3px); border-color: var(--border2); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }

.modal-info { padding: 2.5rem; overflow-y: auto; display: flex; flex-direction: column; gap: 1.25rem; }
.modal-info::-webkit-scrollbar { width: 6px; }
.modal-info::-webkit-scrollbar-track { background: transparent; }
.modal-info::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 99px; }

.modal-cat { font-family: 'Crimson Pro', serif; font-weight: 600; font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); }
.modal-title { font-family: 'Crimson Pro', serif; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.15; letter-spacing: 0; }
.modal-rating-row { display: flex; align-items: center; gap: 0.6rem; font-size: 0.95rem; color: var(--text2); }
.modal-rating-row .stars { font-size: 1.1rem; }
.modal-price-row { display: flex; align-items: baseline; gap: 0.75rem; padding: 1rem 0; border-top: 1px solid var(--border-c); border-bottom: 1px solid var(--border-c); }
.modal-price { font-family: 'Noteworthy', sans-serif; font-size: 2.2rem; font-weight: 700; color: #2B7A78; }
.modal-price.price-normal { color: #2B7A78; }
.modal-price.price-discount { color: #2B7A78; }
.modal-old { font-size: 1rem; color: #e05c5c; text-decoration: line-through; }
.modal-desc { font-size: 1.1rem; color: var(--text2); line-height: 1.75; font-family: 'Crimson Pro', serif; }
.modal-cta { align-self: flex-start; opacity: 0; animation: fadeUp 0.3s 0.2s forwards; }

.faq-section { margin-top: 1rem; }
.faq-heading { font-family: 'Noteworthy', sans-serif; font-size: 1.4rem; font-weight: 400; margin-bottom: 1rem; }
.faq-item { border-top: 1px solid var(--border-c); }
.faq-item:last-child { border-bottom: 1px solid var(--border-c); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1rem 0; cursor: pointer; font-family: inherit;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-size: 0.92rem; color: var(--text); font-weight: 500;
}
.faq-q .chev { transition: transform 0.3s; color: var(--accent); flex-shrink: 0; }
.faq-q .chev svg { width: 16px; height: 16px; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  font-size: 0.88rem; color: var(--text2); line-height: 1.6;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 0 1rem; }

/* Lightbox for enlarged image */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: none; align-items: center; justify-content: center;
  padding: 4rem; cursor: zoom-out; opacity: 0;
  transition: opacity 0.25s;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox-content {
  background: var(--surface);
  border-radius: 20px;
  width: min(80vw, 800px); aspect-ratio: 1/1;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  transform: scale(0.9); transition: transform 0.3s cubic-bezier(0.23,1,0.32,1);
}
.lightbox-content img { width: 100%; height: 100%; object-fit: contain; display: block; }
.lightbox-placeholder { width: 100%; height: 100%; background: var(--surface2); }
.lightbox.open .lightbox-content { transform: scale(1); }

@media (max-width: 768px) {
  .modal { width: 95vw; height: 90vh; grid-template-columns: 1fr; grid-template-rows: 40% 60%; }
  .modal-gallery { border-right: none; border-bottom: 1px solid var(--border-c); }
  .modal-info { padding: 1.5rem; }
}
