@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* =============================================================================
   Design tokens (kolory i powtarzalne wartości — jeden punkt prawdy)
   ============================================================================= */
:root {
  --color-navy: #000f52;
  --color-navy-deep: #000730;
  --color-text: #333;
  --color-text-muted: #555;
  --color-accent: #fdb811;
  --color-accent-rgb: 253, 184, 17;
  --accent-soft: #ffce6e;
  --accent-hover: #ffb937;
  --accent-hover-light: #ffd877;
  --color-bg-page: #ffffff;
  --color-bg-soft: #f9f9f9;
  --color-border: #ccc;
  --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.05);
  --radius-pill: 30px;
  --radius-btn: 20px;
  --transition-fast: 0.3s ease;
}

/* =============================================================================
   Base
   ============================================================================= */

/*
 * Poziomy scroll: sekcje full-bleed używają 100vw (szersze niż okno przy pasku
 * przewijania). Nie zmieniamy ich layoutu — tylko blokujemy overflow na html.
 */
html {
  overflow-x: hidden;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: var(--color-bg-page);
    color: var(--color-text);
}

h1 {
    font-weight: 700;
}

h2 {
    font-weight: 700;
    color: #061a63;
    font-size: 25px;
}

.site-header {
    position: relative;
    margin: 15px 16px 0;
    z-index: 1000;
}

/* Pasek konta — nad białym nagłówkiem, bez powiększania boxa menu */
.header-utility-bar {
    display: flex;
    justify-content: flex-end;
    padding: 0 18px 5px;
    background: transparent;
}

.header-utility {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    margin: 0;
    padding: 0;
    font-size: 12px;
    line-height: 1.35;
    letter-spacing: 0.01em;
}

.main-header {
    position: relative;
    border-bottom: none;
    border-radius: 16px;
    margin: 0;
    padding: 12px 18px;
    background-color: #ffffff;
    box-shadow: 0 10px 32px rgba(15, 23, 42, 0.08);
    box-sizing: border-box;
}

header {
    top: 0;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px;
    z-index: 1000;
}

header.main-header {
    padding: 12px 18px;
}

.header-utility-link {
    color: #5c6b7f;
    text-decoration: none;
    font-weight: 500;
    padding: 0;
    border: none;
    background: none;
    border-radius: 0;
    transition: color var(--transition-fast);
}

.header-utility-link:hover {
    color: #061a63;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.header-utility-group {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.header-utility-pulse {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin: 0 0.5em;
    border-radius: 50%;
    background: var(--color-accent);
    vertical-align: middle;
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(253, 184, 17, 0.6);
    animation: home-hero-pulse 2.2s ease-out infinite;
}

.header-utility-group .header-utility-link--account {
    text-shadow:
        0 1px 2px rgba(0, 15, 82, 0.12),
        0 2px 10px rgba(0, 15, 82, 0.08);
}

.header-utility-group .header-utility-link--accent {
    text-shadow: 0 1px 2px rgba(0, 15, 82, 0.1);
}

.header-utility-link--accent {
    color: #5a7aad;
    font-weight: 600;
}

.header-utility-link--accent:hover {
    color: #4a6b9e;
    text-decoration: none;
}

.header-utility-link--account {
    color: #061a63;
    font-weight: 600;
}

.header-utility-link--account:hover {
    color: #000f52;
    text-decoration: none;
}

.header-utility-link--muted {
    color: #555;
}

.header-utility-link--muted:hover {
    color: #061a63;
}

.logo img {
    height: 50px;
}


.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-size: 14px;
    display: flex;
}

.menu ul li {
    gap: 10px;
    display: flex;
    align-items: center;

}

.menu ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    padding: 8px 12px;
    transition: none;
    border-radius: 20px;

}

.menu ul > li:not(.menu-accent-group) > a:hover,
.menu ul > li.menu-has-submenu:hover > a {
    background-color: #061a63;
    border-radius: 20px;
    color: white;
}

.menu ul > li.menu-has-submenu {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: -12px;
}

.menu ul > li.menu-has-submenu::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.menu .menu-submenu {
  list-style: none;
  margin: 0;
  padding: 8px;
  display: none;
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 300px;
  background-color: #fff;
  border: 1px solid rgba(0, 15, 82, 0.12);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 7, 48, 0.15);
  z-index: 1100;
}

.menu .menu-submenu li {
  display: block;
}

.menu .menu-submenu li a {
  display: block;
  border-radius: 10px;
  padding: 9px 12px;
  white-space: nowrap;
  color: #333;
  transition: none;
}

.menu .menu-submenu li a:hover {
  background-color: #f0f2f8;
  color: #061a63;
}

.menu ul > li.menu-has-submenu:hover .menu-submenu,
.menu ul > li.menu-has-submenu:focus-within .menu-submenu {
  display: block;
}

.menu ul li.menu-accent-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.menu ul li.menu-accent-group .menu-accent-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  padding: 8px 18px;
  border-radius: 999px;
  box-sizing: border-box;
  transition: none;
  white-space: nowrap;
}

.menu ul li.menu-accent-group .menu-accent-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1em;
  height: 1.1em;
  font-size: 1em;
  line-height: 1;
  color: var(--color-accent);
  flex-shrink: 0;
}

.menu ul li.menu-accent-group .menu-accent-link--secondary {
  background-color: #ffffff;
  color: #061a63;
  border: 2px solid #d9deea;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.menu ul li.menu-accent-group .menu-accent-link--secondary:hover {
  background-color: #f8f9fc;
  color: #061a63;
  border-color: var(--color-accent);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.menu ul li.menu-accent-group .menu-accent-link--primary {
  background-color: #061a63;
  color: #ffffff;
  border: 2px solid #061a63;
  box-shadow: 0 4px 14px rgba(6, 26, 120, 0.18);
}

.menu ul li.menu-accent-group .menu-accent-link--primary:hover {
  background-color: #051560;
  color: #ffffff;
  border-color: #051560;
  box-shadow: 0 6px 18px rgba(6, 26, 120, 0.22);
}

.menu ul li.menu-accent-group .menu-accent-link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

@media (min-width: 1025px) {
  .menu ul li.menu-accent-group {
    margin-left: auto;
    margin-right: 0;
    padding-inline-start: clamp(20px, 3.5vw, 52px);
  }
}

.footer-col a.footer-menu-accent {
  color: var(--color-accent);
  font-weight: 600;
}

.footer-col a.footer-menu-accent:hover {
  color: var(--accent-hover);
}

main {
    padding: 40px 10px;
}

main:has(.home-hero) {
  padding-top: 8px;
}

main:has(.product-detail) {
  padding-top: 12px;
}

/* CTA "Masz pomysł?" — zniweluj białą lukę pod sekcją (przylega do stopce) */
main:has(.home-premium-cta) {
  padding-bottom: 0;
}

/* Strona weselna: hero na pełną szerokość — bez białych pasów od main */
.page-container main:has(.page-wesela) {
    padding: 0 0 40px;
}


/* CTA — wyśrodkowany tekst; ten sam box (obramowanie 2px u obu — równa wysokość z .dark) */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background-color: var(--color-accent);
  color: #000;
  padding: 12px 24px;
  font-size: 1rem;
  line-height: 1.25;
  border-radius: var(--radius-pill);
  font-weight: bold;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  font-family: inherit;
  transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

button.cta-button {
  appearance: none;
  -webkit-appearance: none;
}

.cta-button:hover,
a.cta-button:hover,
button.cta-button:hover {
  background-color: var(--accent-hover);
  color: #000;
}

.cta-button.dark {
  background-color: transparent;
  border: 2px solid var(--color-accent);
  color: #000;
}

.cta-button.dark:hover,
a.cta-button.dark:hover,
button.cta-button.dark:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: #000;
}

/* Ciemny pas .firm-steps — outline CTA w kolorze akcentu (żółty) */
.firm-steps .cta-button.dark {
  color: var(--color-accent);
}

.firm-steps a.cta-button.dark:hover,
.firm-steps .cta-button.dark:hover {
  color: #000 !important;
}


/* =============================================================================
   Footer — nowoczesny układ (4 kolumny + subgrid menu)
   ============================================================================= */
.site-footer {
  position: relative;
  width: 100%;
  margin-top: 0;
  color: #ffffff;
  background-color: #061a63;
  isolation: isolate;
  text-align: left;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 45px 19px 29px;
}
.footer-columns {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.9fr;
  grid-template-rows: auto 1fr;
  gap: 19px 26px;
  align-items: stretch;
}
.footer-col {
  display: grid;
  grid-row: span 2;
  grid-template-rows: subgrid;
  row-gap: 14px;
  min-width: 0;
}
.footer-col h4 {
  position: relative;
  margin: 0 0 3px;
  padding-bottom: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 22px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
}
.footer-col-heading-link {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer-col-heading-link:hover {
  color: var(--color-accent);
}
.footer-col--brand {
  padding-right: 13px;
}
.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-tagline {
  margin: 0;
  font-size: 0.74rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 42ch;
}
.footer-contact,
.footer-company,
.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 14px;
}
.footer-contact li:last-child {
  margin-bottom: 0;
}
.footer-contact-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.72rem;
}
.footer-contact-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.footer-contact-label {
  display: block;
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.footer-contact-text a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.72rem;
  line-height: 1.45;
  transition: color var(--transition-fast);
}
.footer-contact-text a:hover {
  color: var(--color-accent);
}
.footer-company li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 11px;
  font-size: 0.72rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}
.footer-company li:last-child {
  margin-bottom: 0;
}
.footer-company-label {
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.footer-col--menu .footer-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5px;
  min-height: 100%;
  height: 100%;
}
.footer-menu li {
  margin: 0;
}
.footer-menu a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.74rem;
  line-height: 1.4;
  transition: color var(--transition-fast);
}
.footer-menu a:hover {
  color: var(--color-accent);
}
.footer-bottom {
  background-color: #041247;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 19px;
  margin-top: 0;
}
.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 19px;
}
.footer-copy {
  margin: 0;
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.65);
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin: 0;
}
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.66rem;
  transition: color var(--transition-fast);
}
.footer-bottom-links a:hover {
  color: var(--color-accent);
}
.footer-bottom-sep {
  color: rgba(255, 255, 255, 0.35);
  user-select: none;
}
@supports not (grid-template-rows: subgrid) {
  .footer-col {
    display: block;
    grid-row: auto;
    grid-template-rows: none;
  }
  .footer-col--menu .footer-menu {
    min-height: 0;
    height: auto;
    justify-content: flex-start;
  }
}
@media (prefers-reduced-motion: reduce) {
  .site-footer a,
  .footer-col-heading-link {
    transition: none;
  }
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: #ffffff;
}


.contact-wrapper {
    padding: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}


.contact-box i,
.company-box i {
    margin-right: 8px;
    color: #000f52;
}



