.vet-marketplace-show .vet-show-photo {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #eadfb8;
    background: #f7f4ea;
    aspect-ratio: 1 / 1;
    max-height: 280px;
}

.vet-marketplace-show .vet-show-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vet-show-category {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 999px;
    background: #f7f4ea;
    border: 1px solid #eadfb8;
    color: #0c4745;
    font-size: 0.9rem;
    font-weight: 600;
}

.vet-booking-panel {
    border: 1px solid #eadfb8;
    border-radius: 18px;
    background: #fff;
    padding: 24px;
    box-shadow: 0 10px 28px rgba(12, 71, 69, 0.06);
}

.vet-booking-panel__header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0e8d2;
}

.vet-booking-kind {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vet-booking-kind__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 12px 16px;
    border: 1px solid #e6ecf5;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    min-width: 140px;
}

.vet-booking-kind__item input {
    accent-color: #0c4745;
}

.vet-booking-kind__item:has(input:checked) {
    border-color: #0c4745;
    background: #f3f8f7;
    color: #0c4745;
    font-weight: 700;
}

.vet-booking-day {
    margin-bottom: 18px;
}

.vet-booking-day:last-child {
    margin-bottom: 0;
}

.vet-booking-day__title {
    margin: 0 0 10px;
    color: #0c4745;
    font-size: 0.95rem;
    font-weight: 700;
}

.vet-booking-slots {
    min-height: 72px;
}

.vet-booking-slots__placeholder {
    color: #6b7280;
    padding: 16px;
    border: 1px dashed #eadfb8;
    border-radius: 12px;
    background: #fffdf8;
    text-align: center;
}

.vet-booking-slots__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
}

.vet-booking-slot {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #eadfb8;
    border-radius: 12px;
    background: #f7f4ea;
    color: #0c4745;
    text-align: start;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.vet-booking-slot:hover {
    border-color: #0c4745;
    transform: translateY(-1px);
}

.vet-booking-slot.is-selected {
    background: #0c4745;
    border-color: #0c4745;
    color: #fff;
}

.vet-booking-slot__time {
    font-weight: 700;
    font-size: 0.95rem;
}

.vet-booking-slot__price {
    font-size: 0.78rem;
    opacity: 0.85;
}

@media (max-width: 767.98px) {
    .vet-booking-panel {
        padding: 16px;
    }

    .vet-booking-slots__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
