.cutqueue-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.cutqueue-logo img {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.cutqueue-logo:hover img {
    transform: scale(1.05);
    opacity: 1;
}

/* Responsive polish */
@media (max-width: 576px) {
    .cutqueue-logo img {
        max-width: 120px;
    }

    .cutqueue-logo .small {
        font-size: 0.75rem;
    }
}

.booking-card {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    max-width: 480px;
    margin: auto;
    transition: .3s
}

.booking-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1)
}

.progress-wrapper {
    text-align: center
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 4px
}

.progress {
    height: 8px;
    border-radius: 6px;
    background-color: #e9ecef;
    overflow: hidden
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #007bff, #00bcd4);
    transition: width .4s
}

.form-step {
    display: none;
    animation: fadeInUp .5s
}

.form-step.active {
    display: block
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.fade-in {
    animation: fadeIn .6s
}

.fade-in-up {
    animation: fadeInUp .7s
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.btn {
    border-radius: 10px;
    padding: 10px;
    font-weight: 500;
    transition: .2s
}

.btn:hover {
    transform: scale(1.02)
}

@media(max-width:576px) {
    .booking-card {
        padding: 1.5rem
    }
}

/* Show placeholder text over the date input if class is present */
input.bb-date-placeholder::before {
    content: attr(data-placeholder);
    color: #6c757d;
    position: absolute;
    pointer-events: none;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
}

input[type="date"] {
    position: relative;
}