* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
    background: #fff;
    color: #1a1a1a;
    line-height: 1.5;
}

.ms-icon {
    font-family: "Material Symbols Outlined";
    font-weight: normal;
    font-style: normal;
    font-size: 1.05rem;
    line-height: 1;
    display: inline-block;
    vertical-align: -2px;
    font-variation-settings:
        "FILL" 0,
        "wght" 500,
        "GRAD" 0,
        "opsz" 20;
}

a {
    color: #b8860b;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: min(920px, 92%);
    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 12px 0;
    border-bottom: 1px solid rgba(204, 193, 162, 0.34);
    background: linear-gradient(180deg, rgba(252, 248, 238, 0.97) 0%, rgba(255, 254, 250, 0.93) 58%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(12px) saturate(1.2);
    box-shadow: 0 16px 34px rgba(28, 24, 14, 0.1);
}

.topbar nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 2px 0;
}

.brand {
    position: relative;
    display: inline-block;
    width: 150px;
    aspect-ratio: 200 / 120;
    font-size: 1.15rem;
    font-weight: 700;
    color: #111;
    line-height: 1;
}

.brand-logo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.menu {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.mobile-header-controls {
    display: none;
    align-items: center;
    gap: 8px;
}

.mobile-nav {
    position: relative;
}

.mobile-nav summary {
    list-style: none;
    width: 34px;
    height: 34px;
    border: 1px solid #ded9ca;
    border-radius: 9px;
    background: #fffefb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-nav summary::-webkit-details-marker {
    display: none;
}

.mobile-nav-panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 210px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    border: 1px solid #e8e2cf;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    z-index: 80;
}

.mobile-nav-panel a {
    padding: 7px 8px;
    border-radius: 8px;
}

.mobile-nav-panel .muted {
    padding: 4px 8px 2px;
}

.menu .muted {
    font-size: 0.86rem;
    white-space: nowrap;
}

.lang-switch {
    appearance: none;
    width: 78px;
    min-width: 78px;
    height: 34px;
    border: 1px solid #ded9ca;
    border-radius: 10px;
    padding: 0 28px 0 10px;
    background-color: #fffefb;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236e644d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 9px center;
    background-size: 12px 12px;
    box-shadow: 0 4px 10px rgba(20, 20, 20, 0.05);
    color: #383123;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.lang-switch:hover {
    border-color: #d3bc84;
    background-color: #fffaf0;
}

.lang-switch:focus {
    outline: none;
    border-color: #f3c760;
    box-shadow: 0 0 0 3px rgba(251, 189, 51, 0.25);
}

.menu a {
    color: #342f24;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 8px 11px;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.menu a:hover {
    color: #17140d;
    background: #fffdf8;
    border-color: #e6d8b5;
    box-shadow: 0 5px 14px rgba(25, 21, 13, 0.08);
    text-decoration: none;
    transform: translateY(-1px);
}

.menu .btn.secondary {
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.9rem;
    border-color: #deceaa;
    background: linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
    box-shadow: 0 7px 16px rgba(35, 28, 14, 0.08);
}

