    .horizontal-carousel-section {
      position: relative;
      margin: 40px auto;
      max-width: 1458px;
      margin-top: 10px;
    }

    .horizontal-carousel-wrapper {
      width: 100%;
      overflow: hidden;
      position: relative;
      border-radius: 10px;
      background: #fff;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      padding: 20px 0;
    }

    .horizontal-carousel {
      display: flex;
      gap: 10px;
      transition: transform 0.5s ease;
      flex-wrap: nowrap;
      width: max-content;
    }

    .horizontal-carousel img {
      width: 200px;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      flex-shrink: 0;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
    }

    .horizontal-carousel img:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .carousel-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(0, 0, 0, 0.6);
      color: white;
      border: none;
      font-size: 28px;
      cursor: pointer;
      padding: 10px 15px;
      border-radius: 50%;
      z-index: 10;
      transition: background 0.3s ease, opacity 0.3s ease;
    }

    .carousel-arrow:hover:not(:disabled) {
      background-color: rgba(0, 0, 0, 0.8);
    }

    .carousel-arrow:disabled {
      opacity: 0.3;
      cursor: not-allowed;
    }

    .carousel-arrow.left { left: -20px; }
    .carousel-arrow.right { right: -20px; }