/* ==========================================================
   Top Brides Hero
   Legacy-friendly CSS. No external dependencies.
   Container width: 1180px. Background: full viewport / 2K ready.
   ========================================================== */

:root {
    --tb-container: 1180px;
    --tb-bg: #070a16;
    --tb-bg-2: #10091d;
    --tb-white: #ffffff;
    --tb-text: #f8fafc;
    --tb-muted: rgba(255, 255, 255, .72);
    --tb-muted-2: rgba(255, 255, 255, .52);
    --tb-dark-text: #111827;
    --tb-form-text: #101828;
    --tb-form-muted: #667085;
    --tb-pink: #ff4d8d;
    --tb-pink-2: #ff2f7d;
    --tb-violet: #8b5cf6;
    --tb-blue: #3b82f6;
    --tb-border: rgba(255, 255, 255, .12);
    --tb-form-border: #e5e7eb;
    --tb-radius: 28px;
    --tb-shadow-pink: 0 0 36px rgba(255, 77, 141, .38);
    --tb-shadow-soft: 0 30px 80px rgba(0, 0, 0, .45);
}

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

html {
    min-width: 320px;
    background: var(--tb-bg);
}

body {
    min-width: 320px;
    margin: 0;
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    color: var(--tb-text);
    background: var(--tb-bg);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

img {
    max-width: 100%;
    display: block;
}

.tb-page {
    overflow: hidden;
    background: var(--tb-bg);
}

.tb-container {
    width: min(var(--tb-container), calc(100% - 40px));
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Fullscreen background */
.tb-hero {
    position: relative;
    min-height: 100vh;
    padding: 34px 0 52px;
    overflow: hidden;
    isolation: isolate;
    background:
            radial-gradient(circle at 9% 42%, rgba(255, 77, 141, .17), transparent 23%),
            radial-gradient(circle at 74% 13%, rgba(139, 92, 246, .20), transparent 24%),
            radial-gradient(circle at 92% 54%, rgba(255, 77, 141, .20), transparent 22%),
            linear-gradient(135deg, #050812 0%, #10091d 48%, #070a16 100%);
}

.tb-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -4;
    opacity: .26;
    background-image:
            linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at center, #000 0%, transparent 70%);
}

.tb-hero::after {
    content: "";
    position: absolute;
    left: -8%;
    right: -8%;
    bottom: -20%;
    height: 360px;
    z-index: -3;
    background:
            radial-gradient(ellipse at center, rgba(255, 47, 125, .38), transparent 58%),
            linear-gradient(105deg, transparent 12%, rgba(255, 47, 125, .48) 48%, transparent 49%);
    filter: blur(1px);
    transform: rotate(-5deg);
    opacity: .78;
}

.tb-hero__decor {
    position: absolute;
    border-radius: 999px;
    filter: blur(44px);
    pointer-events: none;
    z-index: -2;
}

.tb-hero__decor--left {
    width: 340px;
    height: 340px;
    left: -110px;
    top: 250px;
    background: rgba(255, 77, 141, .17);
}

.tb-hero__decor--right {
    width: 420px;
    height: 420px;
    right: -150px;
    top: 320px;
    background: rgba(255, 47, 125, .24);
}

.tb-hero__hearts span {
    position: absolute;
    width: 18px;
    height: 18px;
    opacity: .24;
    transform: rotate(45deg);
    background: var(--tb-pink);
    border-radius: 5px 5px 0 5px;
    animation: tbFloat 8s ease-in-out infinite;
}

.tb-hero__hearts span::before,
.tb-hero__hearts span::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    background: inherit;
    border-radius: 50%;
}

.tb-hero__hearts span::before { left: -9px; top: 0; }
.tb-hero__hearts span::after { left: 0; top: -9px; }

.tb-hero__hearts span:nth-child(1) { left: 4%; top: 31%; animation-delay: 0s; }
.tb-hero__hearts span:nth-child(2) { right: 8%; top: 34%; animation-delay: 1.2s; }
.tb-hero__hearts span:nth-child(3) { left: 42%; top: 64%; animation-delay: 2.1s; }
.tb-hero__hearts span:nth-child(4) { right: 4%; top: 62%; animation-delay: 3.3s; }
.tb-hero__hearts span:nth-child(5) { left: 91%; top: 22%; animation-delay: 4.4s; }

@keyframes tbFloat {
    0%, 100% { transform: translateY(0) rotate(45deg); }
    50% { transform: translateY(-18px) rotate(45deg); }
}

/* Header */
.tb-header {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tb-logo {
    display: inline-flex;
    align-items: flex-start;
    gap: 6px;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-size: 33px;
    line-height: 1;
    letter-spacing: -.04em;
    color: var(--tb-white);
}
a.tb-logo:hover{
    color: var(--tb-pink);
}

.tb-logo strong {
    font-style: italic;
    font-weight: 800;
    color: var(--tb-pink);
    text-shadow: 0 0 26px rgba(255, 77, 141, .35);
}

.tb-logo i {
    margin-left: 1px;
    margin-top: -7px;
    color: var(--tb-pink);
    font-size: 18px;
    font-style: normal;
}

.tb-login {
    min-height: 46px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 77, 141, .68);
    border-radius: 10px;
    color: var(--tb-white);
    font-weight: 700;
    background: rgba(255, 255, 255, .02);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .03);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.tb-login img {
    width: 20px;
    height: 20px;
}

.tb-login:hover {
    transform: translateY(-1px);
    background: rgba(255, 77, 141, .08);
    box-shadow: 0 0 24px rgba(255, 77, 141, .25);
    color:white;
}

/* Hero content */
.tb-hero__content {
    position: relative;
    min-height: 704px;
    display: grid;
    grid-template-columns: 390px 270px 460px;
    gap: 30px;
    align-items: start;
    padding-top: 45px;
}

.tb-hero__left {
    padding-top: 38px;
}

.tb-eyebrow {
    margin: 0 0 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ff6fa5;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.tb-eyebrow img {
    width: 14px;
    height: 14px;
}

.tb-title {
    margin: 0;
    max-width: 430px;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-style: normal;
    font-size: 65px;
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 700;
    color: var(--tb-white);
    text-shadow: 0 16px 46px rgba(0, 0, 0, .35);
}

.tb-title span {
    display: block;
    color: var(--tb-pink);
    background: linear-gradient(135deg, #ff75ad, #ff3d85 45%, #b657ff 110%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tb-lead {
    max-width: 390px;
    margin: 60px 0 60px;
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
    line-height: 1.65;
}

.tb-benefits {
    display: grid;
    gap: 13px;
    max-width: 330px;
}

.tb-benefit {
    min-height: 71px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 17px;
    border-radius: 14px;
    border: 1px solid rgba(255, 77, 141, .21);
    background: linear-gradient(135deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .035));
    box-shadow: 0 18px 42px rgba(0, 0, 0, .20);
    backdrop-filter: blur(18px);
}

.tb-benefit__icon {
    width: 47px;
    height: 47px;
    flex: 0 0 47px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 25%, rgba(255, 255, 255, .28), rgba(255, 77, 141, .44));
    box-shadow: 0 0 22px rgba(255, 77, 141, .22);
}

.tb-benefit__icon img {
    width: 23px;
    height: 23px;
}

.tb-benefit strong {
    display: block;
    font-size: 17px;
    line-height: 1.25;
    color: #fff;
}

.tb-benefit small {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    line-height: 1.25;
}

.tb-online {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.tb-online__avatars {
    display: flex;
    align-items: center;
}

.tb-online__avatars img,
.tb-online__avatars span {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .9);
    margin-left: -10px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .30);
}

.tb-online__avatars img {
    object-fit: cover;
    object-position: center top;
}

.tb-online__avatars img:first-child {
    margin-left: 0;
}

.tb-online__avatars span {
    display: grid;
    place-items: center;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--tb-pink), #e21c76);
    border-color: rgba(255, 77, 141, .95);
}

.tb-online p {
    max-width: 230px;
    margin: 0;
    color: #fff;
    font-size: 15px;
    line-height: 1.45;
}

.tb-online strong {
    display: block;
}

.tb-online em {
    color: var(--tb-pink);
    font-style: normal;
    font-weight: 800;
}

/* Floating profile cards */
.tb-hero__middle {
    position: relative;
    min-height: 640px;
}

