/* =========================================================
   TempleSetu Group Puja — Frontend Styles
   ========================================================= */

/* ----- Tokens ----- */
:root {
    --tsgp-saffron:    #B85C1A;
    --tsgp-maroon:     #6D2008;
    --tsgp-bg:         #F5F0EB;
    --tsgp-text:       #1A1A1A;
    --tsgp-card-bg:    #FFFFFF;
    --tsgp-border:     #E8DDD4;
    --tsgp-radius:     12px;
    --tsgp-font:       -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --tsgp-shadow:     0 2px 12px rgba(109, 32, 8, 0.08);
    --tsgp-shadow-md:  0 4px 24px rgba(109, 32, 8, 0.12);
}

/* ----- Base wrapper ----- */
.tsgp-wrap {
    font-family: var(--tsgp-font);
    color: var(--tsgp-text);
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px 48px;
    box-sizing: border-box;
}

.tsgp-wrap *,
.tsgp-wrap *::before,
.tsgp-wrap *::after {
    box-sizing: inherit;
}

/* =========================================================
   Hero
   ========================================================= */
.tsgp-hero {
    background: linear-gradient(135deg, #6D2008 0%, #B85C1A 60%, #D4782A 100%);
    border-radius: var(--tsgp-radius);
    padding: 48px 32px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.tsgp-hero__inner {
    max-width: 620px;
    position: relative;
    z-index: 2;
}

.tsgp-hero__diya {
    width: 120px;
    flex-shrink: 0;
    opacity: 0.85;
    position: relative;
    z-index: 2;
}

.tsgp-hero__diya svg {
    width: 100%;
    height: auto;
}

.tsgp-hero__heading {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #FFF;
    line-height: 1.2;
    margin: 0 0 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tsgp-hero__heading-kn {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    font-weight: 400;
    opacity: 0.85;
    letter-spacing: 0.01em;
}

.tsgp-hero__sub {
    color: rgba(255,255,255,0.88);
    font-size: clamp(0.875rem, 2vw, 1rem);
    line-height: 1.6;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tsgp-hero__sub-kn {
    font-size: 0.875em;
    opacity: 0.75;
}

/* =========================================================
   Button
   ========================================================= */
.tsgp-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--tsgp-saffron);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.18s, transform 0.12s;
    line-height: 1;
    white-space: nowrap;
}

.tsgp-btn:hover,
.tsgp-btn:focus {
    background: var(--tsgp-maroon);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    outline: none;
}

.tsgp-btn:focus-visible {
    outline: 3px solid var(--tsgp-saffron);
    outline-offset: 2px;
}

.tsgp-btn--hero {
    background: #FFF;
    color: var(--tsgp-maroon);
    font-weight: 700;
}

.tsgp-btn--hero:hover,
.tsgp-btn--hero:focus {
    background: #F5F0EB;
    color: var(--tsgp-maroon);
}

.tsgp-btn--full {
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
    font-size: 1rem;
    background: var(--tsgp-maroon);
}

.tsgp-btn--full:hover,
.tsgp-btn--full:focus {
    background: var(--tsgp-saffron);
}

.tsgp-btn--disabled,
.tsgp-btn[disabled] {
    background: #ccc;
    color: #888;
    cursor: not-allowed;
    pointer-events: none;
    transform: none;
}

.tsgp-btn__kn {
    font-size: 0.8em;
    opacity: 0.75;
    font-weight: 400;
}

/* =========================================================
   Listing Grid
   ========================================================= */
.tsgp-listing {
    padding-top: 8px;
}

.tsgp-no-results {
    text-align: center;
    color: #777;
    padding: 40px;
    font-size: 1.05rem;
    background: var(--tsgp-card-bg);
    border: 1px solid var(--tsgp-border);
    border-radius: var(--tsgp-radius);
}

.tsgp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* =========================================================
   Card
   ========================================================= */
.tsgp-card {
    background: var(--tsgp-card-bg);
    border: 1px solid var(--tsgp-border);
    border-radius: var(--tsgp-radius);
    box-shadow: var(--tsgp-shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.18s, transform 0.15s;
    position: relative;
}

.tsgp-card:hover {
    box-shadow: var(--tsgp-shadow-md);
    transform: translateY(-2px);
}

.tsgp-card--full {
    opacity: 0.75;
}

.tsgp-card__image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--tsgp-bg);
}

.tsgp-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tsgp-card__image--placeholder svg {
    width: 100%;
    height: 100%;
}

.tsgp-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.tsgp-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--tsgp-maroon);
    margin: 0;
    line-height: 1.3;
}

.tsgp-card__meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tsgp-card__meta li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #555;
}

.tsgp-card__meta-icon {
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.tsgp-card__footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.tsgp-card__price-seats {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tsgp-card__price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--tsgp-saffron);
}