.form-section {
    width: 100%;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.form-section form {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px 20px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    border-radius: 15px;


}

.site-messages {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px 0;
}

.form-messages {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 14px;
}

.form-message {
    border-radius: 10px;
    padding: 12px 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.form-message-success {
    background-color: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-message-error {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.form-message-info {
    background-color: #eff6ff;
    color: #1e3a8a;
    border: 1px solid #bfdbfe;
}

.form-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.form-section label {
    width: 100%;
    font-weight: bold;
    margin-top: 10px;

}

.form-section input,
.form-section textarea {
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 1rem;
    min-width: 100%;
    max-width: 100%;
    box-sizing: border-box;

}

.contact-honeypot {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.form-section textarea {
    min-height: 200px;
    width: 100%;
    resize: vertical;
}

.form-section button {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin-top: 10px;
    padding: 12px 30px;
    background-color: var(--color-accent);
    color: #000;
    border: none;
    border-radius: var(--radius-pill);
    font-weight: bold;
    font-size: 1rem;
    line-height: 1.25;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.form-section button:hover {
    background-color: var(--accent-hover);
    color: #000;
}

.map-section {
    padding: 20px;
}

.map-section iframe {
    width: 100%;
    height: 400px;
}


@media (min-width: 768px) {
    .contact-info {
        flex-direction: row;
        justify-content: space-between;
    }

    .contact-box,
    .company-box {
        width: 48%;
    }

    .form-section form {
        max-width: 1000px;
        margin: 0 auto;
    }
}

@media (min-width: 1024px) {
    h2 {
        font-size: 2rem;
    }

    .contact-wrapper {
        padding: 40px;
    }

    .form-section button {
        font-size: 1rem;
    }
}

.carousel-section {
  padding: 40px 0;
  text-align: center;;
}

.carousel-section--events-business {
  position: relative;
  background-color: transparent;
}

.carousel-section--events-business::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 100vw;
  max-width: 100vw;
  transform: translateX(-50%);
  background-color: #f9f9f9;
  z-index: 0;
  pointer-events: none;
}

.carousel-section--events-business > * {
  position: relative;
  z-index: 1;
}

.carousel-container {
  position: relative;
  max-width: 100%;
  margin: 40px auto;
  overflow: hidden;

}


.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.carousel-track-wrapper {
  overflow: hidden;
}

.carousel-item {
  flex: 0 0 auto;
  width: 380px; /* możesz zmienić np. na 280px */
  margin-right: 20px;
  text-align: center;
}

.carousel-item img {
  max-width: 100%;
  width: 100%;
  height: 260px;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .carousel .carousel-item img {
    height: 300px;
  }
}

@media (min-width: 1024px) {
  .carousel .carousel-item img {
    height: 320px;
  }
}


.carousel-text-wrapper {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.team-carousel-section {
  padding: 30px 0 48px;
}

.team-carousel-section h2 {
  text-align: center;
  color: #061a63;
  margin-bottom: 10px;
}

.team-carousel-lead {
  max-width: 860px;
  margin: 0 auto 26px;
  text-align: center;
  color: #374151;
  line-height: 1.68;
}

.team-carousel {
  position: relative;
  padding: 0 56px;
}

.team-carousel-track-wrapper {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  width: 100%;
}

.team-carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.35s ease;
}

.team-card {
  flex: 0 0 calc((100% - 32px) / 3);
  box-sizing: border-box;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 18px 16px 16px;
  box-shadow: 0 8px 20px rgba(6, 26, 99, 0.08);
}

.team-card-avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--color-accent);
  color: #061a63;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.team-card h3 {
  font-size: 1.04rem;
  margin: 0 0 4px;
  color: #111827;
}

.team-card-role {
  margin: 0 0 10px;
  color: #061a63;
  font-weight: 600;
  font-size: 0.93rem;
}

.team-card p {
  margin: 0;
  color: #4b5563;
  line-height: 1.6;
  font-size: 0.94rem;
}

.team-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #000f52;
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.team-carousel-btn-prev {
  left: 8px;
}

.team-carousel-btn-next {
  right: 8px;
}

@media (max-width: 992px) {
  .team-card {
    flex: 0 0 calc((100% - 16px) / 2);
  }
}

@media (max-width: 640px) {
  .team-carousel {
    padding: 0 44px;
  }

  .team-card {
    flex: 0 0 100%;
  }

  .team-carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }
}


.mycg-form-preview {
  padding: 30px 0;
}

.mycg-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.mycg-col {
  flex: 1 1 48%;
  min-width: 280px;
}

.mycg-col label {
  display: block;
  font-weight: bold;
  margin: 15px 0 5px;
}

.mycg-col input,
.mycg-col textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #f9f9f9;
  font-size: 14px;
}

.mycg-col input[type="file"] {
  padding: 4px;
}

.preview-img {
  margin-top: 10px;
  max-width: 100%;
  border-radius: 6px;
  display: block;
}


.fake-file-input {
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #f9f9f9;
  color: #666;
  font-size: 14px;
  width: fit-content;
  cursor: default;
  display: inline-block;
  margin-bottom: 10px;
}


@media (max-width: 768px) {
  .mycg-col {
    flex: 1 1 100%;
  }
}



/* Karuzele ze strzałkami — flex; ikona wyśrodkowana w kole */
.carousel-wrapper-with-arrows {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
}

.carousel-wrapper-with-arrows .carousel-track-wrapper {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0;
  box-sizing: border-box;
}

.carousel-wrapper-with-arrows .carousel-btn {
  position: static;
  top: auto;
  left: auto;
  right: auto;
  transform: none;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  background-color: #000f52;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}

.carousel-wrapper-with-arrows .carousel-btn:hover {
  background-color: #061a63;
}

.carousel-wrapper-with-arrows .carousel-btn i {
  font-size: 1rem;
  line-height: 1;
  display: block;
  pointer-events: none;
}

/* Chevron FA jest lekko asymetryczny — korekta optyczna */
.carousel-wrapper-with-arrows .carousel-prev i {
  transform: translateX(-1px);
}

.carousel-wrapper-with-arrows .carousel-next i {
  transform: translateX(1px);
}

@media (max-width: 640px) {
  .carousel-wrapper-with-arrows {
    gap: 8px;
  }

  .carousel-wrapper-with-arrows .carousel-btn {
    width: 36px;
    height: 36px;
  }

  .carousel-wrapper-with-arrows .carousel-btn i {
    font-size: 0.9rem;
  }
}

.gallery-section {
  background-color: #fdfcfa;
  padding: 60px 20px;
  text-align: center;
}

.gallery-section h2 {
  font-size: 28px;
  margin-bottom: 60px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto 40px;
}

.gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 7px;
  transition: transform 0.3s ease;
  cursor: pointer;
}


.gallery-grid img:hover {
  transform: scale(1.03);
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.calendar-section {
  text-align: center;
  padding: 40px 20px;
}

.calendar-section.calendar-section--embedded {
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 18px;
}

.calendar-section.calendar-section--embedded h2 {
  margin-top: 0;
}

.meeting-guard-note {
  max-width: 820px;
  margin: 8px auto 18px;
  color: #4b5563;
  line-height: 1.65;
}

.calendar-section.calendar-section--embedded .results-section {
  margin-top: 12px;
}

.calendar-section.calendar-section--embedded .results-heading {
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  font-weight: 600;
  line-height: 1.45;
  color: #1f2f6f;
  margin: 0 0 14px;
}

.calendar-section.calendar-section--embedded .meeting-benefits-list {
  margin: 0;
  gap: 14px;
  font-size: 1.04rem;
}

.calendar-section.calendar-section--embedded .meeting-benefits-list li {
  position: relative;
  padding-left: 34px;
  line-height: 1.72;
  align-items: flex-start;
  gap: 0;
}

.calendar-section.calendar-section--embedded .meeting-benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.12em;
  color: var(--color-accent);
  font-weight: 900;
  font-size: 1.08em;
}

.calendar-section-intro {
  max-width: 780px;
  margin: 14px auto 26px;
  line-height: 1.7;
}

.calendar-embed-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 52px auto 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(6, 26, 99, 0.12);
  background-color: #ffffff;
}

.calendar-embed-wrapper iframe {
  display: block;
  width: 100%;
  min-height: 820px;
}

.calendar-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
}

.calendar-btn {
  background-color: #f0f0f0;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 18px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.calendar-grid .day-name {
  font-weight: bold;
  padding: 10px 0;
}

.calendar-grid .day {
  background-color: #d0f0eb;
  padding: 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.calendar-grid .day.inactive {
  background-color: #eeeeee;
  color: #aaaaaa;
  cursor: default;
}

.calendar-grid .day.inactive:hover {
  background-color: #eeeeee;
}

#slots {
  margin-top: 20px;
}

.slot {
  background-color: #ffce6e;
  margin: 10px auto;
  padding: 10px;
  width: 200px;
  border-radius: 5px;
  cursor: pointer;
}

.slot:hover {
  background-color: #ffb937;
}

#signup-form {
  margin-top: 40px;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 7px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

#signup-form h2 {
  margin-bottom: 20px;
}

#signup-form .form-group {
  margin-bottom: 15px;
  text-align: left;
  width: 100%;
}

#signup-form label {
  display: block;
  margin-bottom: 5px;
  width: 100%;
  font-weight: 600;
}

#signup-form input,
#signup-form textarea {
  min-width: 100%;
  max-width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 7px;
}

#signup-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background-color: var(--color-accent);
  color: #000;
  font-weight: bold;
  padding: 12px 24px;
  font-size: 1rem;
  line-height: 1.25;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background-color var(--transition-fast);
  margin-top: 20px;
}

#signup-form button:hover {
  background-color: var(--accent-hover);
  color: #000;
}

.error {
  color: red;
  margin: 10px 0;
  font-size: 14px;
}

.logout-link {
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.format-box {
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  transition: transform 0.2s ease;
}

.format-box:hover {
  transform: scale(1.03);
}

.format-box img {
  max-width: 200px;
  margin-bottom: 15px;
}

.format-box p {
  font-weight: 500;
  color: #222;
}

.formaty-subtext {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
  color: #4b5563;
  font-size: 1.08rem;
  line-height: 1.75;
  font-weight: 400;
}



/* Hero — flat clean layout */
.home-hero {
  position: relative;
  margin: 0 auto;
  padding: clamp(20px, 3.5vw, 48px) 0 clamp(50px, 7vw, 110px);
  background: #fff;
}
.home-hero__bg {
  display: none;
}
.home-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: clamp(28px, 4vw, 72px);
}
.home-hero__content {
  max-width: 620px;
}
.home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-navy);
  background: #fff;
  border: 1px solid rgba(253, 184, 17, 0.45);
  border-radius: 999px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 15, 42, 0.06);
}
@keyframes home-hero-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(253, 184, 17, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(253, 184, 17, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(253, 184, 17, 0);
  }
}
.home-hero__title {
  margin: 0 0 20px;
  font-size: clamp(2.2rem, 4.6vw, 3.7rem);
  line-height: 1.08;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: -0.015em;
}
.home-hero__title-accent {
  position: relative;
  color: var(--color-accent);
  white-space: nowrap;
}
.home-hero__lead {
  margin: 0 0 32px;
  font-size: clamp(1.05rem, 1.35vw, 1.18rem);
  line-height: 1.65;
  color: var(--color-text);
  max-width: 56ch;
}
.home-hero__cta.cta-buttons {
  margin-top: 0;
  justify-content: flex-start;
}
.home-hero__stats {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 0.92rem;
  color: var(--color-text-muted);
}
.home-hero__stats li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.home-hero__stats i {
  color: var(--color-accent);
  font-size: 1rem;
}
.home-hero__media {
  position: relative;
  display: flex;
  justify-content: center;
}
.home-hero__media-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  display: grid;
  place-items: center;
}
.home-hero__media-frame img {
  position: relative;
  width: 100%;
  height: auto;
}
.home-hero__chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-navy);
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.22);
  animation: home-hero-chip-float 4.5s ease-in-out infinite;
}
.home-hero__chip i {
  color: var(--color-accent);
}
.home-hero__chip--top {
  right: 4%;
  top: 4%;
  animation-delay: 0s;
}
.home-hero__chip--bottom {
  left: 4%;
  bottom: 6%;
  animation-delay: -2.2s;
}
@keyframes home-hero-chip-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

/* =============================================================================
   home-stats — pasek dużych liczników (social proof) na ciemnym tle
   ============================================================================= */
