/* Reset and base styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
    }
    .small-banner-cta:visited {
      color: white;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    /* Hero Banner */
    .hero-banner {
      position: relative;
      background-color: #f9f9f9;
      overflow: hidden;
      display: flex;
      justify-content: center;
    }

    .banner-container {
      max-width: 1600px;
      margin: 0 auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: 1.8fr 1fr;
      gap: 10px;
      height: 100%;
      margin: 10px;
      width: 100%;
    }

    /* Main Banner (Left) */
    .main-banner {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
      display: flex;
      height: 500px;
      animation: fade-in 0.8s ease-out;
    }

    /* Banner Slider */
    .banner-slider {
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
    }

    .banner-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      visibility: hidden;
      transition: opacity 1.2s ease, visibility 1.2s ease;
    }

    .banner-slide.active {
      opacity: 1;
      visibility: visible;
      z-index: 1;
    }

    /* Zajistí, že obsah banneru se nebude problikávat */
    .banner-content * {
      transition: none;
    }

    .main-banner-image {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .main-banner-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .banner-overlay {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.55) 100%);
      z-index: 2;
    }

    .banner-content {
      position: relative;
      padding: 60px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      z-index: 3;
      width: 100%;
      height: 100%;
      color: white;
      margin: 0;
    }

    .banner-label {
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #89BC23;
      margin-bottom: 15px;
      text-align: left;
      display: block;
      text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    }

    .banner-title {
      font-size: 48px;
      font-weight: 700;
      color: white;
      line-height: 1.2;
      margin-bottom: 25px;
      text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 0 1px rgba(0,0,0,0.5);
      text-align: left;
      width: 100%;
    }

    .banner-title .highlight {
      color: white;
      position: relative;
      display: inline-block;
    }

    .banner-title .highlight:after {
      content: '';
      position: absolute;
      bottom: 5px;
      left: 0;
      width: 100%;
      height: 8px;
      background-color: rgba(137, 188, 35, 0.5);
      z-index: -1;
      border-radius: 4px;
    }



    /* Banner Top and Bottom Content */
    .banner-top-content {
      width: 100%;
    }

    .banner-bottom-content {
      width: 100%;
      padding-bottom: 40px;
    }


    /* Banner Specs */
    .banner-specs {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 25px;
    }

    .banner-top-content .spec-item {
      font-size: 14px;
      background-color: rgba(0, 0, 0, 0.4); /* Tmavší černé pozadí */
      padding: 6px 12px;
      border-radius: 4px;
      color: white; /* Pevná barva textu */
      box-shadow: 0 2px 4px rgba(0,0,0,0.2);
      border-left: 2px solid #89BC23; /* Zelený okraj vlevo */
      text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    }

    /* Banner Dots */
    .banner-dots {
      display: flex;
      gap: 8px;
      position: absolute;
      bottom: 30px;
      right: 60px;
      z-index: 10;
    }

    .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.3);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .dot.active {
      background-color: #89BC23;
      transform: scale(1.2);
    }

    .banner-subtitle {
      font-size: 18px;
      color: rgba(255,255,255,0.95);
      line-height: 1.7;
      margin-bottom: 35px;
      max-width: 100%;
      text-align: left;
      margin-left: 0;
      margin-right: 0;
      text-shadow: 0 1px 4px rgba(0,0,0,0.7), 0 0 1px rgba(0,0,0,0.5);
      font-weight: 500;
    }

    .banner-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background-color: #0056b3;
      color: white;
      padding: 16px 32px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 17px;
      text-decoration: none;
      transition: all 0.3s ease;
      margin-bottom: 0;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      position: relative;
      overflow: hidden;
      margin-top:8 px;
    }
    .banner-cta:hover{
      color:white;
    }
    .small-banner-cta:hover{
      color:white;
    }

    .banner-cta:before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transition: 0.5s;
    }

    .banner-cta:hover:before {
      left: 100%;
    }

    .banner-cta:hover {
      background-color: #153e75;
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

    .arrow-icon {
      margin-left: 10px;
      font-style: normal;
      transition: transform 0.3s ease;
    }

    .banner-cta:hover .arrow-icon {
      transform: translateX(5px);
    }


    /* Small Banners (Right) */
    .small-banners {
      display: flex;
      flex-direction: column;
      gap: 10px;
      height: 500px;
    }

    .small-banner {
      flex: 1;
      border-radius: 12px;
      overflow: hidden;
      position: relative;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      display: flex;
      animation: fade-in 1s ease-out;
    }

    .small-banner-image {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .small-banner-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .small-banner-overlay {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.55) 100%);
      z-index: 2;
    }

    .small-banner-content {
      padding: 40px;
      z-index: 3;
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      color: white;
    }

    .small-banner-label-container {
      position: absolute;
      top: 0;
      right: 0;
      z-index: 10;
    }

    .small-banner-label {
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: white;
      background-color: #cd9900;
      padding: 10px 18px;
      display: inline-block;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.414);
      border-radius: 0 0 0 12px;
      transform: translateZ(0);
      transform-origin: top right;
      animation: shine-effect 3s ease-in-out infinite;
      will-change: transform, box-shadow;
    }

    .small-banner-label::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      border-width: 0 16px 16px 0;
      border-style: solid;
      border-color: transparent #bb8c00 transparent transparent;
      z-index: 1;
      box-shadow: -2px 2px 3px rgba(0,0,0,0.2);
    }

    .small-banner-label::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      right: -50%;
      bottom: -50%;
      background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
      transform: rotate(30deg) translate(-100%, 0);
      animation: shine 6s ease-in-out infinite;
      pointer-events: none;
    }





    @keyframes shine-effect {
      0% {
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
      }
      40% {
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
      }
      50% {
        box-shadow: 0 6px 16px rgba(0,0,0,0.4);
      }
      60% {
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
      }
      100% {
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
      }
    }

    @keyframes shine {
      0% {
        transform: rotate(30deg) translate(-100%, 0);
      }
      20% {
        transform: rotate(30deg) translate(100%, 0);
      }
      100% {
        transform: rotate(30deg) translate(100%, 0);
      }
    }

    .small-banner-content h2 {
      font-size: 32px;
      font-weight: 700;
      color: white;
      margin-bottom: 15px;
      text-shadow: 0 2px 4px rgba(0,0,0,0.5), 0 0 2px rgba(0,0,0,0.3);
    }



    .small-banner-price {
      font-size: 16px;
      font-weight: 700;
      color: #89BC23;
      margin-bottom: 12px;
      text-shadow: 0 1px 3px rgba(0,0,0,0.5), 0 0 2px rgba(0,0,0,0.3);
    }

    /* Small Banner Specs */
    .small-banner-specs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 15px;
    }

    .spec-item {
      font-size: 12px;
      background-color: rgba(0, 0, 0, 0.4); /* Tmavší černé pozadí */
      padding: 4px 10px;
      border-radius: 4px;
      color: white; /* Pevná barva textu */
      border-left: 2px solid #89BC23; /* Zelený okraj vlevo */
      box-shadow: 0 1px 3px rgba(0,0,0,0.2);
      text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    }


    .small-banner-cta {
      display: inline-flex;
      align-items: center;
      background-color: #0056b3;
      color: white;
      padding: 12px 20px;
      border-radius: 6px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      font-size: 15px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      position: relative;
      overflow: hidden;
    }

    .small-banner-cta:before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transition: 0.5s;
    }

    .small-banner-cta:hover:before {
      left: 100%;
    }

    .small-banner-cta:hover {
      background-color: #153e75;
      box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    }

    .small-banner-cta .arrow-icon {
      margin-left: 8px;
      font-style: normal;
      transition: transform 0.3s ease;
    }

    .small-banner-cta:hover .arrow-icon {
      transform: translateX(5px);
    }

    @keyframes fade-in {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive styles */
    @media (max-width: 1400px) {
      .banner-container {
        max-width: 100%;
        padding: 0;
      }

      .banner-content {
        padding: 50px;
        width: 55%;
        margin-left: 50px;
      }

      .banner-title {
        font-size: 46px;
      }
    }

    @media (max-width: 1200px) {
      .banner-container {
        grid-template-columns: 1.4fr 1fr;
        gap: 20px;
      }

      .banner-content {
        padding: 45px;
        width: 60%;
        margin-left: 40px;
      }

      .banner-title {
        font-size: 42px;
      }

      .banner-subtitle {
        font-size: 18px;
      }

      .small-banner-content {
        padding: 30px;
      }

      .small-banner-content h2 {
        font-size: 28px;
      }

      .main-banner, .small-banners {
        height: 480px;
      }
    }

    @media (max-width: 1170px) {
      .banner-container {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .main-banner {
        height: 450px;
      }

      .banner-content {
        padding: 40px;
        width: 65%;
        margin-left: 30px;
      }

      .small-banners {
        height: auto;
        flex-direction: row;
        gap: 20px;
      }

      .small-banner {
        height: 300px;
      }

      .small-banner-content {
        width: 80%;
      }
    }

    @media (max-width: 768px) {
      .hero-banner {
        margin-bottom: 40px;
        padding: 10px;
      }

      .main-banner {
        height: 450px;
      }

      .banner-content {
        padding: 30px;
        width: 80%;
        margin-left: 20px;
      }



      .banner-label {
        font-size: 12px;
        letter-spacing: 1.5px;
      }

      .banner-title {
        font-size: 36px;
        text-align: left;
      }

      .banner-title .highlight:after {
        height: 6px;
        bottom: 3px;
      }

      .banner-subtitle {
        font-size: 17px;
        max-width: 100%;
        text-align: left;
      }

      .banner-specs {
        margin-top: 20px;
      }

      .banner-top-content .spec-item {
        font-size: 13px;
        padding: 5px 10px;
      }

      .banner-bottom-content {
        padding-bottom: 30px;
      }

      .cta-container {
        padding-right: 0;
        justify-content: flex-start;
      }

      .banner-cta {
        align-self: flex-start;
        padding: 15px 30px;
        font-size: 16px;
      }

      .banner-dots {
        margin-top: 20px;
      }

      .small-banners {
        flex-direction: column;
        gap: 20px;
      }

      .small-banner {
        height: 220px;
      }

      .small-banner-content {
        width: 100%;
        padding: 30px;
        align-items: center;
        text-align: center;
      }

      .small-banner-label-container {
        top: 0;
        right: 0;
      }

      .small-banner-content h2 {
        font-size: 26px;
      }



      .small-banner-specs {
        justify-content: center;
      }

      .small-banner-cta-container {
        justify-content: center;
      }
    }

    @media (max-width: 576px) {
      .main-banner {
        height: 450px;
      }

      .banner-content {
        padding: 25px 20px;
        width: 85%;
        margin-left: 15px;
      }



      .banner-title {
        font-size: 32px;
      }

      .banner-subtitle {
        font-size: 12px;
      }

      .banner-specs {
        margin-top: 15px;
      }

      .banner-top-content .spec-item {
        font-size: 12px;
        padding: 4px 8px;
      }

      .banner-bottom-content {
        padding-bottom: 20px;
      }

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

      .banner-cta {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
      }

      .banner-dots {
        right: 20px;
        bottom: 20px;
      }

      .small-banner {
        height: 220px;
      }

      .small-banner-content {
        padding: 25px 20px;
      }

      .small-banner-label-container {
        top: 0;
        right: 0;
      }

      .small-banner-label {
        font-size: 11px;
        padding: 8px 14px;
      }

      .small-banner-label::before {
        border-width: 0 12px 12px 0;
      }

      .small-banner-content h2 {
        font-size: 24px;
      }



      .small-banner-specs {
        gap: 6px;
        margin-bottom: 12px;
      }

      .spec-item {
        font-size: 11px;
        padding: 3px 8px;
      }

      .small-banner-cta-container {
        justify-content: center;
      }

      .small-banner-cta {
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
      }
    }

    /* USP Section */
    .usp-section {
      padding: 80px 0;
      background-color: #ffffff;
      position: relative;
    }

    /* Section title styling - clean and modern */
    .section-title {
      text-align: center;
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 60px;
      margin-top: 30px;
      color: #000;
      letter-spacing: 0.5px;
      animation: fadeInUp 0.8s ease-out;

    }

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







    .usp-list {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 40px;
    }

    .usp-item {
      display: flex;
      align-items: flex-start;
      padding: 0;
      flex: 1;
      min-width: 200px;
      max-width: 280px;
      transition: transform 0.3s ease;
    }

    .usp-icon-wrapper {
      background-color: rgb(72 72 72 / 11%);
      border-radius: 50%;
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
      flex-shrink: 0;
      transition: all 0.3s ease;
    }

    .usp-item:hover .usp-icon-wrapper {
      background-color: rgba(137, 188, 35, 0.2);
      transform: translateY(-3px);
    }

    .usp-icon {
      color: #89BC23;
      width: 24px;
      height: 24px;
      stroke-width: 2px;
    }

    .usp-text {
      text-align: left;
    }

    .usp-title {
      font-size: 18px;
      font-weight: 600;
      color: #333333;
      margin: 0 0 5px 0;
      line-height: 1.3;
    }

    .usp-description {
      font-size: 13px;
      color: #666666;
      margin: 0;
      line-height: 1.4;
      white-space: nowrap;
    }

    /* Responsive adjustments for USP */
    @media (max-width: 992px) {
      .usp-list {
        flex-wrap: wrap;
        justify-content: flex-start;
      }

      .usp-item {
        flex: 0 0 calc(50% - 15px);
        margin-bottom: 20px;
      }
    }

    @media (max-width: 576px) {
      .usp-section {
        padding: 40px 0;
      }

      .usp-list {
        flex-direction: column;
        gap: 25px;
        align-content: center;
      }

      .usp-item {
        flex: 0 0 100%;
        margin-bottom: 0;
      }

      .usp-icon-wrapper {
        width: 50px;
        height: 50px;
      }

      .usp-icon {
        width: 20px;
        height: 20px;
      }

      /* Responsive section title */
      .section-title {
        font-size: 26px;
        margin-bottom: 40px;
      }
    }
    /* Process section - Simple Connected Version */
    .process-section {
      padding: 70px 0;
      background-color: #f9f9f9;
    }

    .process-timeline {
      position: relative;
      padding: 40px 0;
      max-width: 1000px;
      margin: 0 auto;
    }

    .process-track {
      position: absolute;
      top: 80px;
      left: 0;
      right: 0;
      height: 4px;
      background-color: #e5e7eb;
      z-index: 1;
    }

    .process-progress {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 0;
      background-color: #89BC23;
      transition: width 1.5s ease-in-out, height 1.5s ease-in-out;
      z-index: 2;
      border-radius: 0 2px 2px 0; /* Rounded right edge */
    }

    .process-steps {
      display: flex;
      justify-content: space-between;
      position: relative;
      z-index: 3;
    }

    .process-flow {
      display: flex;
      justify-content: space-between;
      margin: 50px 0;
      position: relative;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
    }

    .process-step {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      z-index: 2;
      padding: 0 15px;
    }

    .step-icon {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background-color: white;
      border: 2px solid #89BC23;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      position: relative;
      z-index: 3;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .step-icon svg {
      width: 40px;
      height: 40px;
      color: #89BC23;
    }

    .connector {
      position: absolute;
      top: 40px;
      right: -50%;
      width: 100%;
      height: 4px;
      background-color: #89BC23;
      z-index: 2;
    }

    .process-step:last-child .connector {
      display: none;
    }

    .process-step {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      padding: 0 15px;
      opacity: 0.7;
      transition: all 0.5s ease;
      cursor: pointer;
      transform: translateY(0);
    }

    .process-step:hover {
      opacity: 0.9;
    }

    .process-step.active {
      opacity: 1;
      animation: stepBounce 0.5s ease;
    }

    @keyframes stepBounce {
      0% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
      100% { transform: translateY(0); }
    }

    .step-icon {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background-color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      border: 2px solid #e5e7eb;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      transition: all 0.5s ease;
      position: relative;
      z-index: 4;
    }

    .process-step.active .step-icon {
      border-color: #89BC23;
      box-shadow: 0 6px 16px rgba(137, 188, 35, 0.3);
      transform: scale(1.1);
    }

    .process-step.completed .step-icon {
      background-color: #89BC23;
      border-color: #89BC23;
      position: relative;
      transition: all 0.5s ease;
    }

    .process-step.completed .step-icon svg {
      color: white;
      transition: all 0.5s ease;
    }

    .process-step.completed .step-title {
      color: #89BC23;
      opacity: 0.8;
      transition: all 0.5s ease;
    }

    .process-step.completed .step-icon::after {
      content: '\2713'; /* Checkmark symbol */
      position: absolute;
      top: -5px;
      right: -5px;
      width: 20px;
      height: 20px;
      background-color: #89BC23;
      color: white;
      border-radius: 50%;
      font-size: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid white;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .step-icon svg {
      width: 30px;
      height: 30px;
      color: #333;
      transition: color 0.5s ease;
    }

    .process-step.active .step-icon svg {
      color: #89BC23;
    }

    .step-content {
      text-align: center;
      max-width: 200px;
    }

    .step-title {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 10px;
      color: #333;
      transition: color 0.5s ease;
    }

    .process-step.active .step-title {
      color: #89BC23;
    }

    .step-description {
      font-size: 14px;
      color: #666;
      line-height: 1.4;
      margin-bottom: 12px;
    }

    .step-timer {
      width: 100%;
      height: 3px;
      background-color: #e5e7eb;
      border-radius: 3px;
      overflow: hidden;
      margin-top: 5px;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .process-step.active .step-timer {
      opacity: 1;
    }

    .timer-progress {
      height: 100%;
      width: 0%;
      background-color: #89BC23;
      border-radius: 3px;
    }

    /* Animation classes */
    @keyframes consultation {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.2); }
    }

    @keyframes design {
      0%, 100% { transform: rotate(0); }
      25% { transform: rotate(-15deg); }
      75% { transform: rotate(15deg); }
    }

    @keyframes print {
      0% { transform: translateY(0); }
      25% { transform: translateY(-5px); }
      50% { transform: translateY(0); }
      75% { transform: translateY(5px); }
      100% { transform: translateY(0); }
    }

    @keyframes delivery {
      0% { transform: translateX(0); }
      25% { transform: translateX(5px); }
      50% { transform: translateX(0); }
      75% { transform: translateX(-5px); }
      100% { transform: translateX(0); }
    }

    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(137, 188, 35, 0.4); }
      70% { box-shadow: 0 0 0 10px rgba(137, 188, 35, 0); }
      100% { box-shadow: 0 0 0 0 rgba(137, 188, 35, 0); }
    }

    .icon-consultation.animate {
      animation: consultation 1.5s ease infinite;
    }

    .icon-design.animate {
      animation: design 1.5s ease infinite;
    }

    .icon-print.animate {
      animation: print 1.5s ease infinite;
    }

    .icon-delivery.animate {
      animation: delivery 1.5s ease infinite;
    }

    .process-step.active .step-icon {
      animation: pulse 2s infinite;
    }

    .process-step.completed .step-icon {
      transition: all 0.5s ease;
      transform: scale(1) !important;
      animation: none;
    }

    /* Responsive styles */
    @media (max-width: 992px) {
      .process-flow {
        max-width: 90%;
      }

      .step-icon {
        width: 65px;
        height: 65px;
      }

      .step-icon svg {
        width: 28px;
        height: 28px;
      }

      .step-title {
        font-size: 16px;
      }

      .step-description {
        font-size: 13px;
      }
    }

    @media (max-width: 768px) {
      .process-section {
        padding: 60px 0;
      }

      .process-flow {
        flex-direction: column;
        align-items: flex-start;
        margin: 40px auto;
        max-width: 85%;
        gap: 30px;
      }

      .connector {
        top: auto;
        right: auto;
        left: 32px;
        bottom: -30px;
        width: 4px;
        height: 30px;
      }

      .process-step {
        flex-direction: row;
        text-align: left;
        align-items: center;
        padding: 0;
        width: 100%;
        margin: 0;
      }

      .step-icon {
        width: 64px;
        height: 64px;
        margin-right: 20px;
        margin-bottom: 0;
        flex-shrink: 0;
      }

      .step-icon svg {
        width: 28px;
        height: 28px;
      }

      .step-content {
        text-align: left;
        max-width: none;
      }

      .step-title {
        margin-bottom: 5px;
      }

      .step-description {
        margin-bottom: 0;
      }

      .process-step.active .step-icon {
        transform: scale(1.05);
      }

      .process-step.completed .step-icon::after {
        top: -3px;
        right: -3px;
        width: 18px;
        height: 18px;
        font-size: 10px;
      }

      /* Adjust animation for mobile */
      @keyframes pulse {
        0% { box-shadow: 0 0 0 0 rgba(137, 188, 35, 0.4); }
        70% { box-shadow: 0 0 0 7px rgba(137, 188, 35, 0); }
        100% { box-shadow: 0 0 0 0 rgba(137, 188, 35, 0); }
      }
    }

    @media (max-width: 480px) {
      .process-section {
        padding: 40px 0;
      }

      .process-flow {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        gap: 25px;
      }

      .step-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
      }

      .step-icon svg {
        width: 24px;
        height: 24px;
      }

      .step-title {
        font-size: 15px;
      }

      .step-description {
        font-size: 12px;
        line-height: 1.3;
      }

      .connector {
        left: 25px;
        height: 25px;
        bottom: -25px;
      }
    }

    /* Book Printing Section */
    .book-printing-section {
      padding: 80px 0;
      background-color: #f9fafb; /* Light background */
    }

    .book-content {
      display: flex;
      gap: 50px;
      align-items: flex-start; /* Align items to top */
    }

    .book-text {
      flex: 1; /* Take available space */
    }

    .book-title {
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 20px;
      color: #111827;
    }

    .book-features {
      margin-top: 30px;
      display: grid;
      gap: 15px;
    }

    .book-feature {
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .book-feature-icon {
      color: #1e40af;
      font-weight: bold;
      font-size: 18px;
      line-height: 1.5; /* Align with text */
    }

    .book-feature .book-text { /* Target text within feature */
      font-size: 15px;
      color: #4b5563;
    }

    .book-gallery {
      flex-basis: 45%; /* Set basis for gallery */
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }

    .book-image {
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    }

    .book-image img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    /* Stats Section */
    .stats-section {
      padding: 10px 0;
      background-color: #0056b3;
      color: white;
      position: relative;
      overflow: hidden;
    }

    .stats-section::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
      z-index: 1;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 30px;
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .stat-item {
      position: relative;
      padding: 20px;
      border-radius: 10px;
      transition: transform 0.3s ease;
    }

    /* Odstraněn hover efekt */

    .stat-number {
      font-size: 48px;
      font-weight: 700;
      margin-bottom: 10px;
      position: relative;
      display: inline-block;
      color: white;
      text-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    /* Odstraněn zvětšovací efekt */

    .stat-text {
      font-size: 16px;
      opacity: 0.9;
      font-weight: 500;
      position: relative;
    }

    /* Responsive adjustments for stats */
    @media (max-width: 768px) {
      .stat-number {
        font-size: 40px;
      }

      .stat-text {
        font-size: 14px;
      }
    }

    @media (max-width: 480px) {
      .stat-number {
        font-size: 36px;
      }

      .stat-text {
        font-size: 13px;
      }
    }

    

    /* Clients Section */
    .clients-section {
      padding: 100px 0;
      background-color: #fff;
    }

    .clients-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      align-items: center;
      gap: 40px;
    }

    .client-logo {
      max-height: 45px; /* Adjust logo size */
      max-width: 150px;
      opacity: 0.7;
      transition: opacity 0.3s;
    }

    .client-logo:hover {
      opacity: 1;
    }

    /* Reviews Section */
    .reviews-section {
      padding: 100px 0;
      background-color: #f9fafb;
      position: relative;
      overflow: hidden;
    }

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

    .review-card {
      background-color: #fff;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.07);
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .review-rating {
      font-size: 20px;
      color: #f59e0b; /* Amber color for stars */
      margin-bottom: 15px;
    }

    .review-text {
      font-size: 15px;
      color: #4b5563;
      line-height: 1.7;
      margin-bottom: 20px;
      font-style: italic;
      flex-grow: 1;
    }

    .review-author {
      display: flex;
      align-items: center;
      gap: 15px;
      padding-top: 20px;
      border-top: 1px solid #e5e7eb;
    }

    .author-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
    }

    .author-info h4 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 3px;
    }

    .author-info p {
      font-size: 14px;
      color: #6b7280;
    }
    /* Responsive styles for reviews section */
    @media (min-width: 769px) and (max-width: 1024px) {
      .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

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

    @media (max-width: 599px) {

      .slide-title {
        font-size: 36px;
      }

      .about-content,
      .book-content,
      .contact-content {
        flex-direction: column;
      }

      .process-steps::before {
        display: none;
      }

      .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
      }
    }

    /* --- Facilities Section - Modern Version --- */
    .facilities-section {
      padding: 50px 0;
      background-color: #f9fafb; /* Light gray background */
    }

    .section-subtitle {
      text-align: center;
      font-size: 1.1em;
      color: #6b7280; /* Gray text */
      margin-top: -15px; /* Adjust spacing below title */
      margin-bottom: 50px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      font-weight: 400;
      line-height: 1.6;
      position: relative;
      padding-bottom: 15px;
    }


    /* Facilities section styling */
    .facilities-wrapper {
      display: flex;
      flex-direction: column;
      gap: 40px;
      margin-bottom: 30px;
    }

    /* Box for each facility type */
    .facility-box {
      display: flex;
      background-color: white;
      border-radius: 16px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

    /* Reverse layout for second box */
    .facility-box.reverse {
      flex-direction: row;
    }

    /* Info section */
    .facility-info {
      flex: 1;
      padding: 50px;
      display: flex;
      flex-direction: column;
    }



    /* Title styling */
    .facility-title {
      font-size: 24px;
      font-weight: 600;
      color: #111827; /* Dark text */
      margin-bottom: 18px;
    }

    /* Description styling */
    .facility-description {
      font-size: 16px;
      color: #4b5563; /* Medium gray text */
      line-height: 1.5;
      margin-bottom: 25px;
    }

    /* Features list */
    .facility-features-list {
      list-style: none;
      padding: 0;
      margin: 0;
      margin-top: auto;
    }

    .facility-features-list li {
      position: relative;
      padding-left: 28px;
      margin-bottom: 12px;
      font-size: 15px;
      color: #374151;
    }

    .facility-features-list li::before {
      content: '\2713'; /* Checkmark symbol */
      position: absolute;
      left: 0;
      top: 0;
      color: #89BC23;
      font-weight: bold;
    }

    /* Gallery with images */
    .facility-gallery {
      flex: 1.2;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(1, 1fr);
      gap: 10px;
      padding: 10px;
    }

    /* For locations gallery, make it 2x2 */
    .locations-gallery {
      grid-template-rows: repeat(2, 1fr);
    }

    /* Gallery item */
    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
      border-radius: 12px;
    }

    .gallery-item:hover img {
      transform: scale(1.05);
    }

    /* Location labels */
    .location-label {
      position: absolute;
      top: 0;
      right: 0;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: white;
      background-color: #cd9900;
      padding: 8px 14px;
      display: inline-block;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      border-radius: 0 0 0 12px;
      z-index: 5;
      overflow: hidden;
      transform: translateZ(0);
      transform-origin: top right;
    }

    .location-label::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      border-width: 0 12px 12px 0;
      border-style: solid;
      border-color: transparent #ad8201 transparent transparent;
      z-index: 1;
      box-shadow: -2px 2px 3px rgba(0,0,0,0.2);
    }

    .location-label::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      right: -50%;
      bottom: -50%;
      background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
      transform: rotate(30deg) translate(-100%, 0);
      animation: shine 6s ease-in-out infinite;
      pointer-events: none;
    }

    /* Responsive adjustments */
    @media (max-width: 1100px) {
      .facility-box,
      .facility-box.reverse {
        flex-direction: column;
      }

      .facility-info {
        padding: 35px;
      }

      .facility-gallery {
        min-height: 300px;
      }

      /* Adjust border radius for gallery items when stacked */
      .gallery-item:first-child,
      .gallery-item:nth-child(2) {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
      }

      .gallery-item img {
        border-radius: 0;
      }

      .location-label {
        border-radius: 0;
        width: auto;
        font-size: 10px;
        padding: 8px 14px;
      }

      .location-label::before {
        border-width: 0 12px 12px 0;
      }
    }

    @media (max-width: 768px) {
      .facilities-section {
        padding: 60px 0;
      }

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

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

      .gallery-item {
        min-height: 200px;
      }
	    .product-slider {
        display: none;
    }
    }

    @media (max-width: 576px) {
      .facility-info {
        padding: 25px 20px;
      }

      .facility-title {
        font-size: 20px;
      }

      .facility-description {
        font-size: 15px;
      }

      .facility-features-list li {
        font-size: 14px;
        margin-bottom: 10px;
      }

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

      .gallery-item {
        min-height: 180px;
      }
    }