.tb-profile-card {
    position: absolute;
    width: 224px;
    height: 279px;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(255, 77, 141, .55);
    background: #111827;
    box-shadow: var(--tb-shadow-soft);
    transform-origin: center;
}

.tb-profile-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
            linear-gradient(180deg, rgba(0,0,0,.08) 35%, rgba(0,0,0,.75) 100%),
            radial-gradient(circle at 88% 14%, rgba(255, 77, 141, .22), transparent 35%);
}

.tb-profile-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.tb-profile-card > div {
    position: absolute;
    left: 19px;
    bottom: 18px;
    z-index: 2;
}

.tb-profile-card strong,
.tb-profile-card small {
    display: block;
    color: #fff;
    text-shadow: 0 3px 14px rgba(0,0,0,.45);
}

.tb-profile-card strong {
    font-size: 19px;
    line-height: 1.15;
}

.tb-profile-card small {
    margin-top: 5px;
    font-size: 13px;
    opacity: .92;
}

.tb-profile-card .tb-country {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
}

.tb-profile-card .tb-country img {
    width: 22px;
    height: 16px;
    flex: 0 0 auto;
    border-radius: 4px;
    box-shadow: 0 5px 14px rgba(0, 0, 0, .24);
}

.tb-profile-card--one {
    left: 42px;
    top: -14px;
    transform: rotate(-8deg);
}

.tb-profile-card--two {
    left: -16px;
    top: 258px;
    transform: rotate(7deg);
}

.tb-profile-card--three {
    left: 39px;
    top: 501px;
    transform: rotate(-9deg);
}

.tb-status {
    position: absolute;
    top: 13px;
    left: 13px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 24px;
    padding: 0 9px;
    border-radius: 999px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    background: rgba(0, 0, 0, .50);
    backdrop-filter: blur(8px);
}

.tb-status::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #38e15a;
    box-shadow: 0 0 0 3px rgba(56, 225, 90, .18);
}

.tb-like {
    position: absolute;
    right: 14px;
    bottom: 22px;
    z-index: 3;
    width: 49px;
    height: 49px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #ff7eb5, #ff2f7d);
    box-shadow: 0 0 28px rgba(255, 77, 141, .42);
}

.tb-like img {
    width: 21px;
    height: 21px;
    display: block;
}

/* Join card */
.tb-join-card {
    width: 100%;
    margin-left: auto;
    padding: 30px 34px 28px;
    border-radius: var(--tb-radius);
    color: var(--tb-form-text);
    background:
            linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,246,251,.96)),
            #fff;
    border: 1px solid rgba(255, 77, 141, .28);
    box-shadow:
            0 0 0 1px rgba(255, 255, 255, .75) inset,
            0 0 42px rgba(255, 77, 141, .38),
            0 38px 90px rgba(0, 0, 0, .45);
}

.tb-join-card__head {
    text-align: center;
}

.tb-join-card h2 {
    margin: 0;
    color: #0f172a;
    font-size: 27px;
    line-height: 1.2;
    letter-spacing: -.035em;
}

.tb-join-card__head p {
    margin: 9px 0 0;
    color: #667085;
    font-size: 15px;
}

.tb-join-card__head span {
    color: var(--tb-pink);
    font-weight: 800;
}

.tb-separator {
    position: relative;
    margin: 25px 0 24px;
    height: 1px;
    background: #eadde4;
}

.tb-separator span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 34px;
    height: 22px;
    display: grid;
    place-items: center;
    background: #fff;
    transform: translate(-50%, -50%);
}

.tb-separator span img {
    width: 17px;
    height: 17px;
    display: block;
}

.tb-form {
    display: grid;
    gap: 13px;
}

.tb-fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.tb-fieldset legend,
.tb-field label {
    display: block;
    margin: 0 0 7px;
    color: #1f2937;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
}

.tb-segment {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}

.tb-segment label {
    position: relative;
    min-height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid #e1e5eb;
    border-radius: 8px;
    color: #101828;
    background: #fff;
    box-shadow: 0 8px 22px rgba(16, 24, 40, .04);
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.tb-segment label.is-active {
    border-color: var(--tb-pink);
    background: linear-gradient(135deg, rgba(255, 77, 141, .12), rgba(255, 255, 255, .92));
    box-shadow: 0 0 0 3px rgba(255, 77, 141, .07);
}

.tb-segment input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.tb-gender-icon {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 30px;
    border-radius: 50%;
    background: #f8fafc;
    box-shadow: inset 0 0 0 1px rgba(16, 24, 40, .06);
}

.tb-gender-icon img {
    width: 19px;
    height: 19px;
    display: block;
}

.tb-segment label.is-active .tb-gender-icon {
    background: #fff;
    box-shadow: 0 8px 18px rgba(255, 77, 141, .13), inset 0 0 0 1px rgba(255, 77, 141, .12);
}

.tb-gender-icon--male {
    box-shadow: inset 0 0 0 1px rgba(79, 124, 255, .14);
}

.tb-gender-icon--female {
    box-shadow: inset 0 0 0 1px rgba(255, 77, 141, .14);
}

.tb-segment b {
    font-size: 14px;
}

.tb-input-wrap {
    position: relative;
}

.tb-field input,
.tb-field select {
    width: 100%;
    height: 43px;
    display: block;
    padding: 0 42px 0 14px;
    border: 1px solid #d9dee8;
    border-radius: 8px;
    color: #101828;
    background-color: #fff;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.tb-field select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('../ico/chevron-down.svg');
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px 16px;
}

.tb-field select::-ms-expand {
    display: none;
}

.tb-field select:hover {
    border-color: #c9d1df;
    background-color: #fcfcfd;
}

.tb-field select option {
    color: #101828;
}

.tb-field input::placeholder {
    color: #7b8190;
}

.tb-field input:focus,
.tb-field select:focus {
    border-color: var(--tb-pink);
    box-shadow: 0 0 0 4px rgba(255, 77, 141, .10);
}

.tb-input-wrap > img,
.tb-password-toggle {
    position: absolute;
    right: 13px;
    top: 50%;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
}

.tb-input-wrap--country > img {
    left: 14px;
    right: auto;
    opacity: .58;
    pointer-events: none;
}

.tb-input-wrap--country select {
    padding-left: 42px;
    padding-right: 42px;
}

.tb-password-toggle {
    padding: 0;
    border: 0;
    background: transparent;
}

.tb-password-toggle img {
    width: 18px;
    height: 18px;
}

.tb-date-grid {
    display: grid;
    grid-template-columns: 1fr .86fr .86fr;
    gap: 17px;
}

.tb-submit {
    width: 100%;
    height: 50px;
    margin-top: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    line-height: 1;
    font-weight: 900;
    background: linear-gradient(135deg, #ff336d 0%, #ec2490 58%, #8b3ee8 100%);
    box-shadow: 0 18px 34px rgba(236, 36, 144, .24);
    transition: transform .2s ease, box-shadow .2s ease;
}

.tb-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 44px rgba(236, 36, 144, .36);
    background: #ff336d;
}

.tb-submit span {
    font-size: 20px;
    line-height: 1;
}

.tb-terms {
    margin: 5px 0 0;
    color: #7a8190;
    font-size: 12px;
    line-height: 1.45;
    text-align: center;
}

.tb-terms a {
    color: var(--tb-pink);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Stats */
.tb-stats {
    min-height: 76px;
    margin-top: 50px;
    padding: 15px 28px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .028));
    box-shadow: 0 25px 70px rgba(0,0,0,.30);
    backdrop-filter: blur(18px);
}

.tb-stats div {
    min-width: 0;
    display: grid;
    grid-template-columns: 36px 1fr;
    column-gap: 13px;
    align-items: center;
    padding: 0 26px;
    border-left: 1px solid rgba(255, 255, 255, .10);
}

.tb-stats div:first-child {
    border-left: 0;
}

.tb-stats img {
    width: 31px;
    height: 31px;
    grid-row: span 2;
}

.tb-stats strong {
    display: block;
    color: #fff;
    font-size: 22px;
    line-height: 1.1;
}

.tb-stats span {
    margin-top: 3px;
    color: rgba(255,255,255,.68);
    font-size: 12px;
    line-height: 1.25;
}

/* States */
.tb-form .has-error input,
.tb-form .has-error select {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, .10);
}