.home-stats {
  position: relative;
  color: #fff;
  padding: clamp(48px, 6vw, 80px) 0;
  margin: clamp(32px, 4vw, 56px) 0;
}
.home-stats::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  max-width: 100vw;
  transform: translateX(-50%);
  background-color: var(--color-navy);
  background-image: radial-gradient(circle at 20% 0%, rgba(253, 184, 17, 0.12), transparent 55%),
                    radial-gradient(circle at 90% 100%, rgba(253, 184, 17, 0.08), transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.home-stats > .page-container {
  position: relative;
  z-index: 1;
  background-color: transparent;
}
.home-stats__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
  align-items: stretch;
}
.home-stats__item {
  position: relative;
  text-align: center;
  padding: 8px 16px;
}
.home-stats__item + .home-stats__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
}
.home-stats__number {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: var(--color-accent);
  font-size: clamp(2.5rem, 5.2vw, 3.75rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  margin-bottom: 10px;
}
.home-stats__number strong { font-weight: 700; }
.home-stats__number i {
  font-size: 0.55em;
  margin-right: 2px;
  transform: translateY(-0.15em);
}
.home-stats__number-sub {
  font-size: 0.42em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.home-stats__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.02em;
  line-height: 1.4;
}
@media (max-width: 900px) {
  .home-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .home-stats__item:nth-child(odd) + .home-stats__item::before { display: none; }
  .home-stats__item:nth-child(3)::before { display: none; }
}
@media (max-width: 480px) {
  .home-stats__grid { grid-template-columns: 1fr; gap: 28px; }
  .home-stats__item + .home-stats__item::before { display: none; }
  .home-stats__item + .home-stats__item {
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
}

/* Bento grid — Co tworzymy */
.home-bento {
  padding: clamp(40px, 6vw, 80px) 0;
}
.home-bento__lead {
  text-align: center;
  max-width: 640px;
  margin: -20px auto 40px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}
.home-bento__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.home-bento__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 26px 28px;
  background: #fff;
  border: 1px solid rgba(0, 15, 82, 0.08);
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 18px rgba(0, 15, 82, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.home-bento__card::after {
  display: none;
}
.home-bento__card:hover,
.home-bento__card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 15, 82, 0.14);
  border-color: rgba(253, 184, 17, 0.5);
  outline: none;
}
.home-bento__card:hover::after,
.home-bento__card:focus-visible::after {
  transform: translate(20%, -20%) scale(1.2);
}
.home-bento__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: var(--color-navy);
  color: var(--color-accent);
  font-size: 20px;
}
.home-bento__title {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.3;
}
.home-bento__desc {
  margin: 0 0 18px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text);
  flex: 1;
}
.home-bento__link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease, gap 0.2s ease;
}
.home-bento__card:hover .home-bento__link,
.home-bento__card:focus-visible .home-bento__link {
  color: #061a63;
  gap: 12px;
}
.home-bento__link i {
  font-size: 0.85rem;
}
@media (max-width: 1024px) {
  .home-bento__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .home-bento__grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================================================
   Home — Ideas grid (Pomysły na prezenty) — bento, 4×2 desktop
   ============================================================================= */
.home-ideas {
  padding: clamp(50px, 7vw, 96px) 0;
}
.home-ideas .section-title {
  margin-bottom: 12px;
}
.home-ideas__lead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}
.home-ideas__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}
.home-ideas__card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0, 15, 82, 0.08);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 14px rgba(0, 15, 82, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.home-ideas__card--feature {
  grid-column: span 2;
  grid-row: span 2;
}
.home-ideas__card--wide {
  grid-column: span 2;
}
.home-ideas__media-wrap {
  position: relative;
  flex: none;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 2.5vw, 24px);
  box-sizing: border-box;
  background: linear-gradient(165deg, #f8f9fc 0%, #eef1f8 100%);
}
.home-ideas__card--feature .home-ideas__media-wrap {
  flex: 1;
  aspect-ratio: auto;
  min-height: 0;
  padding: clamp(18px, 3vw, 32px);
}
.home-ideas__card--wide .home-ideas__media-wrap {
  aspect-ratio: 2 / 1;
}
.home-ideas__card img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}
.home-ideas__card:hover,
.home-ideas__card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 15, 82, 0.14);
  border-color: rgba(253, 184, 17, 0.5);
  outline: none;
}
.home-ideas__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #fff;
  color: var(--color-navy);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0, 15, 82, 0.10);
}
.home-ideas__tag i {
  color: var(--color-accent);
  font-size: 0.8rem;
}
.home-ideas__body {
  flex-shrink: 0;
  padding: 14px 18px 16px;
  background: #fff;
}
.home-ideas__title {
  flex-shrink: 0;
  margin: 0;
  padding: 14px 18px 16px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.35;
  background: #fff;
}
.home-ideas__body .home-ideas__title {
  padding: 0;
  background: transparent;
}
.home-ideas__desc {
  margin: 8px 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--color-text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-ideas__card--feature .home-ideas__body {
  padding: 18px 22px 22px;
}
.home-ideas__card--feature .home-ideas__title {
  font-size: 1.25rem;
  padding: 18px 22px 22px;
}
.home-ideas__card--feature .home-ideas__body .home-ideas__title {
  padding: 0;
}
.home-ideas__card--feature .home-ideas__desc {
  font-size: 0.95rem;
  -webkit-line-clamp: 4;
}
.home-ideas__cta {
  margin-top: 36px;
  justify-content: center;
}
@media (max-width: 1024px) {
  .home-ideas__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .home-ideas__card--wide {
    grid-column: span 3;
  }
  .home-ideas__card--wide .home-ideas__media-wrap {
    aspect-ratio: 2.2 / 1;
  }
}
@media (max-width: 700px) {
  .home-ideas__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-ideas__card--feature .home-ideas__title {
    font-size: 1.1rem;
  }
  .home-ideas__card--wide {
    grid-column: span 2;
  }
}
@media (max-width: 460px) {
  .home-ideas__grid {
    grid-template-columns: 1fr;
  }
  .home-ideas__card--feature,
  .home-ideas__card--wide {
    grid-column: auto;
    grid-row: auto;
  }
  .home-ideas__card--feature .home-ideas__media-wrap {
    flex: none;
    aspect-ratio: 1 / 1;
  }
  .home-ideas__card--wide .home-ideas__media-wrap {
    aspect-ratio: 16 / 10;
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-ideas__card,
  .home-ideas__card img { transition: none; }
  .home-ideas__card:hover,
  .home-ideas__card:focus-visible { transform: none; }
  .home-ideas__card:hover img,
  .home-ideas__card:focus-visible img { transform: none; }
}

/* =============================================================================
   Home — Realizations grid (Najnowsze realizacje)
   ============================================================================= */
.home-realizations {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
  padding: clamp(40px, 5vw, 64px) clamp(20px, 4vw, 40px) clamp(48px, 6vw, 80px);
  background: #ffffff;
}
.home-realizations__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  padding: 0 20px;
}
.home-realizations__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #061a63;
  background: #ffffff;
  border: 1px solid rgba(253, 184, 17, 0.5);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 15, 82, 0.06);
}
.home-realizations__eyebrow i {
  color: var(--color-accent);
  font-size: 0.85rem;
}
.home-realizations__title-main {
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.home-realizations__lead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}
.home-realizations__grid {
  margin-top: 40px;
}
.home-realizations .home-ideas__media-wrap {
  background: #fff;
}
.home-realizations__cta {
  margin-top: 48px;
  justify-content: center;
}
.home-realizations__empty {
  grid-column: 1 / -1;
  padding: 72px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1px dashed rgba(0, 15, 82, 0.18);
  border-radius: 20px;
  color: var(--color-text-muted);
  backdrop-filter: blur(6px);
}
.home-realizations__empty i {
  font-size: 2.2rem;
  color: var(--color-accent);
  margin-bottom: 14px;
}
.home-realizations__empty p {
  margin: 0;
  font-size: 1.05rem;
}
.home-realizations .page-container {
  background: transparent !important;
}
@media (max-width: 1024px) {
  .home-realizations__grid {
    margin-top: 32px;
  }
}
@media (max-width: 768px) {
  .home-realizations__grid {
    margin-top: 28px;
  }
  .home-realizations__header {
    margin-bottom: 40px;
  }
}

.benefits {
  background-color: #e0f7f4;
  padding: 80px 20px;
  text-align: center;
  border-radius:8px;
}

.benefits h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #333;
}

.benefit-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.benefit-card {
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  max-width: 280px;
  flex: 1 1 250px;
  transition: transform 0.3s;
}

.benefit-card:hover {
  transform: translateY(-8px);
}

.benefit-card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #00695c;
}

.benefit-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

.process {
  background-color: #fdfcfa;
  padding: 80px 20px;
  text-align: center;
}

.process h2 {
  font-size: 2.8rem;
  margin-bottom: 50px;
  color: #333;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.step {
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  max-width: 250px;
  flex: 1 1 220px;
  position: relative;
  transition: transform 0.3s;
}

.step:hover {
  transform: translateY(-8px);
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: #ffce6e;
  color: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 15px auto;
}

.step h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #00695c;
}

.step p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

.about-section {
  background-color: #fdfcfa;
  padding: 80px 0;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}

.about-text p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #666;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 12px 24px;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-pill);
  background: none;
  color: #000;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: bold;
  text-decoration: none;
  transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.btn-outline:hover {
  background-color: var(--color-accent);
  color: #000;
}

.signing-buttons {
  text-align: center;
  margin-top: 50px;
  gap: 20px;
}

.upcoming-trainings {
  background-color: #e0f7f4;
  padding: 60px 20px;
  text-align: center;
  border-radius: 7px;
}

.upcoming-trainings h2 {
  margin-bottom: 40px;
  font-size: 32px;
}

.trainings-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.training-item {
  background-color: white;
  border-radius: 7px;
  padding: 20px;
  width: 250px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.training-item h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.training-item p {
  margin-bottom: 10px;
  color: #555;
}

.training-item a.cta-button {
  margin-top: 10px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.pagination a {
    text-decoration: none;
    color: #3ba192;
    font-weight: bold;
}

.blog-list-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.blog-entry {
    margin-bottom: 2rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 1.5rem;
}

.blog-image, .blog-detail-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    margin: 1rem 0;
    border-radius: 8px;
}

.read-more, .back-link {
    color: #000f52;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
}

.read-more:hover, .back-link:hover {
    text-decoration: underline;
}

.blog-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    line-height: 1.5rem;
    font-size: 1.1rem;
}

.blog-title {
    font-size: 2rem;
    line-height: 2.2rem;
    margin-bottom: 1.5rem;
    color: #061a63;
}

.blog-content br {
    display: block;
    margin-bottom: 1.5rem;
}

.blog-date {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}


.blog-detail-image {
    max-height: 560px;
    width: auto;
    height: auto;
    max-width: 100%;
    margin-bottom: 2rem;
    border-radius: 12px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


.blog-content {
    margin-bottom: 0.5rem;
    line-height: 1.5;

}

.back-link {
    color:  #000f52;
    text-decoration: none;
    font-weight: bold;
}

.back-link:hover {
    text-decoration: underline;
}


.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.blog-card {
    display: flex;
    height: 100%;
}

.blog-card-inner {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    width: 100%;
}



.blog-card-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.blog-card-title {
    font-size: 1.5rem;
    color: #061a63;
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card-title a {
    text-decoration: none;
    color: inherit;
}

.blog-card-title a:hover {
    text-decoration: underline;
}

.blog-card-excerpt {
    line-height: 1.6;
    font-size: 1rem;
    flex-grow: 1;
}

.blog-card-readmore {
    font-weight: bold;
    color: #000f52;
    text-decoration: none;
    margin-top: auto;
    font-size: 1.2rem;
}

.blog-card-readmore:hover {
    text-decoration: underline;
}

/* Tablety (maks. 1024px) */
@media (max-width: 1024px) {
  header.main-header {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
  }

  header.main-header .menu {
    flex: 1 1 100%;
    order: 3;
  }

  header.main-header .hamburger {
    margin-left: auto;
  }

  .main-header .menu ul.open {
    flex-direction: column;
    gap: 10px;
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .benefit-cards,
  .steps,
  .trainings-list,
  .testimonials-track {
    flex-direction: column;
    align-items: center;
  }

  .about-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .carousel-item {
    flex: 0 0 auto;
  }
}

/* Telefony (maks. 1024) */
@media (max-width: 1024px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .benefit-card,
  .step,
  .training-item {
    max-width: 90%;
  }

  .footer-columns {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    gap: 29px 22px;
  }
  .footer-col {
    display: block;
    grid-row: auto;
    grid-template-rows: none;
    row-gap: 0;
  }
  .footer-col h4 {
    margin: 0 0 4px;
  }
  .footer-col--menu .footer-menu {
    justify-content: flex-start;
    gap: 5px;
    min-height: 0;
    height: auto;
  }
  .footer-col--brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }
  .footer-tagline {
    max-width: 60ch;
  }
  .footer-inner {
    padding: 38px 16px 22px;
  }
  .footer-bottom {
    padding: 14px 16px;
  }
  .footer-bottom-inner {
    justify-content: center;
    text-align: center;
  }

  .contact-wrapper {
    flex-direction: column;
  }

  .about-text p {
    font-size: 16px;
  }

  .carousel-item {
    flex: 0 0 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .calendar-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .calendar-section.calendar-section--embedded {
    padding-left: 12px;
    padding-right: 12px;
  }

  .calendar-section-intro {
    font-size: 0.98rem;
    margin-top: 10px;
    margin-bottom: 18px;
  }

  .calendar-embed-wrapper {
    border-radius: 10px;
  }

  .calendar-embed-wrapper iframe {
    min-height: 700px;
  }
}

@media (max-width: 480px) {
  .calendar-embed-wrapper iframe {
    min-height: 620px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .footer-col--menu .footer-menu {
    gap: 3px;
    align-items: center;
  }
  .footer-col--brand {
    text-align: center;
  }
  .footer-tagline {
    max-width: 100%;
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 6px;
  }
}

/* Hamburger - ukryty na desktopie */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  border: none;
  background: transparent;
  padding: 6px;
  margin: 0;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
}

/* Mobilne menu */
@media (max-width: 1024px) {
  .header-utility-bar {
    padding: 0 12px 4px;
  }

  .header-utility {
    font-size: 11px;
  }

  .main-header {
    position: relative;
  }

  .main-header .menu ul {
    display: none;
    flex-direction: column;
    background-color: #fdfcfa;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .menu ul.open {
    display: flex;
  }

  .menu ul li.menu-accent-group {
    margin-left: 0;
    margin-right: 0;
    margin-top: 22px;
    padding: 12px 20px 8px;
    border-top: 1px solid rgba(0, 15, 82, 0.08);
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
  }

  .menu ul li.menu-accent-group .menu-accent-link {
    width: 100%;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }

  .menu .menu-submenu {
    display: block;
    position: static;
    min-width: 0;
    width: 100%;
    margin: 6px 0 0;
    padding: 0 0 0 8px;
    border: none;
    box-shadow: none;
    background: transparent;
  }

  .menu ul > li.menu-has-submenu {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 0;
    margin-bottom: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .menu ul > li.menu-has-submenu::after {
    display: none;
  }

  .menu .menu-submenu li a {
    white-space: normal;
    padding: 8px 12px;
    font-size: 0.95rem;
  }

  .hamburger {
    display: flex;
  }
}
 /* Zakres od 1025px do 1360px — tablety poziomo / małe laptopy */
 @media (min-width: 1025px) and (max-width: 1360px) {
  .menu ul {
    flex-wrap: wrap;
  }

  .header-utility {
    font-size: 11px;
  }

  .menu ul li {
    margin-left: 10px;
    font-size: 0.9rem;
  }

  .menu ul li.menu-accent-group .menu-accent-link {
    padding: 7px 16px;
    font-size: 11.5px;
  }
}

.product-category {
  position: relative;
  padding: 40px 20px;
  background-color: transparent;
  text-align: center;
  box-sizing: border-box;
}

/* Szaro-kremowe pasy — pełna szerokość okna (treść zostaje w kontenerze strony) */
.product-category.section-light::before,
main > .product-category:nth-child(odd):not(.section-white)::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 100vw;
  max-width: 100vw;
  transform: translateX(-50%);
  background-color: var(--color-bg-soft);
  z-index: 0;
  pointer-events: none;
}

.product-category.section-light,
main > .product-category:nth-child(odd):not(.section-white) {
  background-color: transparent;
}

.product-category.section-white,
main > .product-category:nth-child(even),
main > .product-category.section-white {
  background-color: var(--color-bg-page);
}

.product-category.section-light > *,
.product-category.section-white > *,
main > .product-category > * {
  position: relative;
  z-index: 1;
}

/* Sklep / kategorie — sekcje na pełną szerokość main (bez dodatkowego bocznego paddingu) */
main:has(> .product-category) {
  padding-left: 0;
  padding-right: 0;
}

/* Strona główna: „Jak to działa?” — szare tło na pełną szerokość okna, treść w .page-container */
.business-intro-section--how {
  position: relative;
  background-color: transparent;
  padding: clamp(36px, 5vw, 48px) 20px;
}

.business-intro-section--how::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 100vw;
  max-width: 100vw;
  transform: translateX(-50%);
  background-color: #f9f9f9;
  z-index: 0;
  pointer-events: none;
}

.business-intro-section--how > .page-container {
  position: relative;
  z-index: 1;
  background-color: transparent;
}

.business-intro-section--how .product-category {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background-color: transparent;
}

/* personalizuj-gre: „Jak to działa?” pod listą okazji — szary blok w obrębie kontenera */
.business-intro-section:not(.business-intro-section--how) .product-category {
  width: 100%;
  max-width: 100%;
  margin: 40px 0 0;
  padding: 40px 20px;
  box-sizing: border-box;
}


.product-category h1 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.shop-type-filters-section {
  margin-bottom: 0;
  padding-bottom: 24px;
}

.shop-type-filters-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4px;
}

.shop-type-filters__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 14px;
}

