/* ══════════════════════════════════════
   GT Lab Booking — Basic styles
   ══════════════════════════════════════ */

/* ── Shared page layout ── */
.gt-lab-page {
    max-width: 1568px;
    margin: 0 auto;
    padding: 0 20px 60px;
    font-family: inherit;
}

.gt-lab-page h1, .gt-lab-page h2 {
    font-weight: 500;
    font-size: 48px;
    margin: 50px 0 24px;
}
.gt-lab-page h3 {
    font-weight: 500;
    font-size: 18px;
    margin: 0 0 12px;
}

/* ── Buttons ── */
.gt-lab-primary-btn {
    display: inline-block;
    padding: 12px 32px;
    background: #001A71;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
}
.gt-lab-primary-btn:hover {
    background: #001460;
}
.gt-lab-primary-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ── Inquire button ── */
.gt-lab-inquiry-btn {
    padding: 24px 32px;
    background: #001A71;
    color: #fff;
    border: none;
    border-radius: 0;
    font-family: 'ABC Diatype', -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    line-height: 1;
}
.gt-lab-inquiry-btn:hover {
    opacity: 0.9;
}

/* ── Info page (Step 2) ── */
/* 2026-08-07 设计稿重构: 两栏布局(左表单 + 右 Bookings) */
.gt-lab-page--info {
    max-width: 1728px;
    padding-top: 180px; /* 设计稿: Inquire 标题 y184 (header fixed 不占位, 需手动让位) */
}
.gt-lab-info__grid {
    display: flex;
    gap: 6vw;
    align-items: flex-start;
    padding: 0 var(--distance);
}
.gt-lab-info__left {
    flex: 0 0 40.5%;
    max-width: 725px;
}
.gt-lab-info__right {
    flex: 1;
    min-width: 0;
}
.gt-lab-info__right .gt-lab-bookings-title {
    font-size: 24px;
    font-weight: 500;
    color: #15171D;
    margin: 0 0 16px;
}
.gt-lab-bookings-embed {
    width: 100%;
    height: 780px;
    border: 1px solid #E6E6E2;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}
.gt-lab-bookings-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #8C8C8C;
    font-size: 16px;
}

/* 筛选 chips (设计稿: 54px 高, 实心深蓝 + × 可清除, Inquire 下方 108px) */
.gt-lab-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 81px 0 105px; /* 81 = 设计108 - h1行盒冗余26.6, 渲染对齐 y325 */
}
.gt-lab-chip {
    display: inline-flex;
    align-items: center;
    height: 54px;
    padding: 0 24px;
    border-radius: 8px;
    background: #001A71;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.3s;
}
.gt-lab-chip:hover {
    background: #152869;
}
.gt-lab-chip__x {
    margin-left: 10px;
    font-size: 18px;
    opacity: 0.8;
}

