body {
    margin: 0;
    font-family: 'Smythe', sans-serif;
    color: #000000;
    font-weight: normal;
}

/* ---- FONTS AND HEADINGS ---- */

h1{
    margin: 0;
    font-size: 39px;
    color: #FFFFFF;
}
h2{
    margin: 0;
    font-size: 28px;
}
h3{
    margin: 0;
    font-size: 23px;
    color: #FFFFFF;
}
h4{
    margin: 5px auto;
    font-size: 20px;
}
p{
    margin: 2px auto;
    font-size: 16px;
    color: #8B8B8B;
}

/* ---------------------- */

/* ---- HEADER ---- */

#header{
    margin: 0;
    background-image: url('./images/banner-burger-small.jpg');
    background-size: cover;
    /* background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('./images/banner-burger-small.jpg'); */
    background-position: center center, center top;
}

.header-inner{
    display: block;
    flex-direction: column;
    padding: 20px 0px 50px 40px;
    text-shadow: 2px 2px black;
}

/* ------------------ */

/* ---- MAIN ---- */

.item {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Schiebt Button ganz nach rechts */
    border-bottom: 1px solid #D2D2D2;
    padding: 20px;
    margin: 20px auto;
    max-width: 400px; /* Optional: begrenzt die Breite */
    background-color: #fff; /* Optional: schöner Kontrast */
    border-radius: 10px; /* Etwas Rundung für modernen Look */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.image-div {
    width: 70px;
    font-size: 42px;
}

.info-div {
    flex: 1; /* Füllt den mittleren Bereich */
}

.btn-div {
    display: flex;
    align-items: center;
}

.add-btn {
    color: #3C3C3C;
    border: 1px solid #dedede;
    background-color: #FFFFFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
}

.add-btn:hover {
    background-color: #f5f5f5;
    transform: scale(1.1);
}

/* ------------------ */

/* FOOTER */

#order-footer {
  border-top: 1px solid #ccc;
  padding: 10px;
  margin-top: 20px;
}

.cart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
}

.cart-row button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

#total-price {
  margin-top: 8px;
  font-weight: bold;
}


/* ------------------ */