.shop-type-filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.shop-type-filters__active {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
}

.shop-type-filters__pill {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 12px;
  min-height: 48px;
  box-sizing: border-box;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  line-height: 1.25;
  font-weight: 600;
  color: var(--color-navy);
  background: var(--color-bg-soft);
  text-decoration: none;
  border: 1px solid rgba(0, 15, 82, 0.1);
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

@media (max-width: 520px) {
  .shop-type-filters {
    gap: 8px;
  }
  .shop-type-filters__pill {
    font-size: 0.72rem;
    padding: 8px 6px;
    min-height: 44px;
  }
}

.shop-type-filters__pill:hover {
  background: rgba(0, 15, 82, 0.06);
  color: var(--color-navy-deep);
  border-color: rgba(0, 15, 82, 0.18);
}

.shop-type-filters__pill.is-active {
  background: var(--color-navy);
  color: #fff;
  border-color: var(--color-navy);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.product-card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  margin: 0 0 15px;
}

.product-card h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-card h3 {
  font-size: 1rem;
  margin: 10px 0;
}

.product-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
}

.product-card .product-card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0.35rem 0 0.5rem;
}

.product-card .product-short {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.45;
}

.product-description-long {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 40px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.product-description-long h1,
.product-description-long h2 {
  font-size: 1.5rem;
  color: #000f52;
  margin: 1.75rem 0 0.75rem;
  line-height: 1.3;
}

.product-description-long h1:first-child,
.product-description-long h2:first-child {
  margin-top: 0;
}

.product-description-long h3 {
  font-size: 1.2rem;
  color: #061a63;
  margin: 1.5rem 0 0.6rem;
}

.product-description-long p {
  margin: 0 0 1rem;
}

.product-description-long ul,
.product-description-long ol {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
}

.product-description-long li {
  margin-bottom: 0.4rem;
}

.product-description-long strong {
  color: #061a63;
}

.product-description-long a {
  color: #000f52;
  font-weight: 600;
}

.product-description-long a:hover {
  color: var(--color-accent);
}

.certificate-templates-page {
  max-width: 1200px;
  margin: 24px auto 48px;
  padding: 0 16px;
}

.certificate-templates-intro {
  display: block;
  background: transparent;
  padding: 0;
  margin-bottom: 1.75rem;
  text-align: center;
}

.certificate-templates-intro h1 {
  display: block;
  width: 100%;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: #000f52;
  margin: 0 0 0.75rem;
  line-height: 1.2;
  text-align: center;
}

.certificate-templates-intro p {
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #444;
  max-width: 52rem;
}

.certificate-patterns-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}

.certificate-patterns-nav__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 2px solid #000f52;
  color: #000f52;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.certificate-patterns-nav__chip:hover {
  background: #000f52;
  color: #fff;
}

.certificate-patterns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 1.5rem;
}

.certificate-pattern-tile {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 2px solid #dce3ef;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 15, 82, 0.08);
  scroll-margin-top: 96px;
}

.certificate-pattern-tile__head {
  display: block;
  background: linear-gradient(135deg, #000f52 0%, #061a63 100%);
  color: #fff;
  padding: 1.1rem 1.25rem;
  text-align: center;
}

.certificate-pattern-tile__head h2 {
  margin: 0;
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  line-height: 1.35;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: var(--color-accent);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.certificate-pattern-tile__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.35rem 1.25rem 1.5rem;
  text-align: center;
}

.certificate-pattern-line {
  margin: 0;
  line-height: 1.5;
}

.certificate-pattern-line--lead {
  font-size: 0.95rem;
  color: #555;
}

.certificate-pattern-line--name {
  margin: 0.15rem 0 0.65rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: #000f52;
  line-height: 1.25;
}

.certificate-pattern-section-label {
  margin: 0.85rem 0 0.15rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a94a6;
}

.certificate-pattern-line--text {
  font-size: 0.98rem;
  line-height: 1.65;
  color: #333;
  padding: 0.75rem 0.5rem;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px dashed #d5deea;
}

.certificate-pattern-line--meta,
.certificate-pattern-line--commission {
  font-size: 0.98rem;
  font-weight: 600;
  color: #061a63;
}

.certificate-templates-note {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: #f5f7fb;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #555;
}

.certificate-templates-link {
  margin-top: 0;
}

.customization-block .certificate-templates-link {
  margin: 4px 0 20px;
}

.form-preview-field .certificate-templates-link {
  margin-top: 12px;
}

.product-options .certificate-templates-link {
  margin-top: 12px;
}

/* Przyciski sklepu — ten sam żółty akcent co .cta-button (nie pomarańcz #f5a623) */
.btn-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin-top: 10px;
  padding: 12px 24px;
  background-color: var(--color-accent);
  color: #000;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: bold;
  text-decoration: none;
  border-radius: var(--radius-pill);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.btn-action:hover {
  background-color: var(--accent-hover);
  color: #000;
}

.product-detail {
  padding: 20px 20px 48px;
  background-color: #f8f9fb;
}

.product-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.product-image {
  flex: 1;
  min-width: 280px;
}

.product-detail .product-image img.main-image {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: min(560px, 78vh);
  height: auto;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
  border-radius: 8px;
}

.product-detail .product-image img:not(.main-image) {
  border-radius: 8px;
}

.product-info {
  flex: 2;
  min-width: 300px;
}

.product-info h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #000f52;
}

.product-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-accent);
  margin-bottom: 25px;
}

.btn-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background-color: var(--color-accent);
  color: #000;
  padding: 12px 28px;
  font-size: 1rem;
  line-height: 1.25;
  border-radius: var(--radius-pill);
  font-weight: bold;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

a.btn-buy:hover,
.btn-buy:hover {
  background-color: var(--accent-hover);
  color: #000;
}

.delivery-estimate {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0.35rem 0 1.25rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.delivery-estimate__icon {
  flex-shrink: 0;
  margin-top: 0.12rem;
  font-size: 0.95rem;
  color: var(--color-navy);
}

.delivery-estimate__highlight {
  font-weight: 600;
  color: var(--color-navy);
}

.delivery-estimate__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.delivery-estimate__free {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9e3348;
  background: rgba(158, 51, 72, 0.08);
  border: 1px solid rgba(158, 51, 72, 0.22);
  border-radius: 6px;
}

.related-products {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.related-products h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000f52;
}

.related-products .product-card img {
  width: 100%;
  max-height: 320px;
}

.remove-btn {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.8rem;
  color: red;
  text-decoration: underline;
}

.remove-btn:hover {
  color: darkred;
}

.cart-section {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.cart-section table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.cart-section th,
.cart-section td {
    border-bottom: 1px solid #ccc;
    padding: 12px;
    text-align: left;
}

.qty-input {
    width: 60px;
    padding: 4px;
}

.remove-btn {
    color: red;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 5px;
    text-decoration: underline;
    cursor: pointer;
}

.cart-section h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.cart-section p strong {
    font-size: 1.2rem;
}

.cart-section .cart-checkout-btn {
  margin-top: 20px;
}

.account-content .account-form-submit {
  margin-top: 20px;
}

.cart-section .cart-product-variant {
    margin: 6px 0 0;
    font-size: 0.9rem;
    color: var(--color-text-muted, #555);
}

.cart-section .cart-physical-details {
    margin: 8px 0 0;
    padding-left: 1.2rem;
    font-size: 0.9rem;
}

.cart-section .update-form {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    width: auto;
    max-width: none;
}

.cart-section .btn-update {
    display: inline-block;
    width: auto;
    max-width: none;
    background-color: var(--color-accent);
    color: #000;
    border: none;
    padding: 4px 10px;
    font-size: 0.75rem;
    line-height: 1.2;
    border-radius: var(--radius-pill);
    cursor: pointer;
    font-weight: 600;
    transition: background-color var(--transition-fast);
}

.cart-section .btn-update:hover {
    background-color: var(--accent-hover);
    color: #000;
}

/* =============================================================================
   Checkout — zamówienie
   ============================================================================= */

.checkout-section {
  padding: 2.5rem 1.25rem 4rem;
  background: linear-gradient(180deg, #f4f6fb 0%, var(--color-bg-page) 280px);
}

.checkout-layout {
  max-width: 680px;
  margin: 0 auto;
}

.checkout-header {
  margin-bottom: 1.75rem;
  text-align: center;
}

.checkout-header h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--color-navy);
}

.checkout-header__lead {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.checkout-error {
  margin: 0 0 1rem;
  padding: 0.875rem 1rem;
  border-radius: 10px;
  background: #fef3f2;
  border: 1px solid #fecdca;
  color: #b42318;
  font-size: 0.95rem;
  line-height: 1.45;
}

.checkout-card {
  margin: 0;
  padding: 1.35rem 1.35rem 1.5rem;
  border: 1px solid #e4e8ef;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.checkout-card__title {
  display: block;
  width: 100%;
  margin: 0 0 0.35rem;
  padding: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.3;
}

.checkout-card__lead {
  margin: 0 0 1.15rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.checkout-card__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}

.checkout-field--flush {
  margin-top: -0.25rem;
}

.checkout-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.35;
}

.checkout-form input[type="text"],
.checkout-form input[type="email"],
.checkout-form input[type="tel"],
.checkout-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.72rem 0.9rem;
  border: 1px solid #d5dbe6;
  border-radius: 10px;
  background: #fff;
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.4;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.checkout-form input::placeholder,
.checkout-form textarea::placeholder {
  color: #9aa3b2;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
  outline: none;
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(0, 15, 82, 0.1);
}

.checkout-form textarea {
  resize: vertical;
  min-height: 110px;
}

.checkout-form__row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
}

.checkout-choice-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.checkout-choice {
  display: block;
  cursor: pointer;
}

.checkout-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkout-choice__box {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  height: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid #e4e8ef;
  border-radius: 12px;
  background: #fafbfd;
  transition: border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}

.checkout-choice__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-navy);
}

.checkout-choice__hint {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.35;
}

.checkout-choice input:checked + .checkout-choice__box {
  border-color: var(--color-navy);
  background: #f0f4ff;
  box-shadow: 0 0 0 1px var(--color-navy);
}

.checkout-choice input:focus-visible + .checkout-choice__box {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.checkout-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--color-text);
}

.checkout-checkbox input {
  flex-shrink: 0;
  width: 1.05rem;
  height: 1.05rem;
  margin: 0.15rem 0 0;
  accent-color: var(--color-navy);
}

.checkout-subsection {
  margin-bottom: 1rem;
  padding-top: 0.25rem;
  border-top: 1px solid #eef1f6;
}

.checkout-recipient-toggle {
  margin: 1rem 0 0.75rem;
}

.checkout-recipient-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.75rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e4e8ef;
}

.checkout-recipient-fields[hidden] {
  display: none !important;
}

.checkout-recipient-fields__hint {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

.checkout-delivery-badge {
  display: inline-block;
  margin-bottom: 1rem !important;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #ecfdf3;
  color: #067647;
  font-size: 0.85rem !important;
  font-weight: 600;
}

.checkout-alert {
  margin: 0 0 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  font-size: 0.9rem;
  line-height: 1.45;
}

.checkout-alert--info {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
}

.checkout-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-locker-panel[hidden],
.checkout-courier-panel[hidden],
.checkout-courier-address[hidden],
.checkout-delivery-same-invoice[hidden],
.checkout-company-fields[hidden] {
  display: none !important;
}

.checkout-company-fields {
  padding-top: 0.25rem;
  border-top: 1px solid #eef1f6;
}

.checkout-locker-selected {
  margin: 0;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  background: #ecfdf3;
  border: 1px solid #abefc6;
  font-size: 0.92rem;
  line-height: 1.45;
  color: #067647;
}

.checkout-geowidget-wrap {
  min-height: 380px;
  max-height: 480px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #d5dbe6;
  background: #fafbfd;
}

.checkout-geowidget-wrap inpost-geowidget {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
}

.checkout-geowidget-missing {
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: #fff8eb;
  border: 1px solid #fedf89;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #7a2e0e;
}

.checkout-courier-address {
  padding-top: 0.25rem;
}

.checkout-actions {
  padding-top: 0.25rem;
}

.checkout-submit {
  display: block;
  width: 100%;
  padding: 0.95rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-btn);
  cursor: pointer;
}

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