/* 左栏标题层级 (设计稿 2026-08-07: Inquire 48px / Fill in 25px #717182 / Your Information 34px) */
.gt-lab-info__left h1 {
    font-size: 48px;
    font-weight: 500;
    margin: 0 0 0;
    color: #0A0A0A;
}
.gt-lab-info__left .gt-lab-page-sub {
    margin: 0;
    color: #717182;
    font-size: 25px;
    line-height: 1.2;
}
.gt-lab-page--info .gt-lab-info__left h2 {
    margin: 16px 0 30px; /* 设计30/44 - 行盒冗余(6+8)/(8+6) */
    color: #0A0A0A;
    font-size: 34px;
    font-weight: 500;
}
/* 左栏字段: 设计稿单列 694px 输入框, label 在上方 */
.gt-lab-info__left .gt-lab-info__fields {
    display: block;
}
.gt-lab-info__left .gt-lab-info__field {
    margin-bottom: 27px; /* 设计33 - label行盒冗余6 */
}
.gt-lab-info__left .gt-lab-info__field label {
    display: block;
    font-size: 24px;
    font-weight: 400;
    color: #000;
    margin-bottom: 9px; /* 设计15 - label行盒冗余6 */
}
.gt-lab-info__left .gt-lab-info__field input::placeholder {
    color: #8C8C8C;
    font-size: 24px;
    opacity: 1;
}
.gt-lab-info__left .gt-lab-info__field input {
    height: 49px;
    padding: 0 24px;
    background: #F5F5F5;
    border: none;
    border-radius: 8px;
    font-size: 24px;
    color: #15171D;
    width: 100%;
    max-width: 694px;
}
/* chips 文字 24px (设计稿) */
.gt-lab-chip {
    font-size: 24px;
}
/* Send Inquiry 按钮 (设计稿: 341x55 rx8 24px, 与右栏 Talk to Us 对齐 y1337) */
.gt-lab-info__actions {
    margin-top: 315px;
}
.gt-lab-info__actions .gt-lab-primary-btn {
    width: 341px;
    height: 55px;
    padding: 0;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gt-lab-info__note {
    font-size: 26px;
    color: #717182;
    margin: 16px 0 0;
}

/* 响应式: 窄屏单栏 */
@media all and (max-width: 1000px) {
    .gt-lab-info__grid {
        flex-direction: column;
        gap: 40px;
    }
    .gt-lab-info__left,
    .gt-lab-info__right {
        flex: 1 1 auto;
        max-width: none;
        width: 100%;
    }
    .gt-lab-bookings-embed {
        height: 600px;
    }
}
.gt-lab-page--info h2,
.gt-lab-page--browse h2 {
    font-size: 32px;
    font-weight: 500;
    margin: 0 0 8px;
}
.gt-lab-page-sub {
    font-size: 16px;
    color: #666;
    margin: -12px 0 32px;
    font-weight: 400;
}
.gt-lab-info__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    margin-bottom: 24px;
}
.gt-lab-info__field label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-bottom: 6px;
}
.gt-lab-info__field input {
    width: 100%;
    max-width: 100%;
}
.gt-lab-info__fields input,
.gt-lab-summary__fields input,
.gt-lab-config-user__fields input {
    height: 49px;
    padding: 0 22px;
    background: #F5F5F5;
    border: none;
    border-radius: 0;
    font-size: 16px;
    width: 100%;
    max-width: 694px;
    box-sizing: border-box;
    font-family: inherit;
    color: #000;
}
.gt-lab-info__filters {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}
.gt-lab-info__filter-value {
    padding: 8px 16px;
    background: #f5f5f5;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
}
.gt-lab-info__actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.gt-info-filter-row {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}
.gt-info-filter-row select {
    flex: 1;
    height: 54px;
    padding: 0 28px 0 16px;
    background: #F5F5F5;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    color: #000;
}
.gt-info-filter-row select:focus {
    outline: 2px solid #001A71;
    outline-offset: -2px;
}

.gt-lab-info__book-panel {
    margin-top: 24px;
    padding: 24px;
    background: #F5F5F5;
    border-radius: 8px;
}
.gt-lab-info__book-panel .gt-lab-primary-btn {
    width: 100%;
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 8px;
}

.gt-lab-info-filter__title {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    color: #000;
}
.gt-lab-filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.gt-lab-info-filter {
    margin-top: 3rem;
}

/* ── Filter bar (homepage shortcode) ── */
.gt-booking-bar {
    margin: 10vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 6px 6px 6px 32px;
    background: #E2E2E2;
    border-radius: 44px;
    max-width: 832px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.gt-booking-bar form {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
}
.gt-booking-bar__select {
    flex: 1;
    border-right: none;
}
.gt-booking-bar__select select {
    width: 100%;
    height: 54px;
    padding: 0 28px 0 16px;
    border: none;
    font-size: 16px;
    background: transparent;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
}
.gt-booking-bar__btn {
    flex-shrink: 0;
}
.gt-booking-bar__btn button {
    height: 54px;
    padding: 0 32px;
    background: #001A71;
    color: #fff;
    border: none;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}
.gt-booking-bar__btn button:hover {
    opacity: 0.9;
}
.gt-booking-bar__btn button:disabled {
    opacity: 0.4;
}

/* ── Browse page (Step 3) ── */
.gt-lab-user-summary {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.gt-lab-start-date select {
    flex: 1;
    height: 49px;
    padding: 0 22px;
    background: #F5F5F5;
    border: none;
    border-radius: 0;
    font-size: 16px;
    color: #000;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    box-sizing: border-box;
}
}

/* Filter */
.gt-lab-browse-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    padding: 16px;
    background: #f8f8f8;
    border-radius: 8px;
    flex-wrap: wrap;
    align-items: flex-start;
}
.gt-lab-browse-filters__col {
    flex: 1;
    min-width: 180px;
    border: none;
    padding: 0;
}
.gt-lab-browse-filters__col legend {
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 8px;
}
.gt-lab-filter-group {
    margin-bottom: 10px;
}
.gt-lab-filter-group strong {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 4px;
}
.gt-lab-browse-filters label {
    display: block;
    padding: 4px 0;
    font-size: 14px;
    cursor: pointer;
}
.gt-lab-browse-filters input[type="radio"] {
    margin-right: 6px;
}
.gt-lab-reset-btn {
    padding: 6px 14px;
    background: transparent;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    align-self: flex-end;
}
.gt-lab-reset-btn:hover {
    background: #eee;
}
.gt-lab-filter-apply-btn {
    padding: 6px 18px;
    background: #001A71;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    align-self: flex-end;
}
.gt-lab-filter-apply-btn:hover {
    background: #001460;
}

