a{
    text-decoration: none;
}
.body_shop-by-category {
    text-align: center;
    background-color: #FFFFFF;
  }

  .body_banner-wrapper {
    width: 100%;
  }

  .body_banner-image {
    display: block;
    width: 100vw;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 30px;
  }

  .body_container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
  }

  .body_category-heading {
    font-size: 2rem;
    color: #2C3E50;
    margin-bottom: 20px;
    font-weight: bold;
  }

  /* Desktop Slider */
  .body_category-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .body_category-slider {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    gap: 10px;
    max-width: 100%;
  }

  .body_category-slider .body_category-item {
    min-width: 160px;
    flex: 0 0 auto;
    text-align: center;
    padding: 10px;
    background: #FFFFFF;
  }

  .slider-btn {
    background-color: #fff;
    border: 1px solid #ccc;
    font-size: 1.5rem;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
  }

  .slider-btn.left {
    margin-right: 10px;
  }

  .slider-btn.right {
    margin-left: 10px;
  }

  .body_category-item h3 {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #333333;
  }

  .body_category-item a {
    text-decoration: none;
    color: inherit;
  }

  .body_category-item a:hover h3 {
    color: #FF6F61;
  }

  /* Round Image */
  .circle-image {
    width: 120px;
    height: 120px;
    padding: 10px;
    border: 2px solid #84d3e9;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    transition: transform 0.4s ease-in-out;
  }

  .circle-image:hover {
    animation: zigzag-spin 0.5s ease-in-out forwards;
  }

  @keyframes zigzag-spin {
    0%   { transform: rotate(0deg); }
    25%  { transform: rotate(5deg); }
    50%  { transform: rotate(-5deg); }
    75%  { transform: rotate(5deg); }
    100% { transform: rotate(0deg); }
  }

  /* Mobile Styles */
  .body_mobile-only {
    display: none;
  }
 /* Feature Section Container */
.feature-section {
    width: 1300px;
    height: 120px;
    margin: 10px auto;
    border-radius: 10px;
    overflow: hidden;
    background-color: #f4f4f4;
    display: flex;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

/* Left Column - Text Area */
.feature-text {
    flex: 1;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 20px;
}

/* Main Heading */
.feature-text h1 {
    font-size: 28px;
    color: #333;
    font-weight: bold;
    margin: 0;
}

/* Subheading */
.feature-text h2 {
    font-size: 16px;
    color: #777;
    font-weight: 400;
    margin: 5px 0 0;
}

/* Right Column - Image Area */
.feature-image {
    flex: 1;
    height: 100%;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}


  @media (max-width: 1024px) {
    .body_desktop-only {
      display: none;
    }

    .body_mobile-only {
      display: block;
    }

    .body_carousel-wrapper {
      position: relative;
      overflow: hidden;
    }

    .body_carousel-track {
      display: flex;
      scroll-snap-type: x mandatory;
      overflow-x: auto;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
    }

    .body_carousel-slide {
      flex: 0 0 70%;
      scroll-snap-align: start;
      padding: 10px;
    }

    .body_carousel-dots {
      text-align: center;
      margin-top: 10px;
    }

    .body_dot {
      display: inline-block;
      width: 10px;
      height: 10px;
      margin: 0 5px;
      background-color: #ccc;
      border-radius: 50%;
      transition: background-color 0.3s;
    }

    .body_dot.body_active {
      background-color: #FF6F61;
    }
  }
