/* ═══════════════════════════════════════════════════
   THEME 22  |  Primary #441668 (overridable via --primary)  |  BG-light #ECDBF9
═══════════════════════════════════════════════════ */
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;500;600;700&display=swap");

:root {
    --primary: #441668;
    --bg-light: #ECDBF9;
    --bg-ring: #D9B8F3;
    --blue-light: #F1F6FD;
    --text-dark: #0F172A;
    --text-mid: #64748B;
    --text-muted: #626675;
    --surface: #FCFCFE;
    --border: #E2E3E8;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    background: #e8e8e8;
    font-family: "Comfortaa", sans-serif;
    margin: 0;
    padding: 0;
}

/* ---- App shell ---- */
.app-container {
    max-width: 576px;
    margin: 10px auto;
    background: #F8FAFC;
    min-height: 100vh;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.t22-header {
    position: relative;
    width: 100%;
    background: #F8FAFC;
}

/* Banner */
.t22-banner {
    position: relative;
    width: 100%;
    height: 161px;
    background: linear-gradient(166deg, #F3E8FF 0%, #E0E7FF 100%);
    overflow: hidden;
}

.t22-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.60;
    /* mix-blend-mode: overlay; */
}

.t22-banner-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
    pointer-events: none;
}

/* Back button inside banner */
.t22-back-wrap {
    position: absolute;
    top: 48px;
    left: 24px;
    z-index: 5;
}

.t22-back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.80);
    border-radius: 50%;
    backdrop-filter: blur(6px);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    text-decoration: none;
}

/* Profile area  normal flow after banner */
.t22-profile-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #F8FAFC;
    padding-bottom: 20px;
}

/* ---- Logo ---- */
.t22-logo-wrap {
    position: relative;
    width: 128px;
    height: 128px;
    margin-top: -37px;
    margin-bottom: 12px;
    z-index: 10;
}

/* Outer white circle */
.t22-logo-outer {
    width: 128px;
    height: 128px;
    border-radius: 9999px;
    background: white;
    box-shadow:
        0px 8px 10px -6px rgba(0, 0, 0, 0.10),
        0px 20px 25px -5px rgba(0, 0, 0, 0.10);
    /* overflow:hidden clips the inner image to circle */
    overflow: hidden;
    /* white ring effect */
    outline: 4px solid white;
    outline-offset: -4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Inner image */
.t22-logo-img {
    width: 114px;
    height: 114px;
    border-radius: 57px;
    object-fit: cover;
    border: 2px solid #D9B8F3;
    box-shadow: 0px 4px 10px rgba(110, 110, 110, 0.25);
    display: block;
    flex-shrink: 0;
}

/* Green dot */
.t22-online-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: #22C55E;
    border-radius: 9999px;
    border: 2px solid white;
    z-index: 11;
}

/* Info block */
.t22-info-block {
    width: 213px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Name */
.t22-business-name {
    font-size: 24px;
    font-weight: 700;
    color: #0F172A;
    line-height: 32px;
    font-family: "Comfortaa", sans-serif;
    word-wrap: break-word;
    text-align: center;
    margin: 0 0 4px;
}

/* Subtitle */
.t22-business-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #64748B;
    line-height: 24px;
    font-family: "Comfortaa", sans-serif;
    word-wrap: break-word;
    text-align: center;
    margin: 0 0 10px;
}

/* Views + VCF row */
.t22-meta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Views pill */
.t22-views-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: white;
    border-radius: 6px;
    padding: 4px 10px;
    height: 26px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.10);
}

.t22-views-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* Views text */
.t22-views-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    font-family: "Comfortaa", sans-serif;
    line-height: 16px;
    word-wrap: break-word;
}

/* VCF pill */
.t22-vcf-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: white;
    border-radius: 6px;
    padding: 4px 10px;
    height: 26px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    border: 1px solid #F1F6FD;
    text-decoration: none;
}

.t22-vcf-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* VCF text */
.t22-vcf-text {
    font-size: 14px;
    font-weight: 400;
    color: var(--primary);
    font-family: "Comfortaa", sans-serif;
    word-wrap: break-word;
}

/* NAVIGATION */

/* Outer wrapper */
.t22-nav-wrap {
    padding: 8px 0 0;
    background: transparent;
}

/* Transparent row with arrows on sides */
.t22-nav-card {
    background: transparent;
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    gap: 0;
    box-shadow: none;
}

/* Arrow buttons */
.t22-nav-arrow {
    flex-shrink: 0;
    width: 18px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: 4px;
    transition: opacity 0.15s;
    opacity: 0.4;
}

.t22-nav-arrow:hover {
    opacity: 1;
}

/* Tab row — 6 tabs always visible, snap scroll for more */
.t22-nav-slider {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 2px 0;
}

.t22-nav-slider::-webkit-scrollbar {
    display: none;
}

/* Tab anchor — each takes exactly 1/6 of slider, snaps cleanly */
.t22-nav-item {
    flex: 0 0 calc(100% / 6);
    min-width: calc(100% / 6);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 2px;
    scroll-snap-align: start;
}

/* Tab inner — square with border, icon centered */
.t22-nav-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: transparent;
    border: 1.5px solid var(--bg-ring);
    transition: background 0.15s, border-color 0.15s;
    cursor: pointer;
    flex-shrink: 0;
}

.t22-nav-inner svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: block;
}

/* Hover */
.t22-nav-item:hover .t22-nav-inner {
    background: var(--bg-light);
    border-color: var(--primary);
}

