
/* ================================================
   TGM 2026 - PROFILE PAGE - LARGE 2-COLUMN GALLERY
   Uses Global Theme Variables from theme-tokens.css
   ================================================ */

.tgm-profile {
    padding-top: 0;
    min-height: 100vh;
    background: var(--bg-page);
    padding-bottom: 80px;
}

.tgm-profile__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================
   MAIN LAYOUT
   ================== */
.tgm-profile__top {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 28px;
    margin-bottom: 28px;
}

@media (max-width: 1024px) {
    .tgm-profile__top {
        grid-template-columns: 1fr;
    }
}

/* ==================
   LEFT SIDE - IMAGES & INFO
   ================== */
.tgm-profile__left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Profile Header */
.tgm-profile__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.tgm-profile__name-group {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.tgm-profile__name {
    font-size: var(--font-size-3xl, 1.8rem);
    font-weight: var(--font-weight-black, 800);
    color: var(--text-primary);
    margin: 0;
    background: var(--heading-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--heading-shadow-sm);
}

.tgm-profile__badges {
    display: flex;
    gap: 8px;
}

.tgm-profile__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.tgm-profile__badge--verified {
    background: var(--heading-gradient, linear-gradient(135deg, #e8ce88, #ffc107));
    color: var(--text-inverse, #1a1a1a);
}

.tgm-profile__badge--available {
    background: var(--accent-gold-soft, rgba(232, 206, 136, 0.15));
    color: var(--status-available, #28a745);
}

.tgm-profile__badge--available::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--status-available, #28a745);
    border-radius: 50%;
}

.tgm-profile__badge svg {
    width: 12px;
    height: 12px;
}

.tgm-profile__location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.tgm-profile__location svg {
    width: 18px;
    height: 18px;
    fill: var(--accent-gold);
}

/* ==================
   IMAGE GALLERY - LARGE 2-COLUMN LAYOUT
   ================== */
.tgm-profile__gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

@media (max-width: 600px) {
    .tgm-profile__gallery {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.tgm-profile__gallery-item {
    position: relative;
    aspect-ratio: 2/3;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-card);
    border: 2px solid var(--border-default);
    transition: border-color 0.3s;
}

.tgm-profile__gallery-item:hover {
    border-color: var(--border-accent, var(--accent-gold));
}

.tgm-profile__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Available badge on first image */
.tgm-profile__img-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--badge-verified-bg, linear-gradient(135deg, #28a745, #20913d));
    color: var(--badge-verified-text, #fff);
    border-radius: var(--radius-lg, 12px);
    font-size: var(--font-size-sm, 0.85rem);
    font-weight: var(--font-weight-bold, 700);
    text-transform: uppercase;
    z-index: 2;
}

.tgm-profile__img-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--badge-verified-text, #fff);
    border-radius: 50%;
}


/* ==================
   RIGHT SIDE - BOOKING CARD
   ================== */
.tgm-profile__sidebar {
    position: sticky;
    top: 120px;
}

@media (max-width: 1024px) {
    .tgm-profile__sidebar {
        position: static;
    }
}

.tgm-profile__booking {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
    padding: var(--space-6, 28px);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glow, 0 0 20px rgba(232, 206, 136, 0.1));
}

.tgm-profile__booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--heading-gradient, linear-gradient(90deg, #e8ce88, #ffc107, #e8ce88));
}

.tgm-profile__price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
}

.tgm-profile__price {
    font-size: var(--font-size-4xl, 2rem);
    font-weight: var(--font-weight-black, 800);
    background: var(--heading-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tgm-profile__price-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.tgm-profile__availability-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--accent-gold-soft, rgba(232, 206, 136, 0.15));
    color: var(--status-available, #28a745);
    border-radius: var(--radius-full, 20px);
    font-size: var(--font-size-xs, 0.75rem);
    font-weight: var(--font-weight-bold, 700);
    text-transform: uppercase;
    margin-bottom: var(--space-5, 20px);
}

.tgm-profile__availability-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--status-available, #28a745);
    border-radius: 50%;
}

/* Stats Grid */
.tgm-profile__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-default);
}

.tgm-profile__stat {
    text-align: center;
    padding: 14px 10px;
    background: var(--bg-section);
    border-radius: 12px;
    border: 1px solid var(--border-default);
}

.tgm-profile__stat-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
}

