/* Airport Transfer Widget CSS v1.1 */

/* CSS Variables */
.atw-widget {
    --atw-primary: #667eea;
    --atw-primary-dark: #5a67d8;
    --atw-secondary: #764ba2;
    --atw-success: #10b981;
    --atw-warning: #f59e0b;
    --atw-danger: #ef4444;
    --atw-text-primary: #1f2937;
    --atw-text-secondary: #6b7280;
    --atw-border: #e5e7eb;
    --atw-background: #f9fafb;
    --atw-white: #ffffff;
}

.atw-widget * {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
}

/* SVG Reset - Ensure all SVGs are visible */
.atw-widget svg {
    display: inline-block !important;
    vertical-align: middle !important;
    overflow: visible !important;
}

/* Input icons - dezent und linienförmig */
.atw-widget .atw-input-icon svg {
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.5 !important;
    pointer-events: none !important;
}

/* Button icons - können gefüllt bleiben */
.atw-widget button svg,
.atw-widget .atw-swap-button svg {
    fill: currentColor !important;
    pointer-events: none !important;
}

.atw-widget {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    max-width: 100% !important;
    width: 100% !important;
    position: relative !important;
    z-index: 999998 !important;
}

.atw-container {
    background: white !important;
    border-radius: 20px !important;
    position: relative !important;
    z-index: 999998 !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
    overflow: visible;
    transition: all 0.3s ease;
    position: relative !important;
}

.atw-search-section {
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.atw-search-section.collapsed {
    padding: 20px 30px;
    background: #f8f9fa;
}

.atw-search-section.search-disabled {
    pointer-events: none;
    opacity: 0.6;
}

.atw-search-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    border-radius: 16px;
}

.atw-search-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.atw-search-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.atw-input-group {
    position: relative;
    flex: 1;
}

.atw-input-group.from-location,
.atw-input-group.to-location {
    flex: 2;
}

.atw-input-group.passengers {
    flex: 0.8;
    min-width: 120px;
}

.atw-input-group.datetime {
    flex: 1.2;
    min-width: 180px;
}

/* Compact datetime display - datum und uhrzeit in einer Zeile */
.atw-datetime-display {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 12px !important;
    min-height: 40px !important;
    font-size: 13px !important;
}

.atw-datetime-display .atw-date-part {
    font-weight: 600 !important;
    color: #111827 !important;
}

.atw-datetime-display .atw-time-part {
    color: #6b7280 !important;
    font-size: 12px !important;
}

.atw-datetime-display .atw-separator {
    color: #d1d5db !important;
    margin: 0 4px !important;
}

.atw-input-wrapper {
    position: relative;
    height: 56px;
}

.atw-input-icon {
    position: absolute !important;
    left: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #9ca3af !important;
    opacity: 0.5 !important;
    z-index: 2 !important;
    pointer-events: none !important;
}

.atw-input-icon svg {
    width: 20px !important;
    height: 20px !important;
    display: block !important;
}

/* Dezente Icon-Farben - Standard grau */
.atw-input-icon {
    color: #9ca3af !important;
    opacity: 0.6 !important;
}

/* Farbige Icons wenn Input-Feld Wert hat oder Focus */
.atw-input-field:not(:placeholder-shown) ~ .atw-input-icon.icon-airport,
.atw-input-field:focus ~ .atw-input-icon.icon-airport {
    color: #3b82f6 !important;
    opacity: 1 !important;
}

.atw-input-field:not(:placeholder-shown) ~ .atw-input-icon.icon-skiresort,
.atw-input-field:focus ~ .atw-input-icon.icon-skiresort {
    color: #0891b2 !important;
    opacity: 1 !important;
}

.atw-input-field:not(:placeholder-shown) ~ .atw-input-icon.icon-hotel,
.atw-input-field:focus ~ .atw-input-icon.icon-hotel {
    color: var(--atw-success) !important;
    opacity: 1 !important;
}

.atw-input-field:not(:placeholder-shown) ~ .atw-input-icon.icon-train,
.atw-input-field:focus ~ .atw-input-icon.icon-train {
    color: #6366f1 !important;
    opacity: 1 !important;
}

.atw-input-field:not(:placeholder-shown) ~ .atw-input-icon.icon-city,
.atw-input-field:focus ~ .atw-input-icon.icon-city {
    color: #14b8a6 !important;
    opacity: 1 !important;
}

.atw-input-field:not(:placeholder-shown) ~ .atw-input-icon.icon-place,
.atw-input-field:focus ~ .atw-input-icon.icon-place {
    color: var(--atw-primary) !important;
    opacity: 1 !important;
}

.atw-input-label {
    position: absolute;
    left: 48px;
    top: 8px;
    font-size: 11px;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    pointer-events: none;
    z-index: 2;
}

.atw-input-field {
    width: 100% !important;
    height: 56px !important;
    padding: 24px 16px 8px 48px !important;
    font-size: 15px !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 12px !important;
    background: white !important;
    transition: all 0.2s !important;
    outline: none !important;
    font-family: inherit !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    color: #1f2937 !important; /* Dunklere Standardfarbe */
}

/* Leere Input-Felder mit hellerer Farbe */
.atw-input-field:placeholder-shown {
    color: #9ca3af !important; /* Hellere Farbe wenn leer */
    font-weight: 400 !important;
    margin-bottom:0px !important;
}

/* Befüllte Input-Felder mit stärkerer Farbe */
.atw-input-field:not(:placeholder-shown),
.atw-input-field.has-value {
    color: #1f2937 !important; /* Stärkere Farbe wenn befüllt */
    font-weight: 500 !important;
    border-color: #d1d5db !important;
    margin-bottom: 0 !important;
}

.atw-input-field:hover {
    border-color: #d1d5db !important;
}

.atw-input-field:focus {
    border-color: var(--atw-primary) !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
    outline: none !important;
    color: #1f2937 !important; /* Stärkere Farbe beim Focus */
}

.atw-swap-button {
    width: 40px !important;
    height: 40px !important;
    margin-top: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: white !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    flex-shrink: 0 !important;
}

.atw-swap-button:hover:not(:disabled) {
    border-color: var(--atw-primary) !important;
    background: #f0f4ff !important;
}

.atw-swap-button:hover:not(:disabled) svg {
    color: var(--atw-primary) !important;
}

.atw-swap-button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.atw-swap-button svg {
    width: 20px !important;
    height: 20px !important;
    color: #6b7280 !important;
    display: block !important;
    fill: currentColor !important;
}