/* Active */
.t22-nav-item.t22-active .t22-nav-inner {
    background: var(--bg-light);
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(68, 22, 104, 0.18);
}

/* MISC */
.react-tel-input .country-list {
    text-align: left !important;
}

.reShare {
    border: 1px solid #F1F6FD;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    gap: 12px;
    border-radius: 12px;
    padding: 13px 0;
}

.back-button {
    background: white;
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.back-button:hover {
    background: #f3f4f6;
}

.back-button svg {
    width: 24px;
    height: 24px;
    fill: #4b5563;
}

.t22-slot-label input[type="radio"]:checked+.t22-slot-btn {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

/* ── ABOUT SECTION — Identity + Contact Chips ── */

/* Identity row — single column list */
.t22-about-identity {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.t22-about-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #FCFCFE;
    border-radius: 6px;
    border: 1px solid #E2E3E8;
    padding: 8px 10px;
    min-height: 35px;
}

.t22-about-chip-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.t22-about-chip-icon svg {
    width: 16px;
    height: 16px;
    display: block;
    overflow: visible;
}

.t22-about-chip-text {
    font-size: 10px;
    font-family: "Comfortaa", sans-serif;
    color: #626675;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}

/* Contact chips — 2-column grid */
.t22-contact-chips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 12px;
}

.t22-contact-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #FCFCFE;
    border-radius: 6px;
    border: 1px solid #E2E3E8;
    padding: 8px 10px;
    min-height: 35px;
    text-decoration: none;
    transition: border-color 0.15s, background 0.15s;
    overflow: hidden;
}

.t22-contact-chip:hover {
    border-color: var(--primary);
    background: var(--bg-light);
}

.t22-contact-chip-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.t22-contact-chip-icon svg {
    width: 16px;
    height: 16px;
    display: block;
    overflow: visible;
}

.t22-contact-chip-text {
    font-size: 10px;
    font-family: "Comfortaa", sans-serif;
    color: #626675;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
}

/* About description */
.t22-about-desc {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 13px;
    color: #374151;
    line-height: 1.6;
    font-family: "Comfortaa", sans-serif;
    margin-bottom: 12px;
}

/* Save contact button */
.t22-save-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid #E2E3E8;
    background: #FCFCFE;
    font-size: 13px;
    font-weight: 600;
    font-family: "Comfortaa", sans-serif;
    color: #374151;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
}

.t22-save-contact-btn:hover {
    background: var(--bg-light);
    border-color: var(--primary);
    color: var(--primary);
}

/* CONTACT FORM */

/* Outer wrapper */
.t22-contact-wrap {
    padding: 0 16px 24px;
}

/* Heading */
.t22-contact-heading {
    font-size: 20px;
    font-weight: 700;
    font-family: "Comfortaa", sans-serif;
    color: #000000;
    word-wrap: break-word;
    margin: 0 0 16px;
    padding-top: 4px;
}

/* White card */
.t22-contact-card {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #D9D9D9;
    padding: 24px;
    margin-top: 10px;
}

.t22-contact-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Field group */
.t22-field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.t22-field-group:last-of-type {
    margin-bottom: 0;
}

/* Label */
.t22-field-label {
    font-size: 14px;
    font-weight: 400;
    font-family: "Comfortaa", sans-serif;
    color: #1E1E1E;
    line-height: 19.6px;
    word-wrap: break-word;
}

/* Text input */
.t22-field-input {
    width: 100%;
    padding: 12px 16px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #D9D9D9;
    font-size: 14px;
    font-weight: 400;
    font-family: "Comfortaa", sans-serif;
    color: #1E1E1E;
    line-height: 14px;
    outline: none;
    transition: border-color 0.15s;
}

.t22-field-input::placeholder {
    color: #B3B3B3;
}

.t22-field-input:focus {
    border-color: var(--primary);
    outline: none;
}

/* Select wrapper */
.t22-select-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

/* Select / date */
.t22-field-select {
    width: 100%;
    padding: 12px 40px 12px 16px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #D9D9D9;
    font-size: 14px;
    font-weight: 400;
    font-family: "Comfortaa", sans-serif;
    color: #1E1E1E;
    line-height: 14px;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    transition: border-color 0.15s;
}

.t22-field-select:focus {
    border-color: var(--primary);
}

/* Placeholder color for select */
.t22-field-select option[value=""] {
    color: #B3B3B3;
}

/* Date input */
.t22-field-date {
    color: #B3B3B3;
}

.t22-field-date:valid {
    color: #1E1E1E;
}

/* Hide native calendar icon visually but keep it functional */
.t22-field-date::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
    width: 40px;
    height: 100%;
    cursor: pointer;
}

/* Arrow icon inside select/date */
.t22-select-arrow {
    position: absolute;
    right: 14px;
    pointer-events: none;
    /* selects: arrow is decorative, native arrow handles click */
    display: flex;
    align-items: center;
}

/* For date fields the whole wrapper handles the click, so arrow is purely decorative */
.t22-select-wrap[onclick] .t22-select-arrow {
    pointer-events: none;
}

/* Textarea */
.t22-field-textarea {
    width: 100%;
    min-height: 119px;
    padding: 12px 16px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #D9D9D9;
    font-size: 14px;
    font-weight: 400;
    font-family: "Comfortaa", sans-serif;
    color: #1E1E1E;
    line-height: 14px;
    resize: vertical;
    outline: none;
    transition: border-color 0.15s;
}

.t22-field-textarea::placeholder {
    color: #B3B3B3;
}

