
  .feat-products-section {
    max-width: 1440px;
    margin: 50px auto;
    padding: 0 20px;
    font-family: Arial, sans-serif;
  }

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

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

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

  .feat-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .feat-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    aspect-ratio: 4 / 3;
    display: block;
    border: 1px solid #eef2f7;
  }

  .feat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(48, 160, 255, 0.22);
    border-color: #30A0FF;
  }

  .feat-img-box {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #f7f9fc;
  }

  .feat-img-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.4s ease-in-out, transform 0.6s ease;
    display: block;
  }

  .feat-img-box img.primary-img {
    opacity: 1 !important;
    z-index: 1 !important;
  }

  .feat-img-box img.secondary-img {
    opacity: 0 !important;
    z-index: 2 !important;
  }

  .feat-card:hover .feat-img-box img.secondary-img {
    opacity: 1 !important;
    transform: scale(1.08) !important;
  }

  .feat-card:hover .feat-img-box img.primary-img {
    transform: scale(1.08) !important;
  }

  .feat-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.25) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    transition: background 0.4s ease;
    box-sizing: border-box;
    pointer-events: none;
  }

  .feat-card:hover .feat-overlay {
    background: linear-gradient(to top, rgba(11, 30, 54, 0.9) 0%, rgba(48, 160, 255, 0.35) 70%, transparent 100%);
  }

  .feat-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.35;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
  }

  .feat-card:hover .feat-card-title {
    transform: translateY(-2px);
  }

  .feat-bottom-box {
    text-align: center;
    margin-top: 40px;
  }

  .feat-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;
  }

  .feat-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) {
    .feat-products-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
  }

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

    .feat-products-header {
      margin-bottom: 20px;
    }

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

    .feat-products-desc {
      font-size: 13px;
      line-height: 1.5;
    }

    .feat-products-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .feat-card {
      border-radius: 10px;
    }

    .feat-overlay {
      padding: 10px;
    }

    .feat-card-title {
      font-size: 12px;
      line-height: 1.25;
    }

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

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