/* =========================================================
   Love (14 февраля) — Pochtoy
   ========================================================= */

div.p-love {
    color: #252525;
    font-family: 'Montserrat', 'Poppins', 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.4;
    background: #ffffff;
}

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

.p-love img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* =========================================================
   Block 1 — Hero (fixed 1400px pink banner)
   ========================================================= */
.p-love__hero {
    width: 100%;
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

.p-love__hero-wrap {
    position: relative;
    background: #ffedfe;
    border-radius: 30px;
    overflow: hidden;
    height: 500px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
}

/* Rose pattern background — covers full banner */
img.p-love__hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    max-width: none;
}

/* Left decorative flowers */
img.p-love__hero-flw {
    position: absolute;
    left: -30px;
    bottom: -20px;
    width: 200px;
    height: auto;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

/* Right cat composition — fixed to right column, flush right & bottom */
img.p-love__hero-cat {
    position: absolute;
    right: 0;
    bottom: 0;
    top: auto;
    width: auto;
    height: auto;
    max-width: 50%;
    max-height: 100%;
    object-fit: contain;
    object-position: right bottom;
    z-index: 2;
    pointer-events: none;
    user-select: none;
}

/* Text column — grid item */
.p-love__hero-text {
    position: relative;
    z-index: 3;
    padding: 40px 20px 40px 70px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    max-width: 100%;
}

.p-love__hero-title {
    font-weight: 500;
    font-size: 55px;
    line-height: 1;
    color: #252525;
    margin: 0;
    letter-spacing: -1px;
}

.p-love__hero-title span {
    display: block;
}

/* White glassy info cards */
.p-love__hero-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.p-love__hero-card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid #ffffff;
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.p-love__hero-card-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    line-height: 0;
}

.p-love__hero-card-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.p-love__hero-card-text {
    flex: 1 1 0;
    min-width: 0;
    color: #000000;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.35;
    margin: 0;
}

/* CTA — pink pill with Tilda st2 idle ripple + hover color fade */
a.p-love__hero-cta,
a.p-love__hero-cta:link,
a.p-love__hero-cta:visited,
a.p-love__hero-cta:hover,
a.p-love__hero-cta:active {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    background: #ff3e9a;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.55;
    border-radius: 20px;
    text-decoration: none !important;
    margin-top: 4px;
    overflow: hidden;
    z-index: 0;
    white-space: nowrap;
    isolation: isolate;
}

/* Idle ripple (Tilda st2) — white glow that expands and fades every 6s */
a.p-love__hero-cta::before {
    content: '';
    position: absolute;
    height: 350%;
    width: 200%;
    top: 0;
    left: -100%;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 100%;
    transform: scale(0);
    z-index: -1;
    pointer-events: none;
    animation: p-love-ripple 6s linear infinite;
}

@keyframes p-love-ripple {
    0%   { opacity: 1; transform: scale(0); }
    20%  { opacity: 0; transform: scale(2.5); }
    100% { opacity: 0; transform: scale(2.5); }
}

/* Hover fade to darker pink */
a.p-love__hero-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #ee338c;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    z-index: -2;
    pointer-events: none;
    border-radius: inherit;
}

a.p-love__hero-cta:hover::after {
    opacity: 1;
}

/* =========================================================
   Adaptive
   ========================================================= */
@media (max-width: 1100px) {
    .p-love__hero-wrap {
        height: 460px;
    }
    .p-love__hero-text {
        padding: 40px 20px 40px 40px;
        gap: 20px;
    }
    .p-love__hero-title {
        font-size: 42px;
    }
    .p-love__hero-card-text {
        font-size: 16px;
    }
    .p-love__hero-cat {
        max-width: 48%;
        max-height: 100%;
        width: auto;
        height: auto;
    }
    a.p-love__hero-cta,
    a.p-love__hero-cta:link,
    a.p-love__hero-cta:visited,
    a.p-love__hero-cta:hover,
    a.p-love__hero-cta:active {
        font-size: 18px;
        padding: 13px 26px;
    }
}