.t22-field-textarea:focus {
    border-color: var(--primary);
}

/* Error text only visible when has content */
.t22-field-error {
    font-size: 11px;
    color: #ef4444;
    font-family: "Comfortaa", sans-serif;
    display: none;
}

.t22-field-error:not(:empty) {
    display: block;
}

/* Submit button */
.t22-submit-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary);
    border-radius: 8px;
    border: 1px solid #D9B8F3;
    color: #F5F5F5;
    font-size: 16px;
    font-weight: 400;
    font-family: "Comfortaa", sans-serif;
    line-height: 16px;
    word-wrap: break-word;
    cursor: pointer;
    transition: background 0.15s;
    margin-top: 8px;
}

.t22-submit-btn:hover {
    background: #5a1f8a;
}

.t22-submit-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* Status messages */
.t22-contact-status {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-family: "Comfortaa", sans-serif;
    text-align: center;
    margin-bottom: 8px;
}

.t22-status-success {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.t22-status-error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

/* Social row */
.t22-social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding-top: 16px;
}

.t22-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: background 0.15s;
    text-decoration: none;
}

.t22-social-icon:hover {
    background: #F9F0FF;
    border-color: #C4A8E8;
}

.t22-social-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* SERVICES SECTION */

/* Header row: "Our Services" + "Show all" */
.t22-svc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding: 0 4px;
}

/* "Our Services" */
.t22-svc-title {
    font-size: 24px;
    font-weight: 600;
    font-family: "Comfortaa", sans-serif;
    color: var(--primary);
    line-height: 1.2;
    letter-spacing: 0.04px;
    word-wrap: break-word;
}

/* "Show all" */
.t22-svc-showall {
    font-size: 16px;
    font-weight: 400;
    font-family: "Comfortaa", sans-serif;
    color: #A09B9B;
    text-decoration: none;
    white-space: nowrap;
}

.t22-svc-showall:hover {
    color: var(--primary);
}

/* Cards list */
.t22-svc-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Each card */
.t22-svc-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 0px 17.86px rgba(112, 144, 176, 0.28);
    overflow: hidden;
    padding: 9px 12px 9px 9px;
    gap: 0;
}

/* Top row: image + info + price/arrow */
.t22-svc-card-top {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 40px;
}

/* Service image */
.t22-svc-img-wrap {
    flex-shrink: 0;
    width: 37px;
    height: 37px;
    border-radius: 13px;
    overflow: hidden;
    margin-right: 12px;
}

.t22-svc-img {
    width: 37px;
    height: 37px;
    object-fit: cover;
    border-radius: 13px;
    display: block;
}