.atw-datetime-placeholder {
    width: 100%;
    height: 56px;
    padding: 0 16px 0 48px;
    font-size: 15px;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    background: #fafafa;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
}

.atw-datetime-placeholder:hover {
    border-color: var(--atw-primary);
    background: #f0f4ff;
    border-style: solid;
}

.atw-placeholder-text {
    color: #9ca3af;
    font-weight: 500;
}

.atw-clear-return-btn {
    position: absolute !important;
    right: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 24px !important;
    height: 24px !important;
    border: none !important;
    background: #f3f4f6 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    opacity: 0.6 !important;
}

.atw-clear-return-btn:hover {
    background: #ef4444 !important;
    opacity: 1 !important;
}

.atw-clear-return-btn svg {
    width: 14px !important;
    height: 14px !important;
    color: #6b7280 !important;
    display: block !important;
    fill: currentColor !important;
}

.atw-clear-return-btn:hover svg {
    color: white !important;
}

.atw-passenger-selector {
    display: flex;
    align-items: center;
    height: 56px;
    padding: 8px 12px 8px 48px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: white;
    transition: all 0.2s;
}

.atw-passenger-btn {
    width: 32px !important;
    height: 32px !important;
    border: none !important;
    background: #f3f4f6 !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #374151 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: inherit !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

.atw-passenger-btn:hover:not(:disabled) {
    background: var(--atw-primary) !important;
    color: white !important;
}

.atw-passenger-btn:disabled {
    opacity: 0.3 !important;
    cursor: not-allowed !important;
}

.atw-passenger-count {
    flex: 1;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    color: #1f2937;
}

.atw-search-button {
    min-width: 140px !important;
    min-height: 56px !important;
    height: 56px !important;
    margin-top: 0 !important;
    padding: 0 24px !important;
    background: linear-gradient(135deg, var(--atw-primary) 0%, var(--atw-secondary) 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    position: relative !important;
    overflow: hidden !important;
    font-family: inherit !important;
    white-space: nowrap !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    outline: none !important;
}

.atw-button-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 100%;
    width: 100%;
}

.atw-button-content svg {
    flex-shrink: 0 !important;
    width: 16px !important;
    height: 16px !important;
    display: block !important;
    fill: currentColor !important;
}

.atw-loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.atw-search-button:hover:not(:disabled) {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3) !important;
}

.atw-search-button:disabled {
    background: #9ca3af !important;
    cursor: not-allowed !important;
}

.atw-search-button.pulse:not(:disabled) {
    animation: atw-pulse 2s infinite;
}

@keyframes atw-pulse {
    0% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(102, 126, 234, 0); }
    100% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0); }
}

.atw-spinner {
    width: 24px;
    height: 24px;
    animation: atw-rotate 1s linear infinite;
}

.atw-spinner-path {
    stroke: white;
    stroke-linecap: round;
    animation: atw-dash 1.5s ease-in-out infinite;
}

@keyframes atw-rotate {
    100% { transform: rotate(360deg); }
}

@keyframes atw-dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

.atw-route-info {
    display: flex;
    gap: 24px;
    padding: 16px;
    background: #f0f4ff;
    border-radius: 12px;
    margin-top: 20px;
}

.atw-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4b5563;
    font-size: 14px;
}

.atw-info-item svg {
    width: 20px !important;
    height: 20px !important;
    color: var(--atw-primary) !important;
    display: block !important;
    fill: currentColor !important;
}

.atw-quick-selections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px;
    margin-top: 0;
}

.atw-quick-label {
    grid-column: 1 / -1;
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 4px;
}

.atw-quick-route {
    padding: 16px 20px !important;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%) !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #1f2937 !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-family: inherit !important;
    display: block !important;
    text-decoration: none !important;
    text-align: left !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    outline: none !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06) !important;
}

.atw-quick-route::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 4px !important;
    height: 100% !important;
    background: linear-gradient(135deg, var(--atw-primary) 0%, var(--atw-secondary) 100%) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.atw-quick-route:hover {
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%) !important;
    border-color: var(--atw-primary) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15) !important;
}

.atw-quick-route:hover::before {
    opacity: 1 !important;
}

.atw-quick-route:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 6px rgba(102, 126, 234, 0.1) !important;
}

/* Results Section */
.atw-results-section {
    padding: 30px;
    background: #f8f9fa;
    border-top: 1px solid #e5e7eb;
}

.atw-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.atw-route-summary h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.atw-route-summary p {
    font-size: 14px;
    color: #6b7280;
}

.atw-reset-btn {
    padding: 10px 20px !important;
    background: white !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #374151 !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    font-family: inherit !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    outline: none !important;
}

.atw-reset-btn:hover {
    border-color: var(--atw-primary) !important;
    color: var(--atw-primary) !important;
    background: white !important;
}

.atw-loading-vehicles {
    text-align: center;
    padding: 60px 20px;
}

.atw-loading-spinner-large {
    margin: 0 auto 20px;
    width: 48px;
    height: 48px;
}

.atw-loading-spinner-large .atw-spinner {
    width: 48px;
    height: 48px;
}

.atw-loading-spinner-large .atw-spinner-path {
    stroke: var(--atw-primary);
}

.atw-vehicles-grid {
    display: grid;
    gap: 20px;
}

.atw-vehicle-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
    position: relative;
}

.atw-vehicle-card:hover {
    border-color: var(--atw-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.atw-vehicle-card.selected {
    border-color: var(--atw-secondary) !important;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%) !important;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2) !important;
}

.atw-vehicle-card.unavailable {
    opacity: 0.7;
    background: #fafafa;
    cursor: not-allowed !important;
}

.atw-selected-badge {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    background: var(--atw-success) !important;
    color: white !important;
    padding: 6px 14px !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3) !important;
}

