#productCard {
  background-color: white;
  margin-bottom: 2rem;
  padding: 1rem;
  border-radius: 2rem;
  -webkit-box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.09);
  box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.09);
}

.card-img-top {
  border-radius: 2rem;

}

.colorArea {
  display: flex;
  width: "100%";
  height: 2rem;
  justify-content: center;
  align-items: center;
}
.colorPlot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 0.8rem;
  background-color: red;
}

.card-body{
  padding: 1rem;
}

.card-title{
  margin-top: .8rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 0.5rem;
}

.card-text{
  font-size: 1rem;
  color: #7d7d7d;
}

.product-view-button {
  /* display: inline-block; */
  border-radius: 2rem;
  background-color: #f867ca;
  border: none;
  color: #ffffff;
  /* text-align: center; */
  font-size: 14px;
  /* padding: 10px; */
  width: 3rem;
  height: 3rem;
  transition: all 0.2s;
  cursor: pointer;
  margin: 3px;
}

#product-view-button-icon {
  font-size: .7rem;
}


#map {
  height: 100px; /* Adjust the height as needed */
  width: 100px; /* The width will cover the full width of the page */
}

#product {
  flex: 1;
}

/*---------------------------------- product-area ---------------------------------*/

#product-area {
  width: 100%;
  /* height: 50rem; */
}

#left {
  width: 100%;

  background-color: white;
  border-radius: 2rem;
  padding: 1rem;
  -webkit-box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.09);
  box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.09);
}

.product-img {
  width: 100%;
  height: auto; /* Let height adjust automatically based on width */
  aspect-ratio: 100 / 140; /* Maintain a 100:60 ratio */
  object-fit: cover;
  border-radius: 2rem;
}

#left-inner {
  width: 100%;

  border-radius: 2rem;
  background-color: rgb(228, 228, 228);
}

#right {
  width: 100%;
  border-radius: 2rem 2rem 0 0;
  background-color: #FFF0F6;
}


.info-pallet-box {
  position: relative;
  margin-top: 0.5rem;
}

.availability-area{
  position: absolute;
  top: 10;
  right: 10;
  width: 5rem;
  height: 3rem;
  border-radius: 1rem;
  background-color: rgb(255, 255, 255);

  display: flex;
  justify-content: center;
  align-items: center;
}

.availability-icon{
  color: #25d366;
  font-size: 1rem;
}

.container-box {
  max-width: 600px;
  margin: 0 auto;

  padding: 3rem;
  border-radius: 10px;
}

.category-text {
  font-weight: 600;
  color: #a3a3a3;
  margin-bottom: 1rem;
}

.title-text {
  font-weight: 600;
}

.description-text{
  font-size: 1rem;
}

.date-text{
  font-weight: 600;
}

.price {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 10px 0px 0px 0px;
}

.delivery-fee-text{
  font-size: .8rem;
}

.rating {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.rating .star {
  color: orange;
}
.colors {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}
.color {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #ddd;
  cursor: pointer;
}
.color.white {
  background-color: #f1f1f1;
}
.color.blue {
  background-color: #1a1f71;
}

.dimensions {
  display: flex;
  gap: 20px;
}
.dimensions span {
  font-size: 1rem;
}
.quantity {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.quantity input {
  width: 40px;
  text-align: center;
  margin: 0 5px;
}
.actions {
  margin-top: 20px;
}
.actions button {
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  margin-right: 10px;
}
.add-to-cart {
  background-color: #f1f1f1;
  color: #000;
}
.buy-now {
  background-color: #25d366;
  color: #fff;
  border-radius: 2rem !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.facebook-share {
  background-color: #2570d3;
  color: #fff;
}

.clipboard-share {
  background-color: #909aa090;
  color: #fff;
}

.info-product-bottom {
  width: 100%;
  height: 50px;
  background-color: #F72585;
  border-radius: 0 0 2rem 2rem;
  display: flex;
  justify-content: center; /* Horizontally center */
  align-items: center; /* Vertically center */
}

.info-product-bottom-text {
  margin-top: 12px;
  text-align: center;
  color: white;
  font-weight: 500;
}



@media (max-width: 1400px) {
  .card-img-top {
    border-radius: 1rem;
    height: 14rem;
  }
}

@media (max-width: 992px) {
  #productCard {
    margin-bottom: .8rem;
    padding: 0.5rem;
    border-radius: 1rem;
  }

  .card-img-top {
    border-radius: 1rem;
    height: 10rem;
  }


  .card-body{
    padding: .5rem;
  }

  .card-title{
    margin-top: .2rem;
    font-size: 1rem;
    margin-bottom: .5rem;
  }

  .card-text{
    margin-top: .2rem;
    font-size: .7rem;
    margin-bottom: .3rem;
  }

  .description-text{
    font-size: .8rem;
  }

  #left {
    border-radius: 1rem;
  }

  .product-img {
    border-radius: 1rem;
  }

  #right {
    border-radius: 1rem 1rem 0 0;
  }
  .container-box {
    padding: 2.4rem;
  }


  .product-view-button {
    /* display: inline-block; */
    border-radius: 2rem;
    background-color: #f867ca;
    border: none;
    color: #ffffff;
    /* text-align: center; */
    font-size: 10px;
    /* padding: 10px; */
    width: 2rem;
    height: 2rem;
    transition: all 0.2s;
    cursor: pointer;

    /* margin: 3px; */
  }

  #product-view-button-icon {
    font-size: .7rem;
    align-self: center;
  }

  .info-product-bottom {
    padding-left: 1rem;
    padding-right: 1rem;
    height: 60px;
    border-radius: 0 0 1rem 1rem;
  }
  .info-product-bottom-text {
    margin-top: 12px;
    /* font-size: 1rem; */
    text-align: center;
    color: white;
    font-weight: 500;
  }
}

@media (max-width: 842px) {


.card-text{
  margin-top: .2rem;
  font-size: .7rem;
  margin-bottom: .3rem;
}
}






@media (max-width: 767px) {
  .card-img-top {
    border-radius: 1rem;
    height: 24rem;
  }
}



.flatpickr-calendar.inline {
  border-radius: 12px;
}

.flatpickr-input {
  width: 100px; /* Adjust width */
}

/* Change calendar background */
.flatpickr-calendar {
  background-color: white; /* Light blue */
}

/* Change header color */
.flatpickr-month {
  background-color: white; /* Hot pink */
  color: white;
}

/* Change the color of the selected date */
.flatpickr-day.selected {
  background-color: #be519c; /* Teal */
  color: white;
}

/* Change the color of other days */
.flatpickr-day {
  background-color: #ffffff; /* White */
  color: #333; /* Dark text */
}

/* Change hover effect */
.flatpickr-day:hover {
  background-color: #f867ca; /* Light red */
  color: white;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #be519c;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: white;
  border-color: #be519c;
}