/* Category Page Styles */
.product-slider {
    max-width: 1200px; /* Adjust as needed */
    margin: 0 auto;
    padding: 20px;
}

/* --- Filter Menu Styles --- */
.filter-menu {
    margin-bottom: 25px; /* Space below filter buttons */
    display: flex;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    gap: 10px; /* Space between buttons */
    justify-content: center; /* Center buttons */
}

.filter-btn {
    padding: 10px 20px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    border-radius: 4px; /* Zaoblené rohy jako u ostatních prvků */
    cursor: pointer;
    font-size: 0.95em;
    color: #555;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: #f0f0f0;
    border-color: #ccc;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    color:black;
}

.filter-btn.active {
    background-color: #1e40af; /* Modrá barva jako u CTA tlačítek */
    color: white;
    border-color: #1e40af;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.product-slider h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 30px;
    font-weight: 600;
    color: black;
}

.slider-container {
    position: relative;
}

.slider-wrapper {
    display: flex;
    gap: 25px;
    padding: 10px 5px 20px 5px;
    overflow-x: auto;
    
    /* KLÍČOVÉ PRAVIDLO 1: Natáhne všechny položky (<a>) na výšku té nejvyšší */
    align-items: stretch; 
    
    /* KLÍČOVÉ PRAVIDLO 2: Zajistí, že se položky při filtru neroztáhnou */
    justify-content: flex-start; 

    /* Skrytí scrollbaru */
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.slider-wrapper::-webkit-scrollbar {
    display: none;
}

/* 
  Pravidla pro šířku a chování ve slideru patří sem, na přímého potomka .slider-wrapper
*/
.product-link {
    text-decoration: none;
    color: inherit;
    display: flex; 
  
    flex: 0 0 280px; /* NEMĚNIT! Znamená: nerůst, nesmršťovat se, základní šířka 280px */
}

.product-link--hidden {
    display: none !important; 
}
.product-item {
    width: 100%; /* Vyplní 100% šířky rodiče (.product-link) */
    height: 100%; /* Vyplní 100% výšky rodiče (.product-link) */
    
    display: flex;
    flex-direction: column; /* Uspořádá obsah pod sebe */
    
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.product-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.product-image-container {
    width: 100%; /* Kontejner obrázku může být flexibilní */
    padding-top: 25px; /* Mezera nad obrázkem */
    padding-bottom: 15px; /* Mezera pod obrázkem */
}

.product-item img {
    max-width: 85%;
    max-height: 160px; /* Můžeme omezit maximální výšku obrázku */
    height: 160px;     /* Dáme obrázkům pevnou výšku, aby byly všechny zarovnané */
    object-fit: contain;
    margin: 0 auto; /* Horizontální zarovnání */
}

/* 
  Kontejner pro text se stará o zarovnání na spodek 
*/
.product-text-content {
    padding: 0 15px 15px 15px;
    margin-top: auto; /* KLÍČOVÉ PRAVIDLO 4: Toto kouzlo odtlačí text na dno karty */
}

.product-name {
    margin: 0 0 4px 0;
    font-size: 1.2em;
    color: #1f2937;
    font-weight: 600;
    line-height: 1.3;
}

.product-price {
    margin: 0;
    font-size: 0.85em;
    color: #0056b3;
    font-weight: 500;
}
/* Style for the "New" badge */
.new-badge {
    position: absolute;
    /* Position relative to the product item */
    top: 0;
    right: 0; /* Umístit úplně vpravo */
    background: #cd9900; /* Oranžová barva jako u small-banner-label */
    color: white;
    padding: 8px 14px; /* Slightly smaller badge */
    border-radius: 0 0 0 12px; /* Zaoblení pouze vlevo dole */
    font-size: 9px; /* Smaller font */
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    letter-spacing: 0.08em;
    z-index: 5; /* Ensure badge is above image container and card border */
    overflow: hidden;
    transform: translateZ(0);
    transform-origin: top right;
    width: auto; /* Zajistit, že šířka je podle obsahu */
    text-align: center; /* Zarovnat text na střed */
}

.new-badge::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    border-width: 0 12px 12px 0;
    border-style: solid;
    border-color: transparent #bb8c00 transparent transparent;
    z-index: 1;
    box-shadow: -2px 2px 3px rgba(0,0,0,0.2);
}

.new-badge::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(30deg) translate(-100%, 0);
    animation: shine 6s ease-in-out infinite;
    pointer-events: none;
}

