 /* --- BASIS STYLES --- */
        :root {
            --primary-red: #8B2E31;
            /* Dein Weinrot */
            --accent-red: #7D151E;
            /* Kalender-Akzentrot */
            --icon-bg: #F7E6E7;
            --text-dark: #333333;
            --text-light: #666666;
            --border-radius: 12px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
.white_space {
    width: 100%;
    height: 120px;
    background-color: #FAFAFA;
}

        body {
            font-family: 'Lato', sans-serif;
            background-color: #FAFAFA;
            color: var(--text-dark);
            line-height: 1.6;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        header.main-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .top-subline {
            display: block;
            font-size: 0.9rem;
            color: #9EA860;
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        h1 {
            font-family: 'Playfair Display', serif;
            color: var(--primary-red);
            font-size: 3rem;
            font-weight: 500;
        }

        .grid-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        /* --- CARDS --- */
        .card {
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
            margin-bottom: 30px;
        }

        h2 {
            font-family: 'Playfair Display', serif;
            color: var(--primary-red);
            font-size: 1.6rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }

        h2 i {
            margin-right: 12px;
            font-size: 1.3rem;
        }

        /* Links: Info & Zeiten */
        .contact-item {
            display: flex;
            margin-bottom: 20px;
        }

        .icon-circle {
            background-color: var(--icon-bg);
            color: var(--primary-red);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .contact-text h3 {
            font-family: 'Playfair Display', serif;
            color: var(--primary-red);
            font-size: 1.1rem;
        }

        .contact-text p,
        .contact-text a {
            font-size: 0.95rem;
            color: var(--text-light);
            text-decoration: none;
        }

        .hours-row {
            display: flex;
            justify-content: space-between;
            border-bottom: 1px solid #eee;
            padding: 12px 0;
            font-size: 0.95rem;
        }

        .notice-box {
            background-color: #F8F8F8;
            padding: 15px;
            border-radius: 8px;
            margin-top: 20px;
            font-size: 0.85rem;
            border-left: 4px solid var(--primary-red);
        }

        /* Rechts: Formular-Eingaben */
        .form-group {
            margin-bottom: 15px;
        }

        .form-row {
            display: flex;
            gap: 15px;
        }

        label {
            display: block;
            font-size: 0.85rem;
            color: #888;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .input-with-icon {
            position: relative;
        }

        .input-with-icon i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #aaa;
        }

        .input-with-icon input {
            width: 100%;
            background: #F3F3F3;
            border: 1px solid transparent;
            padding: 12px 15px 12px 40px;
            border-radius: 8px;
            font-size: 1rem;
            outline: none;
            transition: 0.3s;
        }

        .input-with-icon input:focus {
            background: #fff;
            border-color: var(--primary-red);
        }

        /* --- DEIN IOS CALENDAR PICKER STYLING --- */
        .ios-picker {
            width: 100%;
            background: #F6F6F6;
            border-radius: 15px;
            padding: 20px;
            color: #000;
            margin-top: 10px;
            margin-bottom: 20px;
        }

        .cal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .nav button {
            background: none;
            border: none;
            font-size: 28px;
            color: var(--accent-red);
            cursor: pointer;
            padding: 0 10px;
        }

        .weekdays {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            color: #9b9b9b;
            font-weight: 600;
            font-size: 12px;
            text-align: center;
            margin-bottom: 5px;
        }

        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 8px;
        }

        .day {
            text-align: center;
            font-size: 18px;
            padding: 8px 0;
            border-radius: 50%;
            cursor: pointer;
            transition: 0.2s;
        }

        .day:hover:not(.empty) {
            background: rgba(0, 0, 0, 0.05);
        }

        .day.today {
            color: var(--accent-red);
            font-weight: 700;
        }

        .day.active {
            background: var(--accent-red) !important;
            color: white !important;
        }

        .time-bar {
            display: flex;
            align-items: center;
            width: 100%;
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid #e0e0e0;
        }

        .time-bar span {
            font-size: 18px;
            font-weight: 600;
        }

        .time-bar select {
            -webkit-appearance: none;
            appearance: none;
            margin-left: auto;
            background: #e5e5e5;
            border: none;
            border-radius: 999px;
            padding: 8px 35px 8px 15px;
            font-size: 18px;
            font-weight: 500;
            cursor: pointer;
            outline: none;
            background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237D151E' stroke-width='2' fill='none'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
        }

        .btn-submit {
            width: 100%;
            background: var(--primary-red);
            color: white;
            border: none;
            padding: 16px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-family: 'Playfair Display', serif;
            cursor: pointer;
            transition: 0.3s;
            font-weight: 600;
        }

        .btn-submit:hover {
            background: #6d2426;
            transform: translateY(-2px);
        }

        @media (max-width: 900px) {
            .grid-layout {
                grid-template-columns: 1fr;
            }
        }

        .map-container {
            max-width: 1100px;
            /* Same as your main container */
            margin: 40px auto 0;
            /* 40px top space, centered */
            padding: 0 20px;
            /* Aligns the edges with the cards above */
        }

        .map-container iframe {
            width: 100%;
            border-radius: 12px;
            /* Matches the rounded corners of your cards */
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
            /* Matches the soft shadow of the forms */
        }