:root {
  --bg-main: #0f1115;
  --bg-section: #151821;
  --text-main: #f5f5f5;
  --text-muted: #b8b8b8;
  --accent: #d4b15c;
}
html{
    scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  background: url("/assets/hero-section.webp") center / cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: relative;
  padding: 24px;
  max-width: 720px;

  /* NOWE */
  margin: 0 auto;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
}


.hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}

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

.hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* BUTTONS */

.btn {
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #000;
  flex: 1;
}

.btn.secondary {
  border: 1px solid var(--accent);
  color: var(--accent);
  flex: 1;
}

.btn.ghost {
  color: var(--text-muted);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.setka{
    flex: 100%;
}


/* =========================
   FOTOLUSTRO – NOWOŚĆ
   ========================= */

.feature-mirror {
  background: var(--bg-section);
  padding: 96px 24px;
  overflow: hidden;
  scroll-snap-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.feature-mirror-inner {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.feature-mirror::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(
    to bottom,
    rgba(15,17,21,0),
    rgba(212,177,92,0.08),
    rgba(21,24,33,1)
  );
  pointer-events: none;
}

.feature-mirror.visible {
  opacity: 1;
  transform: translateY(0);
}

/* TREŚĆ */

.feature-content {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.feature-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.feature-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ZDJĘCIA */

.mirror-photo {
  display: flex;
  justify-content: center;
  position: relative;
}

.mirror-photo img {
  width: 100%;
  max-width: 320px;

  background: #fff;
  padding: 12px;

  border-radius: 6px;

  box-shadow:
    0 20px 40px rgba(0,0,0,0.35),
    0 8px 16px rgba(0,0,0,0.25);

  transition: transform 0.3s ease;
}

/* ROTACJE */

.mirror-photo.left img {
  transform: rotate(-4deg);
}

.mirror-photo.right img {
  transform: rotate(3deg);
}

/* HOVER (desktop polish) */

.mirror-photo img:hover {
  transform: rotate(0deg) scale(1.02);
}

/* =========================
   RESPONSIVE – DESKTOP
   ========================= */

@media (min-width: 900px) {
  .feature-mirror-inner {
    grid-template-columns: 1fr 1.2fr 1fr;
  }

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

  .mirror-photo.left {
    justify-content: flex-end;
  }

  .mirror-photo.right {
    justify-content: flex-start;
  }
}

/* =========================
   O MNIE
   ========================= */

.about {
  background: var(--bg-main);
  padding: 96px 24px;
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

/* ZDJĘCIE */

.about-photo {
  display: flex;
  justify-content: center;
}

.about-photo img {
  width: 100%;
  max-width: 320px;

  border-radius: 16px;

  box-shadow:
    0 24px 48px rgba(0,0,0,0.4),
    0 8px 16px rgba(0,0,0,0.25);
}

/* TREŚĆ */

.about-content {
  max-width: 520px;
  margin: 0 auto;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-intro {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 1rem;
}

/* CTA */

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* =========================
   DESKTOP
   ========================= */

@media (min-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr 1.2fr;
  }

  .about-photo {
    justify-content: flex-end;
  }

  .about-content {
    margin-left: 40px;
  }
}

/* =========================
   PORTFOLIO – COLLAPSE
   ========================= */

.portfolio-wrapper {
  position: relative;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

/* 2 rzędy na start */
.portfolio-wrapper.collapsed {
  max-height: 420px; /* mobile – OK */
}

/* pełna wysokość */
.portfolio-wrapper.expanded {
  max-height: 5000px; /* bezpieczny zapas */
}

/* przycisk */

.portfolio-expand {
  margin: 32px auto 0;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.portfolio-expand i {
  font-size: 22px;
  animation: bounce 1.8s infinite;
}

/* animacja strzałki */

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* desktop – więcej miejsca */

@media (min-width: 1200px) {
  .portfolio-wrapper.collapsed {
    max-height: 520px; /* 2 rzędy przy 4–5 kolumnach */
  }
}


/* =========================
   PORTFOLIO
   ========================= */

.portfolio {
  background: var(--bg-section);
  padding: 96px 16px;
}

.portfolio-inner {
    max-width: 1800px;
    /* KLUCZ */
    margin: 0 auto;
    padding: 0 24px;
}


/* HEADER */

.portfolio-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.portfolio-header h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.portfolio-header p {
  color: var(--text-muted);
}

/* GRID */

.portfolio-grid {
  column-count: 1;
  column-gap: 20px;
  position: relative;

  /* 🔥 TO JEST KLUCZ */
  margin: 0 auto;
}



.portfolio-item {
  position: relative;
  margin-bottom: 16px;      /* WIĘCEJ ODDECHU */
  break-inside: avoid;
  cursor: pointer;
  overflow: hidden;
  border-radius: 16px;
}


.portfolio-item img {
  width: 100%;
  display: block;
  border-radius: 14px;
}

/* FADE */

.portfolio-fade {
  position: relative;
  margin-top: -160px;
  height: 160px;
  background: linear-gradient(
    to bottom,
    rgba(21,24,33,0),
    rgba(21,24,33,0.9),
    rgba(21,24,33,1)
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}


.portfolio-fade span {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.portfolio-item img {
  width: 100%;
  display: block;
  border-radius: 16px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* HOVER (desktop only) */
@media (hover: hover) {
  .portfolio-item:hover img {
    transform: scale(1.04);
    box-shadow:
      0 20px 40px rgba(0,0,0,0.35),
      0 8px 16px rgba(0,0,0,0.25);
  }

  .portfolio-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.25),
      rgba(0,0,0,0)
    );
    opacity: 0;
    transition: opacity 0.35s ease;
  }

  .portfolio-item:hover::after {
    opacity: 1;
  }
}


/* =========================
   FEED MODAL
   ========================= */

.feed-modal {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 1000;
}

.feed-wrapper {
  height: 100vh;
  overflow: hidden;

  pointer-events: auto;
}

.feed-slide {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feed-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* LABEL */

.feed-label {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.6);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
}

/* CONTROLS */

.feed-controls {
  position: fixed;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feed-controls button {
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 20px;
  padding: 12px;
  border-radius: 50%;
}

/* CLOSE */

.feed-close {
  position: fixed;
  top: 16px;
  right: 16px;
  font-size: 26px;
  background: none;
  border: none;
  color: white;
}
.feed-controls,
.feed-close {
    pointer-events: auto;
    z-index: 1100;
}

.feed-controls i,
.feed-close i,
.hint-icons i {
  pointer-events: none;
}

.feed-controls i {
  font-size: 18px;
}

.feed-close i {
  font-size: 24px;
}

.hint-icons i {
  font-size: 32px;
  margin: 0 6px;
}

/* =========================
   ONBOARDING
   ========================= */

.feed-hint {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 1100;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hint-box {
  text-align: center;
  color: white;
}

.hint-icons {
  font-size: 36px;
  margin-bottom: 12px;
}

.hidden {
  display: none;
}
@media (min-width: 768px) {
  .portfolio-grid {
    column-count: 3;
  }
}

@media (min-width: 1200px) {
  .portfolio-grid {
    column-count: 4;
  }
}

@media (min-width: 1600px) {
  .portfolio-grid {
    column-count: 5;
  }
}

/* =========================
   PORTFOLIO – EXPAND BUTTON
   ========================= */

.portfolio-expand {
    margin: 48px auto 0;
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;

    opacity: 0.85;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.portfolio-expand:hover {
    opacity: 1;
    transform: translateY(4px);
}

.portfolio-expand i {
    font-size: 42px;
    /* 🔥 DUŻA STRZAŁKA */
    color: var(--accent);
}

.portfolio-expand span {
    font-size: 1rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* =========================
   OPINIE – PREMIUM
   ========================= */

.reviews {
  background: linear-gradient(
    to bottom,
    var(--bg-main),
    #0c0f14
  );
  padding: 110px 24px;
}

.reviews-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.reviews-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.reviews-header h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.reviews-header p {
  color: var(--text-muted);
}

/* GRID */

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

/* KARTA OPINII */

.review-card {
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.04),
      rgba(255,255,255,0.01)
    ),
    var(--bg-section);

  border-radius: 24px;
  padding: 36px 34px;

  box-shadow:
    0 30px 60px rgba(0,0,0,0.35),
    0 10px 24px rgba(0,0,0,0.25);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.45),
    0 14px 32px rgba(0,0,0,0.35);
}

/* GWIAZDKI */

.review-stars {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
}

.review-stars i {
  color: var(--accent);
  font-size: 1.05rem;
}

/* TEKST */

.review-text {
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 26px;
}

/* STOPKA */

.review-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.review-footer strong {
  color: var(--accent);
}

.review-footer span {
  color: var(--text-muted);
}

/* CTA */

.reviews-cta {
  margin-top: 64px;
  text-align: center;
}

/* =========================
   DESKTOP
   ========================= */

@media (min-width: 900px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* =========================
   OPINIE – PREMIUM
   ========================= */

.reviews {
  background: linear-gradient(
    to bottom,
    var(--bg-main),
    #0c0f14
  );
  padding: 110px 24px;
}

.reviews-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.reviews-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.reviews-header h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.reviews-header p {
  color: var(--text-muted);
}

/* GRID */

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

/* KARTA OPINII */

.review-card {
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.04),
      rgba(255,255,255,0.01)
    ),
    var(--bg-section);

  border-radius: 24px;
  padding: 36px 34px;

  box-shadow:
    0 30px 60px rgba(0,0,0,0.35),
    0 10px 24px rgba(0,0,0,0.25);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.45),
    0 14px 32px rgba(0,0,0,0.35);
}

/* GWIAZDKI */

.review-stars {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
}

.review-stars i {
  color: var(--accent);
  font-size: 1.05rem;
}

/* TEKST */

.review-text {
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 26px;
}

/* STOPKA */

.review-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.review-footer strong {
  color: var(--accent);
}

.review-footer span {
  color: var(--text-muted);
}

/* CTA */

.reviews-cta {
  margin-top: 64px;
  text-align: center;
}

/* =========================
   DESKTOP
   ========================= */

@media (min-width: 900px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
   PROCES
   ========================= */

.process {
    background: var(--bg-section);
    padding: 110px 24px;
}

.process-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* HEADER */

.process-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 80px;
}

.process-header h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.process-header p {
    color: var(--text-muted);
}

/* STEPS */

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    position: relative;
}

/* POJEDYNCZY KROK */

.process-step {
    position: relative;
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.04),
            rgba(255, 255, 255, 0.01)),
        var(--bg-main);

    border-radius: 24px;
    padding: 44px 36px 40px;

    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.35),
        0 8px 20px rgba(0, 0, 0, 0.25);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow:
        0 36px 72px rgba(0, 0, 0, 0.45),
        0 14px 32px rgba(0, 0, 0, 0.35);
}

/* NUMER */

.step-number {
    position: absolute;
    top: -22px;
    left: 32px;

    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 600;

    background: var(--accent);
    color: #000;

    padding: 8px 14px;
    border-radius: 999px;
}

/* TEKST */

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 14px;
}