.atw-vehicle-card.recommended {
    border-color: var(--atw-primary);
    background: linear-gradient(135deg, #f0f4ff 0%, #fff 100%);
}

.atw-recommended-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    background: linear-gradient(135deg, var(--atw-primary) 0%, var(--atw-secondary) 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.atw-vehicle-image {
    width: 180px;
    height: 120px;
    margin-right: 20px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.atw-vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.atw-vehicle-card:hover .atw-vehicle-image img {
    transform: scale(1.05);
}

.atw-vehicle-header {
    flex: 1;
}

.atw-vehicle-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.atw-vehicle-specs {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: #6b7280;
}

.atw-vehicle-body {
    flex: 2;
    padding: 0 20px;
}

.atw-vehicle-examples {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
}

.atw-vehicle-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.atw-feature-tag {
    padding: 4px 10px;
    background: #f3f4f6;
    border-radius: 6px;
    font-size: 12px;
    color: #4b5563;
}

.atw-vehicle-footer {
    text-align: right;
}

.atw-price-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.atw-price-details {
    text-align: right;
}

.atw-price-main {
    display: flex;
    align-items: baseline;
    gap: 2px;
    font-weight: 700;
    color: #1f2937;
}

.atw-currency {
    font-size: 16px;
}

.atw-amount {
    font-size: 28px;
}

.atw-price-return {
    font-size: 13px;
    color: #6b7280;
    margin-top: 4px;
}

.atw-price-total {
    font-size: 14px;
    color: #374151;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #e5e7eb;
}

.atw-book-btn {
    padding: 12px 32px !important;
    background: linear-gradient(135deg, var(--atw-primary) 0%, var(--atw-secondary) 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    font-family: inherit !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    outline: none !important;
}

.atw-book-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3) !important;
    background: linear-gradient(135deg, var(--atw-primary) 0%, var(--atw-secondary) 100%) !important;
}

.atw-quote-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.atw-quote-text {
    font-size: 14px;
    color: #6b7280;
    font-style: italic;
}

.atw-quote-btn {
    padding: 10px 24px !important;
    background: white !important;
    border: 2px solid var(--atw-primary) !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--atw-primary) !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    font-family: inherit !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    outline: none !important;
}

.atw-quote-btn:hover {
    background: var(--atw-primary) !important;
    color: white !important;
    border: 2px solid var(--atw-primary) !important;
}

.atw-quote-required {
    text-align: center;
    padding: 60px 20px;
}

.atw-quote-required svg {
    color: #9ca3af;
    margin-bottom: 20px;
}

.atw-quote-required h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.atw-quote-required p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
}

.atw-quote-btn-large {
    padding: 14px 32px !important;
    background: linear-gradient(135deg, var(--atw-primary) 0%, var(--atw-secondary) 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    font-family: inherit !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    outline: none !important;
}

.atw-quote-btn-large:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3) !important;
    background: linear-gradient(135deg, var(--atw-primary) 0%, var(--atw-secondary) 100%) !important;
}

/* DateTime Picker - Kompakter */
.atw-datetime-picker-dropdown {
    position: absolute;
    width: 300px;
    max-width: 100%;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10001;
    overflow: hidden;
    animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Position picker for datetime input groups */
.atw-input-group.datetime {
    position: relative;
}

.atw-input-group.return-date {
    position: relative;
}

.atw-picker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    color: #111827;
}

.atw-picker-header span {
    font-weight: 600;
    font-size: 13px;
}

.atw-picker-close {
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    border-radius: 4px;
    color: #6b7280;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
}

.atw-picker-close:hover {
    background: #e5e7eb;
    color: #111827;
}

.atw-picker-body {
    padding: 12px;
}

/* Datum und Zeit in einer Zeile */
.atw-date-time-row {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}

.atw-date-section {
    flex: 1.5;
}

.atw-time-section {
    flex: 1;
}

.atw-date-input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 13px;
    outline: none;
    font-family: inherit;
}

.atw-date-input:focus {
    border-color: var(--atw-primary);
}

.atw-time-label {
    display: none; /* Labels verstecken für kompaktes Design */
}

.atw-time-inputs {
    display: flex;
    align-items: center;
    gap: 6px;
}

.atw-time-select {
    flex: 1;
    padding: 8px 6px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    outline: none;
    font-family: inherit;
}

.atw-time-select:focus {
    border-color: var(--atw-primary);
}

.atw-time-separator {
    font-size: 14px;
    font-weight: 600;
    color: #9ca3af;
}

.atw-picker-footer {
    padding: 0 12px 12px;
}

.atw-picker-confirm {
    width: 100% !important;
    padding: 8px !important;
    background: linear-gradient(135deg, var(--atw-primary) 0%, var(--atw-secondary) 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    font-family: inherit !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    outline: none !important;
}

.atw-picker-confirm:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3) !important;
    background: linear-gradient(135deg, var(--atw-primary) 0%, var(--atw-secondary) 100%) !important;
}

/* Animations */
.atw-slide-up-enter-active,
.atw-slide-up-leave-active {
    transition: all 0.3s ease;
}

.atw-slide-up-enter-from {
    transform: translateY(20px);
    opacity: 0;
}

.atw-slide-up-leave-to {
    transform: translateY(-20px);
    opacity: 0;
}

/* Responsive */
@media (max-width: 768px) {
    /* Container padding reduzieren */
    .atw-search-section {
        padding: 20px 15px !important;
    }

    /* Quick Routes auf Mobile single-column */
    .atw-quick-selections {
        grid-template-columns: 1fr !important;
    }

    .atw-quick-route {
        padding: 14px 18px !important;
        font-size: 13px !important;
    }

    /* Erste Zeile: Von und Zu in separaten Zeilen */
    .atw-search-row:first-child {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }

    /* Von und Zu Felder volle Breite */
    .atw-search-row:first-child .atw-input-group {
        width: 100% !important;
        flex: none !important;
    }

    /* Swap Button kleiner und rechts positioniert */
    .atw-search-row:first-child .atw-swap-button {
        position: absolute !important;
        right: 15px !important;
        top: 28px !important;
        width: 32px !important;
        height: 32px !important;
        margin: 0 !important;
        background: white !important;
        border: 2px solid #e5e7eb !important;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1) !important;
        z-index: 10 !important;
        padding: 0 !important;
    }

    .atw-search-row:first-child .atw-swap-button svg {
        width: 16px !important;
        height: 16px !important;
    }

    /* Ersten Input-Group relative für Swap-Button */
    .atw-search-row:first-child .atw-input-group:first-child {
        position: relative !important;
    }

    /* Zweite Zeile: DateTime, Rückfahrt, Passagiere und Suchen flexibel aufteilen */
    .atw-search-row:nth-child(2) {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 12px !important;
    }

    /* DateTime und Return nebeneinander auf erster Zeile */
    .atw-search-row:nth-child(2) .atw-input-group.datetime {
        flex: 1 1 calc(50% - 6px) !important;
        min-width: 0 !important;
    }

    .atw-search-row:nth-child(2) .atw-input-group:nth-child(2) {
        flex: 1 1 calc(50% - 6px) !important;
        min-width: 0 !important;
    }

    /* Passagiere und Suchen Button auf zweiter Zeile */
    .atw-search-row:nth-child(2) .atw-input-group.passengers {
        flex: 0 1 calc(40% - 6px) !important;
        min-width: 100px !important;
    }

    /* Passenger Buttons auf Mobile sicherstellen dass sie klickbar sind */
    .atw-passenger-btn {
        z-index: 5 !important;
        position: relative !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: transparent !important;
        user-select: none !important;
        min-width: 32px !important;
        min-height: 32px !important;
        padding: 0 !important;
        font-size: 20px !important;
        line-height: 1 !important;
    }

    .atw-passenger-selector {
        z-index: 5 !important;
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        height: 100% !important;
        padding: 8px 4px !important;
    }

    .atw-passenger-count {
        min-width: 30px !important;
        text-align: center !important;
        font-size: 16px !important;
    }

    .atw-search-row:nth-child(2) .atw-search-button {
        flex: 1 1 calc(60% - 6px) !important;
        margin-top: 0 !important;
        min-height: 56px !important;
    }

    /* Input Labels anpassen */
    .atw-input-label {
        font-size: 10px !important;
        left: 40px !important;
    }

    /* Input Icons kleiner */
    .atw-input-icon svg {
        width: 18px !important;
        height: 18px !important;
    }

    .atw-input-icon {
        left: 12px !important;
    }

    /* Input Field padding anpassen */
    .atw-input-field {
        padding: 24px 12px 8px 40px !important;
        font-size: 14px !important;
    }

    /* Vehicles grid */
    .atw-vehicles-grid {
        grid-template-columns: 1fr;
    }

    .atw-vehicle-card {
        flex-direction: column;
        text-align: center;
    }

    .atw-vehicle-image {
        width: 100%;
        height: 180px;
        margin-right: 0;
        margin-bottom: 16px;
    }

    .atw-vehicle-body {
        padding: 20px 0;
    }

    .atw-vehicle-footer {
        width: 100%;
    }

    .atw-price-section,
    .atw-quote-section {
        align-items: center;
    }
}