/* Info block */
.t22-svc-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Service name */
.t22-svc-name {
    font-size: 14px;
    font-weight: 500;
    font-family: "Comfortaa", sans-serif;
    color: var(--primary);
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Meta row: duration + description */
.t22-svc-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

/* Duration badge */
.t22-svc-duration {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 9px;
    font-weight: 600;
    font-family: "Comfortaa", sans-serif;
    color: var(--primary);
    background: var(--bg-light, #f3e8ff);
    border-radius: 20px;
    padding: 1px 6px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Description */
.t22-svc-desc {
    font-size: 8px;
    font-weight: 500;
    font-family: "Comfortaa", sans-serif;
    color: #433E3F;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

/* Action area */
.t22-svc-action {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 8px;
}

/* "Quotes" text */
.t22-svc-quotes {
    font-size: 10px;
    font-weight: 400;
    font-family: "Comfortaa", sans-serif;
    color: #2671CB;
    line-height: 22px;
    word-wrap: break-word;
}

/* Price */
.t22-svc-price {
    font-size: 10px;
    font-weight: 600;
    font-family: "Comfortaa", sans-serif;
    color: var(--primary);
    line-height: 22px;
}

/* Arrow chevron */
.t22-svc-arrow {
    flex-shrink: 0;
}

/* Cart buttons row */
.t22-svc-card--has-btns {
    padding-bottom: 10px;
}

.t22-svc-card-btns {
    width: 100%;
    display: flex;
    gap: 8px;
    margin-top: 9px;
    padding-top: 9px;
    border-top: 1px solid rgba(112, 144, 176, 0.12);
}

.t22-svc-card-btn {
    flex: 1;
    height: 32px;
    border-radius: 20px;
    border: none;
    font-size: 11px;
    font-weight: 600;
    font-family: "Comfortaa", sans-serif;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: opacity 0.18s, transform 0.12s;
}

.t22-svc-card-btn:active {
    transform: scale(0.97);
}

.t22-svc-card-btn:hover {
    opacity: 0.85;
}

.t22-svc-card-btn--cart {
    background: #fff;
    color: var(--primary);
    border: 1.5px solid rgba(112, 144, 176, 0.25);
    box-shadow: 0 1px 4px rgba(112, 144, 176, 0.15);
}

.t22-svc-card-btn--book {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* Empty state */
.t22-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 12px;
}

.t22-empty-state p {
    font-size: 13px;
    font-family: "Comfortaa", sans-serif;
    color: #A09B9B;
    text-align: center;
}

/* Services */
.t22-svc-footer {
    margin-top: 14px;
    text-align: center;
}

.t22-svc-viewall {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    font-family: "Comfortaa", sans-serif;
    color: var(--primary);
    text-decoration: none;
    padding: 8px 20px;
    border: 1.5px solid #ECDBF9;
    border-radius: 8px;
    background: #ffffff;
    transition: background 0.15s, border-color 0.15s;
}

.t22-svc-viewall:hover {
    background: #F9F0FF;
    border-color: var(--primary);
}

/* SERVICES PAGE */

/* Page wrapper no extra padding, parent section handles it */
.t22-svcpage-wrap {
    padding: 0;
    background: #ffffff;
}

/* Header */
.t22-svcpage-header {
    display: flex;
    align-items: center;
    padding: 12px 0 8px;
    position: relative;
    margin-bottom: 16px;
}

/* Back arrow purple â† left-aligned */
.t22-svcpage-back {
    font-size: 20px;
    color: var(--primary);
    text-decoration: none;
    line-height: 1;
    flex-shrink: 0;
    width: 32px;
}

/* Title  centered absolutely so it's truly centered regardless of back/toggle widths */
.t22-svcpage-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    font-weight: 600;
    font-family: "Comfortaa", sans-serif;
    color: var(--primary);
    margin: 0;
    white-space: nowrap;
    letter-spacing: 0.03px;
}

/* Toggle pushed to right */
.t22-view-toggle {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

/* Toggle button  28Ã—28, white bg, subtle border */
.t22-toggle-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 0 3px rgba(236, 219, 249, 0.8);
    cursor: pointer;
    transition: border-color 0.15s;
    padding: 0;
}

/* Active toggle  border var(--primary) */
.t22-toggle-btn.t22-toggle-active {
    border-color: var(--primary);
}

.t22-toggle-btn:hover {
    border-color: #C4A8E8;
}

/* LIST VIEW */
.t22-svclist {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* List card white, rounded, subtle shadow */
.t22-svclist-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border-radius: 12px;
    padding: 10px 12px;
    box-shadow: 0 0 18px rgba(112, 144, 176, 0.20);
    min-height: 58px;
}

/* Meta row: duration + description */
.t22-svclist-meta {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

/* Circle image */
.t22-svclist-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #f3e8ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.t22-svclist-img img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* Info block */
.t22-svclist-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

/* Service name */
.t22-svclist-name {
    font-size: 14px;
    font-weight: 500;
    font-family: "Comfortaa", sans-serif;
    color: var(--primary);
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Description */
.t22-svclist-desc {
    font-size: 10px;
    font-weight: 400;
    font-family: "Comfortaa", sans-serif;
    color: #9ca3af;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Action */
.t22-svclist-action {
    display: flex;
    align-items: center;
    gap: 3px;
    flex-shrink: 0;
}

.t22-svclist-quotes {
    font-size: 10px;
    font-weight: 400;
    font-family: "Comfortaa", sans-serif;
    color: #2671CB;
    white-space: nowrap;
}

/* GRID VIEW */
.t22-svcgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

/* Grid card */
.t22-svcgrid-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 2.82px 2.82px 14px rgba(23, 37, 40, 0.08);
}

/* Image area  light purple/lavender bg, takes most of card height */
.t22-svcgrid-imgarea {
    background: rgba(236, 219, 249, 0.40);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 8px 12px;
    flex: 1;
    min-height: 80px;
}

/* Grid image  larger, no circle clip, just the icon */
.t22-svcgrid-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block;
}

/* White label bar at bottom */
.t22-svcgrid-label {
    background: #ffffff;
    padding: 8px 8px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-height: 36px;
}

/* Grid name  small, centered, dark */
.t22-svcgrid-name {
    font-size: 9px;
    font-weight: 600;
    font-family: "Comfortaa", sans-serif;
    color: #101828;
    text-align: center;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

/* Grid meta: price + duration */
.t22-svcgrid-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}

.t22-svcgrid-price {
    font-size: 11px;
    font-weight: 700;
    font-family: "Comfortaa", sans-serif;
    color: var(--primary);
}

.t22-svcgrid-duration {
    font-size: 9px;
    font-weight: 600;
    font-family: "Comfortaa", sans-serif;
    color: var(--primary);
    background: var(--bg-light, #f3e8ff);
    border-radius: 10px;
    padding: 1px 5px;
    white-space: nowrap;
}

/* Grid buttons row */
.t22-svcgrid-btns {
    display: flex;
    gap: 4px;
    width: 100%;
    margin-top: 2px;
}

.t22-svcgrid-btn {
    flex: 1;
    height: 26px;
    border-radius: 14px;
    border: none;
    font-size: 9px;
    font-weight: 700;
    font-family: "Comfortaa", sans-serif;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    transition: opacity 0.15s, transform 0.1s;
}

.t22-svcgrid-btn:active {
    transform: scale(0.96);
}

.t22-svcgrid-btn:hover {
    opacity: 0.85;
}

.t22-svcgrid-btn--cart {
    background: #fff;
    color: var(--primary);
    border: 1.5px solid rgba(112, 144, 176, 0.25);
    flex: 0 0 26px;
    /* icon-only square */
    border-radius: 50%;
}

.t22-svcgrid-btn--book {
    background: var(--primary);
    color: #fff;
}

/* PRODUCTS SECTION */

/* Header row */
.t22-prd-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

/* "Our Product" */
.t22-prd-title {
    font-size: 24px;
    font-weight: 600;
    font-family: "Comfortaa", sans-serif;
    color: var(--primary);
    line-height: 1.2;
    letter-spacing: 0.04px;
    word-wrap: break-word;
}

/* "Show all" */
.t22-prd-showall {
    font-size: 16px;
    font-weight: 400;
    font-family: "Comfortaa", sans-serif;
    color: #A09B9B;
    text-decoration: none;
    white-space: nowrap;
}

.t22-prd-showall:hover {
    color: var(--primary);
}

/* Cards list */
.t22-prd-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Each card */
.t22-prd-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 0px 17.86px rgba(112, 144, 176, 0.28);
    overflow: hidden;
    min-height: 43px;
    padding: 6px 12px 6px 8px;
}

/* Product image */
.t22-prd-img-wrap {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f3e8ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.t22-prd-img {
    width: 35px;
    height: 35px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* Product info */
.t22-prd-info {
    flex: 1;
    min-width: 0;
}

/* Product name */
.t22-prd-name {
    font-size: 14px;
    font-weight: 500;
    font-family: "Comfortaa", sans-serif;
    color: var(--primary);
    line-height: 21px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

/* Price */
.t22-prd-price {
    font-size: 16px;
    font-weight: 700;
    font-family: "Comfortaa", sans-serif;
    color: var(--primary);
    line-height: 22px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* PRODUCTS PAGE */

/* Page header */
.t22-prdpage-wrap {
    background: #ffffff;
}

.t22-prdpage-header {
    display: flex;
    align-items: center;
    padding: 12px 0 8px;
    position: relative;
    margin-bottom: 16px;
}

.t22-prdpage-back {
    font-size: 20px;
    color: var(--primary);
    text-decoration: none;
    line-height: 1;
    flex-shrink: 0;
    width: 32px;
}

/* Title absolutely centered */
.t22-prdpage-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    font-weight: 600;
    font-family: "Comfortaa", sans-serif;
    color: var(--primary);
    margin: 0;
    white-space: nowrap;
    letter-spacing: 0.03px;
}

/* LIST VIEW */
.t22-prdlist {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Card */
.t22-prdlist-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 0px 17.86px rgba(112, 144, 176, 0.28);
    overflow: hidden;
    min-height: 82px;
    padding: 10px 12px 10px 8px;
}

/* Image */
.t22-prdlist-img-wrap {
    width: 41px;
    height: 48px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f3e8ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.t22-prdlist-img {
    width: 41px;
    height: 48px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

/* Info block */
.t22-prdlist-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Name */
.t22-prdlist-name {
    font-size: 14px;
    font-weight: 500;
    font-family: "Comfortaa", sans-serif;
    color: var(--primary);
    line-height: 21px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Brand */
.t22-prdlist-brand {
    font-size: 8px;
    font-weight: 500;
    font-family: "Comfortaa", sans-serif;
    color: #433E3F;
    line-height: 21px;
}

/* Description */
.t22-prdlist-desc {
    font-size: 8px;
    font-weight: 400;
    font-family: "Comfortaa", sans-serif;
    color: rgba(21, 20, 57, 0.40);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Right: price + arrow */
.t22-prdlist-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
    align-self: flex-start;
    padding-top: 4px;
}

/* Price */
.t22-prdlist-price {
    font-size: 16px;
    font-weight: 700;
    font-family: "Comfortaa", sans-serif;
    color: var(--primary);
    line-height: 22px;
    white-space: nowrap;
}

.t22-prdlist-arrow {
    flex-shrink: 0;
}

/* GRID VIEW */
.t22-prdgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

/* Card */
.t22-prdgrid-card {
    position: relative;
    width: 100%;
    aspect-ratio: 103 / 127;
    border-radius: 10.9px;
    overflow: hidden;
    box-shadow: 2.73px 2.73px 13.63px rgba(23, 37, 40, 0.10);
    display: flex;
    flex-direction: column;
    background: #F4E7F9;
}

/* Inner purple tint bg */
.t22-prdgrid-bg {
    position: absolute;
    inset: 0;
    background: #ECDBF9;
    border-radius: 5.87px;
    pointer-events: none;
}

/* Image area */
.t22-prdgrid-imgarea {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 8px 8px;
}

/* Image */
.t22-prdgrid-img {
    width: 55px;
    height: 62px;
    object-fit: cover;
    border-radius: 3px;
    display: block;
}

/* White label bar */
.t22-prdgrid-label {
    position: relative;
    z-index: 1;
    background: #ffffff;
    border-bottom-left-radius: 10.9px;
    border-bottom-right-radius: 10.9px;
    padding: 4px 5px 6px;
    min-height: 37px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Grid name */
.t22-prdgrid-name {
    font-size: 8px;
    font-weight: 500;
    font-family: "Comfortaa", sans-serif;
    color: #101828;
    line-height: 17.03px;
    letter-spacing: 0.01px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Grid price */
.t22-prdgrid-price {
    font-size: 8px;
    font-weight: 500;
    font-family: "Comfortaa", sans-serif;
    color: var(--primary);
    line-height: 14.99px;
    white-space: nowrap;
}

/* PRODUCT DETAIL OVERLAY */

/* Full-screen overlay fills the app-container */
.t22-prd-detail-overlay {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 430px;
    height: 100%;
    z-index: 9999;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Header: back + title */
.t22-prd-detail-header {
    display: flex;
    align-items: center;
    padding: 14px 16px 10px;
    position: relative;
    flex-shrink: 0;
    background: #ffffff;
    z-index: 2;
}

.t22-prd-detail-back {
    font-size: 22px;
    color: var(--primary);
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    flex-shrink: 0;
    font-family: sans-serif;
}

/* "Our Products"  centered */
.t22-prd-detail-heading {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    font-weight: 600;
    font-family: "Comfortaa", sans-serif;
    color: var(--primary);
    margin: 0;
    white-space: nowrap;
    letter-spacing: 0.03px;
}

/* Image area  purple/violet bg like screenshot, full width, 222px tall */
.t22-prd-detail-imgwrap {
    width: 100%;
    height: 222px;
    flex-shrink: 0;
    overflow: hidden;
    /* Purple gradient background matching screenshot */
    background: linear-gradient(135deg, var(--primary) 0%, color-mix(in srgb, var(--primary) 70%, white) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.t22-prd-detail-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* White card slides up over image  border-top-radius:40px */
.t22-prd-detail-card {
    flex: 1;
    background: #ffffff;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    margin-top: -40px;
    padding: 28px 24px 40px;
    position: relative;
    z-index: 1;
    /* Subtle shadow at top to show card lifting */
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
}

/* Product name  22px/600/Comfortaa/var(--primary)/lh:25px/ls:0.03px */
.t22-prd-detail-name {
    font-size: 22px;
    font-weight: 600;
    font-family: "Comfortaa", sans-serif;
    color: var(--primary);
    line-height: 25px;
    letter-spacing: 0.03px;
    margin: 0 0 10px;
    word-wrap: break-word;
}

/* Price  16px/700/Comfortaa/var(--primary)/lh:22px */
.t22-prd-detail-price {
    font-size: 16px;
    font-weight: 700;
    font-family: "Comfortaa", sans-serif;
    color: var(--primary);
    line-height: 22px;
    margin-bottom: 6px;
}

/* Brand  16px/400/Comfortaa/rgba(21,20,57,0.40)/lh:20px */
.t22-prd-detail-brand {
    font-size: 16px;
    font-weight: 400;
    font-family: "Comfortaa", sans-serif;
    color: rgba(21, 20, 57, 0.40);
    line-height: 20px;
    margin-bottom: 20px;
}

/* Description  16px/400/Comfortaa/#555A5E/lh:30px */
.t22-prd-detail-desc {
    font-size: 16px;
    font-weight: 400;
    font-family: "Comfortaa", sans-serif;
    color: #555A5E;
    line-height: 30px;
    margin: 0 0 20px;
    word-wrap: break-word;
}

/* Feature bullets list */
.t22-prd-detail-features {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Each feature item */
.t22-prd-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    font-weight: 400;
    font-family: "Comfortaa", sans-serif;
    color: var(--primary);
    line-height: 30px;
}

/* Filled purple circle with white checkmark  matches screenshot exactly */
.t22-prd-feature-dot {
    width: 22px;
    height: 22px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.t22-prd-feature-dot::after {
    content: '';
    width: 9px;
    height: 5px;
    border-left: 2.5px solid #ffffff;
    border-bottom: 2.5px solid #ffffff;
    transform: rotate(-45deg) translateY(-1px);
    display: block;
}

/* Action buttons row */
.t22-prd-detail-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* "Purchase"  dark purple pill */
.t22-prd-btn-purchase {
    flex: 1;
    height: 48px;
    background: var(--primary);
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    font-family: "Comfortaa", sans-serif;
    color: #ffffff;
    line-height: 22px;
    text-decoration: none;
    transition: background 0.15s;
    border: none;
    cursor: pointer;
}

.t22-prd-btn-purchase:hover {
    background: #5a1f8a;
    color: #fff;
}

/* "View More"  white pill with subtle border */
.t22-prd-btn-viewmore {
    flex: 1;
    height: 48px;
    background: #ffffff;
    border-radius: 30px;
    border: 1.5px solid #ECDBF9;
    box-shadow: 0 1px 8px rgba(236, 219, 249, 0.8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    font-family: "Comfortaa", sans-serif;
    color: var(--primary);
    line-height: 22px;
    cursor: pointer;
    transition: background 0.15s;
}

.t22-prd-btn-viewmore:hover {
    background: #F9F0FF;
}

/* MORE ACTIONS */

.t22-more-wrap {
    padding: 8px 10px 12px;
    background: #F8FAFC;
}

/* White card matching nav card style */
.t22-more-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #ede9f6;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    box-shadow: 0 2px 8px rgba(68, 22, 104, 0.07);
}

/* Each action item */
.t22-more-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    flex: 1;
}

/* Icon circle */
.t22-more-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.t22-more-item:hover .t22-more-icon {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
}

/* Icon background colours */
.t22-more-icon--purple {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
}

.t22-more-icon--blue {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.t22-more-icon--pink {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
}

/* Label */
.t22-more-label {
    font-size: 10px;
    font-weight: 600;
    font-family: "Comfortaa", sans-serif;
    color: var(--primary);
    text-align: center;
    line-height: 1;
}

/* ── 3-Tab Bottom Bar ── */
.t22-tab-bar {
    display: flex;
    align-items: stretch;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #ede9f6;
    box-shadow: 0 2px 12px rgba(68, 22, 104, 0.10);
    margin: 0 10px 12px;
    overflow: hidden;
}

.t22-tab-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 12px 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: 'Comfortaa', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: #94a3b8;
    transition: color 0.15s, background 0.15s;
    position: relative;
}

.t22-tab-btn+.t22-tab-btn {
    border-left: 1px solid #f1f5f9;
}

.t22-tab-btn svg {
    width: 22px;
    height: 22px;
    transition: stroke 0.15s, fill 0.15s;
}

.t22-tab-btn.t22-tab-active {
    color: var(--primary);
    background: var(--bg-light);
}

.t22-tab-btn:hover:not(.t22-tab-active) {
    color: var(--primary);
    background: #f8f4ff;
}

/* Profile view: nav + sections visible */
#t22-profile-view {
    display: none;
}

#t22-profile-view.t22-pv-active {
    display: block;
}

/* ---- Share modal phone input ---- */
#t22-share-phone-row .iti__flag {
    display: none !important;
}

#t22-share-phone-row .iti__arrow {
    display: none !important;
}

#t22-share-phone-row .iti__selected-flag {
    min-width: 72px;
    justify-content: center;
    border-right: 1.5px solid #e5e7eb;
    border-radius: 12px 0 0 12px;
    background: transparent !important;
}

#t22-share-phone-row .iti__selected-dial-code {
    font-family: "Comfortaa", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    margin-left: 0;
}

/* ---- Appointment service checkbox wrapper ---- */
.t22-service-checkbox-wrap {
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: 8px 10px;
    background: #ffffff;
    min-height: 44px;
    max-height: 160px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ECDBF9 transparent;
}

.t22-service-checkbox-wrap::-webkit-scrollbar {
    width: 4px;
}

.t22-service-checkbox-wrap::-webkit-scrollbar-thumb {
    background: #ECDBF9;
    border-radius: 2px;
}

.t22-service-placeholder {
    font-size: 12px;
    color: #9ca3af;
    font-family: "Comfortaa", sans-serif;
}

.t22-service-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 4px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.1s;
    font-size: 12px;
    font-family: "Comfortaa", sans-serif;
    color: var(--primary);
    margin-bottom: 2px;
}

.t22-service-item:hover {
    background: #faf5ff;
}

.t22-service-item input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
}

.t22-service-item:last-child {
    margin-bottom: 0;
}

/* Slot pill grid layout: label fills cell, button fills label */
.t22-slot-label {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.t22-slot-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 7px 4px;
    text-align: center;
    white-space: nowrap;
    border: 1.5px solid #e5e7eb;
    border-radius: 20px;
    font-size: 11px;
    font-family: "Comfortaa", sans-serif;
    color: var(--primary);
    font-weight: 600;
    transition: all 0.15s;
    user-select: none;
}

.t22-slot-btn:hover {
    border-color: var(--primary);
    background: #faf5ff;
}

.t22-slot-btn.t22-slot-active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.t22-slot-btn.t22-slot-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/*  GALLERY SECTION */

/* 2-column grid */
.t22-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

/* Each item */
.t22-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #f3e8ff;
    aspect-ratio: 1 / 1;
    box-shadow: 0 2px 8px rgba(68, 22, 104, 0.08);
    transition: transform 0.15s, box-shadow 0.15s;
}

.t22-gallery-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(68, 22, 104, 0.14);
}

/* Thumbnail image */
.t22-gallery-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.2s;
}

.t22-gallery-item:hover .t22-gallery-thumb {
    transform: scale(1.04);
}

/* Hover overlay with icon */
.t22-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(68, 22, 104, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}

.t22-gallery-item:hover .t22-gallery-overlay {
    opacity: 1;
}

/* Video placeholder */
.t22-gallery-video-thumb {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ECDBF9 0%, #f3e8ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---- Lightbox ---- */
.t22-lightbox {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.t22-lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    z-index: 2;
}

.t22-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.t22-lightbox-content {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.t22-lightbox-content img {
    max-width: min(576px, 90vw);
    max-height: 80vh;
    object-fit: contain;
    display: block;
    border-radius: 12px;
}

.t22-lightbox-content video {
    max-width: min(576px, 90vw);
    max-height: 80vh;
    border-radius: 12px;
    display: block;
}

.t22-lightbox-content iframe {
    width: min(576px, 90vw);
    height: calc(min(576px, 90vw) * 9 / 16);
    border: none;
    border-radius: 12px;
    display: block;
}

/* BUSINESS HOURS SECTION */

.t22-hours-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #EFEDF2;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(68, 22, 104, 0.06);
}

/* Each row */
.t22-hours-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    transition: background 0.15s;
}

.t22-hours-divider {
    border-bottom: 1px solid #f3e8ff;
}

/* Today highlight */
.t22-hours-today {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
}

/* Left: dot + day name + today badge */
.t22-hours-day {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Status dot */
.t22-hours-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.t22-hours-dot--open {
    background: #22c55e;
}

.t22-hours-dot--closed {
    background: #fca5a5;
}

/* Day name */
.t22-hours-dayname {
    font-size: 13px;
    font-weight: 500;
    font-family: "Comfortaa", sans-serif;
    color: #0F172A;
}

/* Today badge */
.t22-hours-today-badge {
    font-size: 9px;
    font-weight: 700;
    font-family: "Comfortaa", sans-serif;
    color: var(--primary);
    background: #ECDBF9;
    padding: 2px 7px;
    border-radius: 10px;
    letter-spacing: 0.02px;
}

/* Right: time */
.t22-hours-time {
    font-size: 12px;
    font-weight: 600;
    font-family: "Comfortaa", sans-serif;
}

.t22-hours-time--open {
    color: var(--primary);
}

.t22-hours-time--closed {
    color: #f87171;
}

/* APP INFO SECTION */
.t22-appinfo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 8px 0 4px;
}

.t22-appinfo-subtitle {
    font-size: 13px;
    font-family: "Comfortaa", sans-serif;
    color: #64748b;
    text-align: center;
    margin: 0;
}

.t22-appinfo-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 240px;
}

.t22-appinfo-btn {
    display: block;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(68, 22, 104, 0.10);
}

.t22-appinfo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(68, 22, 104, 0.16);
}

.t22-appinfo-badge {
    width: 100%;
    height: auto;
    display: block;
}

/* QR CODE SECTION */
.t22-qr-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 8px 0 4px;
}

.t22-qr-subtitle {
    font-size: 13px;
    font-family: "Comfortaa", sans-serif;
    color: #64748b;
    text-align: center;
    margin: 0;
}

.t22-qr-container {
    width: 200px;
    height: 200px;
    border: 2px solid #ECDBF9;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(68, 22, 104, 0.10);
}

.t22-qr-container canvas,
.t22-qr-container img {
    width: 180px !important;
    height: 180px !important;
    display: block;
}

/* URL row */
.t22-qr-url {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 12px;
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
}

.t22-qr-url-text {
    flex: 1;
    font-size: 10px;
    color: #64748b;
    font-family: "Comfortaa", sans-serif;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.t22-qr-copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #ECDBF9;
    border: none;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 600;
    font-family: "Comfortaa", sans-serif;
    color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.15s;
}

.t22-qr-copy-btn:hover {
    background: #D9B8F3;
}

/* Download button */
.t22-qr-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: #ffffff;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 600;
    font-family: "Comfortaa", sans-serif;
    text-decoration: none;
    transition: background 0.15s;
}

