.col-lg-8
{
    /* display: grid; */
    place-items: center;
    /* text-align: center; */
}
.w-100
{
    place-items: center;
}
.button-bottom
{
    width: 100%;
    display: grid;
    place-items: center;
}

.navbar {
    padding: 8px 0 !important;
    background-color: red !important;
    display: flex
;
    flex-direction: column;
    height: 60px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.head-text
{
  font-weight: bold;
  color: #000;
}
          form {
            position: relative;
          }

          .loader {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            z-index: 10000;
            display: none;
          }

          .loader img {
            position: absolute;
            width: 10%;
            bottom: 50%;
            left: 50%;
            transform: translateY(50%);
            transform: translateX(-50%);
          }
         
    .comeback_layout {
      display: none;
      position: fixed;
      padding: 10px;
      color: #000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      z-index: 20000000;
      background: rgba(0, 0, 0, 0.75);
      overflow-y: scroll;
      -ms-overflow-style: none;
      overflow: -moz-scrollbars-none;
    }

    .comeback_layout::-webkit-scrollbar {
      width: 0;
    }

    .comeback_wrapper {
      width: 100%;
      max-width: 450px;
      margin: auto;
    }

    .comeback_container {
      border-radius: 12px;
      border: none;
      background: linear-gradient(to top, #fff, #fff);
      padding: 15px;
      text-align: center;
    }

    .comeback_container .btn {
      display: block;
      width: 100%;
      color: #fff;
      background: #c73030;
      text-transform: uppercase;
      padding: 20px 30px;
      font-size: 21px;
      font-weight: bold;
      text-align: center;
      vertical-align: middle;
      border-radius: 12px;
      text-decoration: none !important;
      -webkit-animation: 1s pulse2 infinite alternate ease-in-out;
      animation: 1s pulse2 infinite alternate ease-in-out;
    }

    .comeback_img {
      height: 100%;
      width: auto;
      margin: 10px auto;
    }

    .promo__title {
      font-weight: 700;
      font-size: 55px;
      line-height: 65px;
      text-align: center;
      color: #000;
      text-shadow: none !important;
      background-position: 0 0;
      -webkit-background-clip: text;
      animation: background 5s infinite alternate;
      margin-bottom: 20px;
    }

    @media (max-width: 700px) {
      .comeback_container p {
        font-size: 16px;
        line-height: 1 !important;
      }

      .promo__title {
        font-size: 40px;
        line-height: 48px;
      }
    }

    .comeback_header {
      margin-bottom: 25px;
    }

    .comeback_header p {
      margin: 5px auto;
    }

    .comeback_body {
      background: linear-gradient(to right, #7b9fcc, #3c72b5);
      height: 150px;
      padding: 10px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: space-around;
    }

    .comeback_body span {
      color: #fff;
      text-transform: uppercase;
      font-size: 16px;
    }

    .comeback_footer p {
      width: 100%;
      margin-left: auto;
      margin-right: 0;
      line-height: 24px;
    }

    .comeback_footer {
      margin-bottom: 30px;
      margin-top: 15px;
    }

    .comeback_footer::before {
      content: "";
      background-size: 150px 150px;
      width: 150px;
      height: 150px;
      background-repeat: no-repeat;
      margin-left: 150px;
      margin-top: -20px;
      position: absolute;
    }

    @media (max-width: 540px) {
      .comeback_footer::before {
        display: none;
      }
    }

    @media (max-width: 430px) {
      .comeback_container img {
        max-width: 100%;
        width: 100%;
      }

      .comeback_footer p {
        margin-right: 1em;
      }
    }

    @media (max-width: 321px) {
      .comeback_footer p {
        margin-right: 2em;
      }
    }
   
    .sale-alert {
      position: fixed;
      top: 20px;
      right: -350px;
      /* Initially hide the alert off-screen */
      background-color: #d9eaff;
      /* Light blue-gray background for better readability */
      color: black;
      padding: 10px;
      font-size: 14px;
      font-weight: bold;
      border-radius: 12px;
      border: 2px solid black;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      z-index: 9999;
      width: 300px;
      max-height: 150px;
      overflow-y: auto;
      display: none;
      flex-direction: row;
      align-items: center;
      justify-content: flex-start;
      transition: right 1s ease, opacity 1s ease;
      /* Added opacity transition */
      opacity: 0;
      /* Initially invisible */
    }

    /* Slide-in effect */
    .sale-alert.show {
      right: 20px;
      /* Move it to the visible area */
      opacity: 1;
      /* Make it visible */
    }

    .sale-alert img {
      width: 40px;
      height: 40px;
      margin-right: 10px;
      border-radius: 50%;
      border: 2px solid white;
    }

    .sale-alert .alert-text {
      display: inline-block;
    }

    /* Popup container */
    .popup {
      display: none;
      /* Hidden by default */
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 1000;
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid #ccc;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      padding: 10px;
      text-align: center;
      width: 80%;
      /* Default width for larger devices */
      max-width: 400px;
      /* Limit max width */
      height: auto;
      /* Height adjusts to content */
    }

    /* Popup close button */
    .popup-close {
      position: absolute;
      top: 5px;
      right: 5px;
      background: #ff4d4d;
      color: #fff;
      border: none;
      border-radius: 50%;
      width: 25px;
      height: 25px;
      cursor: pointer;
      font-size: 14px;
      line-height: 25px;
      text-align: center;
    }

    .popup img {
      width: 100%;
      /* Ensure image fills the popup */
      height: auto;
      /* Maintain aspect ratio */
      border-radius: 5px;
    }

    /* Media query for smaller devices (mobile) */
    @media (max-width: 480px) {
      .popup {
        width: 95%;
        /* Take most of the screen width */
        height: auto;
        /* Adjust height to fit content */
        max-width: none;
        /* Remove max-width for small devices */
      }

      .popup img {
        width: 100%;
        /* Image fills popup */
        height: auto;
        /* Maintain aspect ratio */
      }
    }
  .row
  {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .pro-img
  {
    display: grid;
    place-items: center;
  }
  .comments {
    max-width: 90% !important;
    background: #f4f4f4 !important;
    padding: 20px !important;
    border-radius: 10px !important;
}
  .comments__title {
    text-align: center;
    font-size: 28px;
    line-height: 34px;
    margin: 0 0 20px 0;
    font-weight: 700;
    color: #000;
}
  .comments__item {
    display: flex;
    margin: 0 0 50px 0;
}
.comments__avatar {
    margin-right: 20px;
    width: 72px;
    height: 72px;
    max-width: 72px;
    min-width: 72px;
}
.comments__avatar img {
    display: block;
    max-width: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.comments__body {
    position: relative;
    background: #f5f5f5;
    padding: 15px;
    border-radius: 15px;
    width: 100%;
}
.time-comments {
    position: absolute;
    top: 17px;
    right: 15px;
    font-size: 12px;
    color: #999;
}
.comments__name {
    font-weight: 700;
    font-size: 14px;
    padding-right: 70px;
    margin-bottom: 10px;
    padding: 0;
    display: block;
}
.comments__body img {
    max-width: 280px !important;
    border-radius: 3px !important;
}
.mute-btn {
    position: absolute;
    /* bottom: 20px; */
    left: 50%;
    transform: translatey(-140%);
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mute-btn img {
    width: 30px;
    height: 30px;
    pointer-events: none;
}
.order-button {
    border-radius: 10px;
    color: white;
    background-color: red;
    font-weight: bold;
    text-decoration: none;
    padding: clamp(8px, 2vw, 12px);
    display: inline-block;
    width: 100%;
    max-width: 300px;
    margin: 15px 0;
    transition: all 0.3s;
    font-size: clamp(14px, 2vw, 16px);
    text-align: center;
}

.order-button:hover {
    background-color: black;
    color: red;
    transform: scale(1.05);
}
.box-thank {
    max-width: 600px;
    margin: 50px auto;
    padding: 40px 20px;
    text-align: center;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
}
.main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.thank-you-text {
    color: #28a745;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}
.thank-you-hindi {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}
.product-img-order {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
}
.check-mark {
    color: #28a745;
    margin-bottom: 20px;
}

.check-mark svg {
    width: 80px;
    height: 80px;
}