/* Responsive */
@media (max-width: 1219px) {
    .tb-hero__content {
        grid-template-columns: minmax(0, 1fr) 220px 420px;
        gap: 22px;
    }

    .tb-title {
        font-size: 54px;
    }

    .tb-profile-card {
        width: 205px;
        height: 255px;
    }

    .tb-profile-card--one { left: 18px; }
    .tb-profile-card--two { left: -6px; }
    .tb-profile-card--three { left: 52px; }
}

@media (max-width: 1023px) {
    .tb-hero {
        padding-top: 22px;
    }

    .tb-header {
        height: 68px;
    }

    .tb-hero__content {
        grid-template-columns: 1fr;
        min-height: 0;
        padding-top: 34px;
    }

    .tb-hero__left {
        padding-top: 0;
    }

    .tb-title,
    .tb-lead,
    .tb-benefits {
        max-width: 100%;
    }

    .tb-hero__middle {
        min-height: 330px;
        order: 2;
    }

    .tb-join-card {
        order: 3;
        max-width: 540px;
        margin: 0 auto;
    }

    .tb-profile-card--one {
        left: 6%;
        top: 8px;
    }

    .tb-profile-card--two {
        left: 37%;
        top: 28px;
    }

    .tb-profile-card--three {
        left: auto;
        right: 5%;
        top: 52px;
    }

    .tb-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 0;
        margin-top: 28px;
    }

    .tb-stats div:nth-child(3) {
        border-left: 0;
    }
}

@media (max-width: 767px) {
    .tb-container {
        width: min(100% - 28px, var(--tb-container));
    }

    .tb-hero {
        padding-bottom: 30px;
    }

    .tb-header {
        height: auto;
        padding-bottom: 18px;
        gap: 14px;
    }

    .tb-logo {
        font-size: 28px;
    }

    .tb-login {
        min-height: 42px;
        padding: 0 14px;
        font-size: 13px;
    }

    .tb-login img {
        width: 18px;
        height: 18px;
    }

    .tb-title {
        font-size: clamp(42px, 13vw, 56px);
    }

    .tb-lead {
        font-size: 15px;
    }

    .tb-benefit {
        min-height: 65px;
    }

    .tb-online {
        align-items: flex-start;
        flex-direction: column;
    }

    .tb-hero__middle {
        min-height: 405px;
        margin: 0 -5px;
    }

    .tb-profile-card {
        width: 190px;
        height: 238px;
    }

    .tb-profile-card--one {
        left: 2%;
        top: 6px;
        transform: rotate(-7deg);
    }

    .tb-profile-card--two {
        left: auto;
        right: 4%;
        top: 74px;
        transform: rotate(7deg);
    }

    .tb-profile-card--three {
        left: 24%;
        right: auto;
        top: 166px;
        transform: rotate(-3deg);
    }

    .tb-join-card {
        padding: 25px 18px 22px;
        border-radius: 22px;
    }

    .tb-date-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .tb-stats {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .tb-stats div,
    .tb-stats div:nth-child(3) {
        border-left: 0;
        padding: 0;
    }
}

@media (max-width: 420px) {
    .tb-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .tb-login {
        align-self: stretch;
        justify-content: center;
    }

    .tb-segment {
        grid-template-columns: 1fr;
    }

    .tb-hero__middle {
        min-height: 330px;
    }

    .tb-profile-card {
        width: 158px;
        height: 205px;
    }

    .tb-profile-card strong {
        font-size: 16px;
    }

    .tb-profile-card--one {
        left: 0;
        top: 5px;
    }

    .tb-profile-card--two {
        right: 0;
        top: 58px;
    }

    .tb-profile-card--three {
        left: 22%;
        top: 133px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* ==========================================================
   Women preview section
   ========================================================== */

.tb-women {
    position: relative;
    overflow: hidden;
    padding: 88px 0 96px;
    color: #101828;
    background:
            radial-gradient(circle at 13% 16%, rgba(255, 77, 141, .16), transparent 28%),
            radial-gradient(circle at 86% 12%, rgba(255, 159, 198, .26), transparent 28%),
            linear-gradient(180deg, #fff9fc 0%, #fff3f8 44%, #ffffff 100%);
}

.tb-women::before,
.tb-women::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(2px);
}

.tb-women::before {
    width: 310px;
    height: 310px;
    left: -110px;
    top: 170px;
    background: radial-gradient(circle, rgba(255, 77, 141, .16), transparent 68%);
}

.tb-women::after {
    width: 360px;
    height: 360px;
    right: -135px;
    top: 38px;
    background: radial-gradient(circle, rgba(255, 47, 125, .18), transparent 68%);
}

.tb-women__decor {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: .45;
}

.tb-women__decor--left {
    width: 96px;
    height: 96px;
    left: max(24px, calc((100vw - var(--tb-container)) / 2 - 126px));
    top: 100px;
    border: 10px solid rgba(255, 255, 255, .84);
    border-radius: 24px;
    transform: rotate(-10deg);
    box-shadow: 0 28px 70px rgba(255, 77, 141, .24);
    background: radial-gradient(circle, rgba(255, 77, 141, .23), rgba(255, 255, 255, .32));
}

.tb-women__decor--left::before,
.tb-women__decor--right::before {
    content: "";
    position: absolute;
    inset: 28px;
    background: url('../ico/heart-solid.svg') center / contain no-repeat;
    filter: drop-shadow(0 12px 26px rgba(255, 47, 125, .4));
}

.tb-women__decor--right {
    width: 118px;
    height: 118px;
    right: max(18px, calc((100vw - var(--tb-container)) / 2 - 132px));
    top: 130px;
    border-radius: 50%;
    background: radial-gradient(circle at 38% 34%, #fff, #ff9bc1 42%, #ff2f83 100%);
    filter: blur(.2px);
    box-shadow: 0 28px 70px rgba(255, 47, 125, .25);
}

.tb-women__decor--right::before {
    inset: 34px;
    filter: brightness(0) invert(1) drop-shadow(0 10px 18px rgba(255, 47, 125, .25));
}

.tb-women-head {
    position: relative;
    max-width: 920px;
    margin: 0 auto 38px;
    text-align: center;
}

.tb-women-head__art {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.tb-women-head__art img {
    display: block;
    width: 100%;
    height: auto;
}

.tb-women-head__art--left {
    width: 150px;
    left: -166px;
    top: 18px;
    transform: rotate(-3deg);
    opacity: .86;
}

.tb-women-head__art--right {
    width: 132px;
    right: -138px;
    top: 16px;
    opacity: .82;
}

.tb-women-head__spark {
    position: absolute;
    z-index: 0;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: #ffd7e7;
    box-shadow: 0 0 24px rgba(255, 47, 125, .3);
    transform: rotate(45deg);
}

.tb-women-head__spark--one {
    left: -56px;
    top: 96px;
}

.tb-women-head__spark--two {
    right: -34px;
    top: 136px;
    width: 11px;
    height: 11px;
}

.tb-women-pill,
.tb-women-head h2,
.tb-women-head p {
    position: relative;
    z-index: 1;
}

.tb-women-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    margin: 0 auto 13px;
    padding: 8px 34px;
    color: var(--tb-pink-2);
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(255, 47, 125, .18);
    border-radius: 999px;
    box-shadow: 0 18px 48px rgba(255, 77, 141, .14);
    text-transform: uppercase;
    letter-spacing: .52em;
    font-size: 12px;
    font-weight: 800;
}

.tb-women-pill img {
    width: 19px;
    height: 19px;
    filter: drop-shadow(0 8px 18px rgba(255, 47, 125, .35));
}

.tb-women-head h2 {
    margin: 0;
    color: #090d1c;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: clamp(46px, 6vw, 96px);
    font-weight: 800;
    line-height: .94;
    letter-spacing: -.055em;
}

.tb-women-head h2 span,
.tb-women-head h2 em {
    display: block;
}

.tb-women-head h2 em {
    color: var(--tb-pink-2);
    font-style: italic;
    letter-spacing: -.035em;
    text-shadow: 0 18px 48px rgba(255, 47, 125, .16);
    font-family: 'Dancing Script', cursive;
}

.tb-women-head p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 22px 0 0;
    color: #667085;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 600;
}

.tb-women-head p::before,
.tb-women-head p::after {
    content: "";
    width: 150px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 47, 125, .5));
}

.tb-women-head p::after {
    background: linear-gradient(90deg, rgba(255, 47, 125, .5), transparent);
}

.tb-women-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tb-woman-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-width: 0;
    height: 430px;
    background: var(--tb-white);
    border: 1px solid rgba(255, 47, 125, .08);
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(16, 24, 40, .09), 0 12px 36px rgba(255, 77, 141, .09);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.tb-woman-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 47, 125, .22);
    box-shadow: 0 26px 62px rgba(16, 24, 40, .13), 0 18px 42px rgba(255, 77, 141, .16);
}

