
  .theme-carousel-section {
    max-width: 1440px;
    margin: 50px auto;
background-color: #f4f8ff !important;
    padding: 0 20px;
    font-family: Arial, sans-serif;
  }

  .theme-carousel-header {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 32px auto;
  }

  .theme-carousel-title {
    font-size: 36px;
    font-weight: 400 !important;
    color: #222222;
    margin-bottom: 12px;
    line-height: 1.2;
    text-align: center;
  }

  .theme-carousel-desc {
    font-size: 16px;
    color: #555555;
    line-height: 1.6;
    margin: 0;
  }

  .theme-slider-wrapper {
    position: relative;
    padding: 0 15px;
  }

  .theme-slider-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0 20px 0;
    scrollbar-width: none;
  }

  .theme-slider-track::-webkit-scrollbar {
    display: none;
  }

  .theme-slider-card {
    flex: 0 0 calc((100% - 48px) / 3);
    scroll-snap-align: start;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    aspect-ratio: 16 / 10;
    display: block;
  }

  .theme-slider-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(48, 160, 255, 0.22);
  }

  .theme-slider-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
    display: block;
  }

  .theme-slider-card:hover .theme-slider-bg {
    transform: scale(1.06);
  }

  .theme-slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.25) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: all 0.4s ease;
    box-sizing: border-box;
  }

  .theme-slider-card:hover .theme-slider-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.05) 60%, transparent 100%);
  }

  .theme-slider-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    transition: transform 0.3s ease;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  }

  .theme-slider-card:hover .theme-slider-card-title {
    transform: translateY(-4px);
  }

  .slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: #ffffff;
    color: #30A0FF;
    border: 1px solid #eef2f7;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .slider-nav-btn:hover {
    background-color: #30A0FF;
    color: #ffffff;
    border-color: #30A0FF;
  }

  .slider-nav-btn.prev-btn {
    left: -15px;
  }

  .slider-nav-btn.next-btn {
    right: -15px;
  }

  .theme-bottom-box {
    text-align: center;
    margin-top: 36px;
  }

  .theme-view-all-btn {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    height: 46px;
    padding: 0 28px;
    border-radius: 0px;
    background-color: #30A0FF;
    color: #ffffff;
    border: 2px solid #30A0FF;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    box-sizing: border-box;
  }

  .theme-view-all-btn:hover {
    background-color: #ffffff;
    color: #30A0FF;
    border-color: #30A0FF;
    box-shadow: 0 6px 18px rgba(48, 160, 255, 0.25);
  }

  @media (max-width: 1024px) {
    .theme-slider-card {
      flex: 0 0 calc((100% - 20px) / 2);
    }
  }

  @media (max-width: 576px) {
    .theme-carousel-section {
      padding: 0 12px;
      margin: 36px auto;
    }

    .theme-carousel-header {
      margin-bottom: 20px;
    }

    .theme-carousel-title {
      font-size: 22px;
      font-weight: 400 !important;
      margin-bottom: 8px;
    }

    .theme-carousel-desc {
      font-size: 13px;
      line-height: 1.5;
    }

    .theme-slider-wrapper {
      padding: 0;
    }

    .theme-slider-track {
      gap: 0;
      padding: 5px 0 15px 0;
    }

    .theme-slider-card {
      flex: 0 0 100%;
      aspect-ratio: 4 / 3;
      border-radius: 12px;
    }

    .theme-slider-overlay {
      padding: 16px;
    }

    .theme-slider-card-title {
      font-size: 16px;
    }

    .slider-nav-btn {
      display: flex;
      width: 36px;
      height: 36px;
      font-size: 18px;
      background: rgba(255, 255, 255, 0.88);
    }

    .slider-nav-btn.prev-btn {
      left: 8px;
    }

    .slider-nav-btn.next-btn {
      right: 8px;
    }

    .theme-bottom-box {
      margin-top: 24px;
    }

    .theme-view-all-btn {
      height: 40px;
      padding: 0 20px;
      font-size: 12px;
    }
  }