@media (max-width: 768px) {
    .p-love__hero {
        margin: 20px auto;
        padding: 0 8px;
    }
    .p-love__hero-wrap {
        height: auto;
        min-height: 0;
        grid-template-columns: 1fr;
        border-radius: 24px;
        padding-bottom: 0;
    }
    .p-love__hero-text {
        padding: 30px 24px 20px;
        max-width: 100%;
        gap: 20px;
        order: 1;
    }
    .p-love__hero-title {
        font-size: 30px;
        letter-spacing: -0.3px;
    }
    .p-love__hero-cards {
        gap: 8px;
    }
    .p-love__hero-card-text {
        font-size: 14px;
        line-height: 1.4;
    }
    img.p-love__hero-cat {
        position: relative;
        top: auto;
        right: 0;
        bottom: 0;
        left: auto;
        margin: 0 0 0 auto;
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
        object-position: right bottom;
        order: 2;
    }
    img.p-love__hero-flw {
        display: none;
    }
    a.p-love__hero-cta,
    a.p-love__hero-cta:link,
    a.p-love__hero-cta:visited,
    a.p-love__hero-cta:hover,
    a.p-love__hero-cta:active {
        font-size: 16px;
        padding: 12px 22px;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .p-love__hero-title {
        font-size: 26px;
    }
}

/* =========================================================
   Block 2 — Brands (pink-outlined pills)
   ========================================================= */
.p-love__brands {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px 60px;
}

.p-love__brands-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.p-love__brands-title {
    font-weight: 600;
    font-size: 36px;
    line-height: 1.2;
    color: #252525;
    margin: 0;
    text-align: center;
}

.p-love__brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 12px;
    max-width: 1100px;
    width: 100%;
}

.p-love__brands-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 8px 24px;
    border: 1px solid #ff3e9a;
    border-radius: 20px;
    background: #ffffff;
    overflow: hidden;
}

.p-love__brands-pill img {
    display: block;
    max-height: 40px;
    max-width: 260px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Adaptive */
@media (max-width: 1100px) {
    .p-love__brands {
        padding: 50px 20px;
    }
    .p-love__brands-title {
        font-size: 30px;
    }
    .p-love__brands-pill {
        height: 54px;
        padding: 8px 20px;
        border-radius: 18px;
    }
    .p-love__brands-pill img {
        max-height: 34px;
        max-width: 220px;
    }
}

@media (max-width: 768px) {
    .p-love__brands {
        padding: 40px 16px;
    }
    .p-love__brands-wrap {
        gap: 24px;
    }
    .p-love__brands-title {
        font-size: 24px;
    }
    .p-love__brands-grid {
        gap: 8px;
    }
    .p-love__brands-pill {
        height: 46px;
        padding: 6px 14px;
        border-radius: 14px;
    }
    .p-love__brands-pill img {
        max-height: 28px;
        max-width: 170px;
    }
}

@media (max-width: 480px) {
    .p-love__brands-title {
        font-size: 20px;
    }
    .p-love__brands-pill {
        height: 40px;
        padding: 5px 12px;
        border-radius: 12px;
    }
    .p-love__brands-pill img {
        max-height: 24px;
        max-width: 140px;
    }
}

/* =========================================================
   Block 3 — Gift ideas (pink banner with 3 product cards)
   ========================================================= */
.p-love__ideas {
    width: 100%;
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

.p-love__ideas-wrap {
    position: relative;
    background: #ffedfe;
    border-radius: 30px;
    overflow: hidden;
    padding: 80px 60px;
}

.p-love__ideas-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    display: block;
}

.p-love__ideas-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.p-love__ideas-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    color: #252525;
}

.p-love__ideas-title {
    font-weight: 600;
    font-size: 40px;
    line-height: 1;
    margin: 0;
    letter-spacing: -0.3px;
}

.p-love__ideas-lead {
    font-weight: 400;
    font-size: 25px;
    line-height: 1.2;
    margin: 0;
}

.p-love__ideas-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 360px));
    gap: 24px;
    width: 100%;
    justify-content: center;
}

.p-love__ideas-card,
.p-love__ideas-card:link,
.p-love__ideas-card:visited,
.p-love__ideas-card:hover,
.p-love__ideas-card:active {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none !important;
    color: #252525 !important;
    transition: transform 0.2s ease;
}

.p-love__ideas-card:hover {
    transform: translateY(-4px);
}

