/** Shopify CDN: Minification failed

Line 8:15 Unexpected "{"
Line 8:24 Expected ":"
Line 8:31 Unexpected "{"

**/
.floor-slider-{{ section.id }} {
    padding: 60px 20px;
    max-width: 1250px;
    margin: 0 auto;
    font-family: 'Encode Sans';
  }
  .custom-h2 {
    text-align: left;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000;
    font-family: "Encode Sans";
    letter-spacing: normal;
  }
  .slider-wrapper {
    position: relative;
    overflow: hidden;
  }
  .slider-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }
  .slider-container::-webkit-scrollbar {
    display: none; 
  }
  .slide-card {
    flex: 0 0 calc(33.333% - 14px);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
  }
  @media (max-width: 1024px) {
    .slide-card { flex: 0 0 calc(50% - 10px); }
  }
  @media (max-width: 768px) {
    .slide-card { flex: 0 0 100%; }
  }
  .slide-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1.1;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #f4f4f4;
    box-shadow: 0 8px 24px rgb(0 0 0 / 21%);
  }
  .slide-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
  }
  .slide-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
    width: 100%;
    align-items: center;
  }
  .slide-content h3 {
    color: #cc522f; 
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1;
    font-family: 'Encode Sans';
    max-width: 180px; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center !important;
  }
  .slide-content p {
    font-size: 14px;
    color: #333;
    margin: 0 auto 12px auto;
    max-width: 320px;
    font-family: Arial;
    letter-spacing: normal;
    line-height: 1.2;
    flex-grow: 1;
  }
  .slide-button {
    display: inline-block;
    background-color: #cc522f;
    border: 2px solid #cc522f;
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: normal;
    font-weight: 700;
    text-transform: uppercase;
    transition: opacity 0.3s;
    margin-top: auto; 
    width: fit-content;
    align-self: center;
  }
  .slide-button:hover { 
    background: #fff !important;
    color: #cc522f !important;
    border: 2px solid  #cc522f;
  }

  /* Controls */
  .slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
  }

  .slider-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-grow: 1;
  }

  .dot {
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
  }
  .dot.active { 
    background: #cc522f; 
  }
  
  .slider-arrows {
    display: flex;
    gap: 20px;
  }
  .arrow {
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .slider-arrows .arrow svg { 
    width: 20px; 
    height: 20px; 
    fill: #000; 
  }

  @media (max-width: 430px) {
    .slider-arrows {
      display: none;
    }
  }