/* Selected table */
.gt-lab-selected {
    margin-bottom: 20px;
}
.gt-lab-selected table {
    width: 100%;
    border-collapse: collapse;
}
.gt-lab-selected th, .gt-lab-selected td {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}
.gt-lab-selected th {
    font-weight: 600;
    color: #666;
    font-size: 12px;
    text-transform: uppercase;
}
.gt-lab-selected button[data-gt-remove-lab] {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #c00;
}

/* Lab cards */
.gt-lab-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 30px;
}
.gt-lab-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.gt-lab-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}
.gt-lab-card--selected {
    outline: 2px solid #001A71;
    outline-offset: -2px;
    box-shadow: 0 4px 16px rgba(0,26,113,0.2);
}
.gt-lab-card__image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.gt-lab-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px 16px 0 0;
}
.gt-lab-card__info {
    padding: 20px;
}
.gt-lab-card__info h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 8px;
}
.gt-lab-card__location {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}
.gt-lab-card__capacity {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}
.gt-lab-card__price {
    font-size: 20px;
    font-weight: 600;
    color: #001A71;
}
.gt-lab-card__desc {
    font-size: 13px;
    color: #888;
    margin-top: 8px;
    line-height: 1.4;
}
.gt-lab-card__params {
    font-size: 12px;
    color: #999;
    margin-bottom: 6px;
}

/* Loading spinner */
.gt-lab-loading {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 15px;
}
.gt-lab-spinner {
    display: inline-block;
    width: 8px;
    height: 8px;
    border: 2px solid #e5e5e5;
    border-top-color: #001A71;
    border-radius: 50%;
    animation: gt-spin 0.6s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}
@keyframes gt-spin {
    to { transform: rotate(360deg); }
}

/* Browse actions */
.gt-lab-browse__actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.gt-lab-browse__actions form {
    display: flex;
    align-items: center;
    gap: 12px;
}
.gt-lab-count {
    font-weight: 600;
    font-size: 16px;
}

.gt-lab-extra-item {
    border-top: 1px solid #E2E2E2;
    display: block;
}
.gt-lab-extra-item:last-child {
    border-bottom: 1px solid #E2E2E2;
}
.gt-lab-extra-item__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    list-style: none;
    width: 100%;
    box-sizing: border-box;
}
.gt-lab-extra-item__header::-webkit-details-marker,
.gt-lab-extra-item__header::marker {
    display: none;
    content: '';
}
.gt-lab-extra-item__icon {
    font-size: 24px;
    font-weight: 300;
    color: #001A71;
    transition: transform 0.2s;
}
details[open] .gt-lab-extra-item__icon {
    transform: rotate(45deg);
}
.gt-lab-extra-item__body {
    padding: 0 0 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}
.gt-lab-extra-item__subtitle {
    font-size: 14px;
    color: #888;
    margin: 0 0 8px;
}
.gt-lab-extra-item__desc {
    color: #444;
}

/* ── Configure page (Step 4) ── */
.gt-lab-config-item {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    margin-bottom: 20px;
    align-items: flex-start;
}
.gt-lab-config-item__image {
    flex: 0 0 50%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 16px;
}
.gt-lab-config-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

}
.gt-lab-config-item__details {
    width: 100%;
}
.gt-lab-config-item__details h3 {
    font-size: 18px;
    margin: 0 0 8px;
}
.gt-lab-config-item__address {
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
}
.gt-lab-config-item__capacity {
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
}
.gt-lab-config-item__price {
    font-size: 20px;
    font-weight: 600;
    color: #001A71;
    margin-bottom: 16px;
}
.gt-lab-config-item__price span {
    font-size: 14px;
    font-weight: 400;
    color: #888;
}
.gt-lab-config-item__qty input,
.gt-lab-config-item__term select {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}
.gt-lab-config-item__term,
.gt-lab-config-item__addons {
    margin-top: 12px;
}
.gt-lab-config-item__addons label {
    display: block;
    padding: 3px 0;
    font-size: 14px;
}
.gt-lab-config-item__info {
    margin: 12px 0;
}
.gt-lab-config-item__info summary {
    cursor: pointer;
    color: #001A71;
    font-weight: 500;
}
.gt-lab-config-user {
    padding: 24px;
    background: #f8f8f8;
    border-radius: 8px;
    margin: 24px 0;
    max-width: 50%;
    margin-left: auto;
}