.tb-woman-card__photo {
    position: relative;
    display: block;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
    color: var(--tb-white);
    background: #f7d7e4;
}

.tb-woman-card__photo::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 48%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .72) 100%);
}

.tb-woman-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.01);
    transition: transform .34s ease;
}

.tb-woman-card:hover .tb-woman-card__photo img {
    transform: scale(1.06);
}

.tb-woman-card__photo strong {
    position: absolute;
    z-index: 2;
    left: 18px;
    right: 18px;
    bottom: 16px;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 800;
    text-shadow: 0 8px 18px rgba(0, 0, 0, .38);
}

.tb-online-badge {
    position: absolute;
    z-index: 2;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 28px;
    padding: 5px 10px;
    color: var(--tb-white);
    background: rgba(8, 13, 28, .72);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
    backdrop-filter: blur(12px);
    font-size: 13px;
    font-weight: 800;
}

.tb-online-badge i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #31d158;
    box-shadow: 0 0 0 3px rgba(49, 209, 88, .18), 0 0 16px rgba(49, 209, 88, .7);
}

.tb-woman-card__action {
    display: grid;
    grid-template-columns: 28px 1fr 28px;
    align-items: center;
    gap: 10px;
    flex: 0 0 72px;
    min-height: 72px;
    padding: 16px 18px;
    color: var(--tb-pink-2);
    background: var(--tb-white);
    font-size: 18px;
    font-weight: 800;
    transition: color .2s ease, background .2s ease;
}

.tb-woman-card__action img {
    width: 22px;
    height: 22px;
}

.tb-woman-card__action span {
    text-align: left;
}

.tb-woman-card:hover .tb-woman-card__action {
    color: #e61568;
    background: #fff7fb;
}

@media (max-width: 1180px) {
    .tb-women-head__art--left {
        left: -92px;
    }

    .tb-women-head__art--right {
        right: -74px;
    }
}

@media (max-width: 980px) {
    .tb-women {
        padding: 74px 0 82px;
    }

    .tb-women-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tb-woman-card {
        height: 410px;
    }

    .tb-women-head__art {
        display: none;
    }

    .tb-women-head p::before,
    .tb-women-head p::after {
        width: 70px;
    }
}

@media (max-width: 720px) {
    .tb-women-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .tb-women-head {
        margin-bottom: 28px;
    }

    .tb-women-pill {
        padding: 8px 18px;
        letter-spacing: .25em;
        font-size: 11px;
    }

    .tb-women-head p {
        display: block;
        font-size: 17px;
    }

    .tb-woman-card {
        height: 390px;
    }

    .tb-woman-card__photo strong {
        left: 14px;
        right: 14px;
        bottom: 14px;
        font-size: 19px;
    }

    .tb-woman-card__action {
        grid-template-columns: 24px 1fr 20px;
        flex-basis: 62px;
        min-height: 62px;
        padding: 12px 14px;
        font-size: 16px;
    }
}

@media (max-width: 460px) {
    .tb-women {
        padding: 60px 0 66px;
    }

    .tb-women-grid {
        grid-template-columns: 1fr;
    }

    .tb-woman-card {
        height: 430px;
    }
}

/* ==========================================================
   Women carousel section
   Legacy-friendly slider: 12 cards per desktop slide
   ========================================================== */

.tb-women-carousel {
    position: relative;
    z-index: 2;
}

.tb-women-carousel__viewport {
    overflow: hidden;
    width: 100%;
    transition: height .28s ease;
}

.tb-women-carousel__track {
    display: flex;
    align-items: flex-start;
    width: 100%;
    transition: transform .42s ease;
    will-change: transform;
}

.tb-women-slide {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    flex: 0 0 100%;
    min-width: 100%;
    padding: 60px;
}

.tb-women-carousel__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 34px;
}

.tb-women-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    cursor: pointer;
    color: var(--tb-pink-2);
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(255, 47, 125, .16);
    border-radius: 50%;
    box-shadow: 0 14px 34px rgba(255, 77, 141, .15), 0 10px 28px rgba(16, 24, 40, .08);
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease, border-color .2s ease;
}

.tb-women-nav img {
    width: 18px;
    height: 18px;
}

.tb-women-nav--prev img {
    transform: rotate(180deg);
}

.tb-women-nav:hover:not(:disabled) {
    transform: translateY(-2px);
    border-color: rgba(255, 47, 125, .34);
    box-shadow: 0 18px 42px rgba(255, 77, 141, .22), 0 14px 34px rgba(16, 24, 40, .1);
}

.tb-women-nav:disabled {
    cursor: default;
    opacity: .42;
}

.tb-women-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
}

.tb-women-dot {
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    cursor: pointer;
    background: rgba(255, 47, 125, .25);
    border: 0;
    border-radius: 999px;
    transition: width .2s ease, background .2s ease, box-shadow .2s ease;
}

.tb-women-dot.is-active {
    width: 30px;
    background: var(--tb-pink-2);
    box-shadow: 0 8px 22px rgba(255, 47, 125, .28);
}

@media (max-width: 980px) {
    .tb-women-slide {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 720px) {
    .tb-women-slide {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .tb-women-carousel__footer {
        margin-top: 26px;
    }
}

@media (max-width: 460px) {
    .tb-women-slide {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
   About Top Brides section
   Light premium block after women carousel
   ========================================================== */

.tb-about {
    position: relative;
    overflow: hidden;
    padding: 0px 0 116px;
    color: #15162a;
    background: white;
}

.tb-about::before,
.tb-about::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
}

.tb-about::before {
    width: 470px;
    height: 470px;
    right: 5px;
    top: 3px;
    background: rgba(255, 77, 141, .08);
    box-shadow: inset 0 0 0 2px rgba(255, 77, 141, .15);
    border-radius: 50%;
}

.tb-about::after {
    width: 340px;
    height: 340px;
    left: -170px;
    bottom: -210px;
    border: 2px solid rgba(255, 77, 141, .14);
}

.tb-about__glow {
    position: absolute;
    pointer-events: none;
    filter: blur(20px);
    opacity: .62;
}

.tb-about__glow--one {
    width: 110px;
    height: 110px;
    right: 7%;
    top: 105px;
    border-radius: 36% 64% 50% 50%;
    background: radial-gradient(circle at 35% 28%, #fff, #ff72a6 42%, rgba(255, 47, 125, .24) 70%);
    transform: rotate(-18deg);
}

.tb-about__glow--two {
    width: 88px;
    height: 88px;
    left: 52%;
    bottom: 126px;
    border-radius: 40% 60% 50% 50%;
    background: radial-gradient(circle at 35% 28%, #fff, #ff8fba 46%, rgba(255, 47, 125, .2) 72%);
    transform: rotate(16deg);
}

.tb-about__container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 600px) minmax(0, 1fr);
    gap: 58px;
    align-items: center;
}

.tb-about__content {
    position: relative;
    z-index: 3;
}

.tb-about__logo-icon {
    display: block;
    width: 76px;
    height: 76px;
    margin: 0 auto 8px;
}

.tb-about__brand {
    margin: 0;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: clamp(68px, 7vw, 116px);
    font-weight: 700;
    line-height: .92;
    letter-spacing: -.05em;
    color: #250824;
}

.tb-about__title {
    margin: 18px 0 0;
    font-family: 'Dancing Script', cursive;
    font-size: clamp(42px, 4.7vw, 53px);
    font-style: normal;
    font-weight: 600;
    line-height: .95;
    color: var(--tb-pink-2);
    letter-spacing: .005em;
    position: relative;
}

.tb-about__title::after {
    content: "";
    display: inline-block;
    width: 164px;
    height: 16px;
    border-bottom: 4px solid rgba(255, 47, 125, .68);
    border-radius: 50%;
    transform: rotate(-4deg) translateY(-8px);
    position: absolute;
    bottom: -29px;
    right: 72px;
}

.tb-about__divider {
    display: grid;
    grid-template-columns: 1fr 34px 1fr;
    gap: 16px;
    align-items: center;
    width: min(100%, 440px);
    margin: 32px 0 28px 66px;
}

.tb-about__divider span {
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 47, 125, .35), transparent);
}

.tb-about__divider img {
    width: 24px;
    height: 24px;
    filter: invert(39%) sepia(64%) saturate(2741%) hue-rotate(316deg) brightness(104%) contrast(101%);
}

.tb-about__lead {
    max-width: 540px;
    margin: 0;
    font-size: 20px;
    line-height: 1.3;
    color: #283047;
    padding: 30px 20px;
}

.tb-about__note {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 22px;
    align-items: center;
    max-width: 590px;
    margin-top: 28px;
    padding: 24px 28px 24px 22px;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(255, 47, 125, .12);
    border-radius: 20px;
    box-shadow: 0 24px 58px rgba(255, 77, 141, .16), 0 16px 44px rgba(16, 24, 40, .07);
    backdrop-filter: blur(12px);
}

.tb-about__note-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 77, 141, .16), rgba(255, 214, 229, .78));
}

