:root {
--primary-color: #928d8c;
--primary-dark: #b2a9a3;
--primary-light: #f2edea;
--secondary-color: #b2a9a3;
--success-color: #4caf50;
--warning-color: #b2a9a3; --error-color: #9c1006;
--background: #ffffff;
--card-bg: #fdfdfd;
--text-primary: #333333;
--text-secondary: #928d8c;
--border-color: #e0e0e0;
--shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
--shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.12);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
"Helvetica Neue", Arial, sans-serif;
background: var(--background);
color: var(--text-primary);
line-height: 1.6;
}
.salon-container {
max-width: 100%;
min-height: 100vh;
background: var(--background);
} .salon-header {
background: var(--primary-light);
color: var(--text-primary);
padding: 20px;
text-align: center;
border-bottom: 1px solid var(--border-color);
}
.salon-header h1 {
font-size: 24px;
font-weight: 600;
margin-bottom: 5px;
margin-top: 5px;
}
.salon-header .platz-badge {
display: inline-block;
background: var(--primary-color);
color: white;
padding: 5px 15px;
border-radius: 20px;
font-size: 14px;
margin-top: 5px;
} .salon-main {
max-width: 1200px;
margin: 0 auto;
} .salon-card {
background: var(--card-bg);
border-radius: 12px;
padding: 20px;
margin-bottom: 20px;
box-shadow: var(--shadow);
transition: all 0.3s ease;
}
.salon-card:hover {
box-shadow: var(--shadow-hover);
}
.salon-card h2 {
font-size: 20px;
margin-bottom: 15px;
color: var(--text-primary);
} .category-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-top: 20px;
}
.category-card {
background: var(--card-bg);
border: 1px solid var(--border-color);
border-radius: 12px;
padding: 30px;
text-align: center;
cursor: pointer;
transition: all 0.3s ease;
}
.category-card:hover {
border-color: var(--primary-dark);
transform: translateY(-4px);
box-shadow: var(--shadow-hover);
}
.category-card .emoji {
font-size: 48px;
margin-bottom: 15px;
}
.category-card h3 {
font-size: 20px;
margin-bottom: 10px;
color: var(--text-primary);
}
.category-card p {
color: var(--text-secondary);
font-size: 14px;
} .beverage-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 15px;
margin-top: 20px;
}
.beverage-item {
background: var(--card-bg);
border: 1px solid var(--border-color);
border-radius: 12px;
padding: 20px;
text-align: center;
cursor: pointer;
transition: all 0.3s ease;
position: relative;
}
.beverage-item:hover {
border-color: var(--primary-dark);
transform: scale(1.05);
box-shadow: var(--shadow-hover);
}
.beverage-item .emoji {
font-size: 40px;
margin-bottom: 10px;
}
.beverage-item .name {
font-size: 16px;
font-weight: 600;
margin-bottom: 8px;
color: var(--text-primary);
}
.beverage-item .price {
font-size: 18px;
font-weight: 700;
color: var(--primary-color);
}
.beverage-item .price.free {
color: var(--success-color);
} .warenkorb-sticky {
position: sticky;
bottom: 0;
left: 0;
right: 0;
background: white;
box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
padding: 15px 20px;
z-index: 100;
border-top: 1px solid var(--border-color);
}
.warenkorb-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 15px;
}
.warenkorb-header h3 {
font-size: 18px;
display: flex;
align-items: center;
gap: 10px;
}
.warenkorb-count {
background: var(--primary-color);
color: white;
width: 24px;
height: 24px;
border-radius: 50%;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 12px;
}
.warenkorb-items {
max-height: 200px;
overflow-y: auto;
margin-bottom: 15px;
}
.warenkorb-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 0;
border-bottom: 1px solid var(--border-color);
}
.warenkorb-item:last-child {
border-bottom: none;
}
.item-info {
flex: 1;
}
.item-name {
font-weight: 600;
margin-bottom: 3px;
}
.item-price {
font-size: 14px;
color: var(--text-secondary);
}
.item-controls {
display: flex;
align-items: center;
gap: 10px;
}
.quantity-btn {
background: var(--primary-color);
color: white;
border: none;
width: 30px;
height: 30px;
border-radius: 50%;
cursor: pointer;
font-size: 18px;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.2s;
}
.quantity-btn:hover {
background: var(--primary-dark);
transform: scale(1.1);
}
.quantity {
font-weight: 600;
min-width: 30px;
text-align: center;
}
.remove-btn {
background: var(--error-color);
color: white;
border: none;
padding: 5px 10px;
border-radius: 5px;
cursor: pointer;
font-size: 12px;
}
.warenkorb-total {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 20px;
font-weight: 700;
margin: 15px 0;
padding-top: 15px;
border-top: 2px solid var(--border-color);
}
.total-hint {
font-size: 12px;
color: var(--text-secondary);
font-style: italic;
margin-bottom: 15px;
} .btn {
display: inline-block;
padding: 12px 30px;
border: none;
border-radius: 8px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
text-align: center;
text-decoration: none;
}
.btn-primary {
background: var(--primary-color);
color: white;
}
.btn-primary:hover {
background: var(--primary-dark);
transform: translateY(-2px);
box-shadow: var(--shadow-hover);
}
.btn-secondary {
background: var(--text-secondary);
color: white !important;
}
.btn-secondary:hover {
background: var(--text-primary);
}
.btn-success {
background: var(--success-color);
color: white;
}
.btn-warning {
background: var(--secondary-color);
color: white;
}
.btn-block {
width: 100%;
display: block;
}
.btn:disabled {
opacity: 0.5;
cursor: not-allowed;
} .success-page {
text-align: center;
}
.success-icon {
font-size: 80px;
margin-bottom: 20px;
color: var(--success-color);
}
.success-page h2 {
font-size: 28px;
margin-bottom: 20px;
}
.bestellung-nummer {
font-size: 32px;
font-weight: 700;
color: var(--primary-color);
margin: 20px 0;
padding: 20px;
background: var(--primary-light);
border-radius: 12px;
}
.success-details {
background: var(--card-bg);
border-radius: 12px;
padding: 20px;
margin: 20px 0;
box-shadow: var(--shadow);
} .admin-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
flex-wrap: wrap;
gap: 15px;
}
.admin-filters {
display: flex;
gap: 10px;
}
.filter-btn {
padding: 8px 16px;
border: 2px solid var(--border-color);
background: white;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s;
}
.filter-btn.active {
background: var(--primary-color);
color: white;
border-color: var(--primary-color);
}
.bestellung-list {
display: grid;
gap: 15px;
}
.bestellung-card {
background: var(--card-bg);
border-radius: 12px;
padding: 20px;
box-shadow: var(--shadow);
border-left: 5px solid var(--warning-color);
transition: all 0.3s;
}
.bestellung-card.erledigt {
border-left-color: var(--success-color);
opacity: 0.7;
}
.bestellung-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 15px;
}
.bestellung-platz {
font-size: 24px;
font-weight: 700;
color: var(--primary-color);
}
.bestellung-status {
padding: 5px 15px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
}
.status-offen {
background: var(--warning-color);
color: white;
}
.status-erledigt {
background: var(--success-color);
color: white;
}
.bestellung-meta {
display: flex;
gap: 20px;
margin-bottom: 15px;
font-size: 14px;
color: var(--text-secondary);
}
.bestellung-items {
margin: 15px 0;
}
.bestellung-item {
display: flex;
justify-content: space-between;
padding: 8px 0;
border-bottom: 1px solid var(--border-color);
}
.bestellung-item:last-child {
border-bottom: none;
}
.bestellung-total {
font-size: 20px;
font-weight: 700;
text-align: right;
margin-top: 15px;
padding-top: 15px;
border-top: 2px solid var(--border-color);
color: var(--primary-color);
} .loading {
text-align: center;
padding: 40px;
font-size: 18px;
color: var(--text-secondary);
}
.loading::after {
content: "...";
animation: dots 1.5s steps(4, end) infinite;
}
@keyframes dots {
0%,
20% {
content: ".";
}
40% {
content: "..";
}
60%,
100% {
content: "...";
}
} .empty-state {
text-align: center;
padding: 60px 20px;
color: var(--text-secondary);
}
.empty-state .emoji {
font-size: 64px;
margin-bottom: 20px;
} @media (max-width: 768px) {
.salon-header h1 {
font-size: 20px;
}
.category-grid {
grid-template-columns: 1fr;
}
.beverage-grid {
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
.admin-header {
flex-direction: column;
align-items: stretch;
}
.admin-filters {
justify-content: center;
flex-direction: column;
}
} @keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.fade-in {
animation: fadeIn 0.3s ease;
} .toast {
position: fixed;
bottom: 100px;
left: 50%;
transform: translateX(-50%);
background: var(--text-primary);
color: white;
padding: 15px 30px;
border-radius: 8px;
box-shadow: var(--shadow-hover);
z-index: 1000;
animation: slideUp 0.3s ease;
}
@keyframes slideUp {
from {
opacity: 0;
transform: translate(-50%, 20px);
}
to {
opacity: 1;
transform: translate(-50%, 0);
}
}
.toast.success {
background: var(--success-color);
}
.toast.error {
background: var(--error-color);
} .bestellung-meta .payment-status {
padding: 3px 10px;
border-radius: 15px;
font-size: 11px;
font-weight: 600;
color: white;
}
.payment-status.kostenlos {
background: #a0a0a0;
}
.payment-status.unbezahlt {
background: var(--error-color);
}
.payment-status.bezahlt {
background: var(--success-color);
}
.bestellung-card.bezahlt {
opacity: 0.6;
border-left-color: #ddd;
}
.btn-warning {
background-color: #ff9800; color: white;
}
.btn-warning:hover {
background-color: #f57c00;
}
.button-group {
width: 100%;
display: flex;
justify-content: center;
gap: 15px;
flex-direction: row;
align-items: center;
} @media (max-width: 768px) {
.button-group {
flex-direction: column;
}
} .session-pill {
display: inline-flex;
align-items: center;
gap: 8px;
margin-top: 10px;
padding: 5px 12px;
border-radius: 999px;
font-size: 13px;
font-weight: 500;
line-height: 1.4;
}
.session-pill .dot {
width: 9px;
height: 9px;
border-radius: 50%;
flex-shrink: 0;
}
.session-pill.online {
background: #e8f5e9;
color: #2e7d32;
}
.session-pill.online .dot {
background: #43a047;
}
.session-pill.warning {
background: #fff3e0;
color: #ef6c00;
}
.session-pill.warning .dot {
background: #fb8c00;
}
.session-pill.offline {
background: #ffebee;
color: #c62828;
}
.session-pill.offline .dot {
background: #e53935;
animation: session-blink 1.2s ease-in-out infinite;
}
@keyframes session-blink {
0%, 100% { opacity: 1; }
50% { opacity: 0.25; }
}
.salon-session-overlay {
position: fixed;
inset: 0;
z-index: 100000;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
background: rgba(33, 33, 33, 0.75);
}
.salon-session-overlay.hidden {
display: none;
}
.salon-session-box {
width: 100%;
max-width: 420px;
padding: 32px 28px;
border-radius: 12px;
background: #fff;
text-align: center;
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.salon-session-icon {
font-size: 44px;
line-height: 1;
margin-bottom: 12px;
}
.salon-session-box h2 {
margin: 0 0 10px;
font-size: 22px;
color: #212121;
}
.salon-session-text {
margin: 0 0 24px;
color: #616161;
font-size: 15px;
line-height: 1.5;
}
.salon-session-link {
display: inline-block;
margin-top: 16px;
font-size: 14px;
color: #757575;
text-decoration: underline;
}