.p-love__ideas-card-media {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 360 / 375;
    display: block;
    padding: 0;
}

.p-love__ideas-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.p-love__ideas-card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 4px;
    color: #252525;
}

.p-love__ideas-card-name {
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    margin: 0;
}

.p-love__ideas-card-price {
    font-weight: 700;
    font-size: 25px;
    line-height: 1;
    margin: 0;
}

/* CTA — same style as hero CTA (with ripple animation) */
a.p-love__ideas-cta,
a.p-love__ideas-cta:link,
a.p-love__ideas-cta:visited,
a.p-love__ideas-cta:hover,
a.p-love__ideas-cta:active {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    background: #ff3e9a;
    color: #ffffff !important;
    font-weight: 500;
    font-size: 25px;
    line-height: 1.6;
    border-radius: 20px;
    text-decoration: none !important;
    overflow: hidden;
    z-index: 0;
    white-space: nowrap;
    isolation: isolate;
    min-width: 300px;
    text-align: center;
}

a.p-love__ideas-cta::before {
    content: '';
    position: absolute;
    height: 350%;
    width: 200%;
    top: 0;
    left: -100%;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 100%;
    transform: scale(0);
    z-index: -1;
    pointer-events: none;
    animation: p-love-ripple 6s linear infinite;
}

a.p-love__ideas-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #ee338c;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    z-index: -2;
    pointer-events: none;
    border-radius: inherit;
}

a.p-love__ideas-cta:hover::after {
    opacity: 1;
}

/* Adaptive */
@media (max-width: 1100px) {
    .p-love__ideas-wrap {
        padding: 60px 40px;
    }
    .p-love__ideas-title {
        font-size: 32px;
    }
    .p-love__ideas-lead {
        font-size: 20px;
    }
    .p-love__ideas-grid {
        gap: 20px;
    }
    .p-love__ideas-card-name {
        font-size: 18px;
    }
    .p-love__ideas-card-price {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .p-love__ideas {
        margin: 20px auto;
        padding: 0 8px;
    }
    .p-love__ideas-wrap {
        padding: 40px 20px;
        border-radius: 20px;
    }
    .p-love__ideas-content {
        gap: 30px;
    }
    .p-love__ideas-title {
        font-size: 26px;
    }
    .p-love__ideas-lead {
        font-size: 16px;
        line-height: 1.3;
    }
    .p-love__ideas-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 400px;
    }
    .p-love__ideas-card-body {
        text-align: center;
        align-items: center;
    }
    a.p-love__ideas-cta,
    a.p-love__ideas-cta:link,
    a.p-love__ideas-cta:visited,
    a.p-love__ideas-cta:hover,
    a.p-love__ideas-cta:active {
        font-size: 18px;
        padding: 14px 24px;
        min-width: 240px;
    }
}

@media (max-width: 480px) {
    .p-love__ideas-title {
        font-size: 22px;
    }
    .p-love__ideas-lead {
        font-size: 14px;
    }
}

/* =========================================================
   Block 4 — How to order (3 steps with arrow connectors)
   ========================================================= */
.p-love__howto {
    width: 100%;
    max-width: 1400px;
    margin: 40px auto 60px;
    padding: 60px 20px;
}

.p-love__howto-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.p-love__howto-title {
    font-weight: 500;
    font-size: 40px;
    line-height: 1;
    color: #252525;
    margin: 0;
    text-align: center;
    letter-spacing: -0.5px;
    max-width: 720px;
}

.p-love__howto-title span {
    display: block;
}

/* Grid — 3 cards with arrow connectors */
.p-love__howto-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 360px));
    gap: 24px;
    width: 100%;
    justify-content: center;
    align-items: stretch;
}

.p-love__howto-card {
    position: relative;
    border: 1px solid #f0b3ba;
    border-radius: 20px;
    padding: 20px 24px 24px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 380px;
}

.p-love__howto-card-media {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    margin-top: -60px;
}

.p-love__howto-card-media img {
    display: block;
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.p-love__howto-card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #252525;
    flex: 1 1 0;
}

.p-love__howto-card-name {
    font-weight: 600;
    font-size: 22px;
    line-height: 1;
    margin: 0;
}

