.special-dish-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-bg-dark);
}

.special-dish-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}

.special-dish-text {
  flex: 1;
  padding: 40px;
  text-align: center;
}

.special-dish-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}

.dish-badge {
  width: 35px;
  height: 50px;
  background-color: var(--color-accent);
  position: relative;
  clip-path: polygon(
    0 0, 100% 0, 100% 100%, 50% 75%, 0 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.dish-badge::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-bg-dark);
}

.dish-star {
  font-size: 24px;
  color: var(--color-bg-dark);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.special-dish-label {
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 20px;
  font-family: var(--font-heading);
  margin: 0;
}

.special-dish-title {
  font-family: var(--font-condensed);
  font-size: 54px;
  font-weight: 300;
  margin: 0;
}

.special-dish-description {
  font-family: var(--font-primary);
  color: #E8E9E9;
  font-size: 18px;
  font-weight: 300;
}

.special-dish-pricing {
  font-family: var(--font-primary);
  margin-bottom: 30px;
}

.price-old {
  color: #999;
  text-decoration: line-through;
  margin-right: 20px;
}

.price-new {
  color: var(--color-accent);
  font-size: 20px;
  font-weight: bold;
}

.special-dish-button {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
}

.special-dish-button:hover {
  background-color: var(--color-accent);
  color: #000;
}

.special-dish-image {
  flex: 1;
  min-width: 300px;
  height: 100%;
  display: flex;
  align-items: center;
}

.special-dish-image img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .special-dish-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .special-dish-title {
    font-size: 32px;
  }

  .special-dish-description {
    font-size: 15px;
  }

  .special-dish-text {
    padding: 10px 0px;
  }
}
