      body {
        font-family: "Poppins", sans-serif;
        background: #ffffff;
        margin: 0;
        overflow-x: hidden;
      }

      h1 {
        text-align: center;
        margin: 30px 0;
        font-weight: 600;
      }

      .glider-contain {
        position: relative;
        padding: 0 16px;
        box-sizing: border-box;
        max-width: 100%;
        margin: 0 auto;
        overflow-x: hidden;
      }

      .glider {
        display: flex;
        gap: 24px;
        padding: 20px 0;
      }

      .deal-card,
      .skeleton-card {
        background: #fff;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        flex: 0 0 auto;
        width: 90%;
        max-width: 240px;
        display: flex;
        margin: 0 8px;
        flex-direction: column;
        justify-content: space-between;
        box-sizing: border-box;
      }

      html,
      body {
        overflow-x: hidden;
        max-width: 100vw;
      }

.deal-card img {
  width: 120px;
  height: 80px;
  object-fit: contain;
  display: block;
  margin: 0 auto 15px;
  border-radius: 10px;
  background: #fff;
  padding: 5px;
  transform: scale(1.3);
}



      .deal-card h3 {
        font-size: 18px;
        margin: 0 0 10px;
        color: #333;
        text-align: center;
      }

      .deal-card p {
        font-size: 14px;
        color: #666;
        text-align: center;
      }

      .deal-card a {
        margin-top: 20px;
        background: #ff5a00;
        color: white;
        padding: 10px;
        border-radius: 6px;
        text-align: center;
        font-weight: 600;
        text-decoration: none;
        transition: background 0.3s ease;
      }

      .deal-card a:hover {
        background: #e14e00;
      }

      /* Skeleton shimmer */
      .skeleton-card {
        position: relative;
        overflow: hidden;
      }

      .skeleton-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: -150px;
        width: 150px;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.6),
          transparent
        );
        animation: shimmer 1.2s infinite;
        z-index: 1;
      }

      .skeleton-img,
      .skeleton-title,
      .skeleton-desc,
      .skeleton-btn {
        background: #e0e0e0;
        border-radius: 6px;
        margin: 10px auto;
        z-index: 0;
      }

.skeleton-img {
  width: 120px;   /* Same as logo width */
  height: 80px;   /* Same as logo height */
  background: #e0e0e0;
  border-radius: 10px;
  margin: 0 auto 15px; /* Align with actual image margin */
}


      .skeleton-title {
        width: 80%;
        height: 18px;
      }

      .skeleton-desc {
        width: 90%;
        height: 12px;
      }

      .skeleton-btn {
        width: 60%;
        height: 36px;
        margin-top: 20px;
      }

      @keyframes shimmer {
        0% {
          left: -150px;
        }
        100% {
          left: 100%;
        }
      }

      .glider-prev,
      .glider-next {
        background: #ff5a00;
        color: white;
        border: none;
        width: 38px;
        height: 38px;
        font-size: 20px;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        cursor: pointer;
      }

      .glider-prev {
        left: -15px;
        margin-left: 20px
      }
      .glider-next {
        right: -15px;
        margin-right: 20px
      }

      @media (max-width: 768px) {
        .deal-card,
        .skeleton-card {
          max-width: 80%;
        }

        .glider-prev,
        .glider-next {
          display: none;
        }
      }

      @media (max-width: 480px) {
        .deal-card,
        .skeleton-card {
          max-width: 90%;
        }
      }