@media (max-width: 640px) {
  .checkout-section {
    padding: 1.5rem 1rem 3rem;
  }

  .checkout-card {
    padding: 1.1rem 1rem 1.25rem;
  }

  .checkout-choice-list {
    grid-template-columns: 1fr;
  }

  .checkout-form__row {
    grid-template-columns: 1fr;
  }

  .checkout-geowidget-wrap {
    min-height: 340px;
    max-height: 400px;
  }

  .checkout-geowidget-wrap inpost-geowidget {
    min-height: 340px;
  }
}

.firm-wrapper {
  padding: 60px 20px;
}

.firm-wrapper h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #061a63;
}

.firm-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* maks. 3 kolumny */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

@media (max-width: 992px) {
  .firm-benefits-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 kolumny na tabletach */
  }
}

@media (max-width: 600px) {
  .firm-benefits-grid {
    grid-template-columns: 1fr; /* 1 kolumna na telefonach */
  }
}

/* Wesela i imprezy — 4 kafelki w jednym rzędzie (desktop) */
.page-wesela .firm-benefits-grid--4-cols {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 992px) {
  .page-wesela .firm-benefits-grid--4-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .page-wesela .firm-benefits-grid--4-cols {
    grid-template-columns: 1fr;
  }
}


.benefit-box {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 15, 82, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 44px rgba(0, 15, 82, 0.11);
}

.benefit-box > i {
  font-size: 32px;
  margin-bottom: 15px;
  color: #000f52;
}

.benefit-box h4 {
  color: #061a63;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.benefit-box p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Kafelki „Dla kogo?” — jak menu-accent-link, nieco mniejsze */
.benefit-box .tile-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 12px;
  padding: 10px 21px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  border-radius: 999px;
  box-sizing: border-box;
  white-space: nowrap;
  vertical-align: middle;
  transition: none;
}

.benefit-box .tile-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15em;
  height: 1.15em;
  font-size: 1.05em;
  line-height: 1;
  color: var(--color-accent);
  flex-shrink: 0;
}

.benefit-box .tile-link__icon i {
  font-size: inherit;
  margin: 0;
  color: var(--color-accent);
  line-height: 1;
}

.benefit-box .tile-link--secondary {
  background-color: #ffffff;
  color: #061a63;
  border: 2px solid #d9deea;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.benefit-box .tile-link--secondary:hover {
  background-color: #f8f9fc;
  color: #061a63;
  border-color: var(--color-accent);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  text-decoration: none;
}

.benefit-box .tile-link--primary {
  background-color: #061a63;
  color: #ffffff;
  border: 2px solid #061a63;
  box-shadow: 0 4px 14px rgba(6, 26, 120, 0.18);
}

.benefit-box .tile-link--primary:hover {
  background-color: #051560;
  color: #ffffff;
  border-color: #051560;
  box-shadow: 0 6px 18px rgba(6, 26, 120, 0.22);
  text-decoration: none;
}

.benefit-box .tile-link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.page-wesela .benefit-box {
  padding: 26px 14px 10px;
}


.firm-steps {
 background-color: #000f52;
 margin-top: 70px;
 margin-bottom: 60px;
 padding: 70px;
 border-radius: 15px;
}

.firm-steps.individual {
 background-color: #f9f9f9;
}

.firm-steps h2 {
  color: #ffffff;
}

.firm-steps .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  flex-wrap: wrap; /* opcjonalnie – jeśli chcesz, by przyciski zawijały się na małych ekranach */
}

/* /dla-firm/ — granat na całą szerokość okna; treść w .page-container (jak testimonials--home-fullbleed) */
.firm-steps.firm-steps-b2b-flow {
  position: relative;
  background-color: transparent;
  padding: 0;
  border-radius: 0;
}

.firm-steps.firm-steps-b2b-flow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw;
  background-color: #000f52;
  z-index: 0;
  pointer-events: none;
}

.firm-steps.firm-steps-b2b-flow .firm-steps-b2b-flow-inner.page-container {
  position: relative;
  z-index: 1;
  background-color: transparent;
  padding-top: clamp(48px, 6vw, 70px);
  padding-bottom: clamp(44px, 5vw, 60px);
}

/* /dla-firm/ — zdjęcie pod „Jak wygląda współpraca?” (białe tło, treść w kontenerze) */
.b2b-cooperation-photo-section {
  background-color: #ffffff;
  padding: clamp(32px, 5vw, 56px) 0;
}

.b2b-cooperation-photo-section .page-container {
  background-color: #ffffff;
}

.b2b-cooperation-photo {
  display: block;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  height: auto;
  border-radius: 12px;
}

/* /dla-firm/ — 5 kafelków (3 + 2), w obrębie kontenera (jak układ na wesela-i-imprezy) */
.firm-steps.firm-steps-b2b-flow h2 {
  text-align: center;
  margin-bottom: 40px;
}

@media (min-width: 993px) {
  .firm-steps.firm-steps-b2b-flow .step-boxes {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .firm-steps.firm-steps-b2b-flow .step-box:nth-child(1) {
    grid-column: 1 / 3;
  }

  .firm-steps.firm-steps-b2b-flow .step-box:nth-child(2) {
    grid-column: 3 / 5;
  }

  .firm-steps.firm-steps-b2b-flow .step-box:nth-child(3) {
    grid-column: 5 / 7;
  }

  .firm-steps.firm-steps-b2b-flow .step-box:nth-child(4) {
    grid-column: 2 / 4;
  }

  .firm-steps.firm-steps-b2b-flow .step-box:nth-child(5) {
    grid-column: 4 / 6;
  }
}

@media (max-width: 992px) {
  .firm-steps.firm-steps-b2b-flow .step-boxes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
    margin: 0 auto;
  }

  .firm-steps.firm-steps-b2b-flow .step-box:nth-child(n) {
    grid-column: auto;
  }

  .firm-steps.firm-steps-b2b-flow .step-box:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  .firm-steps.firm-steps-b2b-flow .step-boxes {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .firm-steps.firm-steps-b2b-flow .step-box:nth-child(5) {
    grid-column: auto;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
}

.firm-steps.firm-steps-b2b-flow .step-box {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.firm-steps.firm-steps-b2b-flow .step-box p {
  flex: 1 1 auto;
  margin: 0;
}

.firm-steps.firm-steps-b2b-flow .step-box p strong {
  display: block;
  padding-bottom: 2px;
}

.firm-steps.firm-steps-b2b-flow .step-icon {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 2.25rem;
}

.firm-steps.firm-steps-b2b-flow .step-box .success-icon {
  color: #f5c518;
}

.step-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 kafelki w rzędzie */
  gap: clamp(20px, 2.5vw, 28px);
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}

.step-box {
  background-color: #ffffff;
  border-radius: 25px;
  padding: clamp(18px, 2.2vw, 26px) clamp(16px, 2vw, 22px) clamp(20px, 2.4vw, 28px);
  text-align: center;
  color: #333;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);

}

.step-box span {
  font-size: 2rem;
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000f52;
}

.step-box .step-box-lead {
  font-weight: 700;
  margin: 0 0 0.45rem;
  line-height: 1.35;
  color: #1a2244;
}

.step-box .step-box-desc {
  font-weight: 400;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #444;
}

.step-box .step-icon,
.step-box .success-icon {
  margin-top: 1.1rem;
  margin-bottom: 2px;
  display: inline-block;
}

.how-tabs-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 auto 28px;
  max-width: 1100px;
}

.how-tabs-hint {
  text-align: center;
  color: #1f2f6f;
  margin: 0 auto 16px;
  max-width: 680px;
  font-size: 1rem;
}

.how-tabs-current {
  text-align: center;
  color: #061a63;
  margin: -10px auto 22px;
  font-size: 0.96rem;
  font-weight: 500;
}

.how-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(6, 26, 99, 0.25);
  background: #fff;
  color: var(--color-navy);
  font-size: 0.90rem;
  font-weight: 300;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.22s ease, color 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.how-tab__icon {
  color: var(--color-navy);
  font-size: 0.95em;
  line-height: 1;
  flex-shrink: 0;
}

.how-tab:hover {
  background: #f5f8ff;
  border-color: rgba(6, 26, 99, 0.42);
  transform: translateY(-1px);
}

.how-tab.is-active {
  background: var(--color-navy);
  color: #fff;
  border-color: var(--color-navy);
  font-weight: 700;
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(6, 26, 99, 0.22);
}

.how-tab.is-active .how-tab__icon {
  color: #fff;
}

.how-tab:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

.how-tabs-content.is-switching {
  opacity: 0;
  transform: translateY(8px);
}

.how-tabs-content {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.how-tabs-cta {
  margin-top: 30px;
}

.how-tabs-cta.is-switching {
  opacity: 0;
  transform: translateY(6px);
}

.how-tabs-cta {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.step-icon {
  font-size: 40px;
  color: #000f52;
  margin-bottom: 10px;
}

.success-icon {
  color: var(--color-accent);
  font-size: 40px;
  margin-bottom: 10px;
}


/* Responsywność – układ 2 kolumny */
@media (max-width: 992px) {
  .step-boxes {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Strzałki między kafelkami w 2-kolumnowym układzie */
  .step-box::after {
    content: none;
  }
}

/* 1 kolumna na telefonie */
@media (max-width: 600px) {
  .step-boxes {
    grid-template-columns: 1fr;
  }

  .how-tab {
    width: 100%;
    max-width: 420px;
    text-align: center;
  }
}





.firm-cta {
  text-align: center;
  margin: 60px auto;
}

.firm-cta p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 20px;
}

.firm-faq {
  max-width: 900px;
  margin: 0 auto;
  margin-top: 80px;
}

.firm-faq details {
  background-color: #f9f9f9;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.firm-faq summary {
  font-size: 1rem;
  color: #061a63;
}

.firm-faq p {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #333;
}

.firm-faq h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  font-size: 20px;
  color: var(--color-navy);
  padding-left: 15px;
}

.firm-faq__icon {
  color: var(--color-navy);
  font-size: 0.95em;
  line-height: 1;
  flex-shrink: 0;
}

/* =============================================================================
   Premium CTA — sekcja "Masz pomysł?" nad stopką
   ============================================================================= */
.home-premium-cta {
  position: relative;
  margin: 80px auto 0;
  background: transparent;
  isolation: isolate;
}
.home-premium-cta::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 100vw;
  max-width: 100vw;
  transform: translateX(-50%);
  background:
    radial-gradient(720px 320px at 15% 0%, rgba(var(--color-accent-rgb), 0.18), transparent 60%),
    radial-gradient(620px 360px at 90% 110%, rgba(99, 110, 220, 0.22), transparent 60%),
    linear-gradient(180deg, #0a2278 0%, #061a63 60%, #04144f 100%);
  z-index: 0;
  pointer-events: none;
}
.home-premium-cta::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(1100px, 92vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent 0%, rgba(var(--color-accent-rgb), 0.55) 50%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.home-premium-cta__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) clamp(24px, 4vw, 56px);
  text-align: center;
  position: relative;
  z-index: 2;
}
/* Dekoracyjny "eyebrow" chip nad tytułem */
.home-premium-cta__inner::before {
  content: "✦  Bezpłatna konsultacja";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 8px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(var(--color-accent-rgb), 0.10);
  border: 1px solid rgba(var(--color-accent-rgb), 0.45);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}
/* Subtelny świecący punkt w tle */
.home-premium-cta__inner::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 520px;
  height: 520px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(var(--color-accent-rgb), 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.home-premium-cta h2 {
  color: #ffffff;
  margin: 0 auto 16px;
  max-width: 22ch;
  font-size: clamp(1.9rem, 3.4vw, 2.65rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.home-premium-cta p {
  color: rgba(232, 236, 255, 0.78);
  margin: 0 auto;
  max-width: 62ch;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.7;
}
.home-premium-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 36px;
}
.home-premium-cta__buttons .cta-button {
  padding: 14px 28px;
  font-size: 0.98rem;
  background-color: var(--color-accent);
  border-color: transparent;
  box-shadow: none;
  transition: background-color var(--transition-fast),
              color var(--transition-fast),
              transform var(--transition-fast);
}
.home-premium-cta__buttons .cta-button:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: none;
}
/* Wariant outline na ciemnym tle */
.home-premium-cta__buttons .cta-button.dark {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.55);
  color: #ffffff;
  box-shadow: none;
}
.home-premium-cta__buttons .cta-button.dark:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #061a63 !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}
@media (max-width: 600px) {
  .home-premium-cta__buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .home-premium-cta__buttons .cta-button {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-premium-cta__buttons .cta-button {
    transition: none;
  }
  .home-premium-cta__buttons .cta-button:hover {
    transform: none;
  }
}


.business-intro-section {
  padding: 20px 20px;
}

/* Padding wokół „Na jaką okazję?" na home — żeby nie sklejała się z sąsiednimi sekcjami */
.business-intro-section:has(.home-occasions) {
  padding: clamp(40px, 5vw, 64px) 0;
}

/* Occasions list — pills with icons */
.home-occasions {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 20px;
}
.home-occasions li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid rgba(0, 15, 82, 0.08);
  border-radius: 12px;
  font-size: 1rem;
  color: var(--color-text);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.home-occasions--rich li {
  align-items: flex-start;
  padding: 16px 18px;
}
.home-occasions li:hover {
  border-color: rgba(253, 184, 17, 0.6);
  transform: translateY(-2px);
}
.home-occasions li i {
  flex-shrink: 0;
  font-size: 21px;
  color: var(--color-accent);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(253, 184, 17, 0.12);
  border-radius: 50%;
}
.home-occasions--rich li i {
  margin-top: 2px;
}
.home-occasions__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.home-occasions__copy strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.35;
}
.home-occasions__copy p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}
@media (max-width: 900px) {
  .home-occasions {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .home-occasions {
    grid-template-columns: 1fr;
  }
}

.section-title {
  text-align: center;
  color: #061a63;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.business-intro-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

.business-text {
  flex: 1 1 500px;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.7;
  text-align: justify;
}

.business-image {
  flex: 1 1 500px;
  text-align: center;
}

.business-image img {
  max-width: 90%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.business-image img.b2b-hero-image {
  box-shadow: none;
}

.individual-image {
  flex: 1 1 500px;
  text-align: center;
}

.individual-image img {
  max-width: 90%;

}


.cta-buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}

@media (max-width: 768px) {
  .business-intro-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .cta-buttons {
    justify-content: center;
  }

  .home-hero__cta.cta-buttons {
    justify-content: flex-start;
  }
}

/* Hero intro (strona główna, /dla-firm/) — mniejszy padding, ta sama wysokość pary */
.b2b-hero-cta-buttons {
  gap: 12px;
  align-items: stretch;
}

.b2b-hero-cta-buttons .cta-button,
.b2b-hero-cta-buttons .cta-button.dark {
  padding: 10px 18px;
  min-height: 44px;
}

.product-info > .btn-buy,
.product-info > .cta-button,
.product-info > button.cta-button {
  margin-right: 12px;
  margin-bottom: 10px;
}

/* Moje konto — kompaktowe CTA (nie hero 44px / 12px 24px) */
.account-wrapper .cta-button,
.account-wrapper .cta-button.dark,
.account-wrapper button.cta-button {
  padding: 7px 14px;
  font-size: 0.875rem;
  line-height: 1.3;
  font-weight: 600;
  min-height: 0;
}

.account-wrapper .b2b-hero-cta-buttons .cta-button,
.account-wrapper .b2b-hero-cta-buttons .cta-button.dark {
  padding: 7px 14px;
  min-height: 0;
}

.account-wrapper .cta-button.small,
.account-wrapper .cta-button.dark.small {
  padding: 5px 10px;
  font-size: 0.8125rem;
}

.account-wrapper .account-inline-actions,
.account-wrapper .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}

.account-wrapper .order-table .cta-button,
.account-wrapper .account-inline-actions .cta-button {
  margin: 0;
}

.account-wrapper .order-table .cta-button {
  white-space: nowrap;
}

.account-wrapper .customization-block .cta-buttons {
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 12px;
  gap: 10px;
}

.account-wrapper .offer-card .cta-buttons {
  justify-content: center;
}

@media (max-width: 768px) {
  .b2b-hero-cta-buttons {
    flex-wrap: wrap;
  }
}

.firm-benefits-list {
  list-style: none;
  padding-left: 0;
  margin: 40px 40px;
  font-size: 1.2rem;
  color: #333;
  display: grid;
  gap: 30px;
}

.firm-benefits-list.two-columns {
  grid-template-columns: repeat(2, 1fr);
  max-width: 1000px;
  margin: 0 auto;
}

.firm-benefits-list.three-columns {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}

.firm-benefits-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 400;
  line-height: 1.6;
}