.tb-about__note-icon img {
    width: 38px;
    height: 38px;
    filter: invert(39%) sepia(64%) saturate(2741%) hue-rotate(316deg) brightness(104%) contrast(101%);
}

.tb-about__note p {
    margin: 0;
    font-size: 17px;
    line-height: 1.3;
    color: #1f2437;
}

.tb-about__note strong {
    color: var(--tb-pink-2);
    font-weight: 800;
}

.tb-about__features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 600px;
    margin-top: 34px;
    /* border-top: 1px solid rgba(255, 47, 125, .14); */
    /* border-bottom: 1px solid rgba(255, 47, 125, .08); */
}

.tb-about-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 128px;
    padding: 20px 16px 16px;
    text-align: center;
    color: #222942;
}

.tb-about-feature + .tb-about-feature {
    /* border-left: 1px solid rgba(255, 47, 125, .16); */
}

.tb-about-feature img {
    width: 66px;
    height: 66px;
    margin-bottom: 12px;
    object-fit: contain;
    filter: none;
}

.tb-about-feature span {
    font-size: 14px;
    line-height: 1.23;
}

.tb-about__media {
    position: relative;
    min-height: 650px;
}

.tb-about-photo {
    position: absolute;
    top: 0;
    right: -174px;
    width: 680px;
    height: 560px;
    overflow: visible;
    border-radius: 0;
    box-shadow: none;
}

.tb-about-photo::before {
    display: none;
}

.tb-about-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.tb-polaroid {
    position: absolute;
    z-index: 4;
    width: 229px;
    padding: 12px 12px 18px;
    background: #fff;
    box-shadow: 0 24px 54px rgba(16, 24, 40, .18);
}

.tb-polaroid img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tb-polaroid span {
    display: block;
    margin-top: 12px;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1;
    color: #15162a;
    white-space: nowrap;
}

.tb-polaroid span::after {
    /* content: "â™¡"; */
    /* display: inline-block; */
    /* margin-left: 8px; */
    /* color: var(--tb-pink-2); */
    /* transform: rotate(-12deg); */
}

.tb-polaroid--dominican {
    left: 120px;
    bottom: 54px;
    transform: rotate(-.6deg);
}

.tb-polaroid--petersburg {
    right: -58px;
    bottom: -33px;
    transform: rotate(7deg);
}

.tb-about-heart {
    position: absolute;
    z-index: 5;
    pointer-events: none;
    filter: drop-shadow(0 18px 22px rgba(255, 47, 125, .25));
}

.tb-about-heart::before,
.tb-about-heart::after {
    content: "";
    position: absolute;
    width: 34px;
    height: 52px;
    border-radius: 34px 34px 0 0;
    background: linear-gradient(135deg, #ffd9e8, #ff4d8d 78%);
}

.tb-about-heart::before {
    left: 34px;
    transform: rotate(-45deg);
    transform-origin: 0 100%;
}

.tb-about-heart::after {
    left: 0;
    transform: rotate(45deg);
    transform-origin: 100% 100%;
}

.tb-about-heart--one {
    width: 70px;
    height: 64px;
    right: -102px;
    top: 114px;
    transform: scale(.9) rotate(6deg);
}

.tb-about-heart--two {
    width: 70px;
    height: 64px;
    left: 16px;
    bottom: 98px;
    transform: scale(.74) rotate(-12deg);
    opacity: .8;
}

@media (max-width: 1180px) {
    .tb-about__container {
        gap: 34px;
    }

    .tb-about-photo {
        right: -220px;
    }

    .tb-polaroid--dominican {
        left: 46px;
    }

    .tb-polaroid--petersburg {
        right: -66px;
    }
}

@media (max-width: 980px) {
    .tb-about {
        padding: 82px 0 88px;
    }

    .tb-about__container {
        grid-template-columns: 1fr;
    }

    .tb-about__content {
        text-align: center;
    }

    .tb-about__lead,
    .tb-about__note,
    .tb-about__features {
        margin-left: auto;
        margin-right: auto;
    }

    .tb-about__divider {
        margin-left: auto;
        margin-right: auto;
    }

    .tb-about__media {
        min-height: 620px;
        width: min(100%, 680px);
        margin: 0 auto;
    }

    .tb-about-photo {
        right: -70px;
        width: 620px;
        height: 500px;
    }

    .tb-polaroid--dominican {
        left: 68px;
        bottom: 48px;
    }

    .tb-polaroid--petersburg {
        right: 20px;
        bottom: 30px;
    }
}

@media (max-width: 720px) {
    .tb-about {
        padding: 66px 0 74px;
    }

    .tb-about__brand {
        font-size: clamp(52px, 17vw, 78px);
    }

    .tb-about__title {
        font-size: clamp(28px, 10vw, 42px);
    }

    .tb-about__title::after {
        width: 76px;
        height: 10px;
        transform: rotate(-4deg) translateY(-4px);
    }

    .tb-about__lead {
        font-size: 18px;
    }

    .tb-about__note {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 22px;
        text-align: center;
    }

    .tb-about__note-icon {
        margin: 0 auto;
    }

    .tb-about__note p {
        font-size: 17px;
    }

    .tb-about__features {
        grid-template-columns: repeat(2, 1fr);
    }

    .tb-about-feature:nth-child(3) {
        border-left: 0;
    }

    .tb-about-feature:nth-child(n+3) {
        border-top: 1px solid rgba(255, 47, 125, .16);
    }

    .tb-about__media {
        min-height: 540px;
    }

    .tb-about-photo {
        left: 50%;
        right: auto;
        width: min(640px, 116vw);
        height: 430px;
        transform: translateX(-50%);
    }

    .tb-polaroid {
        width: 168px;
        padding: 9px 9px 14px;
    }

    .tb-polaroid img {
        height: 118px;
    }

    .tb-polaroid span {
        font-size: 19px;
    }

    .tb-polaroid--dominican {
        left: 18px;
        bottom: 52px;
    }

    .tb-polaroid--petersburg {
        right: 8px;
        bottom: 32px;
    }
}

@media (max-width: 460px) {
    .tb-about__media {
        min-height: 500px;
    }

    .tb-about-photo {
        height: 380px;
    }

    .tb-polaroid {
        width: 142px;
    }

    .tb-polaroid img {
        height: 96px;
    }

    .tb-polaroid span {
        font-size: 16px;
    }

    .tb-polaroid--dominican {
        left: 0;
    }

    .tb-polaroid--petersburg {
        right: -4px;
    }
}
/* ==========================================================
   Reviews section
   Dark premium testimonial carousel
   ========================================================== */

.tb-reviews {
    position: relative;
    overflow: hidden;
    padding: 96px 0 108px;
    color: var(--tb-white);
    background: #0f081b;
    isolation: isolate;
}

.tb-reviews::before {
    /* content: ""; */
    position: absolute;
    inset: 0;
    z-index: -4;
    opacity: .2;
    /* background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px); */
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at center, #000 0%, transparent 72%);
}

.tb-reviews::after {
    /* content: ""; */
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -190px;
    height: 360px;
    z-index: -3;
    background:
            radial-gradient(ellipse at center, rgba(255, 47, 125, .34), transparent 64%),
            linear-gradient(105deg, transparent 12%, rgba(255, 47, 125, .26) 48%, transparent 50%);
    filter: blur(10px);
}

.tb-reviews__decor {
    position: absolute;
    pointer-events: none;
    z-index: -2;
    border-radius: 999px;
    filter: blur(50px);
}

.tb-reviews__decor--one {
    width: 360px;
    height: 360px;
    left: -120px;
    top: 250px;
    background: rgba(255, 77, 141, .17);
}

.tb-reviews__decor--two {
    width: 420px;
    height: 420px;
    right: -160px;
    top: 150px;
    background: rgba(139, 92, 246, .16);
}

.tb-reviews-head {
    max-width: 980px;
    margin: 0 auto 58px;
    text-align: center;
}

.tb-reviews-head__line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 0 auto 18px;
}