.tgm-profile__stat-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 6px;
}

/* CTA Buttons */
.tgm-profile__cta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tgm-profile__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3, 10px);
    padding: var(--space-4, 16px) var(--space-6, 24px);
    border-radius: var(--radius-lg, 14px);
    font-size: var(--font-size-base, 1rem);
    font-weight: var(--font-weight-bold, 700);
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.tgm-profile__cta svg {
    width: 22px;
    height: 22px;
}

.tgm-profile__cta--call {
    background: var(--btn-primary-bg, linear-gradient(135deg, #c82333, #a71d2a));
    color: var(--btn-primary-text, #fff);
}

.tgm-profile__cta--whatsapp {
    background: #25D366;
    color: #fff;
}

/* Trust Badges */
.tgm-profile__trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-default);
}

.tgm-profile__trust-item {
    text-align: center;
}

.tgm-profile__trust-icon {
    width: 38px;
    height: 38px;
    background: var(--btn-primary-bg, linear-gradient(135deg, #c82333, #a71d2a));
    border-radius: var(--radius-md, 10px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px;
}

.tgm-profile__trust-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--btn-primary-text, #fff);
}

.tgm-profile__trust-icon--gold {
    background: var(--heading-gradient, linear-gradient(135deg, #e8ce88, #ffc107));
}

.tgm-profile__trust-icon--gold svg {
    fill: var(--text-inverse, #1a1a1a);
}

.tgm-profile__trust-text {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* ==================
   CONTENT SECTION
   ================== */
.tgm-profile__content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 28px;
}

@media (max-width: 1024px) {
    .tgm-profile__content {
        grid-template-columns: 1fr;
    }
}

.tgm-profile__main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Cards */
.tgm-profile__card {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
    padding: 26px;
}

.tgm-profile__card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.tgm-profile__card-icon {
    width: 40px;
    height: 40px;
    background: var(--heading-gradient, linear-gradient(135deg, #e8ce88, #ffc107));
    border-radius: var(--radius-lg, 12px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tgm-profile__card-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--text-inverse, #1a1a1a);
}

.tgm-profile__card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

/* Quick Info Pills */
.tgm-profile__pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-default);
}

.tgm-profile__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-section);
    border: 1px solid var(--border-default);
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.tgm-profile__pill svg {
    width: 16px;
    height: 16px;
    fill: var(--accent-gold);
}

.tgm-profile__pill strong {
    font-weight: 700;
    color: var(--accent-gold);
}

/* About Text */
.tgm-profile__about {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

.tgm-profile__about p {
    margin-bottom: 12px;
}

.tgm-profile__about p:last-child {
    margin-bottom: 0;
}

.tgm-profile__about a {
    color: var(--accent-gold);
    text-decoration: none;
}

/* Details Grid */
.tgm-profile__details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (max-width: 500px) {
    .tgm-profile__details {
        grid-template-columns: 1fr;
    }
}

.tgm-profile__detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: var(--bg-section);
    border-radius: 12px;
    border: 1px solid var(--border-default);
}

.tgm-profile__detail-label {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.tgm-profile__detail-value {
    color: var(--text-primary);
    font-weight: 700;
}

/* Rates Grid */
.tgm-profile__rates {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (max-width: 500px) {
    .tgm-profile__rates {
        grid-template-columns: 1fr;
    }
}

.tgm-profile__rate {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--bg-section);
    border-radius: 14px;
    border: 1px solid var(--border-default);
}

.tgm-profile__rate-duration {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-weight: 600;
}

.tgm-profile__rate-duration svg {
    width: 18px;
    height: 18px;
    fill: var(--text-muted);
}

.tgm-profile__rate-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent-gold);
}

/* Services Tags */
.tgm-profile__services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tgm-profile__service {
    padding: 10px 18px;
    background: var(--bg-section);
    border: 1px solid var(--border-default);
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Side Cards */
.tgm-profile__side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 1024px) {
    .tgm-profile__side {
        display: none;
    }
}

.tgm-profile__quick-contact {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
    padding: 24px;
    position: sticky;
    top: 120px;
    overflow: hidden;
}

.tgm-profile__quick-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--heading-gradient, linear-gradient(90deg, #e8ce88, #ffc107));
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.tgm-profile__quick-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin: 0 0 16px 0;
    text-align: center;
}

.tgm-profile__quick-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tgm-profile__quick-btns .tgm-profile__cta {
    padding: 14px 20px;
}

/* ==================
   REVIEWS
   ================== */
.tgm-profile__reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.tgm-profile__btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
}

.tgm-profile__review {
    background: var(--bg-section);
    border-radius: 14px;
    padding: 18px;
    margin-top: 14px;
    border: 1px solid var(--border-default);
}

.tgm-profile__review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.tgm-profile__review-author {
    font-weight: 700;
    color: var(--text-primary);
}

.tgm-profile__review-stars {
    color: var(--accent-gold);
    letter-spacing: 2px;
}

.tgm-profile__review-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 10px 0;
}

.tgm-profile__review-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.tgm-profile__review-form {
    background: var(--bg-section);
    border-radius: 14px;
    padding: 18px;
    margin-top: 14px;
    border: 1px solid var(--border-default);
}

.tgm-profile__review-form input,
.tgm-profile__review-form textarea,
.tgm-profile__review-form select {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.tgm-profile__review-form input:focus,
.tgm-profile__review-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.tgm-profile__form-btns {
    display: flex;
    gap: 10px;
}

.tgm-profile__form-btns button {
    flex: 1;
}

.tgm-profile__success {
    background: var(--badge-verified-bg, linear-gradient(135deg, #28a745, #20913d));
    color: var(--badge-verified-text, #fff);
    padding: var(--space-4, 14px) var(--space-5, 18px);
    border-radius: var(--radius-lg, 12px);
    text-align: center;
    font-weight: var(--font-weight-semibold, 600);
    margin-top: var(--space-4, 14px);
}

.tgm-profile__error {
    background: linear-gradient(135deg, #c82333, #a71d2a);
    color: #fff;
    padding: var(--space-4, 14px) var(--space-5, 18px);
    border-radius: var(--radius-lg, 12px);
    text-align: center;
    font-weight: var(--font-weight-semibold, 600);
    margin-top: var(--space-4, 14px);
}

#profile_id, #profile_title { display: none; }

/* ==================
   EXPLORE / INTERNAL LINKS
   ================== */
.tgm-profile__explore {
    margin-top: 40px;
    padding: 24px;
    background: var(--bg-section, rgba(255,255,255,0.02));
    border-radius: var(--radius-xl, 16px);
    border: 1px solid var(--border-default);
}

.tgm-profile__explore-title {
    font-size: var(--font-size-lg, 1.125rem);
    font-weight: var(--font-weight-bold, 700);
    color: var(--text-primary);
    margin: 0 0 16px 0;
}

.tgm-profile__explore-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.tgm-profile__explore-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-card, rgba(255,255,255,0.05));
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg, 12px);
    color: var(--accent-gold, #e8ce88);
    font-size: var(--font-size-sm, 0.875rem);
    font-weight: var(--font-weight-medium, 500);
    text-decoration: none;
    transition: all 0.2s ease;
}

.tgm-profile__explore-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.tgm-profile__explore-link:hover {
    background: var(--brand-primary, #c82333);
    border-color: var(--brand-primary, #c82333);
    color: #fff;
}

.tgm-profile__explore-meta {
    font-size: var(--font-size-sm, 0.875rem);
    color: var(--text-muted);
    margin: 8px 0 0 0;
}

@media (max-width: 600px) {
    .tgm-profile__explore {
        padding: 16px;
    }
    .tgm-profile__explore-links {
        flex-direction: column;
    }
    .tgm-profile__explore-link {
        justify-content: center;
    }
}

/* ==================
   RELATED PROFILES
   ================== */
.tgm-profile__related {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid var(--border-default);
}

.tgm-profile__related-header {
    text-align: center;
    margin-bottom: 28px;
}

.tgm-profile__related-title {
    font-size: var(--font-size-2xl, 1.6rem);
    font-weight: var(--font-weight-black, 800);
    color: var(--text-primary);
    margin: 0 0 6px 0;
}

.tgm-profile__related-title span {
    background: var(--heading-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tgm-profile__related-sub {
    color: var(--text-muted);
    margin: 0;
}

.tgm-profile__related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

@media (max-width: 900px) {
    .tgm-profile__related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .tgm-profile__related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

.tgm-profile__related-card {
    display: block;
    text-decoration: none;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
}

.tgm-profile__related-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.tgm-profile__related-img {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.tgm-profile__related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tgm-profile__related-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 12px;
    background: var(--badge-verified-bg, linear-gradient(135deg, #28a745, #20913d));
    color: var(--badge-verified-text, #fff);
    border-radius: var(--radius-md, 8px);
    font-size: var(--font-size-xs, 0.6rem);
    font-weight: var(--font-weight-bold, 700);
    text-transform: uppercase;
}

.tgm-profile__related-info {
    padding: 14px 16px;
}

.tgm-profile__related-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 4px 0;
}

.tgm-profile__related-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

/* ==================
   IMAGE MODAL
   ================== */
.tgm-profile__modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.tgm-profile__modal.active {
    display: flex;
}

.tgm-profile__modal-img {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
}

.tgm-profile__modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: var(--bg-overlay, rgba(0, 0, 0, 0.5));
    border: 1px solid var(--border-default);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tgm-profile__modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--bg-overlay, rgba(0, 0, 0, 0.5));
    border: 1px solid var(--border-default);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tgm-profile__modal-nav--prev { left: 20px; }
.tgm-profile__modal-nav--next { right: 20px; }

.tgm-profile__modal-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card, rgba(0, 0, 0, 0.6));
    color: var(--text-primary);
    padding: var(--space-2, 8px) var(--space-5, 18px);
    border-radius: var(--radius-full, 20px);
    font-size: var(--font-size-sm, 0.9rem);
}

.tgm-profile__modal-thumbs {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-2, 8px);
    max-width: 90%;
    overflow-x: auto;
    padding: var(--space-3, 10px);
    background: var(--bg-card, rgba(0, 0, 0, 0.5));
    border-radius: var(--radius-lg, 12px);
}

.tgm-profile__modal-thumb {
    width: 70px;
    height: 90px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    flex-shrink: 0;
    opacity: 0.6;
}

.tgm-profile__modal-thumb.active {
    border-color: var(--accent-gold);
    opacity: 1;
}

.tgm-profile__modal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==================
   MOBILE
   ================== */
@media (max-width: 768px) {
    .tgm-profile {
        padding-top: 0;
        padding-bottom: 50px;
    }

    .tgm-profile__name {
        font-size: 1.5rem;
    }

    .tgm-profile__gallery {
        gap: 14px;
    }

    .tgm-profile__gallery-item {
        border-radius: 16px;
    }

    .tgm-profile__img-badge {
        top: 12px;
        left: 12px;
        padding: 8px 16px;
        font-size: 0.75rem;
    }

    .tgm-profile__booking {
        padding: 22px;
    }

    .tgm-profile__price {
        font-size: 1.75rem;
    }

    .tgm-profile__card {
        padding: 22px;
    }

    .tgm-profile__cta {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
}