/* „Na jaką okazję?” — żółte ✓ zamiast emoji (układ kolumn bez zmian) */
.firm-benefits-list.three-columns.occasion-benefits-list,
.firm-benefits-list.two-columns.occasion-benefits-list {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.occasion-benefits-list li {
  position: relative;
  padding-left: 34px;
  align-items: flex-start;
  gap: 0;
}

.occasion-benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.12em;
  color: var(--color-accent);
  font-weight: 900;
  font-size: 1.08em;
  line-height: 1;
}

/* Responsive: 1 kolumna na mniejszych ekranach */
@media (max-width: 768px) {
  .firm-benefits-list.two-columns {
    grid-template-columns: 1fr;
  }

  .firm-benefits-list.three-columns {
    grid-template-columns: 1fr;
  }
}

.check {
  color: #4db6ac;
  font-size: 30px;
  font-weight: bold;
  margin-right: 10px;
}


.benefits-columns {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.benefit-column ul {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.2rem;
  text-align: center;
  color: #061a63;
  margin: 20px 0 20px;
}

.section-gray {
  background-color: var(--color-bg-soft);
}

.section-white {
  background-color: var(--color-bg-page);
}

.section-lead {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #333;
}

.account-wrapper {
  display: flex;
  flex-direction: row;
  gap: 30px;
  padding: 40px;
  background-color: #f9f9f9;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.account-sidebar {
  width: 250px;
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 8px rgba(0,0,0,0.08);
}

.account-sidebar ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.account-sidebar li {
  margin-bottom: 15px;
}

.account-sidebar a {
  color: #000f52;
  text-decoration: none;
  font-weight: 500;
  display: block;
  padding: 10px 15px;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.account-sidebar a:hover {
  background-color: #f8f9fc;
  color: #061a63;
}

.account-sidebar a.active-link {
  background-color: #f3f3f3;
  font-weight: bold;
  border-left: 4px solid var(--color-accent);
  color: #061a63;
}


.account-content {
  flex-grow: 1;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.04);
}

.account-content h2 {
  font-size: 1.8rem;
  color: #000f52;
  margin-bottom: 20px;
}

.account-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.account-table th, .account-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

.account-table th {
  background-color: #f3f3f3;
  color: #061a63;
}

@media (max-width: 768px) {
  .account-wrapper {
    flex-direction: column;
    padding: 20px;
  }

  .account-sidebar {
    width: 100%;
  }

  .account-sidebar a {
    display: inline-block;
    margin-right: 10px;
  }

  .account-content {
    padding: 20px;
  }

}

.product-options {
  margin-top: 30px;
  font-size: 0.95rem;
}

.product-options ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 15px;
}

.included-options li {
  font-size: 0.95rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.extra-options input[type="checkbox"] {
  margin-right: 8px;
  background-color: #58d28c;
}

/* Opcje dodatkowe — układ: opakowanie + zawartość (radio) */
.physical-extras {
  margin-top: 8px;
  margin-bottom: 20px;
}

.physical-extras .physical-mode-group {
  border-color: #c5d4e8;
  background: #fafcfe;
}

.physical-extras .option-group {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 14px 16px 16px;
  margin: 0 0 16px;
  background: #fff;
}

.physical-extras .option-group legend {
  font-weight: 700;
  font-size: 0.95rem;
  color: #061a63;
  padding: 0 6px;
  margin-bottom: 8px;
}

.physical-extras .option-radio-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0 0;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.45;
  color: #333;
}

.physical-extras .option-radio-row input[type="radio"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: #2e9d5c;
  width: 18px;
  height: 18px;
}

.physical-extras .physical-extra-qty-wrap {
  margin: 8px 0 16px;
  padding: 12px 0 0;
  border-top: 1px dashed #ddd;
}

.physical-extras .physical-extra-qty-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #061a63;
  display: inline-block;
  margin-right: 10px;
}

.product-variants {
  margin-bottom: 20px;
}

.product-variants-heading {
  font-weight: 700;
  font-size: 0.95rem;
  color: #061a63;
  margin: 0 0 12px;
}

.product-variants-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

.product-variant-card {
  display: block;
  cursor: pointer;
  margin: 0;
}

.product-variant-card input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.product-variant-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 72px;
  padding: 14px 12px;
  border: 2px solid #e0e6ef;
  border-radius: 12px;
  background: #fff;
  text-align: center;
  transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}

.product-variant-name {
  font-weight: 700;
  font-size: 0.98rem;
  color: #061a63;
  line-height: 1.25;
}

.product-variant-price {
  font-size: 0.92rem;
  font-weight: 600;
  color: #444;
}

.product-variant-card:hover .product-variant-card-body {
  border-color: #b8c9e0;
  background: #fafcfe;
}

.product-variant-card input[type="radio"]:checked + .product-variant-card-body {
  border-color: #2e9d5c;
  background: #f3faf5;
  box-shadow: 0 0 0 1px rgba(46, 157, 92, 0.15);
}

.product-variant-card input[type="radio"]:checked + .product-variant-card-body .product-variant-price {
  color: #1a7a45;
}

.product-variant-card input[type="radio"]:focus-visible + .product-variant-card-body {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.product-simple-summary {
  margin: 16px 0;
  padding: 14px 16px;
  background: #f3faf5;
  border: 1px solid #c8e6d0;
  border-radius: 12px;
  font-size: 1rem;
}

.btn-buy-in-form {
  margin-top: 8px;
}

.physical-extras .physical-extra-qty-input {
  width: 72px;
  padding: 6px 8px;
  font-size: 0.95rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.physical-extras-summary {
  background: #f3faf5;
  border: 1px solid #c8e6d0;
  border-radius: 12px;
  padding: 14px 16px;
}

.physical-extras-price-line,
.physical-extras-shipping-line,
.physical-extras-total-line {
  margin: 0;
  font-size: 0.98rem;
  color: #333;
}

.physical-extras-shipping-line {
  margin-top: 8px;
}

.physical-extras-total-line {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #d4eadc;
  font-weight: 500;
}

.physical-extras-summary strong {
  color: #1b5e20;
}

.physical-extras-cart-wrap {
  margin-top: 18px;
  text-align: center;
}

.physical-extras-cart-wrap .btn-buy-physical-secondary {
  display: inline-flex;
  width: 100%;
  max-width: 340px;
  box-sizing: border-box;
  text-align: center;
}

.cta-button.small,
a.cta-button.small,
button.cta-button.small {
  padding: 6px 14px;
  font-size: 0.8125rem;
  line-height: 1.3;
  font-weight: 600;
  min-height: 0;
}

.form-preview-link {
  margin-top: 12px;
  text-align: left;
}

.form-preview-link .cta-button.small {
  display: inline-flex;
  width: auto;
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

.form-preview-wrapper {
  margin-top: 60px;
  max-width: 600px;
}

.form-preview-note {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.form-preview-box {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
}

.form-preview-field {
  margin-bottom: 15px;
}

.form-preview-field label {
  font-weight: bold;
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.form-preview-help,
.customization-block .helptext {
  color: #555;
  font-size: 0.9rem;
  margin: 0 0 8px;
  line-height: 1.4;
}

.form-preview-field input,
.form-preview-field textarea,
.form-preview-field input[type="date"],
.form-preview-field input[type="time"] {
  width: 100%;
  max-width: 400px;
  padding: 6px;
  font-size: 0.95rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  background-color: #f0f0f0;
}

.form-preview-choice-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.form-preview-choice-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #333;
  cursor: default;
}

.form-preview-choice-row input {
  width: auto;
  max-width: none;
  flex-shrink: 0;
}

.customization-form ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

.customization-form ul li {
  margin: 8px 0;
}

.customization-form ul label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.45;
  cursor: pointer;
}

.customization-form ul input[type="radio"],
.customization-form ul input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: #2e9d5c;
}

.customization-form input[type="date"],
.customization-form input[type="time"] {
  padding: 8px 10px;
  border-radius: 10px;
  border: 2px solid #ccc;
  font-size: 1rem;
  max-width: 400px;
  margin-bottom: 12px;
}

.customization-form .customization-field--boolean label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  cursor: pointer;
}

.customization-form .customization-field--boolean input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: #2e9d5c;
}

.quantity-box {
  display: none;
  margin-top: 10px;
  padding-left: 20px;
}

.quantity-box label {
  font-weight: 500;
  font-size: 0.95rem;
  margin-right: 10px;
}