.tb-reviews-head__line span {
    width: 118px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 77, 141, .62));
}

.tb-reviews-head__line span:last-child {
    background: linear-gradient(90deg, rgba(255, 77, 141, .62), transparent);
}

.tb-reviews-head__line img {
    width: 34px;
    height: 34px;
    filter: drop-shadow(0 0 22px rgba(255, 77, 141, .65));
}

.tb-reviews-head h2 {
    margin: 0;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: clamp(48px, 6.4vw, 88px);
    font-weight: 700;
    line-height: .98;
    letter-spacing: -.055em;
    color: #fff;
    text-shadow: 0 18px 50px rgba(0, 0, 0, .28);
}

.tb-reviews-head h2 span {
    color: var(--tb-pink);
    font-style: italic;
    text-shadow: 0 0 34px rgba(255, 77, 141, .38);
}

.tb-reviews-head p {
    position: relative;
    display: inline-block;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, .66);
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: -.025em;
}

.tb-reviews-head p::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -28px;
    width: 86px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--tb-pink), #9b51ff);
    box-shadow: 0 0 22px rgba(255, 77, 141, .62);
    transform: translateX(-50%);
}

.tb-reviews-carousel {
    position: relative;
    z-index: 2;
    min-height: 430px;
}

.tb-reviews-stage {
    position: relative;
    min-height: 410px;
}

.tb-review-slide {
    position: absolute;
    top: 38px;
    left: 50%;
    width: 330px;
    min-height: 318px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    padding: 30px 28px 26px;
    border: 1px solid rgba(255, 77, 141, .22);
    border-radius: 16px;
    background:
            radial-gradient(circle at 50% 0%, rgba(255, 77, 141, .13), transparent 24%),
            linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025));
    box-shadow: 0 28px 70px rgba(0, 0, 0, .30), inset 0 1px 0 rgba(255, 255, 255, .055);
    backdrop-filter: blur(18px);
    transform: translateX(-50%) scale(.86);
    transition: transform .36s ease, opacity .36s ease, border-color .36s ease, box-shadow .36s ease, visibility .36s ease;
}

.tb-review-slide::before {
    content: "";
    position: absolute;
    left: 20%;
    right: 20%;
    top: -1px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 77, 141, .94), transparent);
    box-shadow: 0 0 18px rgba(255, 77, 141, .75);
}

.tb-review-slide::after {
    content: "”";
    position: absolute;
    right: 22px;
    top: 24px;
    color: rgba(255, 77, 141, .34);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 80px;
    line-height: .8;
    font-weight: 700;
}

.tb-review-slide.is-active {
    z-index: 3;
    top: 0;
    width: 470px;
    min-height: 380px;
    opacity: 1;
    visibility: visible;
    border-color: rgba(255, 77, 141, .58);
    box-shadow: 0 36px 90px rgba(0, 0, 0, .40), 0 0 42px rgba(255, 77, 141, .22), inset 0 1px 0 rgba(255, 255, 255, .08);
    transform: translateX(-50%) scale(1);
}

.tb-review-slide.is-prev,
.tb-review-slide.is-next {
    z-index: 2;
    opacity: .74;
    visibility: visible;
}

.tb-review-slide.is-prev {
    transform: translateX(calc(-50% - 420px)) scale(.9);
}

.tb-review-slide.is-next {
    transform: translateX(calc(-50% + 420px)) scale(.9);
}

.tb-review-slide__head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.tb-review-slide__head img {
    width: 66px;
    height: 66px;
    flex: 0 0 66px;
    object-fit: cover;
    object-position: center;
    border: 3px solid rgba(255, 255, 255, .88);
    border-radius: 50%;
    box-shadow: 0 14px 28px rgba(0, 0, 0, .34);
}

.tb-review-slide__head strong {
    display: block;
    color: #fff;
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-size: 23px;
    line-height: 1.1;
    font-weight: 900;
}

.tb-review-slide__head span {
    display: block;
    margin-top: 8px;
    color: var(--tb-pink);
    font-size: 18px;
    line-height: 1;
    letter-spacing: .13em;
    text-shadow: 0 0 18px rgba(255, 77, 141, .42);
}

.tb-review-slide__quote {
    display: none;
}

.tb-review-slide p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.58;
}

.tb-review-slide.is-active p {
    font-size: 20px;
    line-height: 1.62;
}

.tb-review-slide__meta {
    position: relative;
    z-index: 2;
    display: block;
    margin-top: 24px;
    padding-top: 18px;
    color: rgba(255, 255, 255, .48);
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, .10);
}

.tb-reviews-arrow {
    position: absolute;
    top: 184px;
    z-index: 5;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 77, 141, .52);
    border-radius: 50%;
    background: rgba(255, 255, 255, .025);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .28), inset 0 0 0 1px rgba(255, 255, 255, .035);
    backdrop-filter: blur(14px);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.tb-reviews-arrow:hover {
    transform: translateY(-2px);
    background: rgba(255, 77, 141, .08);
    box-shadow: 0 0 28px rgba(255, 77, 141, .26), 0 18px 44px rgba(0, 0, 0, .28);
}

.tb-reviews-arrow img {
    width: 20px;
    height: 20px;
}

.tb-reviews-arrow--prev {
    left: -28px;
}

.tb-reviews-arrow--prev img {
    transform: rotate(180deg);
}

.tb-reviews-arrow--next {
    right: -28px;
}

.tb-reviews-dots {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transform: translateX(-50%);
}

.tb-reviews-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    background: rgba(255, 255, 255, .24);
    transition: width .2s ease, background .2s ease, box-shadow .2s ease;
}

.tb-reviews-dot.is-active {
    width: 30px;
    background: var(--tb-pink);
    box-shadow: 0 0 20px rgba(255, 77, 141, .55);
}

.tb-reviews-metrics {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
    margin-top: 44px;
}

.tb-reviews-metrics::before {
    content: "";
    width: 1px;
    height: 76px;
    order: 2;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .28), transparent);
}

.tb-reviews-metrics div {
    display: grid;
    grid-template-columns: 78px auto;
    column-gap: 18px;
    align-items: center;
}

.tb-reviews-metrics div:first-child {
    order: 1;
}

.tb-reviews-metrics div:last-child {
    order: 3;
}

.tb-reviews-metrics span {
    grid-row: span 2;
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 77, 141, .52);
    border-radius: 50%;
    background: rgba(255, 255, 255, .035);
    box-shadow: 0 0 34px rgba(255, 77, 141, .22), inset 0 0 0 1px rgba(255, 255, 255, .04);
}

.tb-reviews-metrics img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.tb-reviews-metrics strong {
    display: block;
    color: var(--tb-pink);
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-size: 34px;
    line-height: 1.05;
    font-weight: 500;
}

.tb-reviews-metrics small {
    display: block;
    color: rgba(255, 255, 255, .78);
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-size: 20px;
    line-height: 1.2;
}

@media (max-width: 1180px) {
    .tb-review-slide.is-prev {
        transform: translateX(calc(-50% - 360px)) scale(.86);
    }

    .tb-review-slide.is-next {
        transform: translateX(calc(-50% + 360px)) scale(.86);
    }

    .tb-reviews-arrow--prev {
        left: 0;
    }

    .tb-reviews-arrow--next {
        right: 0;
    }
}

