/* Standalone booking cards stylesheet */
/* This file is linked directly from booking.php so changes show immediately. */

.booking-form-refined {
    max-width: 960px;
}

.service-card-shell {
    border: 1px solid #e8dbcf;
    background: linear-gradient(180deg, #fdfaf7 0%, #f8f2eb 100%);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 10px 26px rgba(38, 24, 13, 0.04);
}

.service-card-shell-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 18px;
}

.service-card-shell-header h3 {
    margin: 0 0 6px;
    color: #2b211b;
    font-size: 1.2rem;
    line-height: 1.2;
}

.service-card-shell-header p {
    margin: 0;
    color: #756861;
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-selected-badge {
    flex-shrink: 0;
    min-width: 92px;
    text-align: center;
    background: #efe1d3;
    border: 1px solid #dfc7b1;
    color: #7a5940;
    border-radius: 18px;
    padding: 10px 12px;
    font-weight: 800;
    box-shadow: 0 6px 18px rgba(110, 76, 48, 0.08);
}

.service-selected-badge span {
    display: block;
    font-size: 1.3rem;
    color: #2b211b;
    line-height: 1.1;
}

.service-selected-badge small {
    display: block;
    margin-top: 4px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.service-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.service-choice-card {
    display: block;
    cursor: pointer;
    margin: 0;
}

.service-choice-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.service-choice-card-inner {
    position: relative;
    display: block;
    background: #ffffff;
    border: 1px solid #e7ddd4;
    border-radius: 18px;
    padding: 18px 16px 16px 48px;
    min-height: 130px;
    box-shadow: 0 10px 20px rgba(22, 17, 13, 0.04);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.service-choice-card:hover .service-choice-card-inner {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(22, 17, 13, 0.08);
    border-color: #d9bfaa;
}

.service-choice-check {
    position: absolute;
    left: 16px;
    top: 18px;
    width: 20px;
    height: 20px;
    border: 2px solid #c9b29d;
    border-radius: 50%;
    background: #fff;
    transition: all .18s ease;
}

.service-choice-title-row {
    display: block;
    margin-bottom: 12px;
}

.service-choice-title {
    display: block;
    color: #2b211b;
    font-size: 0.98rem;
    line-height: 1.35;
    font-weight: 700;
}

.service-choice-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border-radius: 999px;
    padding: 6px 10px;
    background: #f7f1eb;
    color: #6d5b4f;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
}

.service-choice-card input:checked + .service-choice-card-inner {
    border-color: #c59d77;
    background: #fffaf6;
    box-shadow:
        0 0 0 3px rgba(197, 157, 119, 0.18),
        0 0 24px rgba(197, 157, 119, 0.26),
        0 12px 24px rgba(53, 36, 21, 0.08);
    transform: translateY(-2px);
}

.service-choice-card input:checked + .service-choice-card-inner .service-choice-check {
    border-color: #9b6f49;
    background: linear-gradient(180deg, #cba27d 0%, #9b6f49 100%);
    box-shadow: 0 0 0 5px rgba(197, 157, 119, 0.14);
}

.service-choice-card input:checked + .service-choice-card-inner .service-choice-check::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.service-choice-card input:checked + .service-choice-card-inner .service-tag {
    background: #efe2d6;
    color: #6d4f39;
}

.service-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.service-summary-item {
    background: #fff;
    border: 1px solid #eaded4;
    border-radius: 16px;
    padding: 14px 16px;
    box-shadow: 0 6px 14px rgba(22, 17, 13, 0.03);
}

.service-summary-item-highlight {
    background: linear-gradient(180deg, #fffaf6 0%, #ffffff 100%);
    border-color: #dec5ad;
}

.service-summary-item-wide {
    grid-column: 1 / -1;
}

.service-summary-label {
    display: block;
    color: #7b6c61;
    font-size: 0.84rem;
    font-weight: 700;
}

.service-summary-item strong {
    display: block;
    margin-top: 6px;
    color: #8b6548;
    line-height: 1.45;
    font-size: 1rem;
}

.service-summary-item-highlight strong {
    font-size: 1.28rem;
    color: #2b211b;
}

.service-summary-item small {
    display: block;
    margin-top: 5px;
    color: #8a7b70;
    font-size: 0.76rem;
    line-height: 1.35;
}

@media (max-width: 900px) {
    .service-card-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .booking-form-refined {
        padding: 20px 16px;
    }

    .service-card-shell {
        padding: 16px;
        border-radius: 20px;
    }

    .service-card-shell-header {
        flex-direction: column;
        align-items: stretch;
    }

    .service-selected-badge {
        align-self: flex-start;
    }

    .service-choice-card-inner {
        min-height: auto;
        padding: 16px 14px 14px 44px;
    }

    .service-choice-check {
        left: 14px;
        top: 16px;
    }

    .service-summary-grid {
        grid-template-columns: 1fr;
    }

    .service-summary-item-wide {
        grid-column: auto;
    }
}
