* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.phone_form_container {
    display: none;
    align-items: center;
    gap: 8px;
}
button{
  display: none;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background: #f8f8f8;
  color: #333;
  line-height: 1.6;
}

/* Container utilities */
.product-container,
.product-container1 {
  max-width: 1200px;
  margin: auto;
  padding: 1rem;
}
.prize{
    color: white;
    width: max-content;
    background: repeating-linear-gradient(75deg, #E91E63, #0d1a66 100px);
    border-radius: 39px;
    border: dashed;
    font-weight: bold;
}
/* Heading */
.hedding, h3 {
    color: black;
    margin-bottom: 1rem;
    width: auto;
    text-align: center;
    border-top-left-radius: 29px;
    border-bottom-right-radius: 29px;
     font-size: 18px;

}

/* Rate Button */
.r-btn {
    display: flex;
    justify-content: end;
    margin: 1rem 0;
    margin-right: 23px;
}

.rate-btn {
  background-color: #0f5937;
  color: white;
  border: none;
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
}

.rate-btn a {
  color: white;
  text-decoration: none;
}

/* Reviews */
.reviews-section {
  background: #fff;
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.usereview {
  margin-top: 1rem;
}

.first-line {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}

.second-line p {
  margin: 0.5rem 0;
}

.second-line img {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
  cursor: pointer;
 }

/* Overlay Image */
.overlay-img {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.overlay-img .image-container img {
  max-width: 90%;
  max-height: 90%;
}

/* Remove icon */
#remove-icon1 {
  color: white;
  font-size: 2rem;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

/* Product Summary */
.pro-summary {
  background-color: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  width: 80%;
  margin: auto;
  border: 1px solid lightgray;
}

.product-summary-row {
  display: flex;
  flex-wrap: wrap;
   gap: 2rem;
}

.product-summary-col {
  flex: 1 1 45%;
  /* min-width: 300px; */
}

.sp-card {
  text-align: center;
  margin: auto;
}

.sp-img {
  width: 54%;
  max-width: 300px;
  border-radius: 8px;
}

/* Enquiry & Compare */
.box {
  font-size: 18px;
  justify-content: space-around;
}
.enq{
    display: contents;
}
.fa .fa-phone{
  color: #0e0630;
}
.share {
  display: flex;
  align-items: center;
  gap: 8px;
 }

.share i {
  font-size: 1.2rem;
  color: #689F38;
}
.pulse{
  font-weight: bold;
    color: currentcolor;
}
.pcompare{
  margin-top: 2px;
   justify-content: space-around;
  margin-top: 16px;
}
.pcompare a {
    font-weight: bold;
    display: inline-block;
    background-color: transparent;
    border: 1px solid #235623;
    padding: 2px 1rem;
    border-radius: 4px;
    text-decoration: none;
}
.pcompare a:hover{
  background-color: cadetblue;
  color: white;
}
/* Pricing */
.price {
  margin-bottom: 1rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  border-bottom: .1px solid #3333333b;
}

.label {
  font-weight: bold;
}

/* Description */
.pro-desc,
.spdisp {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  text-align: justify;
  font-size: 15px;
}

/* Specs */
.specs-div {
  background-color: #fff;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 2rem;
  border: 1px solid lightgrey;
}

.specs {
  /* display: flex; */
  flex-wrap: wrap;
  gap: 4px;
  justify-content: space-between;
  margin-top: 1rem;
}

.keys {
  flex: 1 1 calc(50% - 1rem); /* 2 columns with gap */
  min-width: 240px;
  padding: 0.5rem;
  display: flex;
  justify-content: space-between;
  background-color: #f8f8f8; 
  border: 1px solid #ddd;  
  border-radius: 4px;
}

.key {
  font-weight: bold;
  color: #0f5937;
}

.value {
  margin-top: 0.25rem;
}

/* Read more toggle */
#long-text a {
  display: block;
  margin-top: 0.5rem;
  color: darkblue;
  cursor: pointer;
}
.spinfo {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;  
  -webkit-box-orient: vertical;
  transition: all 0.3s ease;
}

.spinfo.expanded {
  -webkit-line-clamp: unset;
  display: block;
}
.read-toggle{
  color: #23359c;
  font-style: italic;
}
/* --------------- */
/* Modal backdrop */
.modal {
  display: none; 
  position: fixed; 
  z-index: 9999;
  padding-top: 60px;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);  
}

/* Modal box */
.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 600px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  font-size: 16px;
  line-height: 1.6;
}