.process-step p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

/* =========================
   DESKTOP – FLOW
   ========================= */

@media (min-width: 900px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }

    .process-step:nth-child(odd) {
        transform: translateY(20px);
    }
}


/* =========================
   OFERTA + KALKULATOR
   ========================= */

.offer {
    background: linear-gradient(to bottom,
            var(--bg-main),
            #0b0e13);
    padding: 120px 24px;
}

.offer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* HEADER */

.offer-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 72px;
}

.offer-lead {
    font-size: 1.6rem;
    margin: 18px 0;
}

.offer-sub {
    color: var(--text-muted);
}

/* KALKULATOR */

.calculator {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

/* MAIN */

.calc-main label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 1rem;
}

.calc-main input {
    padding: 14px 16px;
    border-radius: 12px;
    border: none;
    font-size: 1rem;
}

.calc-result {
    margin-top: 24px;
    background: var(--bg-section);
    padding: 24px;
    border-radius: 18px;
    text-align: center;
}

.calc-result strong {
    display: block;
    font-size: 2rem;
    margin: 10px 0;
}

.calc-note {
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ADDONS */

.calc-addons h3 {
    margin-bottom: 18px;
}

.addon {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.mirror-packages {
    margin: 16px 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mirror-packages small {
    color: var(--text-muted);
    display: block;
}

.mirror-info {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* CTA */

.offer-cta {
    margin-top: 100px;
    text-align: center;
}

.booking-form {
    margin-top: 32px;
    display: grid;
    gap: 14px;
}

.booking-form input {
    padding: 14px;
    border-radius: 12px;
    border: none;
}

/* DESKTOP */

@media (min-width: 900px) {
    .calculator {
        grid-template-columns: 1.2fr 1fr;
        gap: 64px;
    }
}
/* =========================
   OFERTA – NOWY UKŁAD
   ========================= */

.offer {
    background: var(--bg-main);
    padding: 120px 24px;
}

.offer-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 48px;
}

@media (min-width: 900px) {
    .offer-layout {
        grid-template-columns: 1.4fr 1fr;
        align-items: flex-start;
    }
}

/* LEWA KARTA */

.offer-card {
    background: var(--bg-section);
    border-radius: 28px;
    padding: 48px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.offer-intro {
    margin: 16px 0 36px;
    font-size: 1.1rem;
}

/* KROKI */

.calc-step {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
    margin-bottom: 32px;
}

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

/* CENA */

.price-box {
    background: #0c1016;
    border-radius: 18px;
    padding: 24px;
    text-align: center;
}

.price-box strong {
    font-size: 2rem;
    display: block;
}

/* DODATKI */

.addon-mirror {
    padding: 18px;
    border-radius: 16px;
    background: #0c1016;
    cursor: pointer;
}

/* WYBÓR FOTOLUSTRA */

.mirror-select {
    position: relative;
    margin-top: 16px;
}

.mirror-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.mirror-grid button {
    background: #0c1016;
    border-radius: 14px;
    padding: 14px;
    border: none;
    cursor: pointer;
}

.mirror-close {
    position: absolute;
    top: -10px;
    right: -10px;
}

/* WYBRANE */

.mirror-chosen-box {
    margin-top: 18px;
    background: #0f1f14;
    border-radius: 14px;
    padding: 14px;
    color: #7cffb2;
}

/* PRAWA STRONA */

.offer-side h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
}

.booking-form {
    display: grid;
    gap: 12px;
}

.hidden {
    display: none;
}

.calc-block {
    margin-bottom: 48px;
    opacity: 0.25;
    transition: opacity 0.4s ease;
}

.calc-block.active {
    opacity: 1;
}

.calc-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--accent);
}

.guest-picker {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}

.guest-picker input {
    width: 90px;
    font-size: 1.6rem;
    text-align: center;
    background: transparent;
    border: none;
    color: white;
}

.guest-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0c1016;
    border: none;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
}