.tsgp-card__seats {
    font-size: 0.8rem;
    color: #777;
}

/* ----- Badge ----- */
.tsgp-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.tsgp-badge--full {
    background: #FDE8E8;
    color: #991B1B;
}

.tsgp-badge--free {
    background: #DCFCE7;
    color: #15803D;
}

.tsgp-badge--free.tsgp-badge--lg {
    font-size: 0.9rem;
    padding: 6px 16px;
    text-transform: none;
    letter-spacing: 0;
}

/* ----- Free card ribbon (top-left corner) ----- */
.tsgp-card--free {
    border-color: #86EFAC;
}

.tsgp-card__free-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #16A34A, #22C55E);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px 4px 10px;
    border-bottom-right-radius: 10px;
    z-index: 3;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(21, 128, 61, 0.25);
}

/* Free price on card */
.tsgp-card__price--free {
    color: #15803D;
    font-size: 1.1rem;
}

.tsgp-card__price-note {
    font-size: 0.75rem;
    color: #16A34A;
    font-weight: 500;
}

/* Free CTA button on card */
.tsgp-btn--free-cta {
    background: #16A34A;
}

.tsgp-btn--free-cta:hover,
.tsgp-btn--free-cta:focus {
    background: #15803D;
    color: #fff;
}

/* =========================================================
   Back link
   ========================================================= */
.tsgp-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--tsgp-saffron);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 24px;
    padding: 6px 0;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s;
}

.tsgp-back-link:hover {
    border-bottom-color: var(--tsgp-saffron);
    color: var(--tsgp-saffron);
    text-decoration: none;
}

/* =========================================================
   Detail — two-column layout
   ========================================================= */
.tsgp-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.tsgp-detail__hero-image {
    border-radius: var(--tsgp-radius);
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 16 / 9;
}

.tsgp-detail__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tsgp-detail__title {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--tsgp-maroon);
    margin: 0 0 16px;
    line-height: 1.25;
}

.tsgp-detail__description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.tsgp-detail__meta {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--tsgp-border);
    border-radius: var(--tsgp-radius);
    overflow: hidden;
}

.tsgp-detail__meta-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--tsgp-border);
}

.tsgp-detail__meta-row:last-child {
    border-bottom: none;
}

.tsgp-detail__meta-row dt {
    font-weight: 600;
    font-size: 0.875rem;
    color: #666;
    padding: 0;
}

.tsgp-detail__meta-row dd {
    font-size: 0.9375rem;
    color: var(--tsgp-text);
    margin: 0;
    padding: 0;
}

.tsgp-detail__price {
    font-weight: 700;
    font-size: 1.1rem !important;
    color: var(--tsgp-saffron) !important;
}

/* =========================================================
   Form
   ========================================================= */
.tsgp-form-card {
    background: var(--tsgp-card-bg);
    border: 1px solid var(--tsgp-border);
    border-radius: var(--tsgp-radius);
    padding: 28px 24px;
    box-shadow: var(--tsgp-shadow);
}

.tsgp-form-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--tsgp-maroon);
    margin: 0 0 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--tsgp-border);
}

.tsgp-form__group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.tsgp-form__group:last-child {
    margin-bottom: 0;
}

.tsgp-form__group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #444;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.tsgp-form__label-kn {
    font-size: 0.8em;
    color: #888;
    font-weight: 400;
}

.tsgp-form__required {
    color: var(--tsgp-saffron);
    font-size: 0.9em;
}

.tsgp-form__optional {
    color: #aaa;
    font-size: 0.8em;
    font-weight: 400;
}

.tsgp-form__group input[type="text"],
.tsgp-form__group input[type="tel"],
.tsgp-form__group input[type="email"] {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--tsgp-border);
    border-radius: 8px;
    font-size: 0.9375rem;
    color: var(--tsgp-text);
    background: #FDFAF8;
    transition: border-color 0.15s, box-shadow 0.15s;
    outline: none;
    font-family: var(--tsgp-font);
}

.tsgp-form__group input:focus {
    border-color: var(--tsgp-saffron);
    box-shadow: 0 0 0 3px rgba(184, 92, 26, 0.12);
}

.tsgp-form__group input:invalid:not(:placeholder-shown) {
    border-color: #DC2626;
}

.tsgp-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.tsgp-form__price-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--tsgp-bg);
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 16px;
    border: 1px solid var(--tsgp-border);
}

.tsgp-form__price-summary strong {
    font-size: 1.1rem;
    color: var(--tsgp-saffron);
    font-weight: 700;
}

/* ----- Free form card variant ----- */
.tsgp-form-card--free {
    border-color: #86EFAC;
    background: #F0FDF4;
}