.t22-qr-download-btn:hover {
    background: #5a1f8a;
    color: #fff;
}

/* GOOGLE MAP SECTION */

/* Card wrapper */
.t22-map-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #EFEDF2;
    box-shadow: 0 2px 8px rgba(68, 22, 104, 0.06);
    background: #ffffff;
}

/* Map iframe container */
.t22-map-frame {
    width: 100%;
    height: 240px;
    background: #f3e8ff;
    overflow: hidden;
}

.t22-map-frame iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0;
    display: block;
}

/* Footer row: address + open button */
.t22-map-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    border-top: 1px solid #f3e8ff;
    background: #faf5ff;
}

.t22-map-address-row {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    flex: 1;
    min-width: 0;
}

.t22-map-address-text {
    font-size: 11px;
    font-family: "Comfortaa", sans-serif;
    color: var(--primary);
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Open in Maps button */
.t22-map-open-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--primary);
    color: #ffffff;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    font-family: "Comfortaa", sans-serif;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.15s;
}

.t22-map-open-btn:hover {
    background: #5a1f8a;
    color: #fff;
}

/* FOOTER BRANDING */
.t22-footer-branding {
    padding: 16px 20px;
    text-align: center;
    background: #F8FAFC;
    border-top: 1px solid #EFEDF2;
    margin-top: 8px;
}

