/* ============================================
   MATURITNÉ OZNAMKÁ — hlavný stylesheet
   Dizajn: živý, farebný, moderný, mobile-first
   Cieľová skupina: maturanti 17–19 rokov
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Fraunces:ital,opsz,wght@0,9..144,600;1,9..144,400&display=swap');

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

:root {
  --c-white:    #ffffff;
  --c-bg:       #faf9f7;
  --c-bg2:      #f3f0ea;
  --c-text:     #1a1820;
  --c-text2:    #5c5870;
  --c-text3:    #9996b0;
  --c-border:   #e8e4de;

  /* Hlavné akcentové farby */
  --c-rose:     #e8436a;     /* živo ružová – CTA, highlight */
  --c-rose-l:   #fde8ee;     /* svetlo ružová – pozadie */
  --c-violet:   #7c3aed;     /* fialová – sekundárna */
  --c-violet-l: #ede9fe;
  --c-gold:     #d4a017;     /* zlatá – prémiové prvky */
  --c-gold-l:   #fdf3d0;
  --c-teal:     #0d9488;     /* tyrkysová – info */
  --c-teal-l:   #ccfbf1;
  --c-peach:    #f97316;     /* oranžová – energia */
  --c-peach-l:  #fff0e6;

  /* Gradienty */
  --grad-hero: linear-gradient(135deg, #fce4ec 0%, #f3e5f5 40%, #e8eaf6 100%);
  --grad-cta:  linear-gradient(135deg, #1a56db 0%, #d4a017 60%, #16a34a 100%);
  --grad-gold: linear-gradient(135deg, #d4a017 0%, #f59e0b 100%);

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  32px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.06);
  --shadow-md:  0 6px 24px rgba(0,0,0,.09);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.12);

  --font-main:  'Plus Jakarta Sans', sans-serif;
  --font-serif: 'Fraunces', Georgia, serif;

  --nav-h: 68px;
  --max-w: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  font-size: 16px;
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }
@media (min-width: 1200px) { .container { padding: 0 40px; } }

/* === TOP BAR === */
.topbar {
  background: var(--c-text);
  color: rgba(255,255,255,.85);
  font-size: 13px;
  padding: 7px 0;
  text-align: center;
}
.topbar a { color: rgba(255,255,255,.85); }
.topbar a:hover { color: #fff; }
.topbar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar-item { display: flex; align-items: center; gap: 5px; }

/* === HEADER / NAV === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;   /* vždy nad mobile menu (98) aj lightboxom (99) */
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
  height: var(--nav-h);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 16px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.2;
}
.logo-text span { color: var(--c-rose); }
.logo-badge {
  font-size: 10px;
  font-weight: 600;
  background: var(--grad-cta);
  color: #fff;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: .03em;
}

/* Nav links */
.nav-links {
  display: none;
  list-style: none;
  gap: 4px;
}
@media (min-width: 960px) { .nav-links { display: flex; } }

.nav-links a {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text2);
  border-radius: var(--radius-sm);
  transition: all .18s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--c-text);
  background: var(--c-rose-l);
}

/* CTA button */
.btn-nav {
  display: none;
  background: var(--grad-cta);
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  transition: opacity .18s, transform .18s;
  white-space: nowrap;
}
@media (min-width: 640px) { .btn-nav { display: block; } }
.btn-nav:hover { opacity: .9; transform: translateY(-1px); }

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
@media (min-width: 960px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all .2s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  /* top sa nastavuje cez JS podľa aktuálnej pozície headeru */
  top: var(--nav-h);
  background: #fff;
  z-index: 98;  /* pod headerom (100) ale nad obsahom */
  padding: 16px 20px 32px;
  flex-direction: column;
  gap: 2px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 4px 24px rgba(0,0,0,.12);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--c-text);
  border-radius: var(--radius-md);
  border-bottom: 1px solid var(--c-border);
  transition: background .15s;
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover { background: var(--c-bg2); }
.mobile-menu .btn-mobile-cta {
  margin-top: 12px;
  background: var(--grad-cta);
  color: #fff;
  text-align: center;
  padding: 15px;
  border-radius: var(--radius-xl);
  font-size: 16px;
  font-weight: 600;
  border-bottom: none;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 26px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: 0 4px 16px rgba(232,67,106,.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,67,106,.35); }