/* Close button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
}
#read-more-btn{
  color: steelblue;
}
/* ------------------------------------------------------------------------ */
/* Product review form */
.review-title{
  color: white;
  background-color: rgb(22, 82, 22);
  margin: auto;
  width: 38%;
  padding: 0.3rem 1rem;
  text-align: center;
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
}
.pro-review-form {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    width: 38%;
    margin: auto;
}
.pro-review-form input {
    font-size: 15px;
    padding: 0 5px;
    width: 100%;
    height: 40px;
    border: none;
    position: relative;
    border-bottom: 1px solid grey;
}
.pro-review-form input::placeholder {
  position: absolute;
  left: 5px; /* Adjust as needed */
  transition: top 0.3s ease-out; 
  z-index: 1;
}
.pro-review-form input::placeholder {
  position: absolute;
  left: 5px; 
  transition: top 0.3s ease-out; 
  z-index: 1;
}
.pro-review-form input:hover::placeholder {
  top: 0px; 
  height:50px;
}
.message{
  color:red;
  font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  text-align:center;
  animation: comego 2s infinite;
}
@keyframes comego{
  0% {opacity:1;}
  50% {opacity:0.9}
  100% {opacity:0;}
}
.pro-review-form textarea{
  height:100px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size:15px;
  padding:0 5px;
  width:100%;
  height:100px;
  border:none;
  border-bottom: 1px solid grey;
}
.pro-review-form select{
  border-radius: 5px;
  width:300px;
  color:#ffc100;
  width:100%;
  height:30px;
  border:1px solid grey;
}
.pro-review-form select option{
  color:#ffc100;
}
.pro-review-form label{
  color:darkgreen;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size:15px;
}
.pro-review-form button{
  background-color: #104b30;
  color: white;
  padding: 5px 7px;
  margin: auto;
  border: none;
  display: flex;
  font-size: 1rem;
  border-radius: 3px;
}
.product-review-form .container{
  margin: auto;
}

/* --------------------------------------------------------- */
.reviews-section {
  background-color: #f9f9f9;
  border-radius: 10px;

}

.reviews-section h5 {
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

#avg-rate {
  font-size: 1rem;
  color: #ffaa00;
}

#avg-rate i {
  margin-left: 5px;
}

.usereview {
  margin-top: 1rem;
}

.first-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 0.95rem;
}

.first-line .star {
  background: #ffaa00;
  color: #fff;
  padding: 3px 8px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.second-line {
  padding-left: 0.5rem;
  font-size:12px;
  color: #333;
  display: flex;
}

.second-line p {
  margin: 0 0 0.5rem 0;
}

.second-line img {
  max-width: 60px;
  max-height: 69px;
  border-radius: 8px;
  border: 1px solid #ccc;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.second-line img:hover {
  transform: scale(1.05);
}

.overlay-img {
  display: none;  
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.856);
  justify-content: center;
  align-items: center;
 }

.overlay-img .image-container {
  max-width: 90%;
  max-height: 90%;
}

.overlay-img img.full-img {
  width: 36%;
  height: auto;
  border-radius: 10px;
  margin: auto;
  align-items: center;
  margin-top: 5rem;
  
}

#remove-icon1 {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.reviews-section em {
  font-size: 0.85rem;
  color: #666;
   
}

hr {
  border: none;
  border-top: 1px solid #ddd;
  margin-top: 1rem;
}

/* ---------------------------------------------------------------------------- */
/* review successfull */

.review-thankyou-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background-color: #f7f7f7;
  min-height: 80vh;
}

.thankyou-box {
  background: white;
  border-radius: 12px;
  padding: 40px 30px;
  max-width: 700px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.thankyou-box h3 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 22px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
}

.thankyou-box .product-name {
  color: #2a8c2a;
  font-weight: bold;
}

.back-btn {
  background-color: #2a8c2a;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.back-btn:hover {
  background-color: #1f6f1f;
}



/* Responsive */
@media (max-width: 480px) {
  .product-summary-row {
  display: flex;
   flex-direction: column;
  justify-content: center;
  gap: 2rem;
}
  .pro-review-form {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    width: 78%;
    margin: auto;
}
  .review-title{
  color: white;
  background-color: rgb(22, 82, 22);
  margin: auto;
  width: 78%;
  padding: 0.3rem 1rem;
  text-align: center;
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
}
.pro-summary {
    background-color: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    /* width: 80%; */
    margin: auto;
    border: 1px solid lightgray;
}

}

/* ========== Tablets ========== */
@media (min-width: 481px) and (max-width: 768px) {
  .product-summary-row {
    flex-direction: column;
  }

  .rate-btn {
     text-align: center;
  }

  .sp-img {
    max-width: 100%;
  }
    .keys {
    flex: 1 1 100%;
  }
  .pro-review-form {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    width: 71%;
    margin: auto;
}
  .review-title{
  color: white;
  background-color: rgb(22, 82, 22);
  margin: auto;
  width: 71%;
  padding: 0.3rem 1rem;
  text-align: center;
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
}
  .thankyou-box {
    padding: 30px 20px;
  }

  .thankyou-box h3 {
    font-size: 18px;
  }

  .back-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* ========== Large Desktops ========== */
@media (min-width: 1200px) {

}