.t22-footer-branding-text {
    font-size: 11px;
    font-family: "Comfortaa", sans-serif;
    color: #9ca3af;
    margin: 0;
    line-height: 1.6;
}

/* TESTIMONIALS SLIDER */

/* Outer wrapper  clips the sliding track */
.t22-testi-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

/* Sliding track  all cards in a row */
.t22-testi-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Each card  full width of the wrapper */
.t22-testi-card {
    flex: 0 0 100%;
    min-width: 0;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #EFEDF2;
    padding: 20px 18px 18px;
    box-shadow: 0 2px 12px rgba(68, 22, 104, 0.07);
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-sizing: border-box;
}

/* Quote icon */
.t22-testi-quote {
    opacity: 0.6;
}

/* Review text */
.t22-testi-text {
    font-size: 13px;
    font-family: "Comfortaa", sans-serif;
    color: #334155;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

/* Reviewer row */
.t22-testi-reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid #f3e8ff;
}

/* Avatar */
.t22-testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #ECDBF9;
    background: #faf5ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.t22-testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.t22-testi-avatar-initials {
    font-size: 16px;
    font-weight: 700;
    font-family: "Comfortaa", sans-serif;
    color: var(--primary);
}

/* Name + stars */
.t22-testi-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.t22-testi-name {
    font-size: 13px;
    font-weight: 700;
    font-family: "Comfortaa", sans-serif;
    color: #0F172A;
}

