body {
  margin: 0;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f4b6c2;
  padding: 10px 15px;
  width: 100vw;
  box-sizing: border-box;
}

.menu-options {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-options li {
  font-weight: bold;
  color: black;
  font-size: 1rem;
}

.hamburger img {
  width: 30px;
  height: auto;
}

.Pizza-Icon {
  display: flex;
  align-items: center;
  gap: 8px;
}

.homepage {
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 1.2rem;
}

.homepage:hover {
  opacity: 0.8;
  cursor: pointer;
}

.Pizza-Icon img {
  width: 35px;
  height: auto;
}

.Pizza-Icon p {
  margin: 0;
  font-weight: bold;
  font-size: 1.2rem;
}

.order-online {
  font-weight: bold;
  white-space: nowrap;
}

.alfredo-image {
  width: 100%;
  height: 400px;
  display: block;
  object-fit: cover;
}

.product-description h1 {
  font-family: 'Oleo Script', cursive;
  font-size: 2rem;
  margin: 0;
  color: black;
}

.details {
  font-weight: bold;
  font-size: 0.95rem;
  color: #333;
  margin: 4px 0 8px 0;
}

.product-description {
  text-align: left;
  padding: 16px 20px;
  background-color: white;
}

.summary {
  font-size: 1rem;
  line-height: 1.4;
  color: black;
  margin: 0;
}

.sauce-section {
  padding: 6px 20px 16px 20px;
}

.sauce-section h2 {
  font-size: 1.6rem;
  margin-bottom: 6px;
  color: black;
}

.sauce-options {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.sauce-button {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  border: 2px solid #ccc;
  border-radius: 10px;
  font-weight: bold;
  color: black;
  background-color: white;
  font-size: 1rem;
}

.sauce-button.selected {
  background-color: #f4b6c2;
  border-color: #f4b6c2;
  color: black;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.protein-section {
  padding: 6px 20px 16px 20px;
}

.protein-section h2 {
  font-size: 1.6rem;
  margin-bottom: 6px;
  color: black;
}

.protein-options {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.protein-button {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  border: 2px solid #ccc;
  border-radius: 10px;
  font-weight: bold;
  color: black;
  background-color: white;
  font-size: 1rem;
}

.protein-button.selected {
  background-color: #f4b6c2;
  border-color: #f4b6c2;
  color: black;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.add-ons-section {
  padding: 6px 20px 16px 20px;
}

.add-ons-section h2 {
  font-size: 1.6rem;
  margin-bottom: 6px;
  color: black;
}

.add-ons-options {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.add-ons-button {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  border: 2px solid #ccc;
  border-radius: 10px;
  font-weight: bold;
  color: black;
  background-color: white;
  font-size: 1rem;
}

.add-ons-button.selected {
  background-color: #f4b6c2;
  border-color: #f4b6c2;
  color: black;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.recommended-section {
  padding: 20px 20px 0 20px;
}

.recommended-section h2 {
  text-align: center;
  font-size: 1.6rem;
  color: black;
  margin-bottom: 12px;
}

.recommended-item {
  display: flex;
  align-items: center;
  background-color: #f4b6c2;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  height: 140px;
}

.recommended-item img {
  width: 40%;
  height: 100px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  height: 140px;
}

.recommended-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px 14px;
}

.recommended-name {
  font-family: 'Oleo Script', cursive;
  font-size: 1.4rem;
  margin: 4px 0 10px 0;
  color: black;
}

.recommended-button {
  display: inline-block;
  background-color: #C73939;
  color: black;
  padding: 8px 16px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 0.9rem;
  text-decoration: none;
  border: 2px solid #C73939;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.recommended-button:hover {
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.5);
  transform: translateY(-3px);
}

.add-to-cart-section {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 0 60px 0;
}

.add-to-cart {
  background-color: #C73939;
  border-radius: 10px;
  color: white;
  font-weight: bold;
  font-size: 0.95rem;
  padding: 8px 24px;
  border: 2px solid #C73939;
  width: fit-content;
  margin: 0 auto 10px auto;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
  .recommended-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    column-gap: 32px;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
    padding: 20px 60px;
  }

  .recommended-section h2 {
    grid-column: 1 / -1;
    text-align: center;
    margin: 0 0 22px 0;
  }

  .recommended-item {
    grid-row: 2;
    display: flex;
    background-color: #f4b6c2;
    border-radius: 12px;
    overflow: hidden;
    height: 220px;
  }

  .recommended-item img {
    width: 50%;
    height: 100%;
    object-fit: cover;
  }

  .recommended-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 16px;
  }

  .recommended-name {
    font-family: 'Oleo Script', cursive;
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: black;
  }

  .recommended-button {
    background-color: #C73939;
    color: white;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1rem;
    border: 2px solid #C73939;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
  }
}

@media (max-width: 767px) {
  .recommended-section {
    display: block;
    padding: 20px;
  }

  .recommended-item {
    width: 100%;
    margin-bottom: 20px;
    height: 180px;
  }

  .recommended-item img {
    height: 180px;
  }
}

@media (min-width: 1024px) {
  header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hamburger { display: none; }

  .menu-options {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
  }

  .menu-options li {
    font-size: 0.8rem;
    line-height: 1.1;
  }

  .Pizza-Icon { position: relative; }

  .order-online {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
  }
}
























