General enquries feature

This commit is contained in:
2026-05-04 20:32:24 +12:00
parent bf9331bb5b
commit fa1bc1a615
27 changed files with 657 additions and 164 deletions
+69
View File
@@ -191,6 +191,13 @@
color: #34363a;
}
.booking-help-text {
margin: 14px 0 0;
font-size: 13px;
line-height: 1.5;
color: #666;
}
.booking-required {
color: var(--yellow);
}
@@ -238,6 +245,68 @@
box-shadow: 0 10px 30px rgba(17, 20, 24, 0.04);
}
.booking-toggle-group {
display: flex;
flex-wrap: wrap;
gap: 14px;
}
.booking-toggle-option {
display: inline-flex;
align-items: center;
gap: 12px;
min-height: 56px;
padding: 14px 18px;
border: 3px solid #111;
border-radius: 18px;
font-family: var(--font-head);
font-size: 15px;
font-weight: 700;
color: #34363a;
cursor: pointer;
transition:
background 0.2s,
border-color 0.2s,
transform 0.15s ease;
}
.booking-toggle-option:hover {
background: #f6f0e5;
}
.booking-toggle-option input {
position: absolute;
opacity: 0;
pointer-events: none;
}
.booking-toggle-indicator {
width: 24px;
height: 24px;
border: 3px solid #111;
border-radius: 50%;
display: inline-flex;
align-items: center;
justify-content: center;
flex: none;
transition:
background 0.2s,
border-color 0.2s;
}
.booking-toggle-option input:checked + .booking-toggle-indicator {
border-color: #111;
background: var(--yellow);
}
.booking-toggle-option input:checked + .booking-toggle-indicator::after {
content: '';
width: 10px;
height: 10px;
border-radius: 50%;
background: #111;
}
.booking-service-options {
display: flex;
+17
View File
@@ -469,6 +469,23 @@
gap: 12px 18px;
}
.booking-toggle-group {
flex-direction: column;
}
.booking-toggle-option {
width: 100%;
border-width: 2px;
border-radius: 16px;
padding: 14px 16px;
}
.booking-toggle-indicator {
width: 22px;
height: 22px;
border-width: 2px;
}
.booking-check-option {
font-size: 15px;
}