/* ==================== Checkout Flow Styles ==================== */

/* Steps Header */
.atw-checkout-header {
    margin-bottom: 30px;
}

.atw-steps {
    display: flex;
    justify-content: space-between;
    padding: 1px 15px 5px 15px;
    margin: 0;
    position: relative;
}

.atw-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 30px;
    right: 30px;
    height: 2px;
    background: var(--atw-border);
    z-index: 0;
}

.atw-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.atw-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--atw-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--atw-text-secondary);
    margin-bottom: 8px;
}

.atw-step.completed .atw-step-number {
    background: var(--atw-secondary);
    border-color: var(--atw-secondary);
    color: white;
}

.atw-step.active .atw-step-number {
    background: var(--atw-primary);
    border-color: var(--atw-primary);
    color: white;
}

.atw-step-label {
    font-size: 12px;
    color: var(--atw-text-secondary);
}

.atw-step.active .atw-step-label {
    color: var(--atw-primary);
    font-weight: 600;
}

/* Checkout Content */
.atw-checkout-content {
    padding: 30px;
}

/* Extra padding for customer and extras steps in modal view */
.atw-modal .atw-checkout-content {
    padding: 40px;
}

/* Specific padding for customer data step */
.atw-step-customer .atw-checkout-content {
    padding: 35px;
}

/* Specific padding for extras step */
.atw-step-extras .atw-checkout-content {
    padding: 35px;
}

.atw-section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--atw-text-primary);
    margin-bottom: 25px;
}

.atw-subsection-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--atw-text-primary);
    margin-top: 30px;
    margin-bottom: 20px;
}

/* Form Grid */
.atw-form-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 25px;
}

/* Default for grids without specific classes */
.atw-form-grid:not([class*="grid-"]) {
    grid-template-columns: repeat(2, 1fr);
}

/* Specific grid layouts for quote form */
.atw-form-grid-4col {
    grid-template-columns: repeat(4, 1fr) !important;
}

.atw-form-grid-3col {
    grid-template-columns: repeat(3, 1fr) !important;
}

.atw-form-grid-2-1 {
    grid-template-columns: 2fr 1fr !important;
}

.atw-form-group {
    display: flex;
    flex-direction: column;
}

.atw-form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--atw-text-primary);
    margin-bottom: 8px;
}

.atw-form-input {
    padding: 10px 12px;
    border: 1px solid var(--atw-border);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.atw-form-input:focus {
    outline: none;
    border-color: var(--atw-primary);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

textarea.atw-form-input {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

/* Input with Button */
.atw-input-with-button {
    display: flex;
    gap: 8px;
}

.atw-input-with-button .atw-form-input {
    flex: 1;
}

.atw-lookup-btn {
    padding: 8px 12px !important;
    background: var(--atw-primary) !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-family: inherit !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    outline: none !important;
}

.atw-lookup-btn:hover {
    background: var(--atw-primary-dark) !important;
}

.atw-lookup-btn svg {
    width: 20px !important;
    height: 20px !important;
    display: block !important;
    fill: currentColor !important;
}

/* Flight Info */
.atw-flight-info {
    margin-top: 10px;
    padding: 10px;
    background: #e0f2fe;
    border-radius: 6px;
    font-size: 13px;
    color: #0369a1;
}

/* Checkout Summary */
.atw-checkout-summary {
    background: var(--atw-background);
    border: 1px solid var(--atw-border);
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
}

.atw-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
}

.atw-summary-item span {
    color: var(--atw-text-secondary);
}

.atw-summary-item strong {
    color: var(--atw-text-primary);
}

/* Checkout Actions */
.atw-checkout-actions {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
}

.atw-btn {
    padding: 12px 24px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    border: none !important;
    font-family: inherit !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    outline: none !important;
}

.atw-btn-primary {
    background: var(--atw-primary) !important;
    color: white !important;
}

.atw-btn-primary:hover {
    background: linear-gradient(135deg, var(--atw-secondary) 0%, var(--atw-primary) 100%) !important;
    transform: translateY(-1px) !important;
}

.atw-btn-secondary {
    background: white !important;
    color: var(--atw-text-primary) !important;
    border: 1px solid var(--atw-border) !important;
}

.atw-btn-secondary:hover {
    background: var(--atw-background) !important;
}

.atw-btn-book {
    background: linear-gradient(135deg, var(--atw-success), var(--atw-secondary)) !important;
    font-size: 16px !important;
    padding: 14px 28px !important;
    color: white !important;
    border: none !important;
    cursor: pointer !important;
    font-family: inherit !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    outline: none !important;
}

/* Extras Grid */
.atw-extras-grid {
    display: grid;
    gap: 15px;
    margin-bottom: 25px;
}

.atw-extra-card {
    border: 1px solid var(--atw-border);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
}

.atw-extra-card:hover {
    border-color: var(--atw-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.atw-extra-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.atw-extra-icon {
    font-size: 28px;
}

.atw-extra-info {
    flex: 1;
}

.atw-extra-info h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--atw-text-primary);
}

.atw-extra-info p {
    margin: 0;
    font-size: 13px;
    color: var(--atw-text-secondary);
}

.atw-extra-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--atw-primary);
}

