/* Product Launched */


    /* PRODUCT ROW SLIDER BUTTONS */

    .product-slider-container {
      position: relative;
      width: 100%;
    }

    .p-slide-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: white;
      border: none;
      width: 40px;
      height: 40px;
      font-size: 24px;
      border-radius: 50%;
      box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
      cursor: pointer;
      z-index: 10;
    }

    .p-slide-btn:hover {
      transform: translateY(-50%) scale(1.1);
    }

    .p-slide-btn.left {
      left: 5px;
    }

    .p-slide-btn.right {
      right: 5px;
    }




    /* Title */

    .section-title {
      margin-left: 30px;
      margin-top: 15px;
      margin-bottom: -20px;
    }

    

    .section-title h2 {
      font-size: 22px;
      font-weight: 600;
      color: #333;
    }





    /* Cards-Sections  */

    .product-row {
      display: flex;
      gap: 26px;
      overflow-x: auto;
      padding: 30px;
    }

    .product-row::-webkit-scrollbar {
      display: none;
    }

    .product-row::-webkit-scrollbar-tumb {
      background: #ccc;
      border-radius: 10px;
    }


/* ===== PRODUCT SLIDER CARD STYLES ===== */

    .p-card {
      min-width: 150px ;

      background: #ffffff;
      border: 1px solid #eee;
      border-radius: 10px;
      padding: 8px 15px;
      box-shadow: 0 0 0 rgba(0, 0, 0, 0);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      position: relative;

      height: 260px !important;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      
    }

    .p-card:hover {
      transform: scale(1.0);
      box-shadow: 0px 1px 3px rgb(135, 134, 134);
      cursor: pointer;
    }

    .p-card * {
      pointer-events: none;
    }

    .p-card .add-btn {
      pointer-events: auto;
    }

     a{
        text-decoration: none;
        color: inherit;
    }

    a:visited {
      color: inherit;
    }

    a:hover,
    a:active{
      color: blue;
    }




.p-img {
  width: 100%;
  height: 100px;         /* FIXED SIZE BOX for all images */
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
  object-fit: contain;
  max-width: 100%;
  max-height: 100px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.p-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;  
  object-position: center;
  display: block;
}

/* Mobile me chooota box */
@media (max-width: 480px) {
  .p-img {
    height: 130px;
  }
}



/* 
    .p-card h3 {
      font-size: 14px;
      margin: 8px 0;
      height: 30px;
      max-height: 30px;
      font-weight: 500;

    } */


   .p-card h3 {
  font-size: 14px;
  margin: 8px 0;
  font-weight: 400;
  max-width: 120px;      
  white-space: normal;    
  word-wrap: break-word;  
  overflow: hidden;       
}


    .price {
      font-size: 14px;
      font-weight: 400;

    }



    .add-btn {
      width: 100%;
      padding: 10px;
      margin-top: 20px;
      font-size: 14px;
      font-weight: bold;
      background: #1e4ed8;
      color: #fff;
      border: none;
      border-radius: 6px;
      cursor: pointer;
    }

    .product-slider-container {
      overflow: hidden;
    }



  /* =====================================
   PRODUCT SLIDER CARD RESPONSIVE (FIXED)
===================================== */

/* DEFAULT FIX — prevent page expanding */
.product-slider {
    display: flex;
    gap: 12px;           /* default gap */
    overflow-x: auto;
    padding: 5px 0;
    scroll-snap-type: x mandatory;
}

.p-card {
    flex: 0 0 auto;      /* important: no expand */
    scroll-snap-align: start;
    border-radius: 8px;
}

/* 992px ↓ */
@media (max-width: 992px) {
    .p-img { height: 130px; }
    .p-card { min-width: 160px; }
    .product-slider { gap: 12px; }
}

/* 768px ↓ */
@media (max-width: 768px) {
    .p-img { height: 120px; }
    .p-card { min-width: 150px; }
    .product-slider { gap: 10px; }
}

/* 576px ↓ */
@media (max-width: 576px) {
    .p-img { height: 115px; }
    .p-card { min-width: 140px; }
    .product-slider { gap: 10px; }
}

/* 420px ↓ */
@media (max-width: 420px) {
    .p-img { height: 100px; }
    .p-card { min-width: 130px; padding: 6px; }
    .product-slider { gap: 8px; }
}

/* 360px ↓ */
@media (max-width: 360px) {
    .p-img { height: 90px; }
    .p-card { min-width: 120px; }
    .product-slider { gap: 6px; }
}

