/* Toast Menu Frontend Styles */

.toast-menu {
  margin: 30px 0;
}

.toast-menu-title {
  font-size: 2em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid #333;
}

.toast-menu-description {
  font-size: 1.1em;
  color: #666;
  margin-bottom: 30px;
}

/* Menu Groups */
.toast-menu-group {
  margin-bottom: 40px;
}

.toast-menu-group-title {
  font-size: 1.3em;
  margin-bottom: 20px;
  color: #000;
  padding-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.toast-menu-group-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 3px;
  background: #c9a877;
}

.toast-menu-group-description {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 20px;
  font-style: italic;
}

/* Menu Items - Default Style */
.toast-menu-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.toast-menu-item {
  display: flex;
  gap: 15px;
  padding: 18px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid #e5e5e5;
  border-radius: 0;
  transition: background-color 0.2s ease;
}

.toast-menu-item:last-child {
  border-bottom: none;
}

.toast-menu-item:hover {
  background-color: #fafafa;
}

.toast-menu-item-image {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 6px;
}

.toast-menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.toast-menu-item-content {
  flex: 1;
}

.toast-menu-item-top-holder {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

.toast-menu-item-name {
  font-size: 1em;
  margin: 0;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.toast-menu-item-line {
  flex: 1;
  height: 1px;
  background: #e5e5e5;
  margin: 0 10px;
}

.toast-menu-item-bottom-holder {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 2px;
}

.toast-menu-item-description-holder {
  flex: 1;
}

.toast-menu-item-subname {
  font-size: 0.85em;
  color: #b8936d;
  font-weight: 400;
  line-height: 1.4;
}

.toast-menu-item-label-holder {
  display: flex;
  justify-content: flex-end;
  min-width: 40px;
  text-align: right;
}

.toast-menu-item-label {
  display: inline-block;
  padding: 4px 12px;
  background: #c9a877;
  color: #000;
  font-size: 0.75em;
  border-radius: 2px;
  font-weight: 500;
  font-style: italic;
}

.toast-menu-item-price {
  font-size: 1.3em;
  color: #000;
  font-weight: 700;
  white-space: nowrap;
  min-width: 40px;
  text-align: right;
}

.toast-menu-item-description {
  font-size: 0.95em;
  color: #666;
  line-height: 1.5;
  margin-bottom: 8px;
}

.toast-menu-item-calories {
  font-size: 0.85em;
  color: #999;
  font-style: italic;
}

.toast-menu-item-out-of-stock {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 10px;
  background: #dc3232;
  color: #fff;
  font-size: 0.85em;
  border-radius: 4px;
  font-weight: 600;
}

/* Grid Style */
.toast-menu-grid .toast-menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.toast-menu-grid .toast-menu-item {
  flex-direction: column;
}

.toast-menu-grid .toast-menu-item-image {
  width: 100%;
  height: 200px;
}

.toast-menu-grid .toast-menu-item-header {
  flex-direction: column;
  align-items: flex-start;
}

.toast-menu-grid .toast-menu-item-price {
  margin-left: 0;
  margin-top: 5px;
}

/* Compact Style */
.toast-menu-compact .toast-menu-item {
  padding: 10px;
  border: none;
  border-bottom: none;
  border-radius: 0;
}

.toast-menu-compact .toast-menu-item:hover {
  box-shadow: none;
  background: #f9f9f9;
}

.toast-menu-compact .toast-menu-item-image {
  width: 80px;
  height: 80px;
}

.toast-menu-compact .toast-menu-item-name {
  font-size: 1.05em;
}

.toast-menu-compact .toast-menu-item-description {
  font-size: 0.9em;
}

/* Error Messages */
.toast-menu-error {
  padding: 15px;
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 4px;
  color: #856404;
}

.toast-menu-empty {
  padding: 15px;
  background: #f0f0f1;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #666;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .toast-menu-item {
    flex-direction: column;
  }

  .toast-menu-item-image {
    width: 100%;
    height: 180px;
  }

  .toast-menu-item-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .toast-menu-item-price {
    margin-left: 0;
    margin-top: 5px;
  }

  .toast-menu-grid .toast-menu-items-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .toast-menu-title {
    font-size: 1.5em;
  }

  .toast-menu-group-title {
    font-size: 1.3em;
  }

  .toast-menu-item-name {
    font-size: 1.1em;
  }
}