.atw-extra-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.atw-qty-btn {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    border: 1px solid var(--atw-border) !important;
    background: white !important;
    cursor: pointer !important;
    font-size: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    font-family: inherit !important;
    color: #374151 !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    outline: none !important;
}

.atw-qty-btn:hover {
    background: var(--atw-primary) !important;
    color: white !important;
    border-color: var(--atw-primary) !important;
}

.atw-qty-input {
    width: 50px;
    text-align: center;
    border: 1px solid var(--atw-border);
    border-radius: 6px;
    padding: 5px;
    font-size: 14px;
}

/* Price Breakdown */
.atw-price-breakdown {
    background: var(--atw-background);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.atw-price-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
}

.atw-price-total {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-top: 2px solid var(--atw-border);
    margin-top: 12px;
    font-size: 18px;
    font-weight: 700;
    color: var(--atw-primary);
}

/* Payment Methods */
.atw-payment-methods {
    display: grid;
    gap: 15px;
    margin-bottom: 25px;
}

.atw-payment-option {
    display: block;
    cursor: pointer;
    border: 2px solid var(--atw-border);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.atw-payment-option:hover {
    border-color: var(--atw-primary);
}

.atw-payment-option.selected {
    border-color: var(--atw-primary);
    background: rgba(102, 126, 234, 0.05);
}

.atw-payment-option input[type="radio"] {
    display: none;
}

.atw-payment-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.atw-payment-icon {
    font-size: 32px;
}

.atw-payment-info h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--atw-text-primary);
}

.atw-payment-info p {
    margin: 0;
    font-size: 13px;
    color: var(--atw-text-secondary);
}

/* Booking Summary */
.atw-booking-summary {
    background: white;
    border: 1px solid var(--atw-border);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.atw-booking-summary h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--atw-text-primary);
}

.atw-summary-details {
    display: grid;
    gap: 10px;
}

.atw-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.atw-summary-row.total {
    border-top: 2px solid var(--atw-border);
    padding-top: 10px;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--atw-primary);
}

/* Terms Checkbox */
.atw-terms {
    margin-bottom: 20px;
}

.atw-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.atw-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.atw-checkbox a {
    color: var(--atw-primary);
    text-decoration: none;
}

.atw-checkbox a:hover {
    text-decoration: underline;
}

/* Confirmation Page */
.atw-confirmation {
    text-align: center;
    padding: 40px 20px;
}

.atw-confirmation-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--atw-success);
    border-radius: 50%;
    margin-bottom: 20px;
}

.atw-confirmation-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
}

.atw-confirmation h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--atw-text-primary);
    margin-bottom: 10px;
}

.atw-confirmation-message {
    font-size: 16px;
    color: var(--atw-text-secondary);
    margin-bottom: 25px;
}

.atw-booking-reference {
    display: inline-block;
    background: var(--atw-background);
    border: 1px solid var(--atw-border);
    border-radius: 12px;
    padding: 15px 30px;
    margin-bottom: 30px;
}

.atw-booking-reference span {
    display: block;
    font-size: 14px;
    color: var(--atw-text-secondary);
    margin-bottom: 5px;
}

.atw-booking-reference strong {
    font-size: 20px;
    color: var(--atw-primary);
    font-weight: 700;
}

.atw-confirmation-details {
    background: white;
    border: 1px solid var(--atw-border);
    border-radius: 12px;
    padding: 25px;
    margin: 0 auto 30px;
    max-width: 500px;
    text-align: left;
}

.atw-confirmation-details h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--atw-text-primary);
}

.atw-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
}