.price-display {
    margin-top: 18px;
}

.price-display strong {
    font-size: 2.6rem;
    display: block;
}

.addon-tile {
    margin-top: 20px;
    padding: 20px;
    border-radius: 18px;
    background: #0c1016;
    cursor: pointer;
}

.mirror-flyout {
    position: relative;
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.mirror-pack {
    background: #0c1016;
    border-radius: 14px;
    padding: 14px;
    cursor: pointer;
    text-align: center;
}

.addon-selected {
    margin-top: 20px;
    background: #0f1f14;
    padding: 16px;
    border-radius: 14px;
    color: #7cffb2;
}

/* custom checkbox */
.custom-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

.custom-check input {
    display: none;
}

.custom-check span {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: #0c1016;
}

.custom-check input:checked+span {
    background: var(--accent);
}

.addon-tile {
    display: flex;
    justify-content: space-between;
    align-items: center;

    transition:
        background 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.addon-tile:hover {
    transform: translateY(-3px);
}

.addon-tile.active {
    background: linear-gradient(135deg,
            #ffcc00,
            #ffb800);
    color: #000;

    box-shadow:
        0 20px 40px rgba(255, 200, 0, 0.35);
}

.calendar-btn {
    width: 100%;
    margin-top: 40px;
    padding: 18px;
    border-radius: 16px;
    border: none;
    font-size: 1.1rem;
    cursor: not-allowed;

    background: #2a2f38;
    color: #777;
}

.calendar-btn.active {
    background: var(--accent);
    color: #000;
    cursor: pointer;
}

.calendar-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.calendar-box {
    background: #0c1016;
    padding: 36px;
    border-radius: 28px;
    width: 100%;
    max-width: 480px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin: 24px 0;
}

.calendar-day {
    padding: 12px 0;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    background: #1a1f28;
}

.calendar-day.selected {
    background: var(--accent);
    color: #000;
}

.calendar-modal {
    display: none;
}

.calendar-modal.active {
    display: flex;
}

/* =========================
   FOTOLUSTRO – WYBRANY PAKIET
   ========================= */

.mirror-pack {
    transition:
        background 0.35s ease,
        transform 0.25s ease,
        box-shadow 0.35s ease;
}

.mirror-pack.active {
    background: linear-gradient(135deg,
            #ffcc00,
            #ffb800);
    color: #000;

    transform: translateY(-4px);

    box-shadow:
        0 18px 36px rgba(255, 200, 0, 0.35);
}

.final-summary {
    margin-top: 48px;
    padding: 24px;
    border-radius: 18px;
    background: linear-gradient(135deg,
            #0c1016,
            #111826);

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.final-summary span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.final-summary strong {
    font-size: 2.2rem;
    color: var(--accent);
}

/* =========================
   KALENDARZ – HEADER
   ========================= */

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.calendar-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.cal-nav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #1a1f28;
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    transition: background 0.25s ease;
}

.cal-nav:hover {
    background: var(--accent);
    color: #000;
}

/* =========================
   KALENDARZ – DNI
   ========================= */

.calendar-day {
    background: #1a1f28;
    border-radius: 12px;
    padding: 12px 0;
    cursor: pointer;
    transition:
        background 0.25s ease,
        transform 0.2s ease;
}

.calendar-day:hover {
    transform: translateY(-2px);
}

.calendar-day.selected {
    background: linear-gradient(135deg,
            #ffcc00,
            #ffb800);
    color: #000;
}

/* =========================
   INPUTY – AUTORSKIE
   ========================= */

.calendar-form {
    margin-top: 28px;
    display: grid;
    gap: 20px;
}

.input-group {
    position: relative;
}

.input-group input {
    width: 100%;
    padding: 16px 14px;
    border-radius: 14px;
    border: none;
    background: #1a1f28;
    color: white;
    font-size: 1rem;
}

.input-group label {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.85rem;
    color: #aaa;
    pointer-events: none;
    transition: all 0.25s ease;
}

.input-group input:focus+label,
.input-group input:not(:placeholder-shown)+label {
    top: -8px;
    font-size: 0.7rem;
    color: var(--accent);
    background: #0c1016;
    padding: 0 6px;
}

.btn.full {
    width: 100%;
}

.calendar-day.empty {
  background: transparent;
  pointer-events: none;
}

/* =========================
   INTRO OVERLAY
   ========================= */

.intro-overlay {
  position: fixed;
  inset: 0;
  background: #0b0e13;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.9s cubic-bezier(.77,0,.18,1), opacity 0.6s ease;
}

.intro-overlay.hidden {
  animation: slideDown 1s cubic-bezier(.77,0,.18,1) forwards;
}

@keyframes slideDown {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}


/* Animated background */

.intro-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,204,0,0.25), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(255,0,150,0.18), transparent 60%),
    radial-gradient(circle at 50% 90%, rgba(0,200,255,0.15), transparent 60%),
    linear-gradient(135deg, #0b0e13, #141c2b);
  animation: introGlow 10s infinite alternate ease-in-out;
}


@keyframes introGlow {
  from { filter: blur(0px); }
  to { filter: blur(8px); }
}

.intro-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 420px;
  width: 100%;
}

.intro-title {
  font-size: 2rem;
  margin-bottom: 40px;
}

/* Buttons */

.intro-actions {
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: opacity .4s ease;
}

.intro-btn {
    padding: 16px 4px;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

/* Oba przyciski dostają gradientowe tło */
.intro-btn.primary,
.intro-btn.ghost {
    background: linear-gradient(
135deg,
#ffd76a,
#e6a800);
    color: #000;
}

/* subtelne różnice tylko w opacity */
.intro-btn.ghost {
    opacity: 0.9;
}

.intro-btn.fotolustro{
background: linear-gradient(135deg,
            #00d4ff,
            #007cf0);
}
.intro-btn.primary {
    opacity: 1;
}

.intro-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(255, 200, 0, 0.35);
}

/* Code input morph */

.intro-code {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  justify-content: center;
  animation: fadeSlide .4s ease forwards;
  flex-direction: column;
}

.intro-code input, #floatingCodeInput {
  padding: 14px 18px;
  border-radius: 999px;
  border: none;
  background: #1a1f28;
  color: white;
  width: 100%;
  text-align: center;
}

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

.intro-error {
  margin-top: 16px;
  color: #ff4d4d;
  font-size: 0.9rem;
}

.hidden {
  display: none !important;
}

.floating-code-btn {
  position: fixed;
  bottom: 28px;
  left: 28px;
  padding: 16px 24px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg,#ffcc00,#ffb800);
  color: #000;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(255,200,0,0.35);
  transition: transform .25s ease;
  z-index: 50;
}

.floating-code-btn:hover {
  transform: translateY(-4px);
}

.floating-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.floating-box {
  background:
    radial-gradient(circle at 30% 30%, rgba(255,204,0,0.25), transparent 70%),
    radial-gradient(circle at 70% 70%, rgba(0,200,255,0.18), transparent 70%),
    #111826;
  padding: 48px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  max-width: 380px;
}

/* =========================
   DISABLED STATE
========================= */

.input-group.disabled input {
  background: #141821;
  color: #666;
  cursor: not-allowed;
}

.disabled-btn {
  background: #2a2f38 !important;
  color: #777 !important;
  cursor: not-allowed !important;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 12px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .intro-actions {
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: opacity .4s ease;
    width: 90%;
    margin: auto;
}}


@keyframes softPulse {
  0% { box-shadow: 0 0 0 rgba(212,177,92,0); }
  50% { box-shadow: 0 0 40px rgba(212,177,92,0.35); }
  100% { box-shadow: 0 0 0 rgba(212,177,92,0); }
}

.feature-mirror.visible .btn.primary {
  animation: softPulse 1.8s ease-out 0.4s;
}

/* =========================
   FIXED PHONE
========================= */

.phone-fixed {
    position: fixed;
    top: 24px;
    right: 24px;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px 18px;

    border-radius: 999px;

    background: linear-gradient(135deg,
            rgba(255, 204, 0, 0.9),
            rgba(255, 150, 0, 0.9));

    color: #000;
    font-weight: 600;
    text-decoration: none;

    box-shadow:
        0 18px 40px rgba(255, 200, 0, 0.35);

    z-index: 3000;

    transition: all .25s ease;
}

.phone-fixed:hover {
    transform: translateY(-3px);
    box-shadow:
        0 24px 50px rgba(255, 200, 0, 0.45);
}

.phone-fixed i {
    font-size: 0.9rem;
}

/* MOBILE */

@media(max-width:700px) {

    .phone-fixed {
        top: auto;
        bottom: 24px;
        right: 24px;

        padding: 14px 16px;
        font-size: 0.95rem;
    }

}