.quantity-box input[type="number"] {
  width: 60px;
  padding: 4px;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.quantity-info {
  font-size: 0.85rem;
  color: #666;
  margin-top: 5px;
}

.user-section {
  background-color: #f9f9f9;
  padding: 20px 30px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.user-section legend {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #061a63;
}

.user-section label {
  display: block;
  margin: 10px 0 4px;
  font-weight: 500;
  color: #333;
}

.user-section input,
.user-section select {
  width: 100%;
  max-width: 500px;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
  background-color: #fff;
}

.alert {
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.alert-warning {
  background-color: #fff3cd;
  border: 1px solid #ffeeba;
  color: #856404;
}

.checkbox-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.checkbox-inline input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkbox-inline label {
  margin: 0;
  font-weight: 500;
  color: #333;
}

.field-group {
  margin-bottom: 15px;
}

.field-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #061a63;
}

.field-group input, .field-group select {
  width: 100%;
  max-width: 400px;
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.radio-inline, .checkbox-inline {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hidden {
  display: none;
}

.file-download-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.file-download-list li {
  background: #f9f9f9;
  padding: 12px 16px;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.qr-box {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

.qr-box h3 {
  color: #061a63;
}

.qr-preview {
  margin-bottom: 15px;
}

.message.success {
  background-color: #e0ffe5;
  padding: 10px;
  border-left: 5px solid #007a1c;
}

.message.error {
  background-color: #ffe0e0;
  padding: 10px;
  border-left: 5px solid #a30000;
}

.qr-form label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #000;
  margin-top: 10px;
  flex-wrap: wrap; /* dzięki temu zawija się na mniejszych ekranach */
}

.qr-form input[type="checkbox"] {
  transform: scale(1.2);
  accent-color: #4caf50;
  cursor: pointer;
}

.qr-form {
  margin-top: 10px;
  padding: 10px 0 20px;
  border-bottom: 1px solid #eee;
}

.qr-form input[type="url"] {
  padding: 8px 10px;
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-top: 5px;
}

.qr-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background-color: var(--color-accent);
  color: #000;
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius-pill);
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.25;
  cursor: pointer;
  margin-top: 10px;
}

.qr-form button:hover {
  background-color: var(--accent-hover);
  color: #000;
}

.disabled-label {
  opacity: 0.6;
  cursor: not-allowed;
}

.warning-text {
  display: block;
  font-size: 0.85rem;
  color: red;
  margin-top: 5px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.offer-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.2s ease;
}

.offer-card:hover {
  transform: translateY(-5px);
}

.offer-card h3 {
  color: #000f52;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.offer-card p {
  color: #333;
  font-size: 1rem;
  margin-bottom: 15px;
}


@media (max-width: 768px) {
  .offers-grid {
    grid-template-columns: 1fr;
  }
}

.offer-card.locked {
  opacity: 0.5;
  pointer-events: none;
  position: relative;
}

.offer-card.locked::after {
  content: '🔒';
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: #999;
}

.info-text {
  font-size: 0.9rem;
  color: #d00;
  margin-top: 10px;
}

.info-text.red {
  color: #d00;
  font-weight: 600;
}

.order-box {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.order-items {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.order-items li {
  margin-bottom: 6px;
}

.status {
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 6px;
  background-color: #000f52;
}

.status.zrealizowane {
  color: green;
}

.status.nowe,
.status.oczkuje {
  color: var(--color-accent);
}

.status.anulowane {
  color: red;
}

.order-block {
  margin-bottom: 40px;
  border: solid 2px;
  border-radius:15px;
  color: #000f52;
}

.order-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.03);
  border-radius: 12px;
  overflow: hidden;
}

.order-table th, .order-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  background-color: #fff;
  font-size: 14px;
  text-align: left;
}

.order-table th {
  background-color: #f8f8f8;
  font-weight: 600;
  color: #111340;
}

.order-table td:last-child,
.order-table th:last-child {
  text-align: center;
}

.order-table td.addon-cell {
  text-align: center;
  vertical-align: middle;
}

.order-table td.addon-cell div {
  margin-top: 6px;
}

.order-info {
  font-size: 16px;
  margin: 20px 0 5px;
  color: #000f52;
}

.order-block {
  margin-bottom: 40px;
  border: 2px solid #000f52;
  border-radius: 15px;
  padding: 10px 15px;
  background-color: white;
}

.order-title {
  text-align: center;
  font-weight: bold;
  padding: 8px;
  color: #000f52;
  border-bottom: 1px solid #eee;
}

.order-table {
  width: 100%;
  margin-top: 10px;
  border-collapse: collapse;
}

.order-table th,
.order-table td {
  text-align: center;
  padding: 10px;
}

.version-table tr:nth-child(2) {
  background-color: #fff;
}

.version-table tr:nth-child(3) {
  background-color: #fff;
}

.status-table {
  border-top: 1px solid #eee;
}

.order-header {
  font-size: 16px;
  margin: 20px 0 5px;
}

.order-title-row {
  background-color: #f8f8f8;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  color: #000f52;
}

.order-table .gray-row {
  background-color: #f8f8f8;
  font-weight: bold;
}


.customization-block {
  border: 2px solid #ccc;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
  background-color: #fdfdfd;
}

.customization-block h3 {
  color: #000f52;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
input[type="file"] {
  padding: 8px 10px;
  border-radius: 10px;
  border: 2px solid #ccc;
  font-size: 1rem;
  width: 100%;
  max-width: 400px;
  margin-bottom: 12px;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.personalization-info {
  max-width: 800px;
  margin: 60px auto 40px;
  text-align: center;
  line-height: 1.6;
  font-size: 16px;
}

.personalization-info p {
  margin-bottom: 15px;
}

.company-testimonials {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

/* Strona główna: opinie na białym tle — szerokość jak .page-container */
.company-testimonials.company-testimonials--home-fullbleed {
  background-color: #ffffff;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 20px 72px;
  box-sizing: border-box;
}

.company-testimonials h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

/* Opinie — slider 2×2; padding na slajdzie = miejsce na cień */
.testimonials-carousel {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.testimonials-carousel .carousel-wrapper-with-arrows {
  align-items: center;
  gap: 10px;
}

.testimonials-track-wrapper {
  overflow: hidden;
  width: 100%;
  min-width: 0;
}

.testimonials-track {
  display: flex;
  transition: transform 0.45s ease;
}

.testimonials-slide {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 36px 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 36px;
  align-content: start;
  align-items: stretch;
}

.testimonials-carousel .benefit-box {
  width: 100%;
  max-width: 420px;
  justify-self: center;
  height: auto;
  min-height: 0;
  padding: 32px 16px;
  box-shadow: 0 10px 40px rgba(0, 15, 82, 0.08);
}

.testimonials-carousel .benefit-box:hover {
  transform: none;
  box-shadow: 0 14px 44px rgba(0, 15, 82, 0.11);
}

.testimonials-carousel .benefit-box .testimonial-text {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 14px;
}

.testimonials-carousel .benefit-box .testimonial-author {
  font-weight: 700;
  color: #061a63;
  font-size: 0.9rem;
  margin: 0;
}

.testimonial-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  max-width: 360px;
  flex: 1 1 300px;
  text-align: left;
}

.carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 640px) {
  .company-testimonials.company-testimonials--home-fullbleed {
    padding-left: 16px;
    padding-right: 16px;
  }

  .testimonials-slide {
    padding: 28px 18px;
    grid-template-columns: 1fr;
    row-gap: 20px;
    column-gap: 0;
  }

  .testimonials-carousel .benefit-box {
    padding: 28px 18px;
  }
}

.company-logo {
  max-height: 40px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-style: italic;
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
}

.testimonial-author {
  font-weight: bold;
  color: #555;
}

.center-video {
    display: block;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden; /* fallback */
    clip-path: inset(0 round 16px); /* pewne obcięcie rogów dla <video> */
}

.hideme {
  display: none;
}

.coming-soon {
  padding: 60px 20px;
  background-color: #f5f5f5;
  text-align: center;
}

.coming-soon-box {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 40px 30px;
  max-width: 700px;
  margin: 0 auto;
}

.coming-soon-box h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #900000;
}

.coming-soon-box p {
  font-size: 1.2rem;
  color: #555;
}

.shop-coming-soon--compact {
  margin: 1rem 0 1.25rem;
}

.shop-coming-soon--compact .coming-soon-box {
  padding: 1.25rem 1.5rem;
  text-align: left;
}

.shop-coming-soon--compact .coming-soon-box h2 {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}

.shop-coming-soon--compact .coming-soon-box p {
  font-size: 1rem;
  margin: 0;
}

.shop-coming-soon__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.shop-coming-soon-page.coming-soon {
  min-height: 40vh;
  display: flex;
  align-items: center;
}

.product-detail .product-image {
  text-align: center;
  margin-bottom: 20px;
}

.product-gallery {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 15px;
  padding-bottom: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.product-gallery .thumbnail {
  flex: 0 0 auto;
  width: auto;
  height: 72px;
  max-width: 120px;
  object-fit: contain;
  object-position: center;
  background: #f5f7fa;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 6px;
  transition: border-color 0.2s;
}

.product-gallery .thumbnail:hover:not(.is-active) {
  border-color: #333;
}

.product-gallery .thumbnail.is-active {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px var(--color-accent);
}

@media (min-width: 769px) {
  .product-gallery {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .product-gallery .thumbnail {
    flex: none;
    width: 80px;
    height: 80px;
    max-width: none;
    object-fit: cover;
    background: #f0f2f5;
  }
}

.product-gallery .thumbnail,
.product-image .main-image {
  cursor: pointer;
}

#lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
}

#lightbox-close {
  position: absolute;
  top: 20px; right: 40px;
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
}

#lightbox-prev, #lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  user-select: none;
}

#lightbox-prev { left: 20px; }
#lightbox-next { right: 20px; }

#lightbox-prev:hover, #lightbox-next:hover {
  color: #aaa;
}

/* === WESela i imprezy === */
/* FIX hero wesela */
.page-wesela .event-hero {
  --event-hero-min-h: clamp(520px, 75vh, 720px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  /* Pełna szerokość okna mimo .page-container (max-width ~1200px) */
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: var(--event-hero-min-h);
  display: block;
  padding: 0;
  background-color: #1a1a24;
}

.page-wesela .event-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  pointer-events: none;
}

/* Ta sama geometria co .event-hero-bg — brak „wystającej” warstwy względem zdjęcia */
.page-wesela .event-hero-shade {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.45) 48%,
    rgba(0, 0, 0, 0.22) 100%
  );
}

.page-wesela .event-hero-inner {
  position: relative;
  z-index: 2;
  min-height: var(--event-hero-min-h);
  display: flex;
  align-items: center;
  width: 100%;
}

.page-wesela .event-hero .page-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  background-color: transparent;
}

.page-wesela .event-hero-content {
  max-width: min(42rem, 92vw);
  color: #fff;
  padding: clamp(72px, 12vh, 120px) 0 clamp(56px, 8vh, 96px);
  display: block;
}

.page-wesela .event-hero-content h1 {
  display: block;
  color: #fff;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.05;
  margin: 0 0 26px 0;
  font-weight: 800;
}

.page-wesela .event-hero-content p {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  line-height: 1.65;
  margin: 0 0 2rem 0;
  max-width: 36rem;
}

.page-wesela .event-hero .cta-buttons.event-hero-cta {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin: 0;
  margin-top: 0.25rem;
}

.page-wesela .event-hero .cta-buttons.event-hero-cta .cta-button,
.page-wesela .event-hero .cta-buttons.event-hero-cta .cta-button.dark {
  min-height: 44px;
}

.page-wesela .event-hero .cta-button.dark {
  border-color: rgba(255, 255, 255, 0.9);
  color: #fff;
}

.page-wesela .event-hero .cta-button.dark:hover {
  background-color: var(--color-accent) !important;
  border-color: var(--color-accent) !important;
  color: #000 !important;
}

.format-box i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 50px;
  padding: 0 15px;
  border-radius: 999px;
  background: linear-gradient(95deg, var(--accent-soft) 0%, var(--color-accent) 92%);
  border: 1px solid rgba(0, 15, 82, 0.07);
  box-shadow: 0 6px 18px rgba(253, 184, 17, 0.28);
  color: var(--color-navy-deep);
  font-size: 1.2rem;
  line-height: 1;
  margin-bottom: 16px;
}

.format-box p {
  font-weight: 600;
}

/* WOW — strona Wesela: lista + zdjęcie bez „kafelka”; tło jak strona (przezroczyste = biel z .page-container) */
.page-wesela .event-wow-section {
  background: transparent;
  border-radius: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.page-wesela .event-wow-section .firm-intro h2 {
  margin-bottom: clamp(28px, 4vw, 40px);
}

.page-wesela .event-wow-split {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(220px, 400px);
  gap: clamp(28px, 5vw, 52px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.page-wesela .event-wow-list-wrap {
  min-width: 0;
}

.page-wesela .event-wow-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-wesela .event-wow-highlights > li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px 20px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 15, 82, 0.09);
}

.page-wesela .event-wow-highlights > li:first-child {
  padding-top: 0;
}

.page-wesela .event-wow-highlights > li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Wszystkie ikony WOW — jeden styl „pigułki” (żółty gradient jak wcześniej ostatni punkt) */
.page-wesela .event-wow-highlights .event-wow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
  box-sizing: border-box;
  min-width: 52px;
  height: 44px;
  padding: 0 15px;
  border-radius: 999px;
  background: linear-gradient(95deg, var(--accent-soft) 0%, var(--color-accent) 92%);
  color: var(--color-navy-deep);
  font-size: 1rem;
  border: 1px solid rgba(0, 15, 82, 0.07);
  box-shadow: 0 6px 18px rgba(253, 184, 17, 0.28);
}

.page-wesela .event-wow-copy h3 {
  margin: 0 0 8px;
  font-size: clamp(1.05rem, 2.1vw, 1.2rem);
  font-weight: 700;
  color: var(--color-navy-deep);
  line-height: 1.25;
}

.page-wesela .event-wow-copy p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.58;
  color: var(--color-text-muted);
}

