﻿* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #fefcf9;
      color: #1e1e2a;
      line-height: 1.45;
      scroll-behavior: smooth;
    }

    /* subtelna faktura w tle całej strony */
    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: radial-gradient(circle at 10% 20%, rgba(200, 180, 150, 0.03) 2%, transparent 2.5%),
        radial-gradient(circle at 80% 70%, rgba(120, 80, 50, 0.02) 1.5%, transparent 2%);
      background-size: 55px 55px, 40px 40px;
      pointer-events: none;
      z-index: 0;
    }

    .container,
    .navbar,
    section,
    footer {
      position: relative;
      z-index: 1;
    }

    :root {
      --red-primary: #b81b1b;
      --red-dark: #8b0000;
      --red-soft: #e63946;
      --gray-light: #f8f8fc;
      --gray-border: #e2e2e8;
      --shadow-sm: 0 12px 28px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.02);
      --shadow-hover: 0 25px 35px -12px rgba(0, 0, 0, 0.15);
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* navbar */
    .navbar {
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(8px);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03), 0 1px 0 #ececf0;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      padding: 12px 24px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .logo-area img {
      height: 42px;
      width: auto;
      transition: transform 0.2s;
      image-rendering: crisp-edges;
    }

    .logo-area img:hover {
      transform: scale(1.02);
    }

    .nav-links {
      display: flex;
      gap: 32px;
      flex-wrap: wrap;
      align-items: center;
    }

    .nav-links a {
      font-weight: 600;
      font-size: 0.98rem;
      color: #2d2f36;
      transition: 0.2s;
      border-bottom: 2px solid transparent;
      padding-bottom: 4px;
    }

    .nav-links a:hover {
      color: var(--red-primary);
      border-bottom-color: var(--red-primary);
    }

    .nav-links a.active {
      color: var(--red-primary);
      border-bottom-color: var(--red-primary);
    }

    /* ---------- SLIDER (pełna szerokość i wysokość, brak strzałek, kropki wewnątrz) ---------- */
    .slider-section {
      width: 100%;
      height: 100vh;
      /* pełna wysokość ekranu */
      position: relative;
      background: #1a1a1a;
      overflow: hidden;
    }

    .slider-container {
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
    }

    .slider-track {
      display: flex;
      height: 100%;
      transition: transform 0.6s cubic-bezier(0.25, 0.9, 0.4, 1);
    }

    .slider-slide {
      flex: 0 0 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* przyciemnienie dla lepszego kontrastu napisów */
    .slider-slide::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
      z-index: 1;
    }

    /* napis na środku slajdu (ruchomy) */
    .slide-caption {
      position: relative;
      z-index: 3;
      text-align: center;
      color: white;
      max-width: 80%;
      padding: 1.5rem 2rem;
      text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
      font-weight: 800;
      font-size: 2.2rem;
      line-height: 1.3;
      letter-spacing: -0.2px;
      background: rgba(0, 0, 0, 0.35);
      backdrop-filter: blur(5px);
      border-radius: 40px;
      display: inline-block;
      margin: 0 auto;
    }

    .slide-caption span {
      display: block;
      font-size: 1rem;
      font-weight: 500;
      margin-top: 12px;
      opacity: 0.9;
    }

    /* N I E R U C H O M Y   N A P I S   (Markab + hasło) – przesunięty niżej i z czerwonym Markab */
    .static-brand {
      position: absolute;
      top: 35%;
      left: 0;
      right: 0;
      text-align: center;
      z-index: 20;
      pointer-events: none;
      transform: translateY(-50%);
    }

    .static-brand h1 {
      font-size: 4.5rem;
      font-weight: 800;
      color: var(--red-primary);
      text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
      letter-spacing: -0.5px;
      margin-bottom: 0.5rem;
    }

    .static-logo {
      height: 75px;
      width: auto;
      max-width: 450px;
      display: block;
      margin: 0 auto 0.5rem;
      padding: 12px 24px;
      background: rgba(255, 255, 255, 0.15);
      border-radius: 20px;
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
      pointer-events: auto;
    }

    .static-brand p {
      font-size: 1.2rem;
      font-weight: 500;
      color: rgba(255, 255, 245, 0.98);
      background: rgba(0, 0, 0, 0.45);
      display: inline-block;
      padding: 6px 22px;
      border-radius: 60px;
      backdrop-filter: blur(6px);
      letter-spacing: -0.2px;
    }

    @media (max-width: 780px) {
      .slider-section {
        height: 80vh;
      }

      .slide-caption {
        font-size: 1.3rem;
        padding: 0.8rem 1.2rem;
      }

      .slide-caption span {
        font-size: 0.75rem;
      }

      .static-brand h1 {
        font-size: 2.2rem;
      }

      .static-brand p {
        font-size: 0.85rem;
        padding: 4px 16px;
      }

      .static-brand {
        top: 35%;
      }
    }

    /* kropki (dots) – teraz wewnątrz slider-container, na dole, bez przesuwania treści */
    .dots-inner {
      position: absolute;
      bottom: 25px;
      left: 0;
      right: 0;
      display: flex;
      justify-content: center;
      gap: 14px;
      z-index: 25;
    }

    .dot {
      width: 12px;
      height: 12px;
      background: rgba(255, 255, 255, 0.6);
      border-radius: 50%;
      cursor: pointer;
      transition: 0.2s;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    }

    .dot.active {
      background: var(--red-primary);
      width: 32px;
      border-radius: 20px;
      box-shadow: 0 0 8px rgba(184, 27, 27, 0.6);
    }

    /* pozostałe sekcje */
    section {
      padding: 70px 0;
      border-bottom: 1px solid var(--gray-border);
      background: rgba(255, 255, 245, 0.4);
    }

    section:nth-child(even) {
      background: rgba(245, 240, 235, 0.3);
    }

    .section-title {
      font-size: 2.2rem;
      font-weight: 800;
      margin-bottom: 48px;
      position: relative;
      display: inline-block;
    }

    .section-title:after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 0;
      width: 68px;
      height: 4px;
      background: var(--red-primary);
      border-radius: 4px;
    }

    .subsection-title {
      font-size: 1.7rem;
      font-weight: 700;
      margin: 40px 0 24px 0;
      color: #2d2f36;
      border-left: 5px solid var(--red-primary);
      padding-left: 18px;
    }

    .subsection-title a {
      position: relative;
      color: inherit;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
    }

    .subsection-title a:hover {
      color: var(--red-primary);
      transform: scale(1.04);
      text-shadow: 0 0 12px rgba(184, 27, 27, 0.3);
    }

    .subsection-title a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--red-primary);
      transition: width 0.3s ease;
    }

    .subsection-title a:hover::after {
      width: 100%;
    }

    .subsection-title-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .polish-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, rgba(184, 27, 27, 0.08), rgba(184, 27, 27, 0.04));
      border: 1px solid rgba(184, 27, 27, 0.2);
      border-radius: 20px;
      padding: 7px 14px;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--red-primary);
      letter-spacing: 0.3px;
      text-transform: uppercase;
      transition: all 0.3s ease;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .polish-badge img {
      height: 18px;
      width: auto;
      display: block;
    }

    .polish-badge:hover {
      background: linear-gradient(135deg, rgba(184, 27, 27, 0.15), rgba(184, 27, 27, 0.08));
      border-color: rgba(184, 27, 27, 0.4);
      transform: translateY(-2px);
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-top: 20px;
    }

    .product-card {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(2px);
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
      transition: all 0.3s ease;
      border: 1px solid rgba(0, 0, 0, 0.05);
      cursor: pointer;
      display: flex;
      flex-direction: column;
    }

    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-hover);
      border-color: var(--red-soft);
      background: white;
    }

    .product-img {
      height: 320px;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      transition: transform 0.4s ease;
      background-color: #f7f5f2;
    }

    .product-card:hover .product-img {
      transform: scale(1.02);
    }

    .product-info {
      padding: 18px 18px 22px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .product-info h3 {
      font-weight: 800;
      font-size: 1.3rem;
      margin-bottom: 6px;
      color: #1f1f2b;
    }

    .product-spec {
      font-size: 0.85rem;
      color: #4a4a5a;
      line-height: 1.5;
      margin: 10px 0 12px;
    }

    .btn-more {
      display: inline-block;
      width: fit-content;
      background: var(--red-primary);
      color: white;
      padding: 8px 18px;
      border-radius: 40px;
      font-size: 0.75rem;
      font-weight: 600;
      transition: 0.2s;
      border: none;
      cursor: pointer;
      margin-top: auto;
    }

    .btn-more:hover {
      background: var(--red-dark);
      transform: scale(0.96);
    }

    .accessories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .acc-item {
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(2px);
      border-radius: 28px;
      overflow: hidden;
      transition: 0.25s;
      border: 1px solid #eef2f6;
      cursor: pointer;
    }

    .acc-item:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-hover);
      background: #fff;
    }

    .acc-img {
      height: 190px;
      background-size: cover;
      background-position: center;
      background-color: #eef2f6;
    }

    .acc-content {
      padding: 20px 22px;
    }

    .acc-content h4 {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 8px;
      color: #b81b1b;
    }

    .acc-content p {
      font-size: 0.9rem;
      color: #2c3e46;
      line-height: 1.4;
    }

    .faq-grid {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }

    .faq-category {
      background: rgba(255, 255, 255, 0.9);
      border-radius: 32px;
      padding: 28px 36px;
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.02);
      border: 1px solid #eeeef2;
    }

    .faq-category h3 {
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: var(--red-primary);
    }

    .faq-q {
      font-weight: 700;
      font-size: 1.05rem;
      margin-top: 20px;
      margin-bottom: 6px;
      color: #222;
    }

    .faq-a {
      color: #2c3e44;
      padding-left: 12px;
      border-left: 3px solid var(--red-soft);
      margin-bottom: 12px;
    }

    .contact-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 44px;
      align-items: stretch;
    }

    .contact-info {
      flex: 1;
      background: rgba(254, 248, 244, 0.85);
      backdrop-filter: blur(4px);
      padding: 36px 32px;
      border-radius: 36px;
    }

    .contact-info h3 {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 24px;
      color: #b81b1b;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 24px;
    }

    .contact-icon {
      font-size: 1.6rem;
      min-width: 44px;
      color: #b81b1b;
    }

    .company-link {
      margin-top: 32px;
      background: white;
      border-radius: 60px;
      padding: 14px 20px;
      text-align: center;
      border: 1px solid #e0e0e0;
      transition: 0.2s;
    }

    .company-link:hover {
      background: #b81b1b;
      color: white;
      border-color: #b81b1b;
    }

    .map-wrapper {
      flex: 1.2;
      min-height: 360px;
      border-radius: 36px;
      overflow: hidden;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    }

    .center-text {
      text-align: center;
    }

    .footer-main {
      background: #0b1420;
      color: #cfdde6;
      padding: 48px 0 32px;
      font-size: 0.85rem;
      border-top: 1px solid #202a36;
    }

    .footer-main a {
      color: #e6a7a7;
      transition: 0.2s;
    }

    .footer-columns {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 40px;
      margin-bottom: 32px;
    }

    .footer-col p {
      margin: 8px 0;
      line-height: 1.5;
    }

    .footer-copyright {
      text-align: center;
      border-top: 1px solid #1e2a32;
      padding-top: 24px;
      font-size: 0.75rem;
    }

    .lang-section {
      background: rgba(240, 242, 245, 0.9);
      backdrop-filter: blur(4px);
      padding: 32px 0;
      border-top: 1px solid #ddd;
    }

    .lang-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 18px;
      list-style: none;
    }

    .lang-grid li {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: white;
      padding: 6px 14px;
      border-radius: 40px;
      font-size: 0.85rem;
      font-weight: 500;
      color: #2b2b2b;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    @media (max-width: 1200px) {
      .products-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 780px) {
      .nav-container {
        flex-direction: column;
        gap: 12px;
      }

      .products-grid {
        grid-template-columns: 1fr;
      }

      .section-title {
        font-size: 1.7rem;
      }
    }
    .logo-area img,
.static-logo{
  display:block;
  height:auto;
  max-width:100%;
}
/* NAVBAR LOGO */
.navbar-logo{
  width: 200px;
  height: auto;
  max-height: 60px;
  object-fit: contain;
  display:block;
}

/* MOBILE */
@media (max-width:768px){

  .navbar-logo{
    width: 160px;
    max-height: 48px;
  }

}
.lang-item img {
    max-width: 24px;
    height: auto;
    vertical-align: middle;
}
 /* System font stack - szybciej niż Google Fonts */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-weight: 400;
      line-height: 1.5;
      color: #1a1a1a;
      background-color: #fff;
    }
    
    /* Ułatwienia dla czytelności i UX */
    h1, h2, h3, h4, .section-title, .btn-more, .nav-links a {
      font-weight: 600;
      letter-spacing: -0.01em;
    }
    
    /* Zapewnia płynne przewijanie */
    html {
      scroll-behavior: smooth;
    }
    
    /* Reszta stylów będzie pobrana z /css/style.css, ale jeśli brakuje, powyższe nadaje "Inter-owy" wygląd */
    .lang-item img {
      max-width: 24px;
      height: auto;
      vertical-align: middle;
    }