#extras-container {
    display: none; 
    background: rgba(0, 0, 0, 0.7); 
    padding: 20px; 
}

#toggle-extras {
    border: 1px solid #FFB700!important; 
    border-radius: 20px!important; 
    padding: 5px!important;  
    background-color: #ececec!important;    
    display: inline-block; 
    cursor: pointer; 
    margin-bottom: 10px!important;
	margin-top: 10px!important;
}

.extras-container {
    display: none;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
}

.extras-container ul {
    list-style-type: none; 
    padding: 0; 
    margin: 0; 
}

.extras-link {
    margin-top: -30px;
    display: inline-block;
    font-weight: 700;
    color: #FFB700;
}

#custom-plugin-extras-container {
    display: none; 
    background: rgba(0, 0, 0, 0.7); 
    padding: 20px; 
}

#custom-plugin-toggle-extras {
    border: 1px solid #FFB700 !important; 
    border-radius: 20px !important; 
    padding: 5px !important; 
    display: inline-block; 
    cursor: pointer; 
    margin-bottom: 10px !important;
	margin-top: 10px!important;
}

.custom-plugin-extras-container {
    display: none;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
}

.custom-plugin-extras-container ul {
    list-style-type: none!important; 
    padding: 0; 
    margin: 0; 
}

.custom-plugin-extras-link {
    margin-top: -30px;
    display: inline-block;
    font-weight: 700;
    color: #FFB700;
}


#shop-categories-wrapper {
    position: relative;
}

.scroll-controls {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.scroll-control {
    background-color: #f0f0f0;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.shop-categories-list {
    list-style: none;
    padding: 0;
}

.category-item {
    margin-bottom: 30px;
}

.category-title {
    text-align: center;
    font-size: 24px;
    margin: 0;
}

.category-description {
    text-align: center;
    margin-bottom: 20px;
}

.category-products {
    margin-top: 20px;
}

.product-item {
    border-bottom: 1px solid rgba(224, 224, 224, 0.3);
    padding-bottom: 10px;
    margin-bottom: 10px;
    position: relative;
}

.product-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); 
}


.product-image {
    width: 100%; 
}

.product-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}

.product-description {
    font-size: smaller;
}

.product-price {
    margin: 0;
}

#cart-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #000000; 
  color: #ffb700; 
  width: 50px; 
  height: 50px;
  padding: 10px;
  border-radius: 50%; 
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center; 
  z-index: 9999;
  text-decoration: none;
  box-sizing: border-box; 
}

#cart-icon:hover {
  background-color: #333333; 
}

#cart-icon i {
  font-size: 24px;
}

#cart-count {
  position: absolute;
  top: 5px; 
  right: 5px;
  background-color: #ffffff;
  color: #ffb700; 
  border-radius: 50%;
  padding: 2px 5px;
  min-width: 20px;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
}

.status-bar {
    width: 100%;
    text-align: center;
    font-weight: bold;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000; 
}

.status-bar.open {
    background-color: #FFBA00;
    color: #FFFFFF;
}

.status-bar.closed {
    background-color: red;
    color: white;
}

#shop-categories-wrapper {
    position: relative;
    width: auto;
}

.scroll-controls {
    position: absolute;
    top: -60px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 10;
}

.scroll-control {
    background-color: rgba(0, 0, 0, 0.6);
    color: #FFB700;
    border: none;
    padding: 10px 15px;
    font-size: 24px;
    cursor: pointer;
}

#shop-categories-container {
    overflow-x: auto;
    white-space: nowrap;
    padding: 0 50px;
    box-sizing: border-box;
    width: 100%;
    scroll-snap-type: x mandatory;
    background-color: transparent;
    scroll-behavior: smooth;
}

#shop-categories-container::-webkit-scrollbar {
    display: none;
}

.shop-categories-list {
    list-style: none!important;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.category-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 55vw;
}

@media (max-width: 768px) {
    .category-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 90vw;
    }
}

.category-title {
    border: 2px solid #FFB700;
    border-radius: 8px;
    padding: 10px;
    background-color: #222;
    color: #FFB700!important;
    font-weight: bold; /* Fett gedruckt */
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
	margin-left: 10px;
}

.category-products {
    padding: 0 20px;
}

.product-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px;
}

.product-image {
    max-width: 60px;
    max-height: auto;
    margin-right: 10px;
}

.product-details {
    flex: 1;
}

.product-details h3 {
	color: #FFB700;
}

.product-description {
    font-size: smaller; 
    color: #A0A0A0; 
    line-height: 1.4;
    margin-top: 5px;
    max-height: none; 
}


@media (max-width: 768px) {
    .scroll-control {
        font-size: 20px;
        padding: 8px 12px;
    }
	.menu-item-446 {
    background-color: #FEFEFE; 
    border-radius: 10px;     
	}
}

.add-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    width: 20px;
    height: 20px;
    background-color: #FFB700;
    color: white;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: translateY(-50%); 
    transform-origin: center; 
    transition: transform 0.3s ease;
}

.add-icon.open {
    transform: translateY(-50%) rotate(45deg); 
}


.notification {
    display: none;
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 9999;
}

.pizza-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
    position: relative;
    z-index: 10;
    width: 110%;
    border-radius: 20px;
}

.pizza-overlay.open {
    max-height: 500px;
    opacity: 1;
    display: block; 
}

.product-iframe {
    width: 100%;
    height: 270px; 
    border: none;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.plus-btn,
.minus-btn {
    background-color: #FFB700; 
    color: white;
    border: none;
    width: 25px;
    height: auto; 
    font-size: 15px; 
    display: inline-block;
    text-align: center;
    cursor: pointer;
    margin-right: 5px;
    border-radius: 100px; 
}