.atw-confirmation-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Responsive Design for Checkout */
@media (max-width: 768px) {
    .atw-steps {
        flex-wrap: wrap;
    }
    
    .atw-step-label {
        display: none;
    }
    
    .atw-form-grid {
        grid-template-columns: 1fr;
    }
    
    .atw-checkout-actions {
        flex-direction: column;
    }
    
    .atw-payment-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Stripe Card Element Styles */
.atw-card-input-container {
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.atw-card-element {
    padding: 12px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-height: 44px;
    transition: border-color 0.2s;
}

.atw-card-element.StripeElement--focus {
    border-color: var(--atw-primary);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.atw-card-element.StripeElement--invalid {
    border-color: #fa755a;
}

.atw-card-errors {
    color: #fa755a;
    font-size: 13px;
    margin-top: 8px;
    min-height: 20px;
}

/* Payment Option Selected State */
.atw-payment-option.selected .atw-payment-content {
    background-color: rgba(102, 126, 234, 0.05);
    border-color: var(--atw-primary);
}

.atw-payment-option input[type="radio"]:checked + .atw-payment-content {
    background-color: rgba(102, 126, 234, 0.05);
    border-color: var(--atw-primary);
}/* Styles for new Google PlaceAutocompleteElement */
gmp-place-autocomplete {
    width: 100%;
    --gmpx-color-surface: white;
    --gmpx-color-on-surface: #1f2937;
    --gmpx-color-primary: var(--atw-primary);
    --gmpx-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

gmp-place-autocomplete input {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

gmp-place-autocomplete input:focus {
    outline: none;
    border-color: var(--atw-primary);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

/* Style for Google Autocomplete dropdown */
.pac-container {
    z-index: 10000 !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 2px;
}

.pac-container:after {
    display: none !important;
}

/* Ensure the autocomplete dropdown appears above other elements */
.gmpx-autocomplete-dropdown {
    z-index: 10001 !important;
}

/* Modal Overlay and Sticky Mode */
.atw-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 999998 !important; /* Unter dem Widget */
    background: rgba(0, 0, 0, 0.75) !important;
    backdrop-filter: blur(4px) !important;
    display: block !important;
}

.atw-overlay-close {
    position: fixed !important; /* Fixed statt absolute */
    top: 20px !important;
    right: 20px !important;
    width: 48px !important;
    height: 48px !important;
    padding: 0 !important;
    background: white !important;
    border: none !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 1000000 !important; /* Über allem */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1) !important;
}

.atw-overlay-close:hover {
    transform: scale(1.1) !important;
    background: #f3f4f6 !important;
}

/* Widget in Sticky Mode */
#airport-transfer-widget.atw-sticky-mode {
    position: fixed !important;
    z-index: 999999 !important; /* Über dem Overlay */
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    max-width: 1200px !important;
    width: 90% !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3) !important;
    border-radius: 20px !important;
}

/* Ensure container has white background in sticky mode */
#airport-transfer-widget.atw-sticky-mode .atw-container {
    background: white !important;
    position: relative !important;
}

/* Proxy Autocomplete Dropdown - Maximum z-index for foreign websites */
.proxy-autocomplete-dropdown {
    position: fixed !important;
    z-index: 1000001 !important; /* Über allem inkl. Widget */
    background: white !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    max-height: 240px !important;
    overflow-y: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.proxy-autocomplete-dropdown .proxy-autocomplete-item {
    display: block !important;
    padding: 12px 16px !important;
    cursor: pointer !important;
    border-bottom: 1px solid #f3f4f6 !important;
    background: white !important;
    color: #1f2937 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    transition: background 0.2s !important;
    font-family: inherit !important;
}

.proxy-autocomplete-dropdown .proxy-autocomplete-item:hover {
    background: #f3f4f6 !important;
}

.proxy-autocomplete-dropdown .proxy-autocomplete-item.selected {
    background: #e0e7ff !important;
}

/* Additional Modal Padding for Customer and Extras Steps */
.atw-modal .atw-customer-form {
    padding: 15px;
}

.atw-modal .atw-extras-container {
    padding: 15px;
}

.atw-modal .atw-form-grid {
    gap: 25px;
}

.atw-modal .atw-input-group {
    margin-bottom: 25px;
}

/* Responsive padding adjustments */
@media (max-width: 768px) {
    .atw-checkout-content {
        padding: 20px;
    }
    
    .atw-step-customer .atw-checkout-content,
    .atw-step-extras .atw-checkout-content {
        padding: 25px;
    }
    
    .atw-modal .atw-checkout-content {
        padding: 30px 20px;
    }
}

/* Quote Request Form Styles */
.atw-quote-form {
    padding: 30px !important;
    background: #ffffff !important;
    border-radius: 16px !important;
    margin-top: 20px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}

.atw-quote-btn-large {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 16px 32px !important;
    background: linear-gradient(135deg, var(--atw-primary), var(--atw-secondary)) !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
    margin: 20px 0 !important;
}

.atw-quote-btn-large:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3) !important;
}

.atw-quote-btn-large svg {
    width: 20px !important;
    height: 20px !important;
    stroke: currentColor !important;
}

.atw-form-section {
    margin-bottom: 35px !important;
    padding-bottom: 30px !important;
    border-bottom: 1px solid #e5e7eb !important;
}

.atw-form-section:last-of-type {
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.atw-form-section h4 {
    margin: 0 0 20px 0 !important;
    color: #111827 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    letter-spacing: -0.01em !important;
}

/* Mobile responsive for all grids */
@media (max-width: 768px) {
    .atw-form-grid,
    .atw-form-grid-4col,
    .atw-form-grid-3col,
    .atw-form-grid-2-1 {
        grid-template-columns: 1fr !important;
    }
}

.atw-form-group {
    display: flex !important;
    flex-direction: column !important;
}

.atw-form-group label {
    margin-bottom: 8px !important;
    color: #4b5563 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

.atw-form-input,
.atw-form-select {
    padding: 10px 14px !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    transition: border-color 0.2s !important;
    background: white !important;
    color: #1f2937 !important;
}

.atw-form-input:focus,
.atw-form-select:focus {
    outline: none !important;
    border-color: var(--atw-primary) !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
}

.atw-checkbox-group {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 15px !important;
}

.atw-checkbox-label {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    cursor: pointer !important;
    padding: 12px !important;
    background: white !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 8px !important;
    transition: all 0.2s !important;
}

.atw-checkbox-label:hover {
    border-color: var(--atw-primary) !important;
    background: #f0f4ff !important;
}

.atw-checkbox-label input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    cursor: pointer !important;
}

.atw-checkbox-label input[type="checkbox"]:checked + span {
    color: var(--atw-primary) !important;
    font-weight: 500 !important;
}

.atw-radio-group {
    display: flex !important;
    gap: 15px !important;
    flex-wrap: wrap !important;
}

.atw-radio-label {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    cursor: pointer !important;
    padding: 10px 16px !important;
    background: white !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 8px !important;
    transition: all 0.2s !important;
}

.atw-radio-label:hover {
    border-color: var(--atw-primary) !important;
}

.atw-radio-label input[type="radio"]:checked + span {
    color: var(--atw-primary) !important;
    font-weight: 500 !important;
}

.atw-radio-label input[type="radio"]:checked ~ .atw-radio-label {
    background: #f0f4ff !important;
    border-color: var(--atw-primary) !important;
}

.atw-form-textarea {
    min-height: 100px !important;
    resize: vertical !important;
    padding: 10px 14px !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-family: inherit !important;
    transition: border-color 0.2s !important;
    background: white !important;
    color: #1f2937 !important;
}

.atw-form-textarea:focus {
    outline: none !important;
    border-color: var(--atw-primary) !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
}

.atw-form-actions {
    display: flex !important;
    gap: 15px !important;
    justify-content: flex-end !important;
    margin-top: 30px !important;
    padding-top: 20px !important;
    border-top: 1px solid #e5e7eb !important;
}

.atw-btn-secondary {
    padding: 12px 24px !important;
    background: white !important;
    color: #6b7280 !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
}

.atw-btn-secondary:hover {
    background: #f3f4f6 !important;
    border-color: #d1d5db !important;
}

.atw-btn-primary {
    padding: 12px 24px !important;
    background: linear-gradient(135deg, var(--atw-primary), var(--atw-secondary)) !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
}

.atw-btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 16px rgba(var(--atw-primary-rgb, 102, 126, 234), 0.3) !important;
}

.atw-btn-primary:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