@media (max-width: 980px) {
    .tb-reviews {
        padding: 82px 0 88px;
    }

    .tb-reviews-carousel {
        min-height: 430px;
    }

    .tb-review-slide.is-prev,
    .tb-review-slide.is-next {
        opacity: 0;
        visibility: hidden;
    }

    .tb-review-slide,
    .tb-review-slide.is-active {
        width: min(100%, 560px);
        min-height: 380px;
    }

    .tb-reviews-arrow--prev {
        left: 8px;
    }

    .tb-reviews-arrow--next {
        right: 8px;
    }

    .tb-reviews-metrics {
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .tb-reviews {
        padding: 68px 0 74px;
    }

    .tb-reviews-head {
        margin-bottom: 42px;
    }

    .tb-reviews-head__line span {
        width: 70px;
    }

    .tb-reviews-head p {
        font-size: 18px;
    }

    .tb-reviews-carousel {
        min-height: 480px;
    }

    .tb-reviews-stage {
        min-height: 430px;
    }

    .tb-review-slide,
    .tb-review-slide.is-active {
        width: 100%;
        min-height: 390px;
        padding: 28px 22px 24px;
    }

    .tb-review-slide.is-active p {
        font-size: 17px;
    }

    .tb-review-slide__head img {
        width: 58px;
        height: 58px;
        flex-basis: 58px;
    }

    .tb-review-slide__head strong {
        font-size: 21px;
    }

    .tb-reviews-arrow {
        top: auto;
        bottom: 2px;
        width: 46px;
        height: 46px;
    }

    .tb-reviews-dots {
        bottom: 10px;
    }

    .tb-reviews-metrics {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        margin-top: 34px;
    }

    .tb-reviews-metrics::before {
        display: none;
    }

    .tb-reviews-metrics div {
        grid-template-columns: 62px auto;
        width: min(100%, 320px);
        margin: 0 auto;
    }

    .tb-reviews-metrics span {
        width: 62px;
        height: 62px;
    }

    .tb-reviews-metrics img {
        width: 31px;
        height: 31px;
    }

    .tb-reviews-metrics strong {
        font-size: 28px;
    }

    .tb-reviews-metrics small {
        font-size: 17px;
    }
}

@media (max-width: 420px) {
    .tb-reviews-carousel {
        min-height: 520px;
    }

    .tb-reviews-stage {
        min-height: 470px;
    }

    .tb-review-slide,
    .tb-review-slide.is-active {
        min-height: 430px;
    }
}


/* ==========================================================
   Footer
   ========================================================== */

.tb-footer {
    position: relative;
    overflow: hidden;
    padding: 0px 0 34px;
    color: rgba(255, 255, 255, .78);
    background: #0f081b;
    /* border-top: 1px solid rgba(255, 77, 141, .18); */
}

.tb-footer::before {
    /* content: ""; */
    position: absolute;
    left: -8%;
    right: -8%;
    top: -92px;
    height: 180px;
    pointer-events: none;
    background: radial-gradient(ellipse at center, rgba(255, 47, 125, .20), transparent 66%);
    filter: blur(16px);
}

.tb-footer__glow {
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(44px);
}

.tb-footer__glow--left {
    width: 280px;
    height: 280px;
    left: -96px;
    bottom: -120px;
    /* background: rgba(255, 77, 141, .14); */
}

.tb-footer__glow--right {
    width: 320px;
    height: 320px;
    right: -120px;
    top: 36px;
    background: rgba(139, 92, 246, .12);
}

.tb-footer__main {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
    gap: 72px;
    padding-bottom: 42px;
}

.tb-footer__brand-block p {
    max-width: 360px;
    margin: 18px 0 22px;
    color: rgba(255, 255, 255, .66);
    font-family: 'Manrope', 'Inter', Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.7;
}

.tb-footer__logo {
    display: inline-flex;
    align-items: flex-start;
    gap: 6px;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-size: 39px;
    line-height: 1;
    letter-spacing: -.045em;
    color: var(--tb-white);
}

.tb-footer__logo strong {
    color: var(--tb-pink);
    font-style: italic;
    font-weight: 800;
    text-shadow: 0 0 26px rgba(255, 77, 141, .35);
}

.tb-footer__email {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(255, 77, 141, .36);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, .04);
    font-weight: 800;
    box-shadow: 0 16px 36px rgba(0, 0, 0, .18);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.tb-footer__email:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 77, 141, .72);
    box-shadow: 0 0 26px rgba(255, 77, 141, .20);
}

.tb-footer__nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.tb-footer__col {
    min-width: 0;
    padding: 28px 24px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025));
    box-shadow: 0 22px 54px rgba(0, 0, 0, .20);
    backdrop-filter: blur(18px);
}

.tb-footer__col h3 {
    margin: 0 0 18px;
    color: #ff6fa5;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.tb-footer__col ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tb-footer__col a {
    color: rgba(255, 255, 255, .78);
    font-family: 'Manrope', 'Inter', Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.25;
    transition: color .2s ease, padding-left .2s ease;
}

.tb-footer__col a:hover {
    color: #fff;
    padding-left: 4px;
}

.tb-footer__payment-note {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 28px;
    align-items: start;
    padding: 24px 28px;
    border: 1px solid rgba(255, 77, 141, .18);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 77, 141, .08), rgba(255, 255, 255, .035));
    box-shadow: 0 24px 64px rgba(0, 0, 0, .22);
}

.tb-footer__payment-note strong {
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 900;
}

.tb-footer__payment-note p {
    margin: 0;
    color: rgba(255, 255, 255, .64);
    font-family: 'Manrope', 'Inter', Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.7;
}

.tb-footer__payment-note a {
    color: #ff76aa;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.tb-footer__bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 28px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .48);
    font-size: 13px;
    line-height: 1.4;
}