.btn-secondary {
  background: #fff;
  color: var(--c-text);
  border: 1.5px solid var(--c-border);
}
.btn-secondary:hover { border-color: var(--c-rose); color: var(--c-rose); background: var(--c-rose-l); }
.btn-gold {
  background: var(--grad-gold);
  color: #fff;
  box-shadow: 0 4px 16px rgba(212,160,23,.3);
}
.btn-gold:hover { transform: translateY(-2px); }
.btn-outline-rose {
  background: transparent;
  color: var(--c-rose);
  border: 1.5px solid var(--c-rose);
}
.btn-outline-rose:hover { background: var(--c-rose); color: #fff; }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 17px; }

/* === HERO === */
.hero {
  background: var(--grad-hero);
  padding: 60px 0 48px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,67,106,.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,.1) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .hero-inner { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .hero { padding: 80px 0 72px; }
  .hero-inner { grid-template-columns: 55% 45%; gap: 56px; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--c-rose);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1.5px solid var(--c-rose-l);
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-rose);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--c-text);
  margin-bottom: 16px;
}
.hero-title .accent { color: var(--c-rose); font-style: italic; }
.hero-title .accent-gold { color: var(--c-gold); }

.hero-desc {
  font-size: 16px;
  color: var(--c-text2);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-stat { }
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1;
}
.hero-stat-lbl {
  font-size: 12px;
  color: var(--c-text3);
  margin-top: 2px;
}

/* Hero image mosaic */
.hero-images {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 640px) {
  .hero-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
  }
  .hero-img:first-child {
    grid-row: 1 / 3;
  }
}
.hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: transparent;   /* žiadne pozadie */
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: transparent;
}
.hero-img-placeholder {
  display: none !important;  /* placeholder skrytý */
}

/* === SECTION HEADERS === */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-rose);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-title .italic { font-style: italic; color: var(--c-rose); }
.section-subtitle {
  font-size: 16px;
  color: var(--c-text2);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}

/* === SECTIONS === */
.section { padding: 64px 0; }
.section-alt { background: var(--c-bg2); }
.section-white { background: #fff; }

/* === PRODUCT CARDS (homepage teaser) === */
.products-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .products-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }

.product-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .25s;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: var(--c-text);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-card-thumb {
  aspect-ratio: 4/3;
  background: var(--c-bg2);
  overflow: hidden;
  position: relative;
}
.product-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-card-thumb img { transform: scale(1.05); }
.product-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 11px; font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: .03em;
}
.badge-rose { background: var(--c-rose); color: #fff; }
.badge-violet { background: var(--c-violet); color: #fff; }
.badge-gold { background: var(--c-gold); color: #fff; }
.badge-teal { background: var(--c-teal); color: #fff; }
.badge-new { background: var(--c-peach); color: #fff; }

.product-card-body { padding: 18px 20px 20px; }
.product-card-title { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.product-card-desc { font-size: 13px; color: var(--c-text2); line-height: 1.55; margin-bottom: 14px; }
.product-card-link {
  font-size: 13px; font-weight: 600; color: var(--c-rose);
  display: inline-flex; align-items: center; gap: 4px;
}
.product-card-link::after { content: '→'; transition: transform .2s; }
.product-card:hover .product-card-link::after { transform: translateX(4px); }

/* === GALLERY GRID === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 900px)  { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .gallery-grid { grid-template-columns: repeat(1, 1fr); } }

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  aspect-ratio: 3/2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow .2s, border-color .2s;
}
.gallery-item:hover { box-shadow: var(--shadow-md); border-color: var(--c-rose); }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform .3s;
  padding: 4px;
}
.gallery-item:hover img { transform: scale(1.05); }

/* Overlay — zobraziť pri hoveri */
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,10,40,.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .22s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.7rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay-num {
  color: rgba(255,255,255,.85);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.gallery-overlay-order {
  background: #fff;
  color: var(--c-text);
  border: none;
  border-radius: 6px;
  padding: 0.3rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s, color .18s;
  font-family: var(--font-main);
  width: 100%;
}
.gallery-overlay-order:hover { background: var(--c-rose); color: #fff; }

.gallery-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--c-rose-l), var(--c-violet-l));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--c-text3); font-weight: 500;
  text-align: center; padding: 12px;
}

/* === LIGHTBOX === */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(10,8,20,.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lightbox-inner img {
  max-width: 80vw;
  max-height: 72vh;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
  object-fit: contain;
  display: block;
}
.lightbox-close {
  position: absolute;
  top: -2.5rem; right: 0;
  background: none; border: none;
  color: #fff; font-size: 2rem;
  cursor: pointer; line-height: 1;
  transition: opacity .15s;
}
.lightbox-close:hover { opacity: .7; }

.lightbox-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.lightbox-nav button {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  width: 42px; height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background .18s;
}
.lightbox-nav button:hover { background: rgba(255,255,255,.3); }

.lightbox-caption {
  color: rgba(255,255,255,.8);
  font-size: 0.9rem;
  text-align: center;
  min-width: 120px;
}
.lightbox-order-btn {
  background: var(--c-rose);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: 0.65rem 1.6rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 0.9rem;
  transition: background .18s, transform .18s;
}
.lightbox-order-btn:hover { background: #c73059; transform: translateY(-1px); }

/* === GALLERY PAGINATION === */
.gallery-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.gallery-pagination button {
  width: 38px; height: 38px;
  border: 2px solid var(--c-border);
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 0.85rem;
  color: var(--c-text);
  transition: all .18s;
}
.gallery-pagination button:hover { border-color: var(--c-rose); color: var(--c-rose); }
.gallery-pagination button.active { background: var(--c-rose); border-color: var(--c-rose); color: #fff; }

/* Gallery filter tabs */
.gallery-filters {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.filter-btn {
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 13px; font-weight: 500;
  border: 1.5px solid var(--c-border);
  background: #fff; color: var(--c-text2);
  cursor: pointer; transition: all .18s;
}
.filter-btn.active, .filter-btn:hover {
  border-color: var(--c-rose); background: var(--c-rose); color: #fff;
}
  text-align: center; margin-top: 32px;
}

/* === BENEFITS === */
.benefits-grid {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .benefits-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }

.benefit-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow .2s;
}
.benefit-card:hover { box-shadow: var(--shadow-md); }
.benefit-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.benefit-icon-rose { background: var(--c-rose-l); }
.benefit-icon-violet { background: var(--c-violet-l); }
.benefit-icon-gold { background: var(--c-gold-l); }
.benefit-icon-teal { background: var(--c-teal-l); }
.benefit-icon-peach { background: var(--c-peach-l); }
.benefit-title { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.benefit-desc { font-size: 14px; color: var(--c-text2); line-height: 1.6; }

/* === ORDER FORM === */
.order-form-wrap {
  max-width: 760px; margin: 0 auto;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}
@media (max-width: 600px) { .order-form-wrap { padding: 24px 18px; } }

.form-section-title {
  font-family: var(--font-serif);
  font-size: 18px; font-weight: 600;
  color: var(--c-text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--c-border);
}
.form-row {
  display: grid; gap: 16px;
  margin-bottom: 16px;
}
@media (min-width: 560px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 560px) { .form-row-3 { grid-template-columns: 1fr 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--c-text); }
.form-label .req { color: var(--c-rose); margin-left: 2px; }
.form-input, .form-select, .form-textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-md);
  font-size: 14px; color: var(--c-text);
  background: var(--c-bg);
  transition: border-color .18s, box-shadow .18s;
  outline: none;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--c-rose);
  box-shadow: 0 0 0 3px rgba(232,67,106,.12);
  background: #fff;
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-select { cursor: pointer; }
.form-hint { font-size: 12px; color: var(--c-text3); }

/* Honeypot field */
.hp-field { display: none !important; visibility: hidden; }

.form-note {
  background: var(--c-gold-l);
  border: 1px solid rgba(212,160,23,.3);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: 13px; color: var(--c-text2);
  margin-bottom: 20px;
}
.form-note strong { color: var(--c-text); }

.form-submit-row {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap; margin-top: 24px;
}
.form-msg {
  padding: 14px 18px; border-radius: var(--radius-md);
  font-size: 14px; font-weight: 500;
  display: none;
}
.form-msg.success { background: var(--c-teal-l); color: var(--c-teal); display: block; }
.form-msg.error { background: #fee2e2; color: #dc2626; display: block; }

/* === CALCULATOR === */
.calc-wrap {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  max-width: 860px; margin: 0 auto;
}
@media (max-width: 600px) { .calc-wrap { padding: 24px 18px; } }

.calc-grid {
  display: grid; gap: 24px;
  margin-bottom: 28px;
}
@media (min-width: 640px) { .calc-grid { grid-template-columns: 1fr 1fr; } }

.calc-label {
  font-size: 13px; font-weight: 600; color: var(--c-text);
  display: block; margin-bottom: 8px;
}
.calc-result {
  background: linear-gradient(135deg, var(--c-rose-l) 0%, var(--c-violet-l) 100%);
  border: 1.5px solid var(--c-rose);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-top: 20px;
}
.calc-price {
  font-family: var(--font-serif);
  font-size: 40px; font-weight: 600;
  color: var(--c-rose); line-height: 1;
}
.calc-price-sub { font-size: 14px; color: var(--c-text2); margin-top: 6px; }
.calc-breakdown { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(232,67,106,.2); }
.calc-breakdown-row {
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--c-text2);
  padding: 4px 0;
}
.calc-breakdown-row strong { color: var(--c-text); }

/* === CATALOGUE PAGE === */
.catalog-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) { .catalog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 860px) { .catalog-grid { grid-template-columns: repeat(3, 1fr); } }

.catalog-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  display: flex; align-items: center; gap: 16px;
  transition: all .2s;
  text-decoration: none; color: var(--c-text);
  cursor: pointer;
}
.catalog-card:hover { border-color: var(--c-rose); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.catalog-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--c-rose-l);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.catalog-name { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.catalog-desc { font-size: 12px; color: var(--c-text3); }
.catalog-pdf-badge {
  margin-left: auto; flex-shrink: 0;
  background: var(--c-rose-l); color: var(--c-rose);
  font-size: 10px; font-weight: 700;
  padding: 3px 8px; border-radius: 6px;
  letter-spacing: .04em;
}

/* === POHARE PAGE === */
.pohare-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 600px) { .pohare-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .pohare-grid { grid-template-columns: repeat(4, 1fr); } }

.pohare-item {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--c-bg2);
  cursor: pointer;
  transition: all .2s;
  border: 1.5px solid transparent;
}
.pohare-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.pohare-item:hover { border-color: var(--c-teal); box-shadow: var(--shadow-md); }
.pohare-item:hover img { transform: scale(1.06); }

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

.contact-info {
  display: flex; flex-direction: column; gap: 16px;
}
.contact-info-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.contact-info-card h3 { font-size: 14px; font-weight: 600; margin-bottom: 12px; color: var(--c-text2); letter-spacing: .05em; text-transform: uppercase; }
.contact-info-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; padding: 7px 0;
  border-bottom: 1px solid var(--c-border);
}
.contact-info-row:last-child { border-bottom: none; }
.contact-info-icon { font-size: 16px; flex-shrink: 0; }
.contact-info-row a:hover { color: var(--c-rose); }

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: var(--grad-hero);
  padding: 48px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -60px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,67,106,.12) 0%, transparent 65%);
}
.page-hero-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--c-rose);
  margin-bottom: 10px;
}
.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 4vw, 40px); font-weight: 600;
  color: var(--c-text); line-height: 1.2; margin-bottom: 12px;
}
.page-hero-desc {
  font-size: 15px; color: var(--c-text2);
  max-width: 560px; margin: 0 auto 20px;
}
.breadcrumb {
  display: flex; justify-content: center; align-items: center;
  gap: 6px; font-size: 13px; color: var(--c-text3);
  margin-top: 16px;
}
.breadcrumb a:hover { color: var(--c-rose); }
.breadcrumb-sep { color: var(--c-border); }