/* Quote Success Message */
.atw-quote-success {
    text-align: center !important;
    padding: 40px !important;
    background: white !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.atw-success-icon {
    width: 60px !important;
    height: 60px !important;
    margin: 0 auto 20px !important;
    color: var(--atw-success) !important;
    stroke-width: 2 !important;
}

.atw-quote-success h3 {
    margin: 0 0 10px 0 !important;
    color: #1f2937 !important;
    font-size: 24px !important;
    font-weight: 600 !important;
}

.atw-quote-success p {
    margin: 10px 0 !important;
    color: #6b7280 !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
}

.atw-quote-success strong {
    color: var(--atw-primary) !important;
    font-weight: 600 !important;
}

/* Mobile Responsive for Quote Form */
@media (max-width: 768px) {
    .atw-checkbox-group {
        grid-template-columns: 1fr !important;
    }

    .atw-radio-group {
        flex-direction: column !important;
    }

    .atw-form-actions {
        flex-direction: column !important;
    }

    .atw-form-actions button {
        width: 100% !important;
    }
}

/* Luggage & Children Section */
.atw-luggage-children-section {
    margin-top: 40px !important;
    padding: 32px !important;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%) !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 16px !important;
}

.atw-section-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
    margin-bottom: 24px !important;
}

/* Luggage Grid */
.atw-luggage-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 20px !important;
    margin-bottom: 40px !important;
}

.atw-luggage-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 20px !important;
    background: white !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
}

.atw-luggage-item:hover {
    border-color: var(--atw-primary) !important;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15) !important;
}

.atw-luggage-icon {
    width: 80px !important;
    height: 80px !important;
    margin-bottom: 12px !important;
    color: var(--atw-primary) !important;
}

.atw-luggage-icon svg {
    width: 100% !important;
    height: 100% !important;
}

.atw-luggage-label {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #1f2937 !important;
    margin-bottom: 12px !important;
    line-height: 1.4 !important;
    min-height: 48px !important;
}

.atw-luggage-sublabel {
    font-size: 12px !important;
    font-weight: 400 !important;
    color: #6b7280 !important;
}

.atw-luggage-select {
    width: 80px !important;
    padding: 8px 12px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #1f2937 !important;
    background: white !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.atw-luggage-select:hover {
    border-color: var(--atw-primary) !important;
}

.atw-luggage-select:focus {
    outline: none !important;
    border-color: var(--atw-primary) !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
}

/* Children Section */
.atw-children-section {
    margin-top: 32px !important;
}

.atw-children-question {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
    margin-bottom: 24px !important;
    padding: 20px !important;
    background: white !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 12px !important;
}

.atw-children-question h3 {
    margin: 0 !important;
    flex: 1 !important;
}

.atw-children-select {
    width: 120px !important;
    padding: 10px 16px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #1f2937 !important;
    background: white !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.atw-children-select:hover {
    border-color: var(--atw-primary) !important;
}

.atw-children-select:focus {
    outline: none !important;
    border-color: var(--atw-primary) !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
}

/* Children Warning */
.atw-children-warning {
    display: flex !important;
    gap: 16px !important;
    padding: 16px 20px !important;
    margin-bottom: 24px !important;
    background: #fef3c7 !important;
    border: 1px solid #fbbf24 !important;
    border-radius: 12px !important;
    color: #78350f !important;
}

.atw-children-warning svg {
    flex-shrink: 0 !important;
    width: 24px !important;
    height: 24px !important;
    color: #f59e0b !important;
}

.atw-warning-text strong {
    display: block !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    margin-bottom: 4px !important;
}

.atw-warning-text p {
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

/* Child Seats Grid */
.atw-child-seats-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 20px !important;
}

.atw-seat-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 20px !important;
    background: white !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
}

.atw-seat-item:hover {
    border-color: var(--atw-success) !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15) !important;
}

.atw-seat-icon {
    width: 80px !important;
    height: 80px !important;
    margin-bottom: 12px !important;
    color: var(--atw-success) !important;
}

.atw-seat-icon svg {
    width: 100% !important;
    height: 100% !important;
}

.atw-seat-label {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #1f2937 !important;
    margin-bottom: 12px !important;
    line-height: 1.4 !important;
    min-height: 64px !important;
}

.atw-seat-sublabel {
    font-size: 11px !important;
    font-weight: 400 !important;
    color: #6b7280 !important;
}

