.packages-main_data_section{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: flex-start;
}
.packages-single-product-info {
    display: flex;
    flex-direction: column;
    width: 50%;
    height: 100%;
    justify-content: flex-end;
    align-items: flex-end;
}
.packages-main_data_image_section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;
}
.packages-main_data_price_section{
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100px;
    align-items: center;
}
.packages-product-title{
    font-family: var(--font-main);
    color: var(--black-color);
    font-size: 40px;
}
.packages-add_to_basket_button {
  padding: 10px 20px;
  border: 1px solid var(--red-color);
  background-color: var(--red-color);
  color: var(--white-color);
  font-family: var(--font-main);
  font-size: 20px;
  border-radius: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
  height: 60px;
  min-width: 200px;
}
.packages_get_price_button {
  padding: 10px 20px;
  border: 1px solid var(--red-color);
  background-color: var(--red-color);
  color: var(--white-color);
  font-family: var(--font-main);
  font-size: 20px;
  border-radius: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
  height: 60px;
  width: 100%;
}
.packages-product-subtitle{
    font-family: var(--font-main);
    font-size: 25px;
    text-align: right;
    font-weight: bold;
    margin-bottom: 10px;
}
.packages-product-full-description{
    font-family: var(--font-main);
    font-size: 16px;
    text-align: right;
}
.packages-product-contact_us{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.packages-group-whatsapp-single-text{
    font-family: var(--font-main);
    font-size: 20px;
    color: var(--black-color);
}
.packages-product-price{
    font-family: var(--font-main);
    font-size: 30px;
    color: var(--red-color);
    font-weight: bold;
}
.packages-line{
    background-color: var(--black-color);
    width: 100%;
    height: 1px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.packages-single-product-main-image {
  text-align: center;
  width: 450px;
  height: 450px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white-color);
  border-radius: 20px;
  margin-bottom: 20px;
}
.packages-single-product-main-image img {
  width: 100%; 
  height: 100%;     
  object-fit: contain; 
}
.packages-single-product-gallery {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.packages-single-product-gallery-item img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
  background-color: var(--white-color);
  border-radius: 20px;
}
.packages-single-product-gallery-item img:hover {
  transform: scale(1.05);
}
.packages-related_items_title_section{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    width: 100%;
}
.packages-related_items_title{
    font-family: var(--font-main);
    font-size: 40px;
    color: var(--pink-color);
    font-weight: bold;
}
.packages-related_items_subtitle{
    font-family: var(--font-main);
    font-size: 20px;
    color: var(--black-color);
}
.packages-related_items_section{
    width: 100%;
}
.packages_form_section{
    width: 100%;
    height: 300px;
}
.packages_from_title{
    font-family: var(--font-main);
    font-size: 30px;
    color: var(--black-color);
}
.three-column-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  width: 100%;
}
.form-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-column input {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  font-family: var(--font-main);
  font-size: 12px;
  border-radius: 0px;
  border: 0px solid var(--gray-color);
  box-sizing: border-box;
  background-color: var(--gray-color);
  height: 60px;
}
.packages-bullets {
  list-style-type: disc;
  margin: 10px 20px;
  padding: 0;
  direction: rtl;
  text-align: right;
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color:var(--black-color);
}
.packages-bullets li {
  margin-bottom: 6px;
}
.packages-single-product-gallery-item img {
  cursor: pointer;
  transition: transform 0.2s ease;
}
.packages-single-product-gallery-item img:hover {
  transform: scale(1.05);
}