.p-love__howto-card-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    margin: 0;
    flex: 1 1 0;
}

.p-love__howto-card-time {
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
    color: #252525;
    margin: 0;
}

/* Arrow connector between cards — dot inside card, head reaches next card */
.p-love__howto-arrow {
    position: absolute;
    right: -60px;
    bottom: 42px;
    width: 260px;
    height: 22px;
    z-index: 3;
    pointer-events: none;
    display: block;
    line-height: 0;
}

.p-love__howto-arrow svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* CTA — pink pill with ripple animation */
a.p-love__howto-cta,
a.p-love__howto-cta:link,
a.p-love__howto-cta:visited,
a.p-love__howto-cta:hover,
a.p-love__howto-cta:active {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    background: #ff3e9a;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 25px;
    line-height: 1.6;
    border-radius: 20px;
    text-decoration: none !important;
    overflow: hidden;
    z-index: 0;
    white-space: nowrap;
    isolation: isolate;
    text-align: center;
}

a.p-love__howto-cta::before {
    content: '';
    position: absolute;
    height: 350%;
    width: 200%;
    top: 0;
    left: -100%;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 100%;
    transform: scale(0);
    z-index: -1;
    pointer-events: none;
    animation: p-love-ripple 6s linear infinite;
}

a.p-love__howto-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #ee338c;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    z-index: -2;
    pointer-events: none;
    border-radius: inherit;
}

a.p-love__howto-cta:hover::after {
    opacity: 1;
}

/* Adaptive */
@media (max-width: 1100px) {
    .p-love__howto {
        padding: 50px 20px;
    }
    .p-love__howto-title {
        font-size: 32px;
    }
    .p-love__howto-grid {
        gap: 20px;
    }
    .p-love__howto-card {
        padding: 18px 20px 22px;
    }
    .p-love__howto-card-media {
        height: 180px;
    }
    .p-love__howto-arrow {
        right: -100px;
        width: 200px;
    }
}

@media (max-width: 768px) {
    .p-love__howto {
        padding: 40px 16px;
        margin-bottom: 40px;
    }
    .p-love__howto-wrap {
        gap: 40px;
    }
    .p-love__howto-title {
        font-size: 24px;
    }
    .p-love__howto-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        gap: 40px;
    }
    .p-love__howto-card {
        min-height: 0;
    }
    .p-love__howto-card-media {
        height: 200px;
        margin-top: -50px;
    }
    .p-love__howto-card-name {
        font-size: 20px;
    }
    .p-love__howto-card-text {
        font-size: 16px;
    }
    .p-love__howto-card-time {
        font-size: 16px;
    }
    .p-love__howto-arrow {
        display: none;
    }
    a.p-love__howto-cta,
    a.p-love__howto-cta:link,
    a.p-love__howto-cta:visited,
    a.p-love__howto-cta:hover,
    a.p-love__howto-cta:active {
        font-size: 18px;
        padding: 14px 24px;
    }
}

@media (max-width: 480px) {
    .p-love__howto-title {
        font-size: 22px;
    }
}

/* =========================================================
   Block 5 — Promo code LOVE2026 (10% off first delivery)
   ========================================================= */
.p-love__promo {
    width: 100%;
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

.p-love__promo-wrap {
    position: relative;
    background: #fff1ff;
    border-radius: 30px;
    padding: 40px 50px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 20px;
    height: 350px;
    overflow: visible;
}

/* Left: label + subtitle */
.p-love__promo-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    justify-content: center;
}

.p-love__promo-label {
    display: inline-flex;
    align-items: center;
    padding: 11px 22px;
    background: #ffc2f8;
    border-radius: 22px;
    color: #252525;
    font-weight: 500;
    font-size: 56px;
    line-height: 1;
    letter-spacing: 0.5px;
    box-shadow: inset -8px -4px 20px 0 #ff89c2;
}

.p-love__promo-sub {
    font-weight: 500;
    font-size: 36px;
    line-height: 1;
    color: #252525;
    margin: 0;
    max-width: 260px;
}

/* Center: sale composition — bottom flush with banner, top bleeds above */
.p-love__promo-sale {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 560px;
    height: auto;
    object-fit: contain;
    object-position: center bottom;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    display: block;
    max-width: none;
}