/* Stars */
.t22-testi-stars {
    display: flex;
    gap: 1px;
}

.t22-star-filled {
    color: #f59e0b;
    font-size: 13px;
}

.t22-star-empty {
    color: #e5e7eb;
    font-size: 13px;
}

/* Dot indicators */
.t22-testi-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 12px 0 4px;
}

.t22-testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ECDBF9;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s, width 0.2s;
}

.t22-testi-dot--active {
    background: var(--primary);
    width: 20px;
    border-radius: 4px;
}

.t22-heading {
    font-size: 24px;
    font-weight: 600;
    font-family: "Comfortaa", sans-serif;
    color: var(--primary);
    line-height: 1.2;
    letter-spacing: 0.04px;
    word-wrap: break-word;
}


.t22-prdlist-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.t22-prdgrid-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 8px 8px;
}

.t22-btn-cart {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid var(--bg-light);
    background: #fff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}

.t22-btn-cart:hover:not(:disabled) {
    background: var(--primary);
    color: #fff;
}

.t22-btn-cart:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.t22-btn-buynow {
    height: 30px;
    padding: 0 12px;
    border-radius: 20px;
    border: none;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    font-family: Comfortaa, sans-serif;
    transition: background 0.2s;
}

.t22-btn-buynow:hover:not(:disabled) {
    background: #5a1f8a;
}

.t22-btn-buynow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