.atw-seat-select {
    width: 70px !important;
    padding: 8px 12px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #1f2937 !important;
    background: white !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.atw-seat-select:hover {
    border-color: var(--atw-success) !important;
}

.atw-seat-select:focus {
    outline: none !important;
    border-color: var(--atw-success) !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .atw-luggage-grid,
    .atw-child-seats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .atw-children-question {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .atw-children-select {
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .atw-luggage-grid,
    .atw-child-seats-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Continue Section */
.atw-continue-section {
    margin-top: 40px !important;
    text-align: center !important;
    padding: 32px !important;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%) !important;
    border-radius: 16px !important;
}

.atw-continue-btn {
    padding: 16px 48px !important;
    background: linear-gradient(135deg, var(--atw-primary) 0%, var(--atw-secondary) 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-family: inherit !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
}

.atw-continue-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4) !important;
}

.atw-continue-btn:active {
    transform: translateY(-1px) !important;
}

.atw-continue-btn svg {
    width: 20px !important;
    height: 20px !important;
}

@media (max-width: 768px) {
    .atw-continue-btn {
        width: 100% !important;
        justify-content: center !important;
    }
}

/* Customer Form - Modern Grid Layout */
.atw-form-row {
    display: grid !important;
    grid-template-columns: repeat(12, 1fr) !important;
    gap: 20px !important;
    margin-bottom: 0px !important;
}

/* Add extra spacing after certain rows for visual separation */
.atw-form-row:nth-of-type(2) {
    margin-bottom: 0px !important;
}

.atw-form-row:nth-of-type(4) {
    padding-bottom: 28px !important;
    margin-bottom: 32px !important;
    border-bottom: 1px solid #e5e7eb !important;
}

/* Smart Grid System - Responsive & Flexible */

/* Default form group spans 6 columns (2 fields per row) - Most common */
.atw-form-group {
    grid-column: span 6 !important;
}

/* Small fields span 3 columns (4 fields per row) - For compact inputs like PLZ, Vorwahl */
.atw-form-group-small {
    grid-column: span 3 !important;
}

/* Medium fields span 4 columns (3 fields per row) - Balanced layout */
.atw-form-group-medium {
    grid-column: span 4 !important;
}

/* Large fields span 8 columns - For important fields */
.atw-form-group-large {
    grid-column: span 8 !important;
}

/* Full width spans all 12 columns - For textarea, special inputs */
.atw-form-group-full {
    grid-column: span 12 !important;
}

/* Half + Half = Perfect 50/50 split */
.atw-form-group-half {
    grid-column: span 6 !important;
}

/* Third = 3 equal columns */
.atw-form-group-third {
    grid-column: span 4 !important;
}

/* Quarter = 4 equal columns */
.atw-form-group-quarter {
    grid-column: span 3 !important;
}

/* Two-thirds = Takes 8 columns */
.atw-form-group-two-thirds {
    grid-column: span 8 !important;
}

/* ========================================
   FORM STYLES - TWO DIFFERENT SYSTEMS
   ======================================== */

/* === BOOKING FORM (Classic/Compact Style) === */
/* Labels ABOVE inputs, but compact */
.atw-checkout-content .atw-form-group {
    position: relative !important;
    margin-bottom: 0 !important;
}

.atw-checkout-content .atw-form-group label {
    display: block !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #374151 !important;
    margin-bottom: 6px !important;
    letter-spacing: 0.3px !important;
}

/* === QUOTE FORM (Floating Label Style) === */
/* Labels INSIDE inputs for maximum compactness */
.atw-quote-form .atw-form-group {
    position: relative !important;
}

.atw-quote-form .atw-form-group label {
    position: absolute !important;
    left: 14px !important;
    top: 6px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #6b7280 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    pointer-events: none !important;
    transition: all 0.2s ease !important;
    background: white !important;
    padding: 0 4px !important;
    z-index: 2 !important;
}

/* === BOOKING FORM INPUTS (Normal height, classic style) === */
.atw-checkout-content .atw-form-input,
.atw-checkout-content .atw-form-select,
.atw-checkout-content .atw-form-textarea {
    width: 100% !important;
    padding: 12px 14px !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
    font-family: inherit !important;
    color: #1f2937 !important;
    background: white !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 8px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-sizing: border-box !important;
    font-weight: 500 !important;
}

/* === QUOTE FORM INPUTS (Tall for floating labels) === */
.atw-quote-form .atw-form-input,
.atw-quote-form .atw-form-select,
.atw-quote-form .atw-form-textarea {
    width: 100% !important;
    min-height: 56px !important;
    padding: 30px 14px 10px 14px !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
    font-family: inherit !important;
    color: #1f2937 !important;
    background: white !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 10px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-sizing: border-box !important;
    font-weight: 500 !important;
}

/* === SELECT DROPDOWNS (Both forms) === */
.atw-checkout-content .atw-form-select,
.atw-quote-form .atw-form-select {
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%23667eea' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M6 8l4 4 4-4'/%3E%3C/svg%3E") !important;
    background-position: right 12px center !important;
    background-repeat: no-repeat !important;
    background-size: 18px !important;
    padding-right: 40px !important;
}

.atw-checkout-content .atw-form-select:hover,
.atw-quote-form .atw-form-select:hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%235a67d8' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E") !important;
}

/* === TEXTAREA (Both forms) === */
.atw-checkout-content .atw-form-textarea,
.atw-quote-form .atw-form-textarea {
    resize: vertical !important;
    min-height: 100px !important;
}

/* === BOOKING FORM - Focus States (Subtle) === */
.atw-checkout-content .atw-form-input:focus,
.atw-checkout-content .atw-form-select:focus,
.atw-checkout-content .atw-form-textarea:focus {
    outline: none !important;
    border-color: var(--atw-primary) !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
}

.atw-checkout-content .atw-form-input:hover:not(:focus),
.atw-checkout-content .atw-form-select:hover:not(:focus),
.atw-checkout-content .atw-form-textarea:hover:not(:focus) {
    border-color: #d1d5db !important;
}

/* === QUOTE FORM - Focus States (Luxury Glow) === */
.atw-quote-form .atw-form-input:focus,
.atw-quote-form .atw-form-select:focus,
.atw-quote-form .atw-form-textarea:focus {
    outline: none !important;
    border-color: var(--atw-primary) !important;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.12), 0 4px 12px rgba(102, 126, 234, 0.08) !important;
    transform: translateY(-1px) !important;
}

/* Label animation on focus (nur Quote Form) */
.atw-quote-form .atw-form-input:focus + label,
.atw-quote-form .atw-form-select:focus + label {
    color: var(--atw-primary) !important;
    font-weight: 700 !important;
}

.atw-quote-form .atw-form-input:hover:not(:focus),
.atw-quote-form .atw-form-select:hover:not(:focus),
.atw-quote-form .atw-form-textarea:hover:not(:focus) {
    border-color: #d1d5db !important;
    background: #fafbfc !important;
}

/* Placeholder */
.atw-form-input::placeholder,
.atw-form-textarea::placeholder {
    color: #9ca3af !important;
    font-weight: 400 !important;
}

/* Section title styling */
.atw-section-title {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
    margin-bottom: 32px !important;
}

/* Responsive - Tablet (1024px) */
@media (max-width: 1024px) {
    .atw-form-row {
        grid-template-columns: repeat(6, 1fr) !important;
    }

    /* Default auf Tablet: 2 Felder pro Zeile */
    .atw-form-group,
    .atw-form-group-half {
        grid-column: span 3 !important;
    }

    /* Medium auf Tablet: Full width */
    .atw-form-group-medium,
    .atw-form-group-large,
    .atw-form-group-two-thirds {
        grid-column: span 6 !important;
    }

    /* Small bleibt klein */
    .atw-form-group-small,
    .atw-form-group-quarter {
        grid-column: span 2 !important;
    }

    /* Third wird half */
    .atw-form-group-third {
        grid-column: span 3 !important;
    }

    /* Full bleibt full */
    .atw-form-group-full {
        grid-column: span 6 !important;
    }
}

/* Responsive - Mobile (768px) */
@media (max-width: 768px) {
    .atw-form-row {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    /* Alle Felder auf Mobile: Full Width */
    .atw-form-group,
    .atw-form-group-small,
    .atw-form-group-medium,
    .atw-form-group-large,
    .atw-form-group-full,
    .atw-form-group-half,
    .atw-form-group-third,
    .atw-form-group-quarter,
    .atw-form-group-two-thirds {
        grid-column: span 1 !important;
    }

    /* Input padding auf Mobile optimieren */
    .atw-form-input,
    .atw-form-select,
    .atw-form-textarea {
        min-height: 52px !important;
        padding: 22px 12px 8px 12px !important;
        font-size: 14px !important;
    }

    /* Label auf Mobile kleiner */
    .atw-form-group label {
        font-size: 10px !important;
        left: 12px !important;
        top: 5px !important;
    }
}