/* Right: note + coupon + expiry */
.p-love__promo-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    max-width: 320px;
    justify-self: end;
}

.p-love__promo-note {
    font-weight: 400;
    font-size: 22px;
    line-height: 1.3;
    color: #252525;
    margin: 0;
}

/* Ticket-shaped code container with notched edges */
.p-love__promo-ticket {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 44px;
    background: #ff3e9a;
    color: #ffffff;
    border-radius: 12px;
    overflow: visible;
}

/* Left and right circle "notches" like a real ticket */
.p-love__promo-ticket::before,
.p-love__promo-ticket::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: #fff1ff;
    border-radius: 50%;
}

.p-love__promo-ticket::before {
    left: -8px;
}

.p-love__promo-ticket::after {
    right: -8px;
}

.p-love__promo-code {
    font-weight: 600;
    font-size: 42px;
    line-height: 1;
    letter-spacing: -1px;
    color: #ffffff;
}

.p-love__promo-expiry {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3;
    color: #727272;
    margin: 0;
}

/* Adaptive */
@media (max-width: 1100px) {
    .p-love__promo-wrap {
        padding: 30px 30px;
        gap: 16px;
        height: 300px;
    }
    .p-love__promo-label {
        font-size: 44px;
        padding: 9px 18px;
    }
    .p-love__promo-sub {
        font-size: 28px;
        max-width: 220px;
    }
    .p-love__promo-sale {
        width: 440px;
        bottom: 0;
    }
    .p-love__promo-note {
        font-size: 18px;
    }
    .p-love__promo-code {
        font-size: 34px;
    }
    .p-love__promo-ticket {
        padding: 15px 32px;
    }
}

@media (max-width: 768px) {
    .p-love__promo {
        margin: 20px auto;
        padding: 0 8px;
    }
    .p-love__promo-wrap {
        grid-template-columns: 1fr;
        padding: 30px 24px 0;
        gap: 24px;
        height: auto;
        border-radius: 20px;
        overflow: hidden;
    }
    .p-love__promo-left,
    .p-love__promo-right {
        align-items: center;
        text-align: center;
        max-width: 100%;
        justify-self: center;
    }
    .p-love__promo-left {
        order: 1;
    }
    .p-love__promo-right {
        order: 2;
    }
    .p-love__promo-sale {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        width: 280px;
        margin: 24px auto 0;
        order: 3;
        display: block;
    }
    .p-love__promo-label {
        font-size: 36px;
        padding: 8px 16px;
    }
    .p-love__promo-sub {
        font-size: 22px;
        max-width: 100%;
    }
    .p-love__promo-note {
        font-size: 16px;
        text-align: center;
    }
    .p-love__promo-code {
        font-size: 28px;
    }
    .p-love__promo-ticket {
        padding: 14px 28px;
    }
}

@media (max-width: 480px) {
    .p-love__promo-label {
        font-size: 30px;
    }
    .p-love__promo-sub {
        font-size: 18px;
    }
    .p-love__promo-note {
        font-size: 15px;
    }
    .p-love__promo-code {
        font-size: 24px;
    }
}

/* =========================================================
   Block 6 — Reviews (Yandex rating + 3 cards + 2 CTAs)
   ========================================================= */
.p-love__reviews {
    width: 100%;
    max-width: 1400px;
    margin: 40px auto;
    padding: 60px 20px;
}

.p-love__reviews-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.p-love__reviews-title {
    font-weight: 500;
    font-size: 40px;
    line-height: 1;
    color: #252525;
    margin: 0;
    text-align: center;
    letter-spacing: -0.5px;
}

/* Yandex rating badge */
.p-love__reviews-ya,
.p-love__reviews-ya:link,
.p-love__reviews-ya:visited,
.p-love__reviews-ya:hover,
.p-love__reviews-ya:active {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    color: #252525 !important;
    transition: background 0.15s ease;
}

.p-love__reviews-ya:hover {
    background: #fff1ff;
}

.p-love__reviews-ya-stars {
    display: inline-flex;
    width: 130px;
    height: 26px;
    line-height: 0;
}

.p-love__reviews-ya-stars svg {
    display: block;
    width: 100%;
    height: 100%;
}