/* === FOOTER === */
.site-footer {
  background: var(--c-text);
  color: rgba(255,255,255,.75);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-text span { color: var(--c-rose); }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 12px; }

.footer-col h4 {
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  font-size: 14px; color: rgba(255,255,255,.7);
  transition: color .15s;
}
.footer-col a:hover { color: #fff; }

.footer-contact a { display: flex; align-items: center; gap: 8px; }
.footer-contact .contact-icon { font-size: 15px; opacity: .6; }

.footer-bottom {
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }
.footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }

/* === COOKIE NOTICE === */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--c-text);
  color: rgba(255,255,255,.85);
  padding: 16px 20px;
  display: none;
  align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  font-size: 13px;
}
.cookie-bar.show { display: flex; }
.cookie-bar a { color: var(--c-rose); }
.cookie-bar-btns { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-accept {
  background: var(--c-rose); color: #fff;
  border: none; border-radius: 20px;
  padding: 8px 20px; font-size: 13px; font-weight: 600;
  cursor: pointer;
}
.cookie-decline {
  background: transparent; color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px; padding: 8px 16px;
  font-size: 13px; cursor: pointer;
}

/* === BACK TO TOP === */
.back-to-top {
  position: fixed; bottom: 28px; right: 24px;
  width: 44px; height: 44px;
  background: var(--grad-cta);
  color: #fff; font-size: 18px;
  border: none; border-radius: 50%;
  cursor: pointer; box-shadow: var(--shadow-md);
  display: none; align-items: center; justify-content: center;
  transition: transform .2s;
  z-index: 90;
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { transform: translateY(-3px); }

/* === TAGS / CHIPS === */
.tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
.tag {
  font-size: 12px; font-weight: 500;
  padding: 4px 12px; border-radius: 20px;
}
.tag-rose { background: var(--c-rose-l); color: var(--c-rose); }
.tag-violet { background: var(--c-violet-l); color: var(--c-violet); }
.tag-gold { background: var(--c-gold-l); color: var(--c-gold); }
.tag-teal { background: var(--c-teal-l); color: var(--c-teal); }

/* === ALERT / NOTICE BOXES === */
.notice {
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 14px; line-height: 1.6;
  display: flex; gap: 10px; align-items: flex-start;
}
.notice-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.notice-gold { background: var(--c-gold-l); border-left: 3px solid var(--c-gold); color: var(--c-text); }
.notice-rose { background: var(--c-rose-l); border-left: 3px solid var(--c-rose); color: var(--c-text); }
.notice-teal { background: var(--c-teal-l); border-left: 3px solid var(--c-teal); color: var(--c-text); }

/* === DIVIDER === */
.divider { height: 1px; background: var(--c-border); margin: 32px 0; }

/* === RESPONSIVE UTILITIES === */
.hidden { display: none !important; }
.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: block; } }
.hide-desktop { display: block; }
@media (min-width: 768px) { .hide-desktop { display: none; } }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-fadeup { animation: fadeUp .5s ease both; }
.anim-delay-1 { animation-delay: .1s; }
.anim-delay-2 { animation-delay: .2s; }
.anim-delay-3 { animation-delay: .3s; }

/* === PRINT === */
@media print {
  .site-header, .topbar, .site-footer, .back-to-top, .cookie-bar { display: none !important; }
}
