
  /*      body, html {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    background: #f2f2f2;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
  }

  .container-custom {
    display: flex;
    flex-wrap: nowrap;
    min-height: 100vh;
  }

  .right-content {
    width: calc(100vw - 300px);
    background: #e5f1ff;
    padding: 35px 30px;
  }

  /* Bootstrap Reset (optional) */
  .container, .container-fluid {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
  }

  .row, [class*="col-"] {
 
    margin: 0 !important;
  }

   
    .left-sidebar {
      width: 300px;
      background: #fff;
      border-right: 1px solid #ddd;
      padding: 20px;
      overflow-y: auto;
    }
    .left-sidebar h3 {
      font-size: 22px;
      font-weight: 700;
      color: #0d6efd;
      margin-bottom: 25px;
    }
    .left-sidebar ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .left-sidebar ul li {
      margin-bottom: 20px;
    }
    .left-sidebar ul li a {
      color: #007bff;
      text-decoration: none;
      font-weight: 600;
      font-size: 17px;
      padding-left: 8px;
    }
    .left-sidebar ul li a:hover {
      text-decoration: underline;
    }

    .product-box {
      background: #ffffff;
      border-radius: 10px;
      padding: 25px 30px;
      display: flex;
      gap: 30px;
      align-items: flex-start;
      box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    }
    .product-image {
      width: 220px;
      height: 220px;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      flex-shrink: 0;
    }
    .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .product-details-wrapper {
      flex: 1;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 30px;
    }
    .details-buttons {
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .verified-heading {
      font-size: 14px;
      color: rgb(15, 166, 172);
      font-weight: bold;
      text-transform: uppercase;
      margin-bottom: 4px;
      letter-spacing: 1px;
      padding-left: px;
    }

    .verifiedheading2{color:rgb(228, 173, 33);}
    .verifiedheading3{color:darkgreen;}
    .verifiedheading4 {color:rgb(50, 25, 107); }
    
    
    .user-name, .username4, .username3 {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 22px;
      font-weight: 700;
      color: #0d6efd;
      margin-bottom: 15px;
    }

    .username4 img {
      width: 50px;
      height: 50px;
    }

    .username3 img{
        width: 45px;
        height: 45px;
    }

    .user-name img {
      width: 25px;
      height: 25px;
    }
    
    .info-row {
      display: flex;
      gap: 60px;
      font-size: 16px;
      font-weight: 600;
      color: #333;
    }
    .info-block {
      display: flex;
      flex-direction: column;
    }
    .info-block > div:first-child {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .info-block > div:last-child {
      margin-top: 8px;
      font-weight: 400;
      color: #555;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .info-block i {
      color: #0d6efd;
      font-size: 18px;
    }
    .button-group {
      margin-top: 20px;
      display: flex;
      gap: 20px;
    }
    .button-group button {
      padding: 10px 25px;
      border: 2px solid #0d6efd;
      background: transparent;
      color: #0d6efd;
      border-radius: 10px;
      font-weight: 700;
      font-size: 15px;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .button-group button:hover {
      background: #0d6efd;
      color: white;
    }
    .contact-person-img {
      width: 110px;
      height: 110px;
      border-radius: 50%;
      overflow: hidden;
      box-shadow: 0 6px 15px rgba(13, 110, 253, 0.3);
      background: white;
      padding: 8px;
    }
    .contact-person-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
    }

    @media (max-width: 900px) {
      .container {
        flex-wrap: wrap;
      }
      .left-sidebar {
        display: none;
      }
      .right-content {
        width: 100vw;
        padding: 20px;
      }
      .product-box {
        flex-direction: column;
        align-items: center;
      }
      .product-details-wrapper {
        flex-direction: column;
        gap: 20px;
      }
      .product-image {
        width: 100%;
        max-width: 400px;
        height: auto;
      }
      .info-row {
        flex-direction: column;
        gap: 15px;
      }
    }