/* Styles for navigation arrows */
.slider-arrow {
    position: absolute;
    top: 50%; /* Adjust as needed based on visual center */
    transform: translateY(-50%);
    background-color: #1e40af; /* Modrá barva jako u CTA tlačítek */
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    color: white;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.slider-container:hover .slider-arrow {
    opacity: 1;
    visibility: visible;
}
.avatar {
        width: 45px;
        height: 45px;
        background-color: #0056b3;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 1rem;
        box-shadow: 0 2px 4px rgba(0, 86, 179, 0.08);
        flex-shrink: 0;
	color: white;
      }

.slider-arrow:hover {
    background-color: #153e75; /* Tmavší modrá při hoveru */
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
    transform: translateY(-50%) scale(1.05);
}

.slider-arrow.prev {
    left: -22px;
}

.slider-arrow.next {
    right: -22px;
}

.slider-arrow.disabled {
    opacity: 0.3 !important;
    visibility: visible !important;
    cursor: default;
    pointer-events: none;
}

/* --- Slider Controls (dots) --- */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    margin-bottom: 0;
    width: 100%;
}

/* Reviews slider controls removed - section is now static */

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e0;
    transition: background 0.2s;
    cursor: pointer;
    display: inline-block;
}

.slider-dot.active {
    background: #0056b3;
    box-shadow: 0 0 0 2px #b3d1f7;
}