.p-love__reviews-ya-logo {
    display: block;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.p-love__reviews-ya-score {
    font-weight: 700;
    font-size: 35px;
    line-height: 1;
    color: #252525;
}

.p-love__reviews-ya-label {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #252525;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Reviews grid */
.p-love__reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 360px));
    gap: 23px;
    width: 100%;
    justify-content: center;
    align-items: stretch;
    margin-top: 10px;
}

.p-love__reviews-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border: 1px solid #f0b3ba;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0);
    min-height: 388px;
    color: #000000;
}

.p-love__reviews-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.p-love__reviews-name {
    font-weight: 800;
    font-size: 16px;
    line-height: 1.3;
    color: #000000;
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
    overflow-wrap: break-word;
}

.p-love__reviews-card-stars {
    display: inline-flex;
    width: 100px;
    height: 16px;
    flex-shrink: 0;
    line-height: 0;
}

.p-love__reviews-card-stars svg {
    display: block;
    width: 100%;
    height: 100%;
}

.p-love__reviews-date {
    font-weight: 800;
    font-size: 10px;
    line-height: 1.3;
    color: #000000;
    margin: 0;
    align-self: flex-end;
}

.p-love__reviews-text {
    font-weight: 400;
    font-size: 12px;
    line-height: 1.4;
    color: #000000;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.p-love__reviews-photo {
    flex: 1 1 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 17px 22px rgba(0, 0, 0, 0.05);
    min-height: 180px;
}

.p-love__reviews-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* CTAs */
.p-love__reviews-ctas {
    display: flex;
    gap: 11px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

a.p-love__reviews-cta,
a.p-love__reviews-cta:link,
a.p-love__reviews-cta:visited,
a.p-love__reviews-cta:hover,
a.p-love__reviews-cta:active {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.6;
    border-radius: 20px;
    text-decoration: none !important;
    overflow: hidden;
    z-index: 0;
    white-space: nowrap;
    isolation: isolate;
    transition: background 0.15s ease, color 0.15s ease;
}

.p-love__reviews-cta--filled,
.p-love__reviews-cta--filled:link,
.p-love__reviews-cta--filled:visited,
.p-love__reviews-cta--filled:hover,
.p-love__reviews-cta--filled:active {
    background: #ff3e9a;
    color: #ffffff !important;
    min-width: 308px;
}

.p-love__reviews-cta--filled::before {
    content: '';
    position: absolute;
    height: 350%;
    width: 200%;
    top: 0;
    left: -100%;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 100%;
    transform: scale(0);
    z-index: -1;
    pointer-events: none;
    animation: p-love-ripple 6s linear infinite;
}

.p-love__reviews-cta--filled::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #ee338c;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    z-index: -2;
    pointer-events: none;
    border-radius: inherit;
}

.p-love__reviews-cta--filled:hover::after {
    opacity: 1;
}

.p-love__reviews-cta--outline,
.p-love__reviews-cta--outline:link,
.p-love__reviews-cta--outline:visited,
.p-love__reviews-cta--outline:hover,
.p-love__reviews-cta--outline:active {
    background: transparent;
    color: #ff3e9a !important;
    border: 1px solid #ff3e9a;
}

.p-love__reviews-cta--outline:hover {
    background: #ff3e9a;
    color: #ffffff !important;
}

/* Adaptive */
@media (max-width: 1100px) {
    .p-love__reviews {
        padding: 50px 20px;
    }
    .p-love__reviews-title {
        font-size: 32px;
    }
    .p-love__reviews-grid {
        gap: 16px;
    }
    a.p-love__reviews-cta,
    a.p-love__reviews-cta:link,
    a.p-love__reviews-cta:visited,
    a.p-love__reviews-cta:hover,
    a.p-love__reviews-cta:active {
        font-size: 18px;
        padding: 13px 22px;
    }
    .p-love__reviews-cta--filled {
        min-width: 260px;
    }
}

