/* Add custom CSS styles below */ 
button.s-button-element.s-button-btn.s-button-outline.s-button-sm.s-button-wide.s-button-primary-outline.s-button-loader-center {
    background-color: #1F3A36;
    border-color: #1F3A36 !important;
    color: white !important;
}
.product-card--primary-buttons button i, .product-card--primary-buttons salla-button i {
    color: white !important;
}
.product-card__buttons>div button {
    align-items: center;
    background: #1F3A36;
}


section.s-block.s-block--bundle-html-content {
    margin-top: 0px !important;
}
.product-card--vertical:not(.product-card--fit-height) .product-card__image {
    background-color: white;
}
.product-card__actions div button {
    background: #1F3A36;
}

.hero-slider-wrapper {
    width: 100%;
    height: 100vh; /* Fill the full height of the screen */
    margin: 0 auto;
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
    direction: rtl;
    margin-top: -2rem; /* Matches your current offset */
  }

  .hero-slider {
    display: flex;
    height: 100%; /* Ensure the inner container is also full height */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none; 
    scrollbar-width: none; 
  }

  .hero-slider::-webkit-scrollbar { display: none; }

  .slide {
    flex: 0 0 100%;
    width: 100vw; /* Fill full width of the screen */
    height: 100%;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%; /* Side padding for content */
    box-sizing: border-box;
    gap: 40px;
  }

  .slide-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
  }

  .slide-subtitle { 
    color: #d4a373; 
    font-size: 1.2rem; 
    margin-bottom: 12px;
    font-weight: 500;
  }

  .slide-title { 
    font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: 800; 
    color: #111; 
    margin: 0 0 20px 0; 
    line-height: 1.2;
  }

  .slide-desc { 
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #444; 
      margin: 0px 10px 10px 10px;
    line-height: 1.6; 
    max-width: 500px; 
  }
  
  .slide-btn {
    background-color: #000;
    color: #fff;
    padding: 16px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: 0.3s transform ease;
    white-space: nowrap;
  }

  .slide-btn:hover { transform: scale(1.05); color: #fff; }

  .slider-controls {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    width: 100%;
    justify-content: flex-start;
  }

  .nav-arrow {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
  }

  .nav-arrow.next-arrow { border-color: #3D3530; color: #3D3530; }
  .nav-arrow:hover { background: #000; color: #fff; border-color: #000; }

  .slide-image-container { 
    flex: 1.3; 
    display: flex; 
    justify-content: center; 
    height: 70%; /* Prevents image from pushing text out on smaller desktops */
  }

  .slide-image { 
    width: 100%;
    height: 100%;
    max-width: 650px; 
    border-radius: 20px; 
    object-fit: contain; /* Keeps the whole product visible without cropping */
  }

  /* Full Responsive Logic for Mobile */
  @media (max-width: 991px) {
.slide-content{
 margin-top: -3rem;
    background-color: #F2EDE6;
    border-radius: 15px;
}
    .hero-slider-wrapper {
      background-color: transparent;
      margin-top: -4rem;
        height: auto; /* On mobile, let it grow if needed, or keep 100vh for a splash look */
        min-height: 90vh;
          width: 90vw;
          border-radius: 30px;
    }
    .slide { 
              margin-top: -1rem;

        flex-direction: column-reverse; 
        padding: 0px;
        gap: 0px;
        justify-content: flex-end;
    }
    .slide-image-container {
        height: 40vh; /* Fixed height for image area on mobile */
        width: 100%;
    }
    .slide-subtitle{
      margin: 0px;
    }
    .slide-title {
        font-size: 2rem;
        margin: 0px;
        margin-top: -0.9rem;
    }
    .slider-controls { justify-content: center; margin-top: 20px; }
  }