.tsgp-form-card--free .tsgp-form-card__title {
    color: #15803D;
    border-bottom-color: #BBF7D0;
}

/* Free banner inside the form */
.tsgp-free-banner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #DCFCE7;
    border: 1px solid #86EFAC;
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 20px;
}

.tsgp-free-banner__icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}

.tsgp-free-banner__text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.tsgp-free-banner__text strong {
    font-size: 0.9rem;
    color: #15803D;
}

.tsgp-free-banner__text span {
    font-size: 0.85rem;
    color: #166534;
    line-height: 1.5;
}

.tsgp-free-banner__kn {
    font-size: 0.8rem !important;
    color: #16803D !important;
    opacity: 0.75;
}

/* Free price summary */
.tsgp-form__price-summary--free {
    background: #DCFCE7;
    border-color: #86EFAC;
}

.tsgp-form__price-free {
    font-size: 1.15rem;
    color: #15803D !important;
    letter-spacing: 0.05em;
}

/* Confirm Free button */
.tsgp-btn--confirm-free {
    background: #16A34A;
}

.tsgp-btn--confirm-free:hover,
.tsgp-btn--confirm-free:focus {
    background: #15803D;
}

/* Confirmation — free seva banner */
.tsgp-confirmation__free-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin: 12px 0 4px;
}

.tsgp-confirmation__free-banner p {
    font-size: 0.9rem;
    color: #166534;
    margin: 0;
}

/* =========================================================
   Messages / Notices
   ========================================================= */
.tsgp-notice {
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.tsgp-notice--error {
    background: #FDE8E8;
    border: 1px solid #FCA5A5;
    color: #991B1B;
}

.tsgp-notice--success {
    background: #D1FAE5;
    border: 1px solid #6EE7B7;
    color: #065F46;
}

#tsgp-form-messages:empty {
    display: none;
}

/* =========================================================
   Confirmation (View C)
   ========================================================= */
.tsgp-confirmation {
    max-width: 520px;
    margin: 40px auto;
    text-align: center;
    padding: 0 16px;
}

.tsgp-confirmation__icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--tsgp-saffron), var(--tsgp-maroon));
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(184, 92, 26, 0.3);
}

.tsgp-confirmation__title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--tsgp-maroon);
    margin: 0 0 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.tsgp-confirmation__title-kn {
    font-size: 0.7em;
    font-weight: 400;
    color: var(--tsgp-saffron);
}

.tsgp-confirmation__card {
    background: var(--tsgp-card-bg);
    border: 1px solid var(--tsgp-border);
    border-radius: var(--tsgp-radius);
    padding: 24px;
    margin: 24px 0;
    box-shadow: var(--tsgp-shadow);
    text-align: left;
}

.tsgp-confirmation__details {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tsgp-confirmation__details > div {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--tsgp-border);
}

.tsgp-confirmation__details > div:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.tsgp-confirmation__details dt {
    font-weight: 600;
    font-size: 0.875rem;
    color: #666;
    flex-shrink: 0;
}

.tsgp-confirmation__details dd {
    font-size: 0.9375rem;
    color: var(--tsgp-text);
    margin: 0;
    text-align: right;
}

.tsgp-confirmation__message {
    color: #444;
    line-height: 1.6;
    margin: 0 0 8px;
}

.tsgp-confirmation__message-kn {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0 0 24px;
}

/* =========================================================
   Loader on submit
   ========================================================= */
.tsgp-btn--loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}

.tsgp-btn--loading::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: tsgp-spin 0.6s linear infinite;
    margin-left: 8px;
}

@keyframes tsgp-spin {
    to { transform: rotate(360deg); }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 768px) {
    .tsgp-hero {
        padding: 32px 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .tsgp-hero__diya {
        width: 80px;
        position: absolute;
        right: 16px;
        top: 20px;
        opacity: 0.4;
    }

    .tsgp-detail {
        grid-template-columns: 1fr;
    }

    .tsgp-form__row {
        grid-template-columns: 1fr;
    }

    .tsgp-grid {
        grid-template-columns: 1fr;
    }

    .tsgp-detail__meta-row {
        grid-template-columns: 120px 1fr;
    }
}

@media (max-width: 480px) {
    .tsgp-form-card {
        padding: 20px 16px;
    }

    .tsgp-card__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .tsgp-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .tsgp-btn,
    .tsgp-card,
    .tsgp-back-link {
        transition: none;
    }

    .tsgp-btn--loading::after {
        animation: none;
    }
}

/* =========================================================
   V1.2.0 — New fields & Family Members
   ========================================================= */

/* Section title inside form */
.tsgp-form__section-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ts-brown, #3D1F00);
    margin: 0 0 1rem;
    padding-bottom: .4rem;
    border-bottom: 2px solid var(--ts-saffron-light, #F5DEB3);
    letter-spacing: .03em;
    text-transform: uppercase;
}

/* Textarea field */
.tsgp-registration-form textarea,
#tsgp-registration-form textarea {
    width: 100%;
    padding: .65rem .9rem;
    border: 1.5px solid #D4C5A9;
    border-radius: 8px;
    font-size: .95rem;
    font-family: inherit;
    color: #3D1F00;
    background: #FFFDF8;
    resize: vertical;
    transition: border-color .2s;
    box-sizing: border-box;
}
#tsgp-registration-form textarea:focus {
    outline: none;
    border-color: #B85C1A;
    box-shadow: 0 0 0 3px rgba(184,92,26,.12);
}