@media (max-width: 768px) {
    .p-love__reviews {
        padding: 40px 16px;
    }
    .p-love__reviews-wrap {
        gap: 24px;
    }
    .p-love__reviews-title {
        font-size: 24px;
    }
    .p-love__reviews-ya {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    .p-love__reviews-ya-score {
        font-size: 28px;
    }
    .p-love__reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 400px;
    }
    .p-love__reviews-card {
        min-height: 0;
    }
    .p-love__reviews-ctas {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }
    a.p-love__reviews-cta,
    a.p-love__reviews-cta:link,
    a.p-love__reviews-cta:visited,
    a.p-love__reviews-cta:hover,
    a.p-love__reviews-cta:active {
        width: 100%;
    }
    .p-love__reviews-cta--filled {
        min-width: 0;
    }
}

/* =========================================================
   Block 7 — Telegram channel invite (dark pink banner)
   ========================================================= */
.p-love__tg {
    width: 100%;
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

.p-love__tg-wrap,
.p-love__tg-wrap:link,
.p-love__tg-wrap:visited,
.p-love__tg-wrap:hover,
.p-love__tg-wrap:active {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 347px;
    background: #ac2568;
    border-radius: 30px;
    overflow: hidden;
    text-decoration: none;
    color: #ffffff !important;
    transition: filter 0.2s ease;
}

.p-love__tg-wrap:hover {
    filter: brightness(1.05);
}

/* Cat image — grows above container, bottom-right pinned */
img.p-love__tg-cat {
    position: absolute;
    right: 0;
    bottom: 0;
    top: auto;
    height: 150%;
    width: auto;
    max-width: 65%;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    display: block;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 100%);
}

/* Text content on left — vertically centered */
.p-love__tg-content {
    position: relative;
    z-index: 1;
    padding: 0 0 0 112px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
    max-width: 780px;
}

.p-love__tg-text {
    font-weight: 600;
    font-size: 40px;
    line-height: 1;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.3px;
}

.p-love__tg-text span {
    display: block;
}

/* White pill with Telegram icon + @handle */
.p-love__tg-pill {
    display: inline-flex;
    align-items: center;
    gap: 21px;
    padding: 15px 20px;
    background: #ffffff;
    border-radius: 20px;
}

.p-love__tg-pill-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 30px;
    line-height: 0;
    flex-shrink: 0;
}

.p-love__tg-pill-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.p-love__tg-pill-handle {
    font-weight: 600;
    font-size: 44px;
    line-height: 1;
    color: #ff3e9a;
    letter-spacing: -0.5px;
}

/* "Подписывайтесь" glass badge floating on cat image (covers phone screen text) */
.p-love__tg-sub {
    position: absolute;
    left: 78%;
    top: 62%;
    transform: translate(-50%, -50%);
    z-index: 2;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 16px;
    box-shadow: 0 6px 39px rgba(0, 0, 0, 0.25);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    color: #ffffff;
    white-space: nowrap;
    pointer-events: none;
}

/* Adaptive */
@media (max-width: 1100px) {
    .p-love__tg-wrap {
        height: 280px;
    }
    .p-love__tg-content {
        padding: 0 0 0 60px;
        gap: 24px;
    }
    .p-love__tg-text {
        font-size: 30px;
    }
    .p-love__tg-pill-handle {
        font-size: 34px;
    }
    .p-love__tg-cat {
        width: 500px;
    }
    .p-love__tg-sub {
        font-size: 16px;
        padding: 12px 18px;
    }
}

@media (max-width: 768px) {
    .p-love__tg {
        padding: 0 8px;
    }
    .p-love__tg-wrap,
    .p-love__tg-wrap:link,
    .p-love__tg-wrap:visited,
    .p-love__tg-wrap:hover,
    .p-love__tg-wrap:active {
        height: auto !important;
        min-height: 0 !important;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
    }
    .p-love__tg-content {
        order: 1;
        padding: 40px 24px;
        gap: 24px;
        max-width: 100%;
        align-items: center;
        text-align: center;
    }
    .p-love__tg-text {
        font-size: 22px;
        line-height: 1.15;
        text-align: center;
    }
    .p-love__tg-pill {
        padding: 10px 14px;
        gap: 12px;
        align-self: center;
    }
    .p-love__tg-pill-icon {
        width: 24px;
        height: 20px;
    }
    .p-love__tg-pill-handle {
        font-size: 22px;
    }
    img.p-love__tg-cat {
        display: none;
    }
    .p-love__tg-sub {
        display: none;
    }
}