  #feature .fe-box {
      width: 180px;
      text-align: center;
      padding: 25px 15px;
      box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.03);
      border: 1px solid #cce7d0;
      border-radius: 4px;
      margin: 15px 0;
  }

  #feature .fe-box:hover {
      box-shadow: 10px 10px 54px rgba(70, 62, 221, 0.1);
  }

  #feature .fe-box h6 {
      display: in-block;
      padding: 9px 8px 6px 8px;
      line-height: 1;
      border-radius: 4px;
      color: #088178;
      background-color: #fddde4;
  }

  #feature .fe-box img {
      width: 100%;
      margin-bottom: 10px;

  }

  #feature {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      margin-bottom: 40px;

  }

  #feature .fe-box:nth-child(2) h6 {
      background-color: #cdebbc;
  }


  #feature .fe-box:nth-child(3) h6 {
      background-color: #d1e8f2;
  }

  #feature .fe-box:nth-child(4) h6 {
      background-color: #cdd4f8;
  }

  #feature .fe-box:nth-child(5) h6 {
      background-color: #f6dbf6;
  }

  #feature .fe-box:nth-child(6) h6 {
      background-color: #fff2e5;
  }

  #productGirdView {
      text-align: center;
  }

  #productGirdView .gird-product {
      width: 23%;
      min-width: 100%;
      padding: 10px 12px;
      border: 1px solid #cce7d0;
      border-radius: 15px;
      cursor: pointer;
      box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
      margin: 15px 0;
      transition: 0.2s ease;
      position: relative;
  }

  #productGirdView .pro:hover {
      transform: translateY(-3px);
      box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
  }

  #productGirdView .gird-product img {
      width: 100%;
      border-radius: 20px;
  }

  #productGirdView .gird-product .product-details {
      text-align: start;
      padding: 10px 0;
  }

  #productGirdView .gird-product .product-details span {
      color: #606063;
      font-size: 12px;
  }

  #productGirdView .gird-product .product-details h5 {
      padding-top: 7px;
      color: #1a1a1a;
      font-size: 14px;
  }

  #productGirdView .gird-product .product-details i {
      font-size: 12px;
      color: rgb(243, 181, 25)
  }

  #productGirdView .gird-product .product-details h4 {
      font-size: 15px;
      padding-top: 7px;
      font-weight: 700;
      color: #088178;
  }

  .button-container {
      position: absolute;
      bottom: 10px;
      right: 10px;
      display: flex;
      gap: 10px;
  }

  /* Cart & Eye buttons */
  #productGirdView .action-buttons .cart,
  #productGirdView .action-buttons .eye {
      width: 30px;
      height: 30px;
      line-height: 30px;
      border-radius: 50px;
      font-weight: 500;
      border: 1px solid #cce7d0;
      text-align: center;
      cursor: pointer;
  }

  /* #productGirdView .action-buttons .cart,
  #productGirdView .action-buttons .eye {
      background-color: #088178;
      color: white;
  } */

  #productGirdView .discount-tag {
      position: absolute;
      top: 10px;
      right: 10px;
      background-color: #ff4757;
      color: white;
      padding: 5px 10px;
      border-radius: 15px;
      font-size: 12px;
      font-weight: bold;
  }

  /* banner */
  #banner {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      background-image: url(https://i.postimg.cc/SsC7D5WD/b2.jpg);
      width: 100%;
      height: 40vh;
      background-position: center;
      background-size: cover;
      margin-bottom: 60px;
      /* Adjust as needed */

  }

  #banner h4 {
      color: #fff;
      font-size: 16px;
  }

  #banner h2 {
      color: #fff;
      font-size: 30px;
      padding: 10px 0;
  }

  #banner h2 span {
      color: #ef3636;

  }

  button.normal {
      color: #000;
      padding: 10px;
      font-weight: 400;
      font-size: 14px;
      border-radius: 4px;
      background-color: #fff;
      border: none;
      outline: none;
      transition: 0.2s;
      cursor: pointer
  }

  #banner button:hover {
      background-color: #088178;
      color: #fff;
  }


  @media (max-width: 920px) {

      .section-p1 {
          padding: 40px 40px
      }

      #feature {
          justify-content: center;

      }

      #feature .fe-box {
          margin: 15px 15px
      }

      #productGirdView .pro-container {
          justify-content: center
      }

      #productGirdView .gird-product {
          margin: 15px;
      }

  }

  @media (max-width: 477px) {
      .section-p1 {
          padding: 20px
      }

      #feature {
          justify-content: space-between;
      }

      #feature .fe-box {
          width: 155px;
          margin: 0 0 15px 0;
      }

      #productGirdView .gird-product {
          width: 100%
      }

  }

  /* === show list product === */
  #productListView {
      padding: 40px 0;
  }

  #productListView .list-container {
      display: flex;
      flex-direction: column;
  }

  #productListView .list-product {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      gap: 20px;
      border: 1px solid #cce7d0;
      border-radius: 12px;
      background-color: #fff;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
      padding: 20px;
      position: relative;
      /* Needed for discount tag */
      transition: all 0.3s ease;
  }

  #productListView .list-product:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  }

  #productListView .product-thumb img {
      width: 140px;
      height: auto;
      border-radius: 8px;
      object-fit: cover;
  }

  #productListView .product-details {
      flex-grow: 1;
  }

  #productListView .product-details h5 {
      font-size: 18px;
      margin: 0 0 5px;
  }

  #productListView .product-details h5 a {
      color: #1a1a1a;
      text-decoration: none;
  }

  #productListView .product-details h5 a:hover {
      color: #088178;
  }

  #productListView .product-details p {
      font-size: 14px;
      color: #606063;
      margin-bottom: 6px;
  }

  #productListView .action-buttons {
      display: flex;
      flex-direction: column;
      gap: 8px;
      justify-content: center;
      align-items: flex-end;
      visibility: visible;
      opacity: 1;
  }

  /* Cart & Eye buttons */
  #productListView .action-buttons .cart,
  #productListView .action-buttons .eye {
      width: 36px;
      height: 36px;
      line-height: 36px;
      border-radius: 50%;
      text-align: center;
      border: 1px solid #cce7d0;
      font-size: 16px;
      transition: all 0.2s ease;
      cursor: pointer;
  }

  /* #productListView .action-buttons .cart:hover,
  #productListView .action-buttons .eye:hover {
      background-color: #088178;
      color: #fff;
  } */

  /* Discount tag */
  #productListView .discount-tag {
      position: absolute;
      top: 10px;
      left: 10px;
      background-color: #ff4757;
      color: #fff;
      padding: 4px 10px;
      font-size: 12px;
      font-weight: bold;
      border-radius: 12px;
      z-index: 2;
  }

  /* Responsive */
  @media (max-width: 768px) {
      #productListView .list-product {
          flex-direction: column;
          align-items: center;
          text-align: center;
      }

      #productListView .product-details {
          padding-top: 10px;
      }

      #productListView .action-buttons {
          flex-direction: row;
          justify-content: center;
          align-items: center;
          margin-top: 10px;
      }

      #productListView .discount-tag-list {
          top: 10px;
          left: 10px;
      }
  }

  /* modal css */

  .modal.left .modal-dialog {
      position: fixed;
      left: 0;
      top: 0;
      bottom: 0;
      margin: 0 !important;
      height: 100%;
      max-width: 90%;
      transform: translateX(-100%);
      transition: transform 0.3s ease-out;
      z-index: 1055;
  }

  .modal.left.show .modal-dialog {
      transform: translateX(0);
  }

  /* Modal container styles */
  .modal.left .modal-content,
  .modal-dialog,
  .modal-content {
      height: 100%;
      background-color: #fff !important;
      border: none !important;
      box-shadow: none !important;
      outline: none !important;
      border-radius: 0 !important;
  }

  /* Remove Bootstrap 5 shadow variables if applicable */
  .modal-content {
      --bs-box-shadow: none !important;
      box-shadow: none !important;
  }

  /* Extra assurance: override browser focus ring & active box-shadows */
  .modal *,
  .modal *:focus,
  .modal *:active {
      box-shadow: none !important;
      outline: none !important;
      border-color: transparent !important;
  }

  /* Modal body scroll and spacing */
  .modal.left .modal-body {
      overflow-y: auto;
      flex-grow: 1;
      padding: 15px;
  }

  /* Header/footer no borders */
  .modal-header,
  .modal-footer {
      border: none !important;
  }

  /* Optional: backdrop less visible or completely transparent */
  .modal-backdrop {
      background-color: rgba(0, 0, 0, 0.1) !important;
      box-shadow: none !important;
  }