/*Contact US */
.contact-section {
  text-align: center;
  margin: auto;
  width: 80%;
  padding: 20px;
  background-color: #e3f2fd;
  border-radius: 10px;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 20px;
}

.contact-item {
  text-align: left;
  flex: 1;
  margin: 10px;
  max-width: 250px;
}

.contact-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-form h3 {
  margin-bottom: 10px;
}

.contact-form form {
  text-align: left;
  width: 100%;
  max-width: 400px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #0056b3;
}

.social-media {
  margin-top: 20px;
}

.social-icon {
  display: inline-block;
  margin: 0 10px;
}

.social-icon img {
  width: 30px;
  height: 30px;
}

@media screen and (max-width: 768px) {
  .contact-item {
    max-width: none;
  }
}

.page-title-area {
  text-align: center;
}

.deal-container {
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.deal-table {
  width: 100%;
  border-collapse: collapse;
}

.deal-table td {
  padding: 15px;
  text-align: center;
  border: 1px solid #ddd;
  vertical-align: top;
}

.deal-image {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.add-to-cart {
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  cursor: pointer;
}

.add-to-cart:hover {
  background-color: #0056b3;
}

.row-padding {
  padding-top: 20px;
}

/* Media query for responsiveness */
@media (max-width: 768px) {
  .deal-table td {
      padding: 10px;
  }

  .deal-image {
      max-height: 120px;
  }
}
.cart-popup {
  position: fixed;
  top: 0;
  right: -400px; /* Starts hidden */
  width: 400px;
  height: 100%;
  background-color: #fff;
  box-shadow: -2px 0px 5px rgba(0, 0, 0, 0.3);
  transition: right 0.3s ease;
  overflow-y: auto;
  padding: 20px;
  box-sizing: border-box;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.cart-items {
  max-height: 300px;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.cart-total {
  margin-top: 20px;
  text-align: right;
}

.cart-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