.menu .btn.secondary:hover {
    background: linear-gradient(180deg, #fffdf7 0%, #fff4dc 100%);
}

@media (max-width: 720px) {
    .topbar {
        padding: 6px 0;
    }

    .topbar nav {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0;
        gap: 8px;
    }

    .brand {
        width: 76px;
        flex: 0 0 auto;
    }

    .desktop-menu {
        display: none;
    }

    .mobile-header-controls {
        display: flex;
        margin-left: auto;
    }

    .mobile-header-controls .lang-switch {
        width: 62px;
        min-width: 62px;
        height: 30px;
        font-size: 0.74rem;
        padding: 0 20px 0 8px;
        background-position: right 6px center;
    }

    .admin-menu {
        flex: 1 1 auto;
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 6px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 2px;
    }

    .admin-menu::-webkit-scrollbar {
        height: 4px;
    }

    .admin-menu .muted {
        display: none;
    }

    .admin-menu a {
        white-space: nowrap;
        padding: 6px 9px;
        font-size: 0.8rem;
        border-radius: 8px;
    }
}

.hero {
    padding: 48px 0 36px;
}

.hero h1 {
    margin: 0 0 12px;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    line-height: 1.2;
    font-weight: 700;
    color: #111;
}

.hero p {
    color: #555;
    max-width: 640px;
    margin: 0 0 12px;
}

.info-panel {
    margin: 18px auto 8px;
    padding: 16px 18px;
    border-radius: 12px;
    border: 1px solid #ead9ac;
    background: linear-gradient(135deg, #fffdf6 0%, #fffaf0 100%);
    color: #4b3d1c;
    box-shadow: 0 4px 14px rgba(166, 129, 37, 0.08);
}

.info-panel-hero {
    margin-top: 24px;
}

.info-panel-services {
    margin-top: 2px;
    margin-bottom: 18px;
}

.hero--compact {
    padding-top: 32px;
    padding-bottom: 20px;
}

.hero-main {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    border: 0;
    background: linear-gradient(135deg, #f8f8f6 0%, #ffffff 65%);
    padding: 0;
    height: 520px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.hero-fullbleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.hero-main .hero-content {
    position: relative;
    z-index: 2;
    padding: 46px 38px;
    max-width: 660px;
}

.hero-main .hero-content h1 {
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.hero-main .hero-content p {
    color: rgba(255, 255, 255, 0.92);
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(20, 20, 20, 0.58) 8%, rgba(20, 20, 20, 0.36) 40%, rgba(20, 20, 20, 0.12) 70%, rgba(20, 20, 20, 0.06) 100%);
}

.hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: saturate(1.05) contrast(1.02);
    transform: scale(1);
    animation: heroZoom 14s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.07);
    }
}

@media (max-width: 700px) {
    .hero-main {
        height: 360px;
    }

    .hero-main .hero-content {
        padding: 30px 22px;
    }
}

@media (max-width: 480px) {
    .brand {
        width: 70px;
    }

    .mobile-nav-panel .muted {
        display: none;
    }

    .hero-main {
        height: 320px;
    }

    .hero-main .hero-content {
        padding: 20px 16px;
    }

    .hero-main .hero-content h1 {
        font-size: clamp(1.45rem, 7vw, 1.8rem);
    }

    .hero-main .hero-content p {
        font-size: 0.92rem;
    }
}

.btn {
    display: inline-block;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    border-radius: 8px;
    background: #fbbd33;
    color: #111;
    font-weight: 700;
    padding: 12px 20px;
    cursor: pointer;
    text-decoration: none;
}

.btn:hover {
    filter: brightness(0.97);
    text-decoration: none;
}

.btn.secondary {
    background: #f0f0ee;
    color: #222;
    border: 1px solid #ddd;
}

.btn.secondary:hover {
    background: #e8e8e4;
}

.btn-google {
    justify-content: center;
    min-width: 250px;
    border: 1px solid #d8d8d3;
    background: #fff;
    color: #1f1f1f;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.btn-google:hover {
    background: #fafafa;
}

.btn-google .ms-icon {
    font-size: 1.2rem;
}

.center-actions {
    display: flex;
    justify-content: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.card {
    border: 1px solid #e0e0de;
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.card h3 {
    margin-top: 0;
    color: #111;
}

.work-hours-section {
    margin-top: 26px;
}

.work-hours-list {
    border: 1px solid #e6e6e2;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.work-hours-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid #efefec;
}

.work-hours-row:last-child {
    border-bottom: none;
}

.work-hours-row:nth-child(odd) {
    background: #fcfcfa;
}

.work-hours-day {
    font-weight: 600;
    color: #1b1b1b;
}

.work-hours-time {
    justify-self: end;
    color: #555;
    font-weight: 500;
}

@media (max-width: 640px) {
    .work-hours-row {
        grid-template-columns: 1fr;
        padding: 12px 14px;
        gap: 6px;
    }

    .work-hours-time {
        justify-self: start;
    }
}

.service-link {
    position: relative;
    overflow: hidden;
    display: block;
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(251, 189, 51, 0) 20%, rgba(251, 189, 51, 0.16) 70%, rgba(251, 189, 51, 0.06) 100%);
    opacity: 0;
    transition: opacity 0.22s ease;
    pointer-events: none;
}

.service-link::before {
    content: "→";
    position: absolute;
    right: 16px;
    bottom: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #a36e00;
    opacity: 0.55;
    transform: translateX(-6px);
    transition: transform 0.22s ease, opacity 0.22s ease;
    pointer-events: none;
}

.service-link h3 {
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.service-link:hover {
    text-decoration: none;
    transform: translateY(-5px);
    border-color: #f2d384;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
}

.service-link:hover::after {
    opacity: 1;
}

.service-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.service-link:hover h3 {
    color: #a36e00;
}

.services-cta {
    margin-top: -18px;
    margin-bottom: 34px;
    text-align: right;
}

@media (max-width: 640px) {
    .services-cta {
        margin-top: -6px;
    }
}

.services-cta-btn {
    border-radius: 999px;
    padding: 11px 20px;
    box-shadow: 0 8px 18px rgba(251, 189, 51, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.services-cta-btn::after {
    content: "  →";
    font-weight: 700;
}

.services-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 11px 22px rgba(251, 189, 51, 0.36);
}

.section-title {
    margin: 36px 0 16px;
    font-size: 1.25rem;
    color: #111;
}

.form-wrap {
    background: #fff;
    border: 1px solid #e8e8e6;
    border-radius: 12px;
    padding: 22px;
    margin-bottom: 32px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.875rem;
    color: #444;
    font-weight: 600;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #ccc;
    background: #fff;
    color: #111;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 1rem;
}

input[type="radio"],
input[type="checkbox"] {
    width: auto;
    padding: 0;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #fbbd33;
    box-shadow: 0 0 0 2px rgba(251, 189, 51, 0.25);
}

textarea {
    min-height: 90px;
    resize: vertical;
}

.alert {
    margin: 14px 0;
    border-radius: 8px;
    padding: 12px 14px;
    border: 1px solid transparent;
}

.alert.error {
    background: #fdeaea;
    color: #8b1a1a;
    border-color: #f5c4c4;
}

.alert.success {
    background: #e8f5ef;
    color: #1e5c36;
    border-color: #b8dfc8;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e8e8e6;
}

th,
td {
    border-bottom: 1px solid #eee;
    padding: 12px 14px;
    text-align: left;
    font-size: 0.9rem;
}

th {
    background: #f7f7f5;
    color: #333;
    font-weight: 600;
}

tr:last-child td {
    border-bottom: none;
}

.appt-row.appt-past td {
    background: #f2f5ff;
}

.appt-row.appt-cancelled td {
    background: #fdecec;
    color: #8c2626;
}

.appt-row.appt-upcoming td {
    background: #eefaf2;
}

.muted {
    color: #666;
}

.site-footer {
    margin-top: 36px;
    border-top: 1px solid #e9e9e5;
    background: #fafaf8;
}

.contact-card-wrap {
    width: min(920px, 92%);
    margin: 6px 0 24px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.contact-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
    padding: 12px;
    border: 1px solid #e7e6df;
    border-radius: 12px;
    background: linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
    max-width: none;
    margin: 0 auto;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid #ecebe4;
    border-radius: 10px;
    background: #fff;
    color: #3c3c37;
    font-weight: 600;
    text-decoration: none;
}

.contact-item:hover {
    text-decoration: none;
    border-color: #e2c98a;
    background: #fff9ec;
}

.contact-map {
    margin-top: 12px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e7e6df;
    background: #f8f8f8;
    min-height: 360px;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 360px;
    border: 0;
}

.footer-contact-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 0 0 14px;
}

.site-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
    color: #666;
    font-size: 0.9rem;
}

.site-footer-inner p {
    margin: 0;
}

@media (max-width: 640px) {
    .site-footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-map {
        min-height: 300px;
    }

    .contact-map iframe {
        height: 300px;
    }
}

code {
    background: #f0f0ee;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}

/* --- Randevu: gorunume yakin hizmet alani --- */
.page-booking .booking-wrap {
    padding-bottom: 48px;
}

.booking-light {
    background: #fff;
    color: #1a1a1a;
    padding: 8px 0 36px;
    margin-bottom: 8px;
}

.booking-heading {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: clamp(1.65rem, 3.5vw, 2.1rem);
    font-weight: 400;
    text-align: center;
    margin: 0 0 20px;
    color: #111;
    letter-spacing: 0.01em;
}

.booking-rule {
    height: 1px;
    background: #ddd;
    margin: 0 auto 28px;
    max-width: 100%;
    border: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 20px;
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 14px;
    row-gap: 8px;
    padding: 18px 20px;
    min-height: 88px;
    background: #fff;
    border: 1px solid #d9d9d7;
    border-radius: 6px;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.service-card:hover {
    border-color: #c4c4c0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.service-card:has(input:checked) {
    border-color: #fbbd33;
    box-shadow: 0 0 0 2px rgba(251, 189, 51, 0.35);
}

.service-card-title {
    grid-column: 1;
    grid-row: 1;
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #111;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-card-meta {
    grid-column: 1;
    grid-row: 2;
    font-size: 0.8rem;
    color: #333;
}

.service-card-meta .sep {
    margin: 0 0.35em;
    color: #888;
}

.service-card-btn {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #fbbd33;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    user-select: none;
}

.service-card:has(input:checked) .service-card-btn {
    background: #2d6a4f;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.booking-hint {
    margin: 20px 0 0;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.booking-empty {
    text-align: center;
    color: #666;
    margin: 12px 0 0;
}

.booking-datetime {
    margin-top: 0;
}

.stepper {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.step-pill {
    border: 1px solid #d8d8d6;
    border-radius: 999px;
    background: #fff;
    color: #555;
    padding: 8px 12px;
    font-size: 0.86rem;
    font-weight: 600;
}

.step-pill.is-active {
    background: #fbbd33;
    color: #111;
    border-color: #fbbd33;
}

.tab-panel {
    display: none;
}

.tab-panel.is-active {
    display: block;
}

.tab-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.btn-next::after {
    content: " →";
    font-weight: 700;
    margin-left: 4px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(108px, 1fr));
    gap: 8px;
}

.calendar-grid-admin {
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.admin-weekdays {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 6px;
}

.admin-weekdays span {
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    color: #7a6d50;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.calendar-day-empty {
    border: 1px dashed #eee8da;
    background: #fffdf8;
    min-height: 54px;
    cursor: default;
}

.admin-month-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 14px;
}

.admin-month-card {
    border: 1px solid #ddd7c8;
    border-radius: 10px;
    background: #fffefb;
    color: #3f3624;
    padding: 7px 10px;
    font-size: 0.88rem;
    font-weight: 700;
    text-align: center;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.admin-month-name {
    display: block;
    line-height: 1.05;
}

.admin-month-year {
    display: block;
    font-size: 0.72rem;
    font-weight: 650;
    line-height: 1.05;
    opacity: 0.9;
}

.admin-month-card:hover {
    border-color: #e3c277;
    background: #fff7e3;
    box-shadow: 0 6px 14px rgba(76, 58, 18, 0.08);
}

.admin-month-card.is-selected {
    border-color: #fbbd33;
    background: #fff0c7;
    color: #573d00;
}

.admin-day-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.calendar-day {
    border: 1px solid #d7d7d4;
    border-radius: 8px;
    background: #fff;
    color: #333;
    padding: 8px 8px 9px;
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-height: 54px;
}

.cal-date-top {
    font-size: 0.82rem;
    line-height: 1.1;
}

.cal-date-bottom {
    font-size: 0.72rem;
    line-height: 1.1;
    color: #7b7b7b;
}

.cal-date-note {
    margin-top: 2px;
    font-size: 0.63rem;
    line-height: 1.1;
    color: #9a6767;
    text-align: center;
}

.calendar-day.is-open:hover {
    border-color: #f3c95f;
    background: #fff9eb;
}

.calendar-day.is-selected {
    border-color: #fbbd33;
    background: #fff2cc;
    color: #734f00;
}

.calendar-day.is-closed,
.calendar-day:disabled {
    background: #f2f2f1;
    color: #a2a2a2;
    cursor: not-allowed;
}

@media (max-width: 760px) {
    .admin-month-grid {
        grid-template-columns: repeat(2, minmax(130px, 1fr));
    }

    .calendar-grid-admin {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
    }

    .admin-weekdays {
        display: none;
    }
}

.time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.time-slot {
    border: 1px solid #ddd;
    border-radius: 999px;
    padding: 7px 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    cursor: pointer;
}

.booking-legend {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 10px 0 4px;
    font-size: 0.83rem;
    color: #666;
}

.booking-legend .dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    margin-right: 6px;
    vertical-align: middle;
}

.booking-legend .dot-open {
    background: #b9f0cb;
}

.booking-legend .dot-closed {
    background: #d8d8d8;
}

.booking-legend .dot-selected {
    background: #fbbd33;
}

.loading-indicator {
    margin: 10px 0 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6b6b6b;
    font-size: 0.86rem;
}

.loading-indicator.is-hidden {
    display: none;
}

.admin-slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 10px;
}

.admin-slot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border: 1px solid #e3e3de;
    border-radius: 10px;
    padding: 10px 12px;
    background: #fff;
}

.admin-slot-available {
    border-color: #cbe7d4;
    background: #f3fcf6;
}

.admin-slot-occupied {
    border-color: #f1c9c9;
    background: #fff5f5;
}

.admin-slot-blocked {
    border-color: #f2ddad;
    background: #fffaf0;
}

.admin-slot-past {
    border-color: #dbdbdb;
    background: #f7f7f7;
}

.spinner {
    width: 14px;
    height: 14px;
    border: 2px solid #e2e2e2;
    border-top-color: #fbbd33;
    border-radius: 999px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 480px) {
    .form-wrap {
        padding: 16px;
    }
    .services-grid {
        gap: 12px;
    }
    .service-card {
        padding: 14px 12px;
        column-gap: 10px;
    }
    .service-card-btn {
        min-width: 76px;
        padding: 8px 12px;
        font-size: 0.65rem;
    }
    .booking-heading {
        font-size: 1.5rem;
    }
    .stepper {
        gap: 6px;
    }
    .step-pill {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
}