/* Style for hidden items during filtering */
.product-item.hidden {
    display: none;
}

/* --- Responsive Adjustments for Product Slider --- */
@media (max-width: 992px) {
    .product-image-container {
        width: 150px; /* Adjust size */
        height: 150px;
    }
    .product-text-content {
        min-height: 65px; /* Adjust min height */
    }
    .product-item img {
        max-width: 75%; /* Adjust image size */
        max-height: 75%;
    }
}

@media (max-width: 768px) {
    .product-slider h2 {
        font-size: 1.6em;
        margin-bottom: 20px;
    }

    .slider-wrapper {
        display: flex;
       align-items: stretch;
        gap: 15px;
        overflow-x: visible;
        padding: 0;
        -ms-overflow-style: auto;
        scrollbar-width: auto;
    }
    .slider-wrapper::-webkit-scrollbar {
        display: block;
    }

    .product-item {
        height: 100%;
        display: flex;
	flex-direction: column;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
        border: 1px solid #eef2f7;
    }

     .product-item:hover {
        transform: none;
        box-shadow: 0 5px 13px rgba(0, 0, 0, 0.07);
        border-color: #e5e7eb;
    }

    .product-image-container {
        width: 140px; /* Adjust size */
        height: 140px;
        margin: 15px auto 10px auto; /* Adjust margin */
    }
    .product-item img {
        max-width: 80%; /* Adjust image size */
        max-height: 80%;
    }

    .product-text-content {
	margin-top: auto;
        padding: 0 10px 15px 10px; /* Adjust padding */
        min-height: 60px; /* Adjust min height */
        background-color: #fff;
    }
    .product-name {
        font-size: 1.2em;
    }

    .product-price {
        font-size: 0.8em;
        color: #0056b3; /* Ensure blue price on mobile */
    }

    .new-badge {
        font-size: 9px;
        padding: 6px 12px;
        top: 0;
        right: 0;
    }

    .new-badge::before {
        border-width: 0 10px 10px 0;
    }

    .slider-arrow {
        display: none;
    }

    .filter-menu {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
     .product-slider h2 {
        font-size: 1.4em;
    }
    .slider-wrapper {
        gap: 10px;
    }
     .product-image-container {
        width: 120px; /* Adjust size */
        height: 120px;
        margin: 10px auto 8px auto; /* Adjust margin */
    }
     .product-item img {
        max-width: 80%; /* Adjust image size */
        max-height: 80%;
    }
     .product-name {
        font-size: 0.8em;
     }
     .product-price {
        font-size: 0.75em;
     }
     .new-badge {
        font-size: 8px;
        padding: 5px 10px;
        top: 0;
        right: 0;
     }

     .new-badge::before {
        border-width: 0 8px 8px 0;
     }
     .product-text-content {
        min-height: 55px; /* Adjust min height */
        padding-bottom: 10px;
     }
}