.gt-lab-config-user__fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.gt-lab-config-user__fields .gt-lab-info__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.gt-lab-config__actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* ── Summary page (Step 5) ── */
.gt-lab-summary__layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}
.gt-lab-summary__user {
    position: sticky;
    top: 100px;
}
.gt-lab-summary-item,
.gt-lab-config-item {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    margin-bottom: 20px;
    align-items: flex-start;
}
.gt-lab-summary-item {
    padding: 20px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-bottom: 16px;
}
.gt-lab-summary-item__image {
    flex: 0 0 50%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 16px;
}
.gt-lab-summary-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gt-lab-config-item__details {
    width: 100%;
}
.gt-lab-summary-item__details {
    width: 100%;
}

.gt-lab-summary-item__details h4 {
    margin: 0 0 6px;
}
.gt-lab-summary-item__pricing {
    width: 100%;
    margin-top: 12px;
    border-collapse: collapse;
}
.gt-lab-summary-item__pricing td {
    padding: 6px 8px;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}
.gt-lab-summary-item__pricing td:last-child {
    text-align: right;
}
.gt-lab-summary-item__total td {
    border-top: 2px solid #333;
    font-size: 16px;
    padding-top: 8px;
}
.gt-lab-summary__user {
    position: sticky;
    top: 100px;
}
.gt-lab-summary__user table,
.gt-lab-summary__fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 50%;
    margin-left: auto;
}
.gt-lab-page--summary .gt-lab-summary__user-heading {
    max-width: 50%;
    margin-left: auto;
}
.gt-lab-summary__actions {
    display: flex;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Signature */
.gt-lab-summary__signature {
    margin: 24px 0;
}
.gt-lab-summary__signature label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}
.gt-lab-signature-pad {
    position: relative;
    width: 100%;
    height: 160px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: crosshair;
    background: #fafafa;
    overflow: hidden;
}
.gt-lab-signature-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.gt-lab-signature-placeholder {
    position: absolute;
    bottom: 20px;
    left: 24px;
    right: 24px;
    color: #ccc;
    font-size: 28px;
    letter-spacing: 4px;
    cursor: pointer;
    z-index: 1;
}
.gt-lab-signature-clear {
    font-size: 12px;
    color: #999;
    background: none;
    border: none;
    cursor: pointer;
    margin-top: 4px;
    padding: 0;
    text-decoration: underline;
}
.gt-lab-primary-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Terms */
.gt-lab-summary__terms {
    margin: 24px 0;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 8px;
}
.gt-lab-terms-check {
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}
.gt-lab-terms-content {
    margin-top: 12px;
}
.gt-lab-terms-content summary {
    cursor: pointer;
    color: #001A71;
    font-size: 14px;
    font-weight: 500;
}
.gt-lab-terms-text {
    margin-top: 12px;
    padding: 16px;
    background: #fff;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.6;
    max-height: 300px;
    overflow-y: auto;
    display: none; /* hidden until toggle */
}
.gt-lab-terms-toggle {
    color: #001A71;
    cursor: pointer;
    text-decoration: underline;
}
.gt-lab-terms-toggle:hover {
    color: #001460;
}
.gt-lab-terms-text h4 {
    margin: 12px 0 4px;
    font-size: 14px;
}
.gt-lab-terms-text h4:first-child {
    margin-top: 0;
}
.gt-lab-terms-text p {
    margin: 0 0 8px;
    color: #555;
}

/* Back button */
.gt-lab-back-btn {
    display: inline-block;
    padding: 8px 16px;
    color: #001A71;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 16px;
    border: 1px solid #001A71;
    border-radius: 4px;
}
.gt-lab-back-btn:hover {
    background: #f0f2fa;
}

/* Grand total */
.gt-lab-summary__grand-total {
    display: flex;
    justify-content: space-between;
    padding: 16px 20px;
    background: #001A71;
    color: #fff;
    border-radius: 8px;
    font-size: 18px;
    margin: 16px 0 24px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .gt-booking-bar form {
        flex-direction: column;
    }
    .gt-booking-bar__select {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    .gt-booking-bar__select select {
        padding: 12px 16px;
    }
    .gt-booking-bar__btn button {
        width: 100%;
        padding: 14px;
    }
    .gt-lab-browse-filters {
        flex-direction: column;
    }
    .gt-lab-config-item {
        flex-direction: column;
    }
    .gt-lab-config-item__image img {
        width: 100%;
        height: auto;
    }
    .gt-lab-config-user__fields {
        grid-template-columns: 1fr;
    }
    .gt-lab-summary__layout {
        grid-template-columns: 1fr;
    }
    .gt-lab-cards {
        grid-template-columns: 1fr;
    }
}