/* Select field */
#tsgp-registration-form select {
    width: 100%;
    padding: .65rem .9rem;
    border: 1.5px solid #D4C5A9;
    border-radius: 8px;
    font-size: .95rem;
    font-family: inherit;
    color: #3D1F00;
    background: #FFFDF8;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B85C1A' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .9rem center;
    padding-right: 2.4rem;
    cursor: pointer;
    transition: border-color .2s;
    box-sizing: border-box;
}
#tsgp-registration-form select:focus {
    outline: none;
    border-color: #B85C1A;
    box-shadow: 0 0 0 3px rgba(184,92,26,.12);
}

/* ---- Family Members Section ---- */
.tsgp-family-section {
    margin: 1.6rem 0 1.2rem;
    border: 1.5px dashed #D4C5A9;
    border-radius: 10px;
    overflow: hidden;
}

.tsgp-family-toggle {
    display: flex;
    align-items: center;
    gap: .5rem;
    width: 100%;
    padding: .9rem 1.2rem;
    background: #FFF8EE;
    border: none;
    cursor: pointer;
    font-size: .95rem;
    font-weight: 600;
    color: #B85C1A;
    text-align: left;
    transition: background .2s;
    font-family: inherit;
}
.tsgp-family-toggle:hover {
    background: #F5DEB3;
}
.tsgp-family-toggle__icon {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    transition: transform .2s;
}
.tsgp-family-toggle__sub {
    font-size: .82rem;
    font-weight: 400;
    color: #8B6A3B;
    margin-left: .2rem;
}

.tsgp-family-body {
    padding: 1rem 1.2rem 1.2rem;
    background: #FFFDF8;
}
.tsgp-family-desc {
    font-size: .88rem;
    color: #6B5B45;
    margin: 0 0 1rem;
}

/* Individual family member card */
.tsgp-family-member {
    background: #FFF8EE;
    border: 1.5px solid #E8D5B0;
    border-radius: 8px;
    padding: 1rem 1rem .8rem;
    margin-bottom: .9rem;
}
.tsgp-family-member__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .7rem;
}
.tsgp-family-member__label {
    font-size: .88rem;
    font-weight: 700;
    color: #B85C1A;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.tsgp-family-remove {
    background: none;
    border: 1px solid #C0392B;
    border-radius: 6px;
    color: #C0392B;
    font-size: .78rem;
    padding: .2rem .6rem;
    cursor: pointer;
    font-family: inherit;
    transition: background .15s, color .15s;
}
.tsgp-family-remove:hover {
    background: #C0392B;
    color: #fff;
}

/* Add member button */
.tsgp-btn--outline {
    background: transparent;
    border: 2px solid #B85C1A;
    color: #B85C1A;
    font-weight: 600;
    padding: .55rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    font-size: .92rem;
    transition: background .2s, color .2s;
}
.tsgp-btn--outline:hover {
    background: #B85C1A;
    color: #fff;
}
.tsgp-btn--outline:disabled,
.tsgp-btn--outline[disabled] {
    opacity: .45;
    cursor: not-allowed;
    pointer-events: none;
}
.tsgp-btn--sm {
    font-size: .88rem;
    padding: .45rem 1rem;
}

.tsgp-family-limit-note {
    font-size: .82rem;
    color: #8B6A3B;
    margin: .5rem 0 0;
    font-style: italic;
}

/* Confirmation family list */
.tsgp-confirmation__family {
    margin: 1.2rem auto 0;
    max-width: 460px;
    text-align: left;
    background: #FFF8EE;
    border: 1.5px solid #E8D5B0;
    border-radius: 10px;
    padding: 1rem 1.2rem;
}
.tsgp-confirmation__family h4 {
    font-size: .95rem;
    font-weight: 700;
    color: #B85C1A;
    margin: 0 0 .7rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.tsgp-confirmation__family-list {
    margin: 0;
    padding-left: 1.2rem;
}
.tsgp-confirmation__family-list li {
    font-size: .92rem;
    color: #3D1F00;
    margin-bottom: .35rem;
}
