/* <-------------------------- product detail page --------------------------> */

.tabby-container {
  padding: 25px 0;
  border-bottom: 1px solid #e4e4e4;
}
.tabby-box img {
  height: 30px;
}
.tabby-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 15px;
  border-radius: 5px;
  background-color: #f6f2fb;
  border: 1px dashed #dbcbee;
}
.tabby-text .detailheading {
  font-weight: 500;
  margin-bottom: 6px;
}
.learnmore-link {
  display: flex;
  gap: 5px;
  align-items: center;
  text-decoration: none;
  color: #4b6de5;
  font-size: 13px;
  font-weight: 500;
}
.learnmore-link img {
  height: 16px;
  width: 16px;
}
#reviewModal .modal-content {
  width: 100%;
  max-width: 650px;
  height: 90%;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  border-radius: 10px !important;
}
#reviewModal .modal-content .close {
  position: absolute;
  right: 15px;
  top: 15px;
}

@media only screen and (max-width: 500px) {
  #reviewModal .modal-content {
    height: 100%;
    border-radius: 0px !important;
  }
}

/* <------------------------------- homepage -------------------------------> */

.outofstock-modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.outofstock-modal .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  width: 300px;
  text-align: center;
}
.outofstock-modal .close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
}
.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column !important;
}

.input-label {
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
  font-weight: 500;
}

.input-field {
  padding: 12px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background-color: #f9f9f9;
}

.input-field:focus {
  border-color: #007bff;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
  outline: none;
}

.input-field::placeholder {
  color: #999;
}

.input-field:hover {
  background-color: #fff;
  border-color: #8c59c8;
}
.submit-btn {
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background-color: #8c59c8;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.submit-btn:hover {
  background-color: #8c59c8;
  box-shadow: 0 0 10px rgba(97, 0, 105, 0.3);
}

.submit-btn:focus {
  outline: none;
  box-shadow: 0 0 10px rgba(139, 0, 93, 0.5);
}
.modal-header{
  border-bottom: unset !important;
}

.m-p-close{
  font-size: 24px;
}

@media only screen and (max-width: 768px) {
 #OutofstockModal .modal-content {
  width: 100% !important;
  }
}