﻿.skip-link{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden}
    .skip-link:focus{position:static;left:0;top:0;width:auto;height:auto;padding:0.75rem 1rem;background:#2d5016;color:#fff;z-index:9999}
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
      color: #1a1a1a;
      line-height: 1.6;
      background: #fafafa;
    }

    /* Nawigacja - cieńsza */
    .navbar {
      position: sticky;
      top: 0;
      background: white;
      border-bottom: 1px solid #e0e0e0;
      padding: 0.5rem 0;
      z-index: 100;
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }

    .navbar-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      text-decoration: none;
    }

    .logo img {
      height: 55px;
      width: auto;
      transition: opacity 0.3s ease;
    }

    .logo img:hover {
      opacity: 0.9;
    }

    .nav-menu {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .nav-menu a {
      text-decoration: none;
      color: #666;
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.3s ease;
      cursor: pointer;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
      color: #2d5016;
    }

    /* Poprawiony układ flag - siatka 2 rzędów: 13 + 12 */
    .lang-switcher {
      display: grid;
      grid-template-columns: repeat(13, minmax(70px, auto));
      gap: 0.6rem;
      align-items: center;
      justify-content: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Responsywność flag */
    @media (max-width: 1024px) {
      .lang-switcher {
        grid-template-columns: repeat(7, minmax(70px, auto));
        gap: 0.5rem;
      }
    }
    @media (max-width: 640px) {
      .lang-switcher {
        grid-template-columns: repeat(4, minmax(70px, auto));
      }
    }

    .lang-switcher a {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.6rem 0.5rem;
      border-radius: 8px;
      text-decoration: none;
      color: #1a1a1a;
      font-size: 0.85rem;
      font-weight: 600;
      transition: all 0.3s ease;
      background: white;
      border: 1px solid #ddd;
    }

    .lang-switcher a:hover,
    .lang-switcher a.active {
      background: #2d5016;
      color: white;
      border-color: #2d5016;
    }

    .flag-icon {
      border-radius: 3px;
      width: 20px;
      height: auto;
    }

    /* Sekcje główne */
    section {
      padding: 4rem 2rem;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    section h2 {
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: #1a1a1a;
    }

    /* Slider - pełna wysokość bez białego paska */
    .slider-section {
      padding: 0;
      background: #1a1a1a;
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 550px;
      max-height: 100vh;
      overflow: hidden;
    }

    .slider-track {
      display: flex;
      height: 100%;
      width: 100%;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .slide {
      min-width: 100%;
      height: 100%;
      position: relative;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .slide img.slide-img{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Placeholder kolory dla slajdów (zanim zdjęcia zostaną dodane) */
    .slide-1 { background-image: linear-gradient(135deg, #1a472a 0%, #2d6a4f 100%); }
    .slide-2 { background-image: linear-gradient(135deg, #2d6a4f 0%, #40916c 100%); }
    .slide-3 { background-image: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%); }

    .slide-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.45);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      color: white;
      text-align: center;
    }

    .slide-content h1 {
      font-size: clamp(2rem, 5vw, 3.5rem);
      margin-bottom: 1rem;
      font-weight: 700;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .slide-content p {
      font-size: clamp(1rem, 2vw, 1.3rem);
      max-width: 700px;
      margin: 0 auto;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    }

    .slider-controls {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 1rem;
      z-index: 10;
    }

    .slider-btn {
      background: rgba(255,255,255,0.9);
      border: none;
      padding: 0.8rem 1.8rem;
      border-radius: 50px;
      cursor: pointer;
      font-weight: 600;
      color: #2d5016;
      transition: all 0.3s ease;
      font-size: 0.9rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 44px;
      min-height: 44px;
    }

    .slider-btn:hover {
      background: #2d5016;
      color: white;
      transform: scale(1.05);
    }

    .slider-dots {
      position: absolute;
      bottom: 2rem;
      right: 2rem;
      display: flex;
      gap: 0.5rem;
      z-index: 10;
    }

    .dot {
      /* larger hit target with a small visual indicator */
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 44px;
      min-height: 44px;
      background: transparent;
      border: none;
      cursor: pointer;
      transition: transform 0.18s ease;
    }

    .dot::before{
      content: '';
      display: block;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255,255,255,0.5);
      transition: all 0.18s ease;
    }

    .dot.active {
      transform: scale(1.02);
    }

    .dot.active::before{
      width: 30px;
      height: 10px;
      border-radius: 5px;
      background: white;
    }

    /* Sekcja O nas - ze zdjęciem */
    .about-section {
      background: white;
    }

    .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .about-text h2 {
      color: #2d5016;
      margin-bottom: 1.5rem;
    }

    .about-text p {
      color: #555;
      margin-bottom: 1.2rem;
      font-size: 1rem;
      line-height: 1.8;
    }

    .about-image {
      width: 100%;
      height: 450px;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }

    .about-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .about-image img:hover {
      transform: scale(1.02);
    }

    /* Oferta - Produkty */
    .offer-section {
      background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    }

    .offer-section h2 {
      color: #2d5016;
      text-align: center;
      margin-bottom: 3rem;
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-bottom: 3rem;
    }

    .product-card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }

    .product-image {
      width: 100%;
      height: 220px;
      background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .product-card:hover .product-image img {
      transform: scale(1.05);
    }

    .product-info {
      padding: 1.5rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .product-category {
      font-size: 0.8rem;
      color: #2d5016;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 0.5rem;
    }

    .product-name {
      font-size: 1.1rem;
      font-weight: 600;
      color: #1a1a1a;
      margin-bottom: 0.5rem;
    }

    .product-description {
      font-size: 0.9rem;
      color: #666;
      margin-bottom: 1rem;
      flex: 1;
    }

    .product-footer {
      display: flex;
      justify-content: flex-end;
      align-items: center;
    }

    .btn-primary {
      background: #2d5016;
      color: white;
      border: none;
      padding: 0.7rem 1.5rem;
      border-radius: 8px;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s ease;
      font-size: 0.9rem;
      text-decoration: none;
      display: inline-block;
    }

    .btn-primary:hover {
      background: #1f3810;
      transform: scale(1.05);
    }

    /* Galeria zdjęć - zdefiniowana siatka 4x4 */
    .gallery-section {
      background: white;
      margin-top: 2rem;
      padding: 2rem 0;
    }

    .gallery-title {
      text-align: center;
      color: #2d5016;
      margin-bottom: 2rem;
      font-size: 1.3rem;
      font-weight: 600;
    }

    /* Uporządkowana struktura galerii: siatka 4x4 na desktopie */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      cursor: pointer;
      height: 240px;
      background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
      transition: all 0.3s ease;
    }

    .gallery-item:hover {
      transform: scale(1.02);
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .gallery-item a {
      display: block;
      width: 100%;
      height: 100%;
    }

    /* Responsywność galerii */
    @media (max-width: 992px) {
      .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    @media (max-width: 640px) {
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
      }
      .gallery-item {
        height: 180px;
      }
    }
    @media (max-width: 480px) {
      .gallery-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.95);
      z-index: 1000;
      cursor: pointer;
    }

    .lightbox.active {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lightbox img {
      max-width: 90%;
      max-height: 90%;
      object-fit: contain;
    }

    .lightbox-close {
      position: absolute;
      top: 20px;
      right: 40px;
      color: white;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
    }

    /* FAQ */
    .faq-section {
      background: #f9f9f9;
    }

    .faq-section h2 {
      color: #2d5016;
      text-align: center;
      margin-bottom: 2rem;
    }

    .faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      background: white;
      margin-bottom: 1rem;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }

    .faq-question {
      padding: 1.5rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      color: #1a1a1a;
      background: white;
      transition: background 0.3s ease;
    }

    .faq-question:hover {
      background: #f5f5f5;
    }

    .faq-toggle {
      font-size: 1.2rem;
      transition: transform 0.3s ease;
      color: #2d5016;
    }

    .faq-toggle.open {
      transform: rotate(180deg);
    }

    .faq-answer {
      padding: 0 1.5rem;
      max-height: 0;
      overflow: hidden;
      transition: all 0.3s ease;
      color: #666;
    }

    .faq-answer.open {
      padding: 1.5rem;
      max-height: 500px;
    }

    /* Sekcja Kontakt - jednolita */
    .contact-section {
      background: white;
    }

    .contact-section h2 {
      color: #2d5016;
      text-align: center;
      margin-bottom: 2rem;
    }

    .contact-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: start;
    }

    .contact-cards {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .contact-card {
      background: #f5f5f5;
      border-radius: 16px;
      padding: 1.2rem 1.5rem;
      transition: all 0.3s ease;
      border: 1px solid #e8e8e8;
    }

    .contact-card:hover {
      background: #2d5016;
      transform: translateX(5px);
    }

    .contact-card:hover .contact-row {
      color: white;
    }

    .contact-card:hover .contact-row a {
      color: white;
    }

    .contact-card:hover .contact-icon {
      color: white;
    }

    .contact-row {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .contact-icon {
      font-size: 1.3rem;
      color: #2d5016;
      min-width: 32px;
      text-align: center;
      transition: color 0.3s ease;
    }

    .contact-label {
      font-weight: 600;
      color: #333;
      min-width: 90px;
      transition: color 0.3s ease;
    }

    .contact-value {
      color: #555;
      transition: color 0.3s ease;
    }

    .contact-value a {
      color: #555;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .contact-value a:hover {
      text-decoration: underline;
    }

    .contact-map {
      width: 100%;
      height: 450px;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    }

    .contact-map iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    /* Kraje */
    .countries-section {
      background: #f9f9f9;
      padding: 3rem 2rem;
    }

    .countries-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .countries-title {
      text-align: center;
      color: #2d5016;
      margin-bottom: 2rem;
      font-size: 1.3rem;
      font-weight: 600;
    }

    /* Footer */
    footer {
      background: #1a1a1a;
      color: #ccc;
      padding: 2rem;
      margin-top: 4rem;
    }

    .footer-bottom {
      border-top: 1px solid #333;
      padding-top: 1.5rem;
      text-align: left;
      color: #999;
      font-size: 0.85rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-bottom a {
      color: #2d5016;
      text-decoration: none;
      font-weight: 600;
    }

    .footer-bottom a:hover {
      text-decoration: underline;
    }

    /* Responsywność ogólna */
    @media (max-width: 768px) {
      .nav-menu {
        display: none;
      }

      .about-content,
      .contact-wrapper {
        grid-template-columns: 1fr;
      }

      section h2 {
        font-size: 1.8rem;
      }

      .slider-section {
        height: 60vh;
        min-height: 400px;
      }

      .slide-content h1 {
        font-size: 2rem;
      }

      .product-grid {
        grid-template-columns: 1fr;
      }

      .navbar-container {
        flex-wrap: wrap;
      }
      
      .about-image {
        height: 280px;
      }

      .slider-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
        min-width: 44px;
        min-height: 44px;
      }
    }