.page-wesela .event-wow-visual {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  align-self: start;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

/* Bez border-radius + box-shadow — to wyglądało jak biały kafelek na białej stronie */
.page-wesela .event-wow-visual img {
  width: 100%;
  max-width: min(400px, 100%);
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
}

@media (max-width: 900px) {
  .page-wesela .event-wow-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .page-wesela .event-wow-visual {
    order: -1;
  }

  .page-wesela .event-wow-visual img {
    max-width: min(380px, 88vw);
  }

  .page-wesela .event-wow-highlights > li:first-child {
    padding-top: 0;
  }
}

@media (max-width: 480px) {
  .page-wesela .event-wow-highlights > li {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px 16px;
    padding: 16px 0;
  }

  .page-wesela .event-wow-highlights .event-wow-icon {
    min-width: 46px;
    height: 40px;
    padding: 0 12px;
    font-size: 0.92rem;
  }
}

.page-wesela .event-price-section .business-intro-wrapper {
  justify-content: center;
}

.page-wesela .event-price-section .business-text {
  max-width: 900px;
  text-align: center;
}

.page-wesela .event-price-section .business-text p {
  font-size: 19px;
  line-height: 1.7;
}

.page-wesela .event-price-section strong {
  color: #061a63;
  font-size: 22px;
}

/* Kroki — strona Wesela: pełna szerokość + 5 kafelków (3 + 2 wyśrodkowane) */
.page-wesela .firm-steps {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
  /* mniej granatu nad nagłówkiem; spód bez zmian */
  padding: clamp(20px, 3.5vw, 36px) clamp(20px, 4vw, 48px) clamp(48px, 8vw, 88px);
  box-sizing: border-box;
}

.page-wesela .firm-steps h2 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 40px;
}

@media (min-width: 993px) {
  .page-wesela .firm-steps .step-boxes {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .page-wesela .firm-steps .step-box:nth-child(1) {
    grid-column: 1 / 3;
  }

  .page-wesela .firm-steps .step-box:nth-child(2) {
    grid-column: 3 / 5;
  }

  .page-wesela .firm-steps .step-box:nth-child(3) {
    grid-column: 5 / 7;
  }

  .page-wesela .firm-steps .step-box:nth-child(4) {
    grid-column: 2 / 4;
  }

  .page-wesela .firm-steps .step-box:nth-child(5) {
    grid-column: 4 / 6;
  }
}

@media (max-width: 992px) {
  .page-wesela .firm-steps .step-boxes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
    margin: 0 auto;
  }

  .page-wesela .firm-steps .step-box:nth-child(n) {
    grid-column: auto;
  }

  .page-wesela .firm-steps .step-box:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  .page-wesela .firm-steps .step-boxes {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .page-wesela .firm-steps .step-box:nth-child(5) {
    grid-column: auto;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
}

.page-wesela .firm-steps .step-box {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.page-wesela .firm-steps .step-box p {
  flex: 1 1 auto;
  margin: 0;
}

.page-wesela .firm-steps .step-box p strong {
  display: block;
  padding-bottom: 3px;
}

.page-wesela .firm-steps .step-icon {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 2.25rem;
}

.page-wesela .firm-steps .step-box .success-icon {
  color: #f5c518;
}

/* Wesela — „Co możemy stworzyć?”: tło na całą szerokość okna (jak hero) */
.page-wesela .event-create-zone {
  background-color: #f9f9f9;
  padding: 60px 20px clamp(72px, 10vw, 88px);
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
}

.page-wesela .event-create-zone .firm-benefits-grid {
  margin-bottom: 4.25rem;
}

/* Ta sama szerokość co siatka kafelków; wyśrodkowany akapit */
.page-wesela .event-create-lead {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(12px, 3vw, 24px);
  text-align: center;
  font-size: clamp(1.0625rem, 1.9vw, 1.3125rem);
  line-height: 1.75;
  color: #1a2244;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.page-wesela .event-create-zone .cta-buttons {
  margin-top: clamp(2.25rem, 4.5vw, 3rem);
  gap: clamp(18px, 3vw, 28px);
}

/* Wesela — „Dla jakich wydarzeń?”: wyśrodkowane pigułki (bez kart / ikon) */
.page-wesela .event-occasions-section {
  padding: clamp(36px, 5vw, 56px) 0;
  background: var(--color-bg-page);
}

.page-wesela .event-occasions-section .page-container {
  background: transparent;
}

.page-wesela .event-occasions-section .section-title {
  margin-bottom: clamp(22px, 3.5vw, 32px);
}

.page-wesela .event-occasions-tags {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 58rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 14px;
}

.page-wesela .event-occasions-tags > li {
  margin: 0;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid rgba(0, 15, 82, 0.12);
  background: #fff;
  font-size: clamp(1rem, 1.65vw, 1.14rem);
  font-weight: 600;
  color: var(--color-navy-deep);
  line-height: 1.25;
  letter-spacing: 0.01em;
  cursor: default;
  user-select: none;
  transition: border-color var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast);
}

.page-wesela .event-occasions-tags > li:hover {
  border-color: rgba(253, 184, 17, 0.65);
  background: #fffdf6;
  color: #00052e;
}

@media (max-width: 480px) {
  .page-wesela .event-occasions-tags > li {
    padding: 11px 18px;
    font-size: 0.96rem;
  }
}

/* „Dlaczego warto?” — eventy / wesela: ten sam układ co „Na jaką okazję?” na home */
.event-why-section {
  padding: clamp(40px, 5vw, 64px) 20px;
}

.event-why-section .section-title {
  margin-bottom: clamp(32px, 4vw, 40px);
}

.event-why-section .home-occasions {
  max-width: 1100px;
}

/* CTA końcowe */
.page-wesela .business-intro-section .business-text .cta-buttons {
  margin-top: 28px;
}

/* Mobile */
@media (max-width: 768px) {
  .page-wesela .event-hero {
    --event-hero-min-h: 560px;
    min-height: 560px;
  }

  .page-wesela .event-hero-shade {
    background: rgba(0, 0, 0, 0.58);
  }

  .page-wesela .event-hero-content {
    padding: 56px 0 64px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .page-wesela .event-hero .cta-buttons.event-hero-cta {
    justify-content: center;
  }

  .page-wesela .event-hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .page-wesela .event-price-section .business-text {
    text-align: left;
  }

  .page-wesela .event-price-section .business-text p {
    font-size: 17px;
  }
}

.page-wesela .event-showreel-section {
  padding: clamp(14px, 2.2vw, 28px) 0;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.page-wesela .event-showreel-section .page-container {
  background: transparent;
  max-width: min(1100px, 100%);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.page-wesela .event-showreel-media {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 14px;
}

.event-station-section {
  padding: 90px 20px;
  background: #fff;
}

.event-station-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  max-width: 1100px;
  margin: 45px auto 0;
}

.event-station-card {
  background: #fff;
  border: 1px solid rgba(6, 26, 99, 0.12);
  border-radius: 24px;
  padding: 28px 42px 42px;
  box-shadow: 0 12px 35px rgba(6, 26, 99, 0.08);
}

.event-station-card-highlight {
  background: #fffaf0;
  border-color: rgba(255, 191, 0, 0.45);
}

.page-wesela .event-station-card {
  padding: 28px 28px 42px;
}

.event-station-card h3 {
  color: #061a63;
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 26px;
}

.event-station-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.event-station-card li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
}

.event-station-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
  font-weight: 900;
}

.event-station-section .cta-buttons {
  margin-top: 42px;
}

@media (max-width: 768px) {
  .event-station-columns {
    grid-template-columns: 1fr;
  }

  .event-station-card {
    padding: 24px 30px 30px;
  }

  .page-wesela .event-station-card {
    padding: 24px 20px 30px;
  }
}

.hero-note {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #2a4766;
  font-weight: 600;
}

/* Personalizacja bez konta */
.personalize-order-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.personalize-order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.personalize-order-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
}

.personalize-order-hint {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0.75rem 0;
}

.personalize-order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.personalize-order-form .checkout-field {
  margin-bottom: 1rem;
}

.personalize-order-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--color-navy);
  line-height: 1.35;
}

.personalize-order-form input[type="text"],
.personalize-order-form input[type="email"],
.personalize-order-form input[type="tel"] {
  width: 100%;
  box-sizing: border-box;
  padding: 0.72rem 0.9rem;
  border: 1px solid #d5dbe6;
  border-radius: 10px;
  background: #fff;
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.4;
  margin-bottom: 0;
  max-width: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  -webkit-appearance: none;
  appearance: none;
}

.personalize-order-form input::placeholder {
  color: #9aa3b2;
}

.personalize-order-form input:focus {
  outline: none;
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(0, 15, 82, 0.1);
}

.personalize-order-form .cta-button {
  width: 100%;
  margin-top: 0.5rem;
}

.account-sidebar__locked {
  display: block;
  padding: 0.65rem 1rem;
  color: #94a3b8;
  cursor: not-allowed;
  font-size: 0.95rem;
}

.account-sidebar__locked-hint {
  display: block;
  padding: 0 1rem 0.5rem;
  font-size: 0.75rem;
  color: #94a3b8;
}

.account-sidebar-guest-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  padding: 0 1rem 0.5rem;
  margin: 0;
}

.guest-account-banner {
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.guest-account-banner .cta-button {
  margin: 0.5rem 0;
}

.my-orders-empty {
  text-align: center;
  padding: 2rem 1rem;
  max-width: 480px;
  margin: 0 auto;
}

.my-orders-empty .cta-button {
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .personalize-order-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================================================
   Mobile — audyt kluczowych ścieżek (Faza 2)
   ============================================================================= */

@media (max-width: 900px) {
  .home-hero__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-hero__content {
    order: 1;
  }

  .home-hero__media {
    order: 2;
    margin-top: 4px;
  }

  .home-hero__media-frame {
    max-width: min(260px, 70vw);
    margin: 0 auto;
  }

  .home-hero__media-frame img {
    width: 100%;
    max-height: 220px;
    object-fit: contain;
  }

  .home-hero__title-accent {
    white-space: normal;
  }

  .home-hero__chip {
    display: none;
  }

  .home-hero__stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  main {
    padding: 16px 10px 32px;
  }

  .site-header {
    margin: 10px 8px 0;
  }

  .header-utility-bar {
    padding: 0 8px 4px;
  }

  .header-utility {
    justify-content: flex-end;
    gap: 4px 8px;
    line-height: 1.35;
  }

  .header-utility-pulse {
    margin: 0 0.35em;
  }

  .main-header {
    padding: 10px 12px;
  }

  .logo img {
    height: 42px;
  }

  .product-detail {
    padding: 12px 8px 32px;
  }

  .product-container {
    padding: 20px 16px;
    gap: 20px;
  }

  .product-image,
  .product-info {
    flex: 1 1 100%;
    min-width: 0;
  }

  .product-info h1 {
    font-size: 1.45rem;
    margin-bottom: 14px;
  }

  .product-info > .btn-buy,
  .product-info > .cta-button,
  .product-info > button.cta-button {
    display: flex;
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    justify-content: center;
  }

  #add-to-cart-form .btn-buy-in-form,
  #add-to-cart-form .btn-buy-physical-secondary,
  .physical-extras-cart-wrap .btn-buy-physical-secondary {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .product-description-long {
    padding: 24px 16px;
    margin-top: 20px;
  }

  .product-variants-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cart-section {
    padding: 24px 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .cart-section table {
    min-width: 520px;
  }

  .cart-section .cart-checkout-btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .account-wrapper .order-block {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px 10px;
  }

  .account-wrapper .order-table {
    min-width: 560px;
  }

  .customization-block {
    padding: 16px;
  }

  .customization-block input[type="text"],
  .customization-block input[type="email"],
  .customization-block input[type="tel"],
  .customization-block textarea,
  .customization-block select {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .product-category {
    padding-left: 12px;
    padding-right: 12px;
  }

  .firm-wrapper {
    padding: 40px 12px;
  }

  .firm-steps {
    padding-left: 12px;
    padding-right: 12px;
  }

  .b2b-hero-cta-buttons .cta-button,
  .b2b-hero-cta-buttons .cta-button.dark {
    flex: 1 1 calc(50% - 6px);
    min-width: 140px;
  }

  .page-wesela .event-hero-content h1 {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .page-wesela .event-hero .cta-buttons.event-hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .page-wesela .event-hero .cta-buttons.event-hero-cta .cta-button,
  .page-wesela .event-hero .cta-buttons.event-hero-cta .cta-button.dark {
    width: 100%;
  }

  .certificate-templates-page {
    padding: 0 8px;
    margin-top: 16px;
  }

  .certificate-pattern-tile__body {
    padding: 1.1rem 0.9rem 1.25rem;
  }

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

  .footer-columns {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 28px;
  }

  .footer-col {
    display: block;
    grid-row: auto;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-col--brand {
    text-align: center;
    padding-right: 0;
  }

  .footer-brand-text {
    align-items: center;
  }

  .footer-tagline {
    max-width: 36ch;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-contact li {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .footer-contact-text {
    align-items: center;
  }

  .footer-company li {
    align-items: center;
    text-align: center;
  }

  .footer-col--menu .footer-menu {
    align-items: center;
    justify-content: flex-start;
    min-height: 0;
    height: auto;
  }
}

@media (max-width: 480px) {
  .home-hero {
    padding-top: 12px;
  }

  .home-hero__title {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
  }

  .home-hero__cta.cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .home-hero__cta .cta-button {
    width: 100%;
  }

  .shop-type-filters__pill {
    flex: 1 1 calc(50% - 4px);
    text-align: center;
  }

  .product-variants-grid {
    grid-template-columns: 1fr;
  }

  .b2b-hero-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .b2b-hero-cta-buttons .cta-button,
  .b2b-hero-cta-buttons .cta-button.dark {
    width: 100%;
    flex: 1 1 auto;
  }

  .account-wrapper .customization-block .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .account-wrapper .customization-block .cta-buttons .cta-button {
    width: 100%;
    justify-content: center;
  }

  .form-preview-link .cta-button.small {
    width: 100%;
    justify-content: center;
  }
}