@media (max-width: 980px) {
    .tb-footer {
        padding-top: 62px;
    }

    .tb-footer__main {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .tb-footer__brand-block {
        text-align: center;
    }

    .tb-footer__brand-block p {
        margin-left: auto;
        margin-right: auto;
    }

    .tb-footer__nav {
        gap: 18px;
    }

    .tb-footer__payment-note {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 720px) {
    .tb-footer__nav {
        grid-template-columns: 1fr;
    }

    .tb-footer__col {
        padding: 24px 22px;
    }

    .tb-footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 460px) {
    .tb-footer {
        padding: 50px 0 28px;
    }

    .tb-footer__logo {
        font-size: 33px;
    }

    .tb-footer__payment-note {
        padding: 22px 18px;
    }
}

/* Legacy CodeIgniter integration */
.tb-hidden-holder {
    display: none;
}

.tb-field.elementHolder,
.tb-fieldset.elementHolder {
    position: relative;
}

.tb-form .error,
.tb-site-modal .error,
.tb-profile-modal .error {
    border-color: #ff4d8d !important;
    box-shadow: 0 0 0 4px rgba(255, 77, 141, .16) !important;
}

.tb-form .errorDesc,
.tb-site-modal .errorDesc,
.tb-profile-modal .errorDesc {
    margin-top: 8px;
    padding: 9px 12px;
    border-radius: 12px;
    color: #a51143;
    background: #fff0f6;
    font: 700 12px/1.35 'Manrope', Arial, sans-serif;
}

.tb-form .statusHolder,
.tb-site-modal .statusHolder,
.tb-profile-modal .statusHolder {
    border-radius: 28px;
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(6px);
}

.tb-form .statusInner,
.tb-site-modal .statusInner,
.tb-profile-modal .statusInner {
    background-image: url("/content/img/ajax-loader.gif");
}

.tb-site-modal,
.advanced-popup.tb-profile-modal {
    display: none;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    position: fixed !important;
    left: 50vw !important;
    top: 50vh !important;
    z-index: 10050 !important;
    transform: translate(-50%, -50%) !important;
}

.b-modal {
    z-index: 10040 !important;
}

.tb-site-modal__dialog {
    position: relative;
    width: min(420px, calc(100vw - 34px));
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, .48);
    border-radius: 28px;
    color: var(--tb-form-text);
    background: #fff;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .36);
}

.tb-site-modal .modal-title,
.tb-profile-modal .modal-title {
    margin: 0 0 22px;
    color: #111827;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.05;
    text-align: center;
}

.tb-site-modal .row-title,
.tb-profile-modal .row-title {
    display: block;
    margin-top: 6px;
    color: #ff4d8d;
    font-family: 'Manrope', Arial, sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.tb-site-modal .modal-close,
.tb-profile-modal .modal-close {
    position: absolute;
    top: -42px;
    right: 0;
    width: 32px;
    height: 32px;
}

.tb-site-modal .modal-close-link,
.tb-profile-modal .modal-close-link {
    position: relative;
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
}

.tb-site-modal .modal-close-link::before,
.tb-site-modal .modal-close-link::after,
.tb-profile-modal .modal-close-link::before,
.tb-profile-modal .modal-close-link::after {
    content: "";
    position: absolute;
    top: 15px;
    left: 8px;
    width: 16px;
    height: 2px;
    background: #fff;
}

.tb-site-modal .modal-close-link::before,
.tb-profile-modal .modal-close-link::before {
    transform: rotate(45deg);
}

.tb-site-modal .modal-close-link::after,
.tb-profile-modal .modal-close-link::after {
    transform: rotate(-45deg);
}

.tb-profile-modal .modal-close {
    top: 14px;
    right: 14px;
    z-index: 2;
}

.tb-profile-modal .modal-close-link {
    background: rgba(17, 24, 39, .72);
}

.tb-site-modal .modal-form,
.tb-profile-modal .modal-form {
    margin: 0;
}

.tb-site-modal .form-row,
.tb-profile-modal .form-row {
    margin-bottom: 14px;
}

.tb-site-modal .input-text,
.tb-site-modal .input-select,
.tb-profile-modal .input-text,
.tb-profile-modal .input-select {
    width: 100%;
    height: 52px;
    margin: 0;
    padding: 0 16px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    color: #101828;
    background: #fff;
    font: 700 14px 'Manrope', Arial, sans-serif;
}

.tb-modal-submit,
.tb-site-modal .btn-red,
.tb-profile-modal .btn-red {
    width: 100%;
    min-height: 54px;
    border: 0;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, #ff4d8d, #ff2f7d);
    box-shadow: 0 18px 38px rgba(255, 77, 141, .28);
    font: 800 15px 'Manrope', Arial, sans-serif;
}

.tb-profile-modal__dialog {
    display: grid;
    grid-template-columns: minmax(400px, 1fr) 390px;
    align-items: start;
    gap: 22px;
    width: min(912px, calc(100vw - 44px));
    padding: 22px;
    border-radius: 30px;
    background: rgba(7, 10, 22, .94);
    box-shadow: 0 34px 100px rgba(0,0,0,.48);
}

.tb-profile-modal .left-part-advanced-popup,
.tb-profile-modal .right-part-advanced-popup {
    float: none;
    width: auto;
    min-width: 0;
}

.tb-profile-modal .left-part-advanced-popup {
    position: relative;
    display: block;
    height: min(640px, calc(100vh - 132px));
    min-height: 399px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 24px;
    background: #0b1020;
    scrollbar-color: rgba(255, 77, 141, .85) rgba(255, 255, 255, .08);
    scrollbar-width: thin;
}

.tb-profile-modal .top-part {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 96px;
    gap: 12px;
    height: 100%;
}

.tb-profile-modal .left-part-top-part,
.tb-profile-modal .right-part-top-part {
    position: relative;
    width: auto !important;
    overflow: hidden;
    min-width: 0;
}

.tb-profile-modal .left-part-top-part,
.tb-profile-modal .left-part-top-part .slider-photo,
.tb-profile-modal .left-part-top-part .slide-item {
    height: 100% !important;
}

.tb-profile-modal .left-part-top-part .slider-photo {
    position: relative;
    width: 100% !important;
}

.tb-profile-modal .left-part-top-part .slide-item {
    inset: 0;
    width: 100%;
    overflow: hidden;
}

.tb-profile-modal .profile-img-on-main {
    width: 100% !important;
    height: 100%;
    min-height: 0;
    margin: 0 !important;
    border-radius: 0;
    background-color: #10131f;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    transform: translateZ(0);
}

.tb-profile-modal .left-part-top-part::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: 20;
    height: 44%;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(7, 10, 22, 0), rgba(7, 10, 22, .86));
}

.tb-profile-modal .slide-thumbs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100% !important;
    max-height: none;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100% !important;
    padding: 0 4px 0 0;
    scrollbar-color: rgba(255, 77, 141, .85) rgba(255, 255, 255, .08);
    scrollbar-width: thin;
}

.tb-profile-modal .slide-thumbs::-webkit-scrollbar,
.tb-profile-modal .left-part-advanced-popup::-webkit-scrollbar {
    width: 8px;
}

.tb-profile-modal .slide-thumbs::-webkit-scrollbar-track,
.tb-profile-modal .left-part-advanced-popup::-webkit-scrollbar-track {
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
}

.tb-profile-modal .slide-thumbs::-webkit-scrollbar-thumb,
.tb-profile-modal .left-part-advanced-popup::-webkit-scrollbar-thumb {
    border: 2px solid rgba(11, 16, 32, .9);
    border-radius: 999px;
    background: linear-gradient(180deg, #ff5f9d, #ff2f7d);
}

.tb-profile-modal .slide-thumbs .slide-item {
    position: relative !important;
    flex: 0 0 92px;
    width: 100%;
    height: 92px;
    overflow: hidden;
    float: none;
    margin: 0;
    border: 2px solid transparent;
    border-radius: 14px;
    background: rgba(255, 255, 255, .08);
    cursor: pointer;
    opacity: .64;
    transition: opacity .2s ease, border-color .2s ease, transform .2s ease;
}

.tb-profile-modal .slide-thumbs .slide-item::before {
    display: none !important;
}

.tb-profile-modal .slide-thumbs .slide-item.active,
.tb-profile-modal .slide-thumbs .slide-item:hover {
    border-color: rgba(255, 77, 141, .95);
    opacity: 1;
    transform: translateY(-1px);
}

.tb-profile-modal .slide-thumbs img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top;
    filter: none !important;
    transform: scale(1.001);
}

.tb-profile-modal .bottom-part {
    position: absolute;
    left: 26px;
    right: 130px;
    bottom: 24px;
    z-index: 35;
    margin: 0;
    color: #fff;
}

.tb-profile-modal .bottom-part .slider-photo,
.tb-profile-modal .bottom-part .slide-item {
    position: relative;
    width: 100% !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: left !important;
}

.tb-profile-modal .bottom-part .slide-item {
    display: none;
    visibility: hidden;
}

.tb-profile-modal .bottom-part .slide-item.active {
    display: block;
    visibility: visible;
}

.tb-profile-modal .photo-name {
    margin: 0;
    color: #fff !important;
    text-shadow: 0 10px 28px rgba(0, 0, 0, .5);
    font: 800 34px/1.05 'Playfair Display', Georgia, serif !important;
    text-transform: none !important;
}

.tb-profile-modal .photo-name-age {
    display: inline-flex !important;
    align-items: center;
    width: auto !important;
    margin-top: 10px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    color: rgba(255,255,255,.88) !important;
    background: rgba(255, 255, 255, .12);
    font: 800 13px 'Manrope', Arial, sans-serif !important;
    text-transform: none !important;
    backdrop-filter: blur(10px);
}

.tb-profile-modal .slider-controls {
    position: absolute;
    top: 50%;
    left: 16px;
    right: 112px;
    z-index: 40;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.tb-profile-modal .slider-control {
    position: relative;
    display: flex !important;
    width: 46px !important;
    height: 46px !important;
    padding: 0 !important;
    border: 1px solid rgba(255, 255, 255, .2) !important;
    border-radius: 50%;
    color: #fff !important;
    background: rgba(255, 77, 141, .94) !important;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .22);
    align-items: center;
    justify-content: center;
    font-size: 0 !important;
    line-height: 0;
    text-indent: -999px;
    overflow: hidden;
    float: none !important;
    pointer-events: auto;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.tb-profile-modal .slider-control::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

.tb-profile-modal .slider-control.prev-item::before {
    transform: translate(-38%, -50%) rotate(-135deg);
    margin: 0;
}

.tb-profile-modal .slider-control.next-item::before {
    transform: translate(-62%, -50%) rotate(45deg);
    margin: 0;
}

.tb-profile-modal .slider-control:hover {
    transform: translateY(-1px) scale(1.04);
    background: #ff2f7d;
}

.tb-profile-modal .right-part-advanced-popup .tb-site-modal__dialog {
    width: 100%;
    padding: 34px;
}

@media (max-width: 900px) {
    .tb-profile-modal__dialog {
        grid-template-columns: 1fr;
        max-height: calc(100vh - 34px);
        overflow: auto;
    }

    .tb-profile-modal .left-part-advanced-popup {
        height: 520px;
        min-height: 520px;
    }

    .tb-profile-modal .top-part {
        grid-template-columns: 1fr;
    }

    .tb-profile-modal .right-part-top-part {
        display: none;
    }

    .tb-profile-modal .profile-img-on-main {
        min-height: 520px;
    }

    .tb-profile-modal .bottom-part {
        right: 26px;
    }

    .tb-profile-modal .slider-controls {
        right: 16px;
    }
}
