body {
  padding: 0 15px;
}

h2 {
  font-family: 'Sedan', serif;
  font-weight: 400;
  font-style: normal;
  color: #e5d591;
  margin: 0;
  padding-bottom: 10px;
}

h3 {
  font-family: 'Sedan', serif;
  font-weight: 400;
  font-style: normal;
  color: #e5d591;
}

.img-container {
  margin-bottom: 20px;
}

.img-container img {
  width: 100%;
}

.menu-items {
  display: flex;
  justify-content: flex-start;
  flex-flow: row wrap;
  padding-top: 10px;
}
.menu-item {
  margin-bottom: 5px;
  padding-bottom: 5px;
  flex: 1 1 100%;
  width: 100%;
  border-bottom: 1px solid #e5d6913b;
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
  align-items: center;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 300;
  font-style: normal;
}

.title {
  font-weight: bold;
  text-transform: uppercase;
  flex: 1 1 50%;
  max-width: 500%;
}

.quantity {
  flex: 1 1 20%;
  max-width: 20%;
}

.price {
  text-align: right;
  font-size: 18px;
  flex: 1 1 20%;
  max-width: 20%;
}

.info {
  max-width: 100%;
  flex: 1 1 100%;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.accordion .accordion-item {
  background-color: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: 5px;
}

.accordion .accordion-item .accordion-item-description-wrapper hr {
  border: none;
  border-top: 1px solid var(--border-color);
  visibility: visible;
}

.accordion .accordion-item.open .accordion-item-description-wrapper hr {
  visibility: visible;
}

.accordion .accordion-item .accordion-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  border-bottom: 1px solid #e5d591;
}

.accordion .accordion-item .accordion-item-header .accordion-item-header-title {
  font-weight: 600;
}

.accordion .accordion-item .accordion-item-header .accordion-item-header-icon {
  transition: var(--transition);
}

.accordion
  .accordion-item.open
  .accordion-item-header
  .accordion-item-header-icon {
  transform: rotate(-180deg);
}

.accordion .accordion-item .accordion-item-description-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: var(--transition);
}

.accordion .accordion-item.open .accordion-item-description-wrapper {
  grid-template-rows: 1fr;
}

.accordion
  .accordion-item
  .accordion-item-description-wrapper
  .accordion-item-description {
  min-height: 0;
}

.accordion
  .accordion-item
  .accordion-item-description-wrapper
  .accordion-item-description
  p {
  line-height: 1.5;
}

.new-item {
  font-weight: bold;
  color: #ffcc00; /* Gold color */
  background-image: linear-gradient(90deg, #ffcc00, #ff9900, #ffcc00);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 2s linear infinite;
}

@keyframes shine {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 200%;
  }
}

.redbull-sticker {
  position: absolute;
  top: 0px;
  right: 35px;
  width: 25px;
  height: 25px;
  background-image: url('./assets/redbull_logo_no_bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.menu-item {
  margin-bottom: 5px;
  padding-bottom: 5px;
  flex: 1 1 100%;
  width: 100%;
  border-bottom: 1px solid #e5d6913b;
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
  align-items: center;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 300;
  font-style: normal;
  position: relative;
}
