div.p-bf {
    --bf-pink: #ff006d;
    --bf-yellow: #ffc200;
    --bf-black: #000000;
    font-family: 'Futura PT', 'Montserrat', system-ui, sans-serif;
    color: #fff;
}

.p-bf * { box-sizing: border-box; }

/* ============ Block 1 — Hero ============ */
.p-bf__hero {
    padding: 30px 0;
    background: #fff;
}
.p-bf__hero-card {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 643px;
    background: var(--bf-black);
    border-radius: 60px;
    overflow: hidden;
}
.p-bf__hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
}
.p-bf__hero-inner {
    position: relative;
    z-index: 1;
    padding: 76px 60px;
    min-height: 643px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}
.p-bf__hero-text {
    flex: 0 0 auto;
    max-width: 620px;
    color: #fff;
}
.p-bf__hero-date {
    position: relative;
    display: inline-block;
    margin: 0 0 -8px 0;
    padding: 38px 80px 38px 64px;
    background-image: url('/p/black-friday-2025/asset/assets/img/hero-date.webp');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
}
.p-bf__hero-date-text {
    position: relative;
    z-index: 1;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 1;
    color: #fff;
    white-space: nowrap;
}
.p-bf__hero-title {
    position: relative;
    z-index: 1;
    margin: 0;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 65px;
    line-height: 0.95;
    text-transform: uppercase;
    color: #fff;
    max-width: 580px;
}
.p-bf__hero-subtitle {
    margin: 30px 0 0;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 45px;
    line-height: 1;
    color: #fff;
    max-width: 510px;
}
.p-bf__hero-lead {
    margin: 24px 0 0;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    color: #fff;
    max-width: 510px;
}
.p-bf__hero-cta,
.p-bf__hero-cta:link,
.p-bf__hero-cta:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
    padding: 20px 60px;
    background: var(--bf-yellow);
    color: var(--bf-black) !important;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    text-decoration: none !important;
    border-radius: 20px;
    border: none;
    transition: filter .15s ease, transform .15s ease;
}
.p-bf__hero-cta:hover,
.p-bf__hero-cta:active {
    filter: brightness(0.95);
    transform: translateY(-1px);
    color: var(--bf-black) !important;
}

.p-bf__hero-boxes {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 56%;
    max-width: 820px;
    height: auto;
    pointer-events: none;
    z-index: 2;
}


@media (max-width: 1100px) {
    .p-bf__hero { padding: 20px 0; }
    .p-bf__hero-card { min-height: 540px; border-radius: 40px; }
    .p-bf__hero-inner { padding: 48px 40px; gap: 20px; }
    .p-bf__hero-text { max-width: 50%; }
    .p-bf__hero-date { padding: 30px 60px 30px 50px; }
    .p-bf__hero-date-text { font-size: 22px; }
    .p-bf__hero-title { font-size: 44px; margin-top: 22px; }
    .p-bf__hero-subtitle { font-size: 28px; margin-top: 18px; }
    .p-bf__hero-lead { font-size: 16px; margin-top: 16px; }
    .p-bf__hero-cta { font-size: 18px; padding: 16px 40px; }
    .p-bf__hero-boxes { width: 55%; max-width: 540px; right: 0; bottom: 0; }
}

@media (max-width: 720px) {
    .p-bf__hero { padding: 12px; }
    .p-bf__hero-card { min-height: 720px; border-radius: 28px; }
    .p-bf__hero-inner {
        padding: 32px 24px 280px;
        flex-direction: column;
        gap: 24px;
        min-height: 720px;
        align-items: stretch;
    }
    .p-bf__hero-text { max-width: 100%; }
    .p-bf__hero-date { padding: 26px 50px 26px 44px; }
    .p-bf__hero-date-text { font-size: 20px; }
    .p-bf__hero-title { font-size: 36px; margin-top: 20px; }
    .p-bf__hero-subtitle { font-size: 24px; margin-top: 16px; }
    .p-bf__hero-lead { font-size: 15px; }
    .p-bf__hero-cta { width: 100%; font-size: 18px; padding: 16px 24px; }
    .p-bf__hero-boxes {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 80%;
        max-width: 340px;
        margin: 0;
    }
}

/* ============ Block 2 — Regions ============ */
.p-bf__regions {
    padding: 30px 0 60px;
    background: #fff;
}
.p-bf__regions-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}
.p-bf__regions-btn { flex: 0 0 370px; max-width: 370px; }
.p-bf__regions-btn,
.p-bf__regions-btn:link,
.p-bf__regions-btn:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    padding: 8px 24px;
    background: transparent;
    color: var(--bf-black) !important;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.3;
    text-align: center;
    text-decoration: none !important;
    border: 2px solid var(--bf-yellow);
    border-radius: 999px;
    transition: background .15s ease, color .15s ease;
}
.p-bf__regions-btn:hover,
.p-bf__regions-btn:active {
    background: var(--bf-yellow);
    color: var(--bf-black) !important;
}

@media (max-width: 1100px) {
    .p-bf__regions { padding: 24px 0 40px; }
    .p-bf__regions-inner {
        padding: 0 20px;
        gap: 16px;
        grid-template-columns: 1fr 1fr;
    }
    .p-bf__regions-btn { height: 56px; font-size: 16px; padding: 8px 20px; }
}

@media (max-width: 720px) {
    .p-bf__regions { padding: 16px 0 30px; }
    .p-bf__regions-inner {
        grid-template-columns: 1fr;
        padding: 0 16px;
        gap: 12px;
    }
    .p-bf__regions-btn { height: 52px; font-size: 16px; padding: 8px 20px; border-width: 2px; }
}

/* ============ Block 3 — Countdown timer ============ */
.p-bf__timer {
    padding: 20px 0 60px;
    background: #fff;
}
.p-bf__timer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}
.p-bf__timer-title {
    margin: 0 0 28px;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 1.1;
    color: var(--bf-black);
}
.p-bf__timer-grid {
    display: inline-flex;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: nowrap;
}
.p-bf__timer-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 162px;
}
.p-bf__timer-tiles {
    display: flex;
    gap: 2px;
    width: 100%;
    justify-content: center;
}
.p-bf__timer-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    padding: 20px 15px;
    background: linear-gradient(180deg, #eb0f7f 0%, #000 40.13%, #000 67.43%, #eb0f7f 100%);
    border-radius: 10px;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 105px;
    line-height: 0.8;
    color: #fff;
    text-transform: uppercase;
    font-variant-numeric: tabular-nums;
    text-align: center;
}
.p-bf__timer-lbl {
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.1;
    color: var(--bf-black);
    text-align: center;
}

@media (max-width: 1100px) {
    .p-bf__timer { padding: 16px 0 40px; }
    .p-bf__timer-title { font-size: 38px; margin-bottom: 22px; }
    .p-bf__timer-grid { gap: 16px; }
    .p-bf__timer-group { width: 130px; }
    .p-bf__timer-tile { width: 64px; padding: 16px 10px; font-size: 80px; }
    .p-bf__timer-lbl { font-size: 18px; }
}

@media (max-width: 720px) {
    .p-bf__timer { padding: 8px 16px 32px; }
    .p-bf__timer-inner { padding: 0; }
    .p-bf__timer-title { font-size: 26px; margin-bottom: 16px; }
    .p-bf__timer-grid {
        gap: 8px;
        width: 100%;
        justify-content: center;
    }
    .p-bf__timer-group { width: auto; flex: 1 1 0; min-width: 0; }
    .p-bf__timer-tile {
        width: auto;
        flex: 1 1 0;
        min-width: 0;
        padding: 12px 6px;
        font-size: 44px;
        border-radius: 8px;
    }
    .p-bf__timer-tiles { gap: 2px; }
    .p-bf__timer-lbl { font-size: 13px; }
}

/* ============ Block 4 — Start banner (Figma 5:1491) ============ */
.p-bf__start {
    padding: 40px 0 60px;
    background: #fff;
}
.p-bf__start-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 580px 1fr;
    gap: 80px;
    align-items: center;
}
.p-bf__start-art {
    width: 100%;
    aspect-ratio: 580 / 373;
    border-radius: 40px;
    overflow: hidden;
}
.p-bf__start-art img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.p-bf__start-title {
    margin: 0;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.3;
    color: var(--bf-black);
    max-width: 380px;
}
.p-bf__start-lead {
    margin: 18px 0 0;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    color: var(--bf-black);
}
.p-bf__start-cta,
.p-bf__start-cta:link,
.p-bf__start-cta:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    padding: 18px 40px;
    background: var(--bf-yellow);
    color: var(--bf-black) !important;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    text-decoration: none !important;
    border-radius: 20px;
    transition: filter .15s ease, transform .15s ease;
}
.p-bf__start-cta:hover,
.p-bf__start-cta:active {
    filter: brightness(0.95);
    transform: translateY(-1px);
    color: var(--bf-black) !important;
}

@media (max-width: 1100px) {
    .p-bf__start { padding: 30px 0 50px; }
    .p-bf__start-inner { grid-template-columns: 1fr 1fr; gap: 40px; padding: 0 20px; }
    .p-bf__start-art { border-radius: 28px; }
    .p-bf__start-title { font-size: 26px; max-width: 100%; }
    .p-bf__start-lead { font-size: 17px; }
    .p-bf__start-cta { font-size: 18px; padding: 16px 30px; }
}

@media (max-width: 720px) {
    .p-bf__start { padding: 20px 0 40px; }
    .p-bf__start-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
    }
    .p-bf__start-art { border-radius: 20px; }
    .p-bf__start-title { font-size: 22px; }
    .p-bf__start-lead { font-size: 15px; margin-top: 14px; }
    .p-bf__start-cta { width: 100%; font-size: 17px; padding: 16px 24px; margin-top: 22px; }
}

/* ============ Block 5 — Cyber Monday (Figma 5:1540) ============ */
.p-bf__cyber {
    padding: 40px 0 60px;
    background: #fff;
}
.p-bf__cyber-card {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 417px;
    border-radius: 60px;
    overflow: hidden;
    background: #000;
}
.p-bf__cyber-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
}
.p-bf__cyber-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,1) 45%, rgba(0,0,0,0) 76%);
    mix-blend-mode: darken;
    pointer-events: none;
    z-index: 1;
}
.p-bf__cyber-inner {
    position: relative;
    z-index: 3;
    padding: 80px 100px;
    min-height: 417px;
    display: flex;
    align-items: center;
    max-width: 980px;
}
.p-bf__cyber-text {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 720px;
}
.p-bf__cyber-date {
    display: inline-flex;
    align-self: flex-start;
    background: #fff;
    color: var(--bf-pink);
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 35px;
    line-height: 0.9;
    text-transform: uppercase;
    padding: 18px 24px;
    border-radius: 20px;
}
.p-bf__cyber-title {
    margin: 0;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 45px;
    line-height: 1;
    color: #fff;
    max-width: 720px;
}
.p-bf__cyber-lead {
    margin: 6px 0 0;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    color: #fff;
    max-width: 420px;
}
.p-bf__cyber-bunny {
    position: absolute;
    bottom: -8%;
    right: 0;
    width: 38%;
    max-width: 540px;
    height: auto;
    z-index: 2;
    pointer-events: none;
}

@media (max-width: 1100px) {
    .p-bf__cyber { padding: 24px 0 50px; }
    .p-bf__cyber-card { min-height: 360px; border-radius: 40px; }
    .p-bf__cyber-inner { padding: 50px 60px; min-height: 360px; }
    .p-bf__cyber-date { font-size: 24px; padding: 14px 18px; }
    .p-bf__cyber-title { font-size: 30px; }
    .p-bf__cyber-lead { font-size: 16px; }
    .p-bf__cyber-bunny { width: 38%; max-width: 420px; }
}

@media (max-width: 720px) {
    .p-bf__cyber { padding: 16px 12px 40px; }
    .p-bf__cyber-card { min-height: 0; border-radius: 28px; }
    .p-bf__cyber-card::after {
        background: linear-gradient(180deg, rgba(0,0,0,0.6) 35%, rgba(0,0,0,1) 100%);
        mix-blend-mode: normal;
    }
    .p-bf__cyber-inner {
        padding: 28px 24px 220px;
        min-height: 0;
        max-width: 100%;
    }
    .p-bf__cyber-text { gap: 12px; max-width: 100%; }
    .p-bf__cyber-date { font-size: 18px; padding: 12px 16px; border-radius: 14px; }
    .p-bf__cyber-title { font-size: 22px; line-height: 1.1; }
    .p-bf__cyber-lead { font-size: 14px; }
    .p-bf__cyber-bunny {
        bottom: -10px;
        right: 50%;
        transform: translateX(50%);
        width: 60%;
        max-width: 220px;
    }
}

/* ============ Block 6 — Shopping examples (Figma 7:1631) ============ */
.p-bf__shop {
    padding: 40px 0 60px;
    background: #fff;
}
.p-bf__shop-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}
.p-bf__shop-head {
    display: grid;
    grid-template-columns: 580px 1fr;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 50px;
}
.p-bf__shop-title {
    margin: 0;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 1.1;
    color: var(--bf-black);
}
.p-bf__shop-title-accent { color: var(--bf-pink); }
.p-bf__shop-lead {
    margin: 8px 0 0;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    color: var(--bf-black);
    max-width: 480px;
}
.p-bf__shop-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px;
    align-items: stretch;
}
.p-bf__shop-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}
.p-bf__shop-card .p-bf__shop-btn { margin-top: auto; }
.p-bf__shop-image {
    width: 100%;
    height: 321px;
    border-radius: 20px;
    background: #f5f5f5;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.p-bf__shop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.p-bf__shop-name {
    margin: 0;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    color: var(--bf-black);
}
.p-bf__shop-price {
    margin: -8px 0 0;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.2;
    color: var(--bf-pink);
}
.p-bf__shop-btn,
.p-bf__shop-btn:link,
.p-bf__shop-btn:visited {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    background: transparent;
    color: var(--bf-black) !important;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.3;
    text-decoration: none !important;
    border: 2px solid var(--bf-black);
    border-radius: 999px;
    transition: background .15s ease, color .15s ease;
}
.p-bf__shop-btn:hover,
.p-bf__shop-btn:active {
    background: var(--bf-black);
    color: #fff !important;
}

.p-bf__shop-all-wrap {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}
.p-bf__shop-all,
.p-bf__shop-all:link,
.p-bf__shop-all:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 12px 60px;
    background: var(--bf-yellow);
    color: var(--bf-black) !important;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    text-decoration: none !important;
    border-radius: 20px;
    transition: filter .15s ease, transform .15s ease;
}
.p-bf__shop-all:hover,
.p-bf__shop-all:active {
    filter: brightness(0.95);
    transform: translateY(-1px);
    color: var(--bf-black) !important;
}

@media (max-width: 1100px) {
    .p-bf__shop { padding: 30px 0 50px; }
    .p-bf__shop-head { grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px; }
    .p-bf__shop-title { font-size: 36px; }
    .p-bf__shop-lead { font-size: 17px; }
    .p-bf__shop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
    .p-bf__shop-image { height: 280px; }
    .p-bf__shop-btn { font-size: 14px; padding: 10px 18px; }
    .p-bf__shop-all { font-size: 18px; padding: 12px 40px; height: 56px; }
    .p-bf__shop-all-wrap { margin-top: 36px; }
}

@media (max-width: 720px) {
    .p-bf__shop { padding: 20px 0 40px; }
    .p-bf__shop-inner { padding: 0 16px; }
    .p-bf__shop-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 24px; }
    .p-bf__shop-title { font-size: 28px; }
    .p-bf__shop-lead { font-size: 15px; }
    .p-bf__shop-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .p-bf__shop-image { height: 200px; border-radius: 16px; }
    .p-bf__shop-card { gap: 12px; }
    .p-bf__shop-name { font-size: 16px; }
    .p-bf__shop-price { font-size: 22px; margin-top: -6px; }
    .p-bf__shop-btn { font-size: 13px; padding: 9px 14px; }
    .p-bf__shop-all { width: 100%; font-size: 16px; padding: 12px 24px; height: 52px; }
    .p-bf__shop-all-wrap { margin-top: 24px; }
}

@media (max-width: 420px) {
    .p-bf__shop-grid { grid-template-columns: 1fr; }
    .p-bf__shop-image { height: 240px; }
}

/* ============ Block 7 — Bot helper (Figma 7:1701) ============ */
.p-bf__bot {
    padding: 40px 0 60px;
    background: #fff;
}
.p-bf__bot-card {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    height: 340px;
    border-radius: 60px;
    overflow: hidden;
    background: #f7f7f7;
}
.p-bf__bot-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
}
.p-bf__bot-art {
    position: absolute;
    left: 6%;
    bottom: 0;
    width: 30%;
    max-width: 420px;
    height: auto;
    pointer-events: none;
    z-index: 2;
}
.p-bf__bot-text {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 48%;
    transform: translateY(-50%);
    width: 458px;
    max-width: 46%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
}
.p-bf__bot-title {
    margin: 0;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 38px;
    line-height: 1;
    color: var(--bf-black);
}
.p-bf__bot-lead {
    margin: 0;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.1;
    color: var(--bf-black);
}
.p-bf__bot-cta,
.p-bf__bot-cta:link,
.p-bf__bot-cta:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 50px;
    background: var(--bf-yellow);
    color: var(--bf-black) !important;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    text-decoration: none !important;
    border-radius: 20px;
    transition: filter .15s ease, transform .15s ease;
}
.p-bf__bot-cta:hover,
.p-bf__bot-cta:active {
    filter: brightness(0.95);
    transform: translateY(-1px);
    color: var(--bf-black) !important;
}

@media (max-width: 1100px) {
    .p-bf__bot { padding: 30px 0 50px; }
    .p-bf__bot-card { height: 280px; border-radius: 40px; }
    .p-bf__bot-art { width: 30%; max-width: 320px; }
    .p-bf__bot-text { left: 44%; width: auto; max-width: 50%; gap: 14px; }
    .p-bf__bot-title { font-size: 28px; }
    .p-bf__bot-lead { font-size: 15px; }
    .p-bf__bot-cta { font-size: 17px; padding: 12px 32px; }
}

@media (max-width: 720px) {
    .p-bf__bot { padding: 20px 12px 40px; }
    .p-bf__bot-card {
        height: auto;
        min-height: 600px;
        border-radius: 28px;
        display: flex;
        flex-direction: column;
    }
    .p-bf__bot-text {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 0;
        padding: 32px 24px 0;
        width: 100%;
        max-width: 100%;
        text-align: center;
        align-items: center;
        order: 1;
    }
    .p-bf__bot-art {
        position: relative;
        display: block;
        left: auto;
        bottom: auto;
        width: 80%;
        max-width: 320px;
        margin: auto auto 0;
        order: 2;
    }
    .p-bf__bot-title { font-size: 26px; }
    .p-bf__bot-lead { font-size: 15px; line-height: 1.4; }
    .p-bf__bot-cta { width: 100%; font-size: 17px; padding: 16px 24px; }
}

/* ============ Block 7 — Promo code (Figma 7:1818) ============ */
.p-bf__promo {
    padding: 40px 0 30px;
    background: #fff;
}
.p-bf__promo-card {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}
.p-bf__promo-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 60px;
    overflow: hidden;
}
.p-bf__sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 1100px) {
    .p-bf__promo { padding: 24px 0; }
    .p-bf__promo-img { border-radius: 40px; }
}

.p-bf__promo-mobile { display: none; }

@media (max-width: 720px) {
    .p-bf__promo { padding: 16px 12px; }
    .p-bf__promo-img { display: none; }
    .p-bf__promo-mobile { display: block; }
    .p-bf__promo-mobile-card {
        position: relative;
        background: var(--bf-black);
        border-radius: 28px;
        padding: 32px 24px 28px;
        overflow: hidden;
        color: #fff;
        text-align: center;
    }
    .p-bf__promo-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 16px;
        padding: 14px 22px;
        background: var(--bf-pink);
        color: #fff;
        font-family: 'Futura PT', 'Montserrat', sans-serif;
        font-weight: 800;
        font-size: 30px;
        line-height: 1;
        border-radius: 999px;
        transform: rotate(-6deg);
    }
    .p-bf__promo-mobile-title {
        margin: 0 0 14px;
        font-family: 'Futura PT', 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 26px;
        line-height: 1;
        color: #fff;
    }
    .p-bf__promo-mobile-lead {
        margin: 0 0 22px;
        font-family: 'Futura PT', 'Montserrat', sans-serif;
        font-weight: 500;
        font-size: 15px;
        line-height: 1.35;
        color: #fff;
    }
    .p-bf__promo-mobile-code {
        background: var(--bf-pink);
        border-radius: 16px;
        padding: 18px 16px 22px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }
    .p-bf__promo-mobile-code-label {
        display: inline-block;
        background: var(--bf-black);
        color: #fff;
        font-family: 'Futura PT', 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 16px;
        line-height: 1;
        padding: 8px 12px;
    }
    .p-bf__promo-mobile-code-value {
        font-family: 'Futura PT', 'Montserrat', sans-serif;
        font-weight: 800;
        font-size: 32px;
        line-height: 1;
        color: #fff;
        letter-spacing: 1px;
    }
}

/* ============ Block 9 — How to order (Figma 9:1928) ============ */
.p-bf__how {
    padding: 50px 0 70px;
    background: #fff;
}
.p-bf__how-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}
.p-bf__how-title {
    margin: 0 0 50px;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 1.1;
    color: var(--bf-black);
    text-align: center;
}
.p-bf__how-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px;
    align-items: start;
}
.p-bf__how-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
.p-bf__how-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    background: var(--bf-black);
    color: #fff;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 30px;
    line-height: 0.9;
    border-radius: 14px;
}
.p-bf__how-text {
    margin: 0;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    color: var(--bf-black);
}
.p-bf__how-text b {
    font-weight: 700;
}

@media (max-width: 1100px) {
    .p-bf__how { padding: 40px 0 50px; }
    .p-bf__how-title { font-size: 36px; margin-bottom: 36px; }
    .p-bf__how-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 24px; }
    .p-bf__how-num { font-size: 26px; padding: 12px 18px; }
    .p-bf__how-text { font-size: 16px; }
}

@media (max-width: 720px) {
    .p-bf__how { padding: 28px 0 40px; }
    .p-bf__how-inner { padding: 0 20px; }
    .p-bf__how-title { font-size: 26px; margin-bottom: 28px; line-height: 1.2; }
    .p-bf__how-grid { grid-template-columns: 1fr; gap: 24px; }
    .p-bf__how-item { gap: 14px; }
    .p-bf__how-num { font-size: 22px; padding: 10px 16px; border-radius: 12px; }
    .p-bf__how-text { font-size: 15px; }
}

/* ============ Block 10 — Cards: foreign / ru bank (Figma 9:2016) ============ */
.p-bf__cards {
    padding: 30px 0 50px;
    background: #fff;
}
.p-bf__cards-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}
.p-bf__cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.p-bf__cards-card {
    position: relative;
    aspect-ratio: 580 / 556;
    border-radius: 50px;
    overflow: hidden;
}
.p-bf__cards-card--foreign { background: #f7f7f7; }
.p-bf__cards-card--ru { background: var(--bf-black); }
.p-bf__cards-text {
    position: relative;
    z-index: 2;
    padding: 60px;
    max-width: 470px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.p-bf__cards-title {
    margin: 0;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 38px;
    line-height: 1;
}
.p-bf__cards-card--foreign .p-bf__cards-title { color: var(--bf-black); }
.p-bf__cards-card--ru .p-bf__cards-title { color: #fff; }
.p-bf__cards-lead {
    margin: 0;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
}
.p-bf__cards-card--foreign .p-bf__cards-lead { color: var(--bf-black); }
.p-bf__cards-card--ru .p-bf__cards-lead { color: #fff; }
.p-bf__cards-img {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}
.p-bf__cards-img--fox {
    width: 63%;
    height: auto;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.p-bf__cards-splat {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    width: 100%;
    height: auto;
    left: 0;
    bottom: 0;
}
.p-bf__cards-img--bank {
    width: 100%;
    height: auto;
    left: 0;
    bottom: 0;
}

@media (max-width: 1100px) {
    .p-bf__cards { padding: 20px 0 40px; }
    .p-bf__cards-inner { padding: 0 20px; }
    .p-bf__cards-grid { gap: 20px; }
    .p-bf__cards-card { border-radius: 32px; }
    .p-bf__cards-text { padding: 36px; }
    .p-bf__cards-title { font-size: 26px; }
    .p-bf__cards-lead { font-size: 15px; }
}

@media (max-width: 720px) {
    .p-bf__cards { padding: 16px 12px 30px; }
    .p-bf__cards-inner { padding: 0; }
    .p-bf__cards-grid { grid-template-columns: 1fr; gap: 16px; }
    .p-bf__cards-card { aspect-ratio: 1 / 1; border-radius: 28px; }
    .p-bf__cards-text { padding: 28px 24px; max-width: 100%; gap: 12px; }
    .p-bf__cards-title { font-size: 24px; }
    .p-bf__cards-lead { font-size: 15px; line-height: 1.3; }
    .p-bf__cards-img--fox { width: 70%; left: 50%; bottom: 0; transform: translateX(-50%); }
    .p-bf__cards-img--bank { width: 100%; left: 0; bottom: 0; }
}

/* ============ Block 11 — Where to buy / shops tabs (Figma 9:2049) ============ */
.p-bf__shops {
    padding: 40px 0 60px;
    background: #fff;
}
.p-bf__shops-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}
.p-bf__shops-title {
    margin: 0 0 40px;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 1.1;
    color: var(--bf-black);
    text-align: center;
}
.p-bf__shops-tabs {
    display: flex;
    width: 100%;
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
}
.p-bf__shops-tab {
    flex: 1;
    height: 60px;
    padding: 10px;
    background: #fff;
    color: var(--bf-black);
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
    border: 2px solid var(--bf-black);
    border-left-width: 0;
    cursor: pointer;
    text-align: center;
    transition: background .15s ease, color .15s ease;
}
.p-bf__shops-tab:first-child {
    border-left-width: 2px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.p-bf__shops-tab:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.p-bf__shops-tab:hover {
    background: #f5f5f5;
}
.p-bf__shops-tab--active {
    background: var(--bf-black) !important;
    color: #fff !important;
    font-weight: 700;
}
.p-bf__shops-panel {
    display: none;
}
.p-bf__shops-panel--active {
    display: block;
}
.p-bf__shops-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px;
}
.p-bf__shops-card,
.p-bf__shops-card:link,
.p-bf__shops-card:visited {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 130px;
    padding: 16px;
    background-color: #e8e8e8;
    background-image: url('/p/black-friday-2025/asset/assets/img/shop-card-bg.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    border-radius: 30px;
    color: var(--bf-black) !important;
    text-decoration: none !important;
    text-align: center;
    transition: transform .15s ease, filter .15s ease;
}
.p-bf__shops-card:hover {
    transform: translateY(-2px);
    filter: brightness(0.97);
}
.p-bf__shops-card-name {
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 1;
    color: var(--bf-black);
}
.p-bf__shops-all-wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.p-bf__shops-all,
.p-bf__shops-all:link,
.p-bf__shops-all:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 60px;
    background: var(--bf-yellow);
    color: var(--bf-black) !important;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    text-decoration: none !important;
    border-radius: 20px;
    transition: filter .15s ease, transform .15s ease;
}
.p-bf__shops-all:hover { filter: brightness(0.95); transform: translateY(-1px); }

@media (max-width: 1100px) {
    .p-bf__shops { padding: 30px 0 50px; }
    .p-bf__shops-inner { padding: 0 20px; }
    .p-bf__shops-title { font-size: 36px; margin-bottom: 28px; }
    .p-bf__shops-tabs { margin-bottom: 28px; }
    .p-bf__shops-tab { font-size: 14px; height: 56px; padding: 8px; }
    .p-bf__shops-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
    .p-bf__shops-card { height: 110px; }
    .p-bf__shops-card-name { font-size: 22px; }
}

@media (max-width: 720px) {
    .p-bf__shops { padding: 24px 0 40px; }
    .p-bf__shops-inner { padding: 0 16px; }
    .p-bf__shops-title { font-size: 26px; margin-bottom: 22px; line-height: 1.2; }
    .p-bf__shops-tabs {
        flex-direction: column;
        border-radius: 14px;
        border: 2px solid var(--bf-black);
        overflow: hidden;
        margin-bottom: 24px;
    }
    .p-bf__shops-tab {
        flex: none;
        width: 100%;
        height: 48px;
        border: none;
        border-bottom: 1px solid var(--bf-black);
        border-radius: 0;
        font-size: 14px;
    }
    .p-bf__shops-tab:first-child,
    .p-bf__shops-tab:last-child { border-radius: 0; }
    .p-bf__shops-tab:last-child { border-bottom: none; }
    .p-bf__shops-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .p-bf__shops-card { height: 90px; border-radius: 20px; }
    .p-bf__shops-card-name { font-size: 18px; }
    .p-bf__shops-all-wrap { margin-top: 24px; }
    .p-bf__shops-all { width: 100%; padding: 14px 24px; font-size: 17px; }
}

.p-bf__shops-logo {
    max-width: 80%;
    max-height: 70%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
@media (max-width: 720px) {
    .p-bf__shops-logo { max-width: 75%; max-height: 65%; }
}

/* ============ Block 12 — Promo FRIDAY2025 (Figma 28:2) ============ */
.p-bf__promo2 {
    padding: 60px 0 80px;
    background: #fff;
}
.p-bf__promo2-card {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 424px;
    border-radius: 60px;
    overflow: hidden;
}
.p-bf__promo2-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
}
.p-bf__promo2-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 60px 60px 100px;
    gap: 40px;
    min-height: 424px;
}
.p-bf__promo2-text {
    flex: 0 0 599px;
    max-width: 599px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
}
.p-bf__promo2-title {
    margin: 0;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1;
    color: var(--bf-black);
}
.p-bf__promo2-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.p-bf__promo2-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    color: var(--bf-black);
}
.p-bf__promo2-star {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: var(--bf-pink);
    font-size: 18px;
    line-height: 1;
}
.p-bf__promo2-cta,
.p-bf__promo2-cta:link,
.p-bf__promo2-cta:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 50px;
    background: var(--bf-pink);
    color: #fff !important;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    text-decoration: none !important;
    border-radius: 20px;
    transition: filter .15s ease, transform .15s ease;
}
.p-bf__promo2-cta:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
    color: #fff !important;
}
.p-bf__promo2-ticket {
    position: relative;
    flex: 0 0 560px;
    max-width: 560px;
    aspect-ratio: 560 / 263;
}
.p-bf__promo2-ticket-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    z-index: 0;
}
.p-bf__promo2-ticket-inner {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 12%;
    gap: 8px;
}
.p-bf__promo2-ticket-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    background: #fff;
    color: var(--bf-black);
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 0.9;
}
.p-bf__promo2-ticket-code {
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 62px;
    line-height: 0.9;
    color: #fff;
    letter-spacing: 1px;
}

@media (max-width: 1100px) {
    .p-bf__promo2 { padding: 20px 0 50px; }
    .p-bf__promo2-card { min-height: 340px; border-radius: 40px; }
    .p-bf__promo2-inner { padding: 40px; gap: 24px; min-height: 340px; }
    .p-bf__promo2-text { flex: 1 1 auto; max-width: 100%; gap: 20px; }
    .p-bf__promo2-title { font-size: 28px; }
    .p-bf__promo2-item { font-size: 15px; }
    .p-bf__promo2-cta { font-size: 17px; padding: 14px 36px; }
    .p-bf__promo2-ticket { flex: 0 0 40%; max-width: 42%; }
    .p-bf__promo2-ticket-label { font-size: 16px; padding: 8px 10px; }
    .p-bf__promo2-ticket-code { font-size: 40px; }
}

@media (max-width: 720px) {
    .p-bf__promo2 { padding: 16px 12px 30px; }
    .p-bf__promo2-card { min-height: 0; border-radius: 28px; }
    .p-bf__promo2-inner {
        padding: 28px 24px;
        flex-direction: column;
        gap: 24px;
        min-height: 0;
        align-items: stretch;
    }
    .p-bf__promo2-text { flex: 1 1 auto; max-width: 100%; gap: 16px; align-items: stretch; }
    .p-bf__promo2-title { font-size: 22px; text-align: center; }
    .p-bf__promo2-list { gap: 8px; }
    .p-bf__promo2-item { font-size: 14px; line-height: 1.3; }
    .p-bf__promo2-cta { width: 100%; font-size: 17px; padding: 16px 24px; }
    .p-bf__promo2-ticket { flex: 1 1 auto; max-width: 100%; width: 100%; aspect-ratio: 560 / 263; }
    .p-bf__promo2-ticket-inner {
        padding: 0 12%;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    .p-bf__promo2-ticket-label {
        font-size: 20px;
        padding: 10px 14px;
        max-width: 100%;
    }
    .p-bf__promo2-ticket-code {
        font-size: 52px;
        letter-spacing: 1px;
    }
}

/* ============ Block 13 — Size helper (Figma 31:197) ============ */
.p-bf__size {
    padding: 60px 0;
    background: #fff;
}
.p-bf__size-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.p-bf__size-art {
    display: flex;
    align-items: center;
    justify-content: center;
}
.p-bf__size-art img {
    max-width: 100%;
    width: 620px;
    height: auto;
    display: block;
}
.p-bf__size-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    max-width: 580px;
}
.p-bf__size-title {
    margin: 0;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.2;
    color: var(--bf-black);
}
.p-bf__size-lead {
    margin: 0;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--bf-black);
}
.p-bf__size-cta,
.p-bf__size-cta:link,
.p-bf__size-cta:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 50px;
    background: var(--bf-yellow);
    color: var(--bf-black) !important;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    text-decoration: none !important;
    border-radius: 20px;
    transition: filter .15s ease, transform .15s ease;
}
.p-bf__size-cta:hover {
    filter: brightness(0.95);
    transform: translateY(-1px);
    color: var(--bf-black) !important;
}

@media (max-width: 1100px) {
    .p-bf__size { padding: 40px 0; }
    .p-bf__size-inner { padding: 0 20px; gap: 30px; }
    .p-bf__size-title { font-size: 26px; }
    .p-bf__size-lead { font-size: 16px; }
    .p-bf__size-cta { font-size: 18px; padding: 14px 36px; }
}

@media (max-width: 720px) {
    .p-bf__size { padding: 32px 0; }
    .p-bf__size-inner {
        padding: 0 20px;
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    .p-bf__size-text { align-items: center; gap: 20px; max-width: 100%; }
    .p-bf__size-title { font-size: 24px; }
    .p-bf__size-lead { font-size: 15px; line-height: 1.4; }
    .p-bf__size-cta { width: 100%; font-size: 17px; padding: 16px 24px; }
}

/* ============ Block 14 — Final CTA (Figma 31:300) ============ */
.p-bf__final {
    padding: 60px 0 80px;
    background: #fff;
}
.p-bf__final-inner {
    max-width: 823px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}
.p-bf__final-title {
    margin: 0;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 1.1;
    color: var(--bf-black);
}
.p-bf__final-lead {
    margin: 0;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    color: var(--bf-black);
}
.p-bf__final-lead b { font-weight: 700; }
.p-bf__final-cta,
.p-bf__final-cta:link,
.p-bf__final-cta:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 60px;
    background: var(--bf-yellow);
    color: var(--bf-black) !important;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    text-decoration: none !important;
    border-radius: 20px;
    transition: filter .15s ease, transform .15s ease;
}
.p-bf__final-cta:hover {
    filter: brightness(0.95);
    transform: translateY(-1px);
    color: var(--bf-black) !important;
}

@media (max-width: 1100px) {
    .p-bf__final { padding: 40px 0 60px; }
    .p-bf__final-title { font-size: 36px; }
    .p-bf__final-lead { font-size: 17px; }
    .p-bf__final-cta { font-size: 18px; padding: 14px 40px; }
}

@media (max-width: 720px) {
    .p-bf__final { padding: 24px 0 40px; }
    .p-bf__final-inner { padding: 0 20px; gap: 20px; }
    .p-bf__final-title { font-size: 26px; }
    .p-bf__final-lead { font-size: 15px; line-height: 1.4; }
    .p-bf__final-cta { width: 100%; font-size: 17px; padding: 16px 24px; }
}

/* ============ Block 15 — Deals catalog (Figma 31:315) ============ */
.p-bf__deals {
    padding: 30px 0 80px;
    background: #fff;
}
.p-bf__deals-card {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 590px;
    background: var(--bf-black);
    border-radius: 60px;
    overflow: hidden;
}
.p-bf__deals-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}
.p-bf__deals-inner {
    position: relative;
    z-index: 1;
    padding: 76px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.p-bf__deals-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 17px 20px;
    width: 100%;
}
.p-bf__deals-item {
    display: flex;
    align-items: center;
    justify-content: center;
}
.p-bf__deals-item img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
}
.p-bf__deals-cta,
.p-bf__deals-cta:link,
.p-bf__deals-cta:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 60px;
    background: var(--bf-yellow);
    color: var(--bf-black) !important;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    text-decoration: none !important;
    border-radius: 20px;
    transition: filter .15s ease, transform .15s ease;
}
.p-bf__deals-cta:hover {
    filter: brightness(0.95);
    transform: translateY(-1px);
    color: var(--bf-black) !important;
}

@media (max-width: 1100px) {
    .p-bf__deals { padding: 20px 0 60px; }
    .p-bf__deals-card { min-height: 0; border-radius: 40px; }
    .p-bf__deals-inner { padding: 50px 30px; gap: 30px; }
    .p-bf__deals-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
    .p-bf__deals-cta { font-size: 18px; padding: 14px 40px; }
}

@media (max-width: 720px) {
    .p-bf__deals { padding: 16px 12px 40px; }
    .p-bf__deals-card { border-radius: 28px; }
    .p-bf__deals-inner { padding: 30px 20px; gap: 24px; }
    .p-bf__deals-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .p-bf__deals-cta { width: 100%; font-size: 17px; padding: 16px 24px; }
}

/* ============ Block 16 — Signup / BF paws (Figma 33:460) ============ */
.p-bf__signup {
    padding: 40px 0;
    background: #fff;
    margin-bottom: 0;
}
.p-bf__signup-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: minmax(0, 480px) 1fr;
    gap: 40px;
    align-items: center;
}
.p-bf__signup-text {
    padding: 20px 0;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}
.p-bf__signup-title {
    margin: 0;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 1;
    color: var(--bf-black);
    max-width: 478px;
}
.p-bf__signup-lead {
    margin: 0;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 25px;
    line-height: 1.1;
    color: var(--bf-black);
}
.p-bf__signup-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.p-bf__signup-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    color: var(--bf-black);
}
.p-bf__signup-star {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 20px;
    color: var(--bf-pink);
    font-size: 20px;
    line-height: 1;
    font-weight: 800;
}
.p-bf__signup-cta,
.p-bf__signup-cta:link,
.p-bf__signup-cta:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 16px 50px;
    background: var(--bf-pink);
    color: #fff !important;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    text-decoration: none !important;
    border-radius: 20px;
    transition: filter .15s ease, transform .15s ease;
}
.p-bf__signup-cta:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
    color: #fff !important;
}
.p-bf__signup-art {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    pointer-events: none;
}
.p-bf__signup-art img {
    display: block;
    width: 100%;
    max-width: 720px;
    height: auto;
}

@media (max-width: 1100px) {
    .p-bf__signup { padding: 30px 0; }
    .p-bf__signup-inner { padding: 0 20px; gap: 20px; grid-template-columns: minmax(0, 380px) 1fr; }
    .p-bf__signup-text { padding: 20px 0; max-width: 100%; }
    .p-bf__signup-title { font-size: 32px; max-width: 100%; }
    .p-bf__signup-lead { font-size: 20px; }
    .p-bf__signup-item { font-size: 17px; }
    .p-bf__signup-cta { font-size: 18px; padding: 14px 36px; }
    .p-bf__signup-art img { max-width: 100%; }
}

@media (max-width: 720px) {
    .p-bf__signup { padding: 24px 0; }
    .p-bf__signup-inner {
        padding: 0 20px;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .p-bf__signup-text {
        padding: 0;
        gap: 16px;
        align-items: center;
        text-align: center;
        max-width: 100%;
    }
    .p-bf__signup-title { font-size: 26px; max-width: 100%; }
    .p-bf__signup-lead { font-size: 18px; }
    .p-bf__signup-list { align-items: flex-start; }
    .p-bf__signup-item { font-size: 15px; }
    .p-bf__signup-cta { width: 100%; font-size: 17px; padding: 16px 24px; }
    .p-bf__signup-art {
        justify-content: center;
    }
    .p-bf__signup-art img { max-width: 100%; margin: 0 auto; }
}

/* ============ Block 17 — Why Pochtoy (Figma 36:614) ============ */
.p-bf__why {
    position: relative;
    padding: 60px 0 0;
    background: radial-gradient(ellipse at 20% 40%, rgba(235,15,127,0.30) 0%, rgba(0,0,0,0) 55%),
                radial-gradient(ellipse at 85% 55%, rgba(255,194,0,0.28) 0%, rgba(0,0,0,0) 55%),
                #171717;
    color: #fff;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 0;
    border-radius: 0 !important;
    overflow: hidden;
}
main.pages-main, main.pages-main.p-black-friday-2025 {
    overflow: visible !important;
    border-radius: 0 !important;
}
.p-bf__why-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}
.p-bf__why-title {
    margin: 0 0 40px;
    text-align: center;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 1.1;
    color: #fff;
}
.p-bf__why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.p-bf__why-card {
    position: relative;
    background: #fff;
    border-radius: 30px;
    padding: 30px 30px 0;
    min-height: 414px;
    display: flex;
    flex-direction: column;
    color: var(--bf-black);
    overflow: hidden;
}
.p-bf__why-text {
    position: relative;
    z-index: 2;
    padding-bottom: 16px;
}
.p-bf__why-copy {
    margin: 0;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    color: var(--bf-black);
}
.p-bf__why-copy b { font-weight: 700; }
.p-bf__why-link,
.p-bf__why-link:link,
.p-bf__why-link:visited {
    display: inline-block;
    margin-top: 10px;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    color: var(--bf-pink) !important;
    text-decoration: none !important;
}
.p-bf__why-link:hover { text-decoration: underline !important; }
.p-bf__why-media {
    position: relative;
    z-index: 1;
    margin: auto -30px 0;
    width: calc(100% + 60px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 220px;
}
.p-bf__why-img {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    object-fit: contain;
    margin-bottom: 0;
}
.p-bf__why-badge {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 20px;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}
.p-bf__why-badge--pink {
    background: var(--bf-pink);
    color: #fff;
    font-size: 24px;
    padding: 16px 22px;
    border-radius: 30px;
}
.p-bf__why-badge--black {
    background: var(--bf-black);
    color: var(--bf-yellow);
    font-size: 32px;
    padding: 12px 20px;
}
.p-bf__why-cta,
.p-bf__why-cta:link,
.p-bf__why-cta:visited {
    display: block;
    width: max-content;
    margin: 0 auto;
    padding: 16px 60px;
    background: var(--bf-yellow);
    color: var(--bf-black) !important;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    text-decoration: none !important;
    border-radius: 20px;
    transition: filter .15s ease, transform .15s ease;
}
.p-bf__why-cta:hover {
    filter: brightness(0.95);
    transform: translateY(-1px);
    color: var(--bf-black) !important;
}

@media (max-width: 1100px) {
    .p-bf__why { padding: 40px 0 0; }
    .p-bf__why-inner { padding: 0 20px; }
    .p-bf__why-title { font-size: 36px; margin-bottom: 28px; }
    .p-bf__why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin-bottom: 28px; }
    .p-bf__why-card { min-height: 360px; padding: 24px 24px 0; }
    .p-bf__why-media { margin: auto -24px 0; width: calc(100% + 48px); }
    .p-bf__why-copy { font-size: 17px; }
    .p-bf__why-cta { font-size: 18px; padding: 14px 40px; }
    .p-bf__why-badge--pink { font-size: 20px; padding: 14px 18px; }
    .p-bf__why-badge--black { font-size: 26px; padding: 10px 16px; }
}

@media (max-width: 720px) {
    .p-bf__why { padding: 28px 0 0; }
    .p-bf__why-inner { padding: 0 16px; }
    .p-bf__why-title { font-size: 26px; margin-bottom: 20px; }
    .p-bf__why-grid { grid-template-columns: 1fr; gap: 16px; margin-bottom: 20px; }
    .p-bf__why-card { min-height: 340px; padding: 22px 22px 0; border-radius: 24px; }
    .p-bf__why-media { margin: auto -22px 0; width: calc(100% + 44px); }
    .p-bf__why-img { width: 100%; max-width: none; height: auto; }
    .p-bf__why-copy { font-size: 16px; }
    .p-bf__why-link { font-size: 15px; }
    .p-bf__why-cta { width: 100%; font-size: 17px; padding: 16px 24px; }
}

/* ============ Block 18 — Promos slider ============ */
.p-bf__promos {
    padding: 60px 0 40px;
    background: #fff;
}
.p-bf__promos-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}
.p-bf__promos-title {
    margin: 0 0 30px;
    text-align: center;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    color: var(--bf-black);
}
.p-bf__promos-slider {
    position: relative;
    padding: 0 0 44px;
}
.p-bf__promos-track {
    position: relative;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
}
.p-bf__promos-slide,
.p-bf__promos-slide:link,
.p-bf__promos-slide:visited {
    display: none;
    width: 100%;
    padding-bottom: 51.72%;
    background-color: #f5f5f5;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    text-decoration: none;
}
.p-bf__promos-slide--active,
.p-bf__promos-slide--active:link,
.p-bf__promos-slide--active:visited {
    display: block;
}
.p-bf__promos-arrow {
    position: absolute;
    top: calc(50% - 22px);
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #fff;
    color: var(--bf-black);
    border: none;
    border-radius: 999px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
    cursor: pointer;
    transition: transform .15s ease, background .15s ease;
}
.p-bf__promos-arrow:hover { transform: translateY(-50%) scale(1.05); }
.p-bf__promos-arrow--prev { left: 16px; }
.p-bf__promos-arrow--next { right: 16px; }
.p-bf__promos-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
.p-bf__promos-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    background: rgba(0,0,0,0.2);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background .15s ease, transform .15s ease;
}
.p-bf__promos-dot--active {
    background: var(--bf-black);
    transform: scale(1.15);
}

@media (max-width: 1100px) {
    .p-bf__promos { padding: 40px 0 30px; }
    .p-bf__promos-inner { padding: 0 20px; }
    .p-bf__promos-title { font-size: 30px; margin-bottom: 22px; }
    .p-bf__promos-slider { padding: 0 0 40px; }
    .p-bf__promos-track { border-radius: 20px; }
    .p-bf__promos-arrow { width: 40px; height: 40px; }
    .p-bf__promos-arrow--prev { left: 12px; }
    .p-bf__promos-arrow--next { right: 12px; }
}

@media (max-width: 720px) {
    .p-bf__promos { padding: 24px 0; }
    .p-bf__promos-inner { padding: 0 16px; }
    .p-bf__promos-title { font-size: 22px; margin-bottom: 18px; }
    .p-bf__promos-slider { padding: 0 0 32px; }
    .p-bf__promos-track { border-radius: 16px; }
    .p-bf__promos-arrow { width: 36px; height: 36px; box-shadow: 0 4px 10px rgba(0,0,0,0.18); }
    .p-bf__promos-arrow--prev { left: 8px; }
    .p-bf__promos-arrow--next { right: 8px; }
}

/* ============ Block 19 — Stats «Мы в цифрах» (Figma 37:690) ============ */
.p-bf__stats {
    padding: 70px 0 0;
    background: #171717;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 0;
    margin-bottom: 0;
    color: #fff;
}
.p-bf__stats-card {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 60px;
    overflow: hidden;
    background: #eb0f7f;
    color: #fff;
}
.p-bf__stats-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
}
.p-bf__stats-inner {
    position: relative;
    z-index: 1;
    padding: 60px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.p-bf__stats-title {
    margin: 0;
    text-align: center;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 1.1;
    color: #fff;
}
.p-bf__stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 56px;
    width: 100%;
}
.p-bf__stats-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}
.p-bf__stats-num-box {
    width: 100%;
    padding: 20px;
    border: 3px solid #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
}
.p-bf__stats-num {
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 55px;
    line-height: 0.9;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
}
.p-bf__stats-text {
    margin: 0;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
    color: #fff;
}
.p-bf__stats-cta,
.p-bf__stats-cta:link,
.p-bf__stats-cta:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 60px;
    background: var(--bf-yellow);
    color: var(--bf-black) !important;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    text-decoration: none !important;
    border-radius: 20px;
    transition: filter .15s ease, transform .15s ease;
}
.p-bf__stats-cta:hover {
    filter: brightness(0.95);
    transform: translateY(-1px);
    color: var(--bf-black) !important;
}

@media (max-width: 1100px) {
    .p-bf__stats { padding: 40px 0 60px; }
    .p-bf__stats-card { border-radius: 40px; }
    .p-bf__stats-inner { padding: 40px 30px; gap: 28px; }
    .p-bf__stats-title { font-size: 36px; }
    .p-bf__stats-grid { gap: 20px; }
    .p-bf__stats-num-box { padding: 14px; }
    .p-bf__stats-num { font-size: 36px; }
    .p-bf__stats-text { font-size: 18px; }
    .p-bf__stats-cta { font-size: 18px; padding: 14px 40px; }
}

@media (max-width: 720px) {
    .p-bf__stats { padding: 28px 0 40px; }
    .p-bf__stats-card {
        max-width: calc(100% - 24px);
        margin: 0 12px;
        border-radius: 28px;
    }
    .p-bf__stats-inner { padding: 30px 24px; gap: 24px; }
    .p-bf__stats-title { font-size: 26px; }
    .p-bf__stats-grid { grid-template-columns: 1fr; gap: 20px; }
    .p-bf__stats-item { gap: 14px; }
    .p-bf__stats-num-box { padding: 12px 16px; border-width: 2px; border-radius: 16px; }
    .p-bf__stats-num { font-size: 28px; }
    .p-bf__stats-text { font-size: 16px; }
    .p-bf__stats-cta { width: 100%; font-size: 17px; padding: 16px 24px; }
}

/* ============ Block 20 — FAQ ============ */
.p-bf__faq {
    padding: 60px 0 80px;
    background: #171717;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 0;
    color: #fff;
}
.p-bf__faq-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}
.p-bf__faq-title {
    margin: 0 0 40px;
    text-align: center;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 1.1;
    color: #fff;
}
.p-bf__faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.p-bf__faq-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.p-bf__faq-item[open] { background: #fff; }
.p-bf__faq-q {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 28px;
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
    color: var(--bf-black);
    cursor: pointer;
    transition: background .15s ease;
}
.p-bf__faq-q::-webkit-details-marker { display: none; }
.p-bf__faq-q:hover { background: #f5f5f5; }
.p-bf__faq-icon {
    flex-shrink: 0;
    position: relative;
    width: 22px;
    height: 22px;
}
.p-bf__faq-icon::before,
.p-bf__faq-icon::after {
    content: '';
    position: absolute;
    background: var(--bf-black);
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
}
.p-bf__faq-icon::before {
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    transform: translateY(-50%);
}
.p-bf__faq-icon::after {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
}
.p-bf__faq-item[open] .p-bf__faq-icon::after { opacity: 0; transform: translateX(-50%) rotate(90deg); }
.p-bf__faq-a {
    padding: 0 28px 24px;
    color: var(--bf-black);
    font-family: 'Futura PT', 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.5;
}
.p-bf__faq-a p { margin: 0 0 8px; color: var(--bf-black); }
.p-bf__faq-a p:last-child { margin-bottom: 0; }
.p-bf__faq-link,
.p-bf__faq-link:link,
.p-bf__faq-link:visited {
    color: var(--bf-pink) !important;
    text-decoration: none !important;
    font-weight: 600;
    transition: filter .15s ease;
}
.p-bf__faq-link:hover { filter: brightness(1.1); text-decoration: underline !important; }

@media (max-width: 1100px) {
    .p-bf__faq { padding: 30px 0 50px; }
    .p-bf__faq-inner { padding: 0 20px; }
    .p-bf__faq-title { font-size: 36px; margin-bottom: 28px; }
    .p-bf__faq-q { font-size: 18px; padding: 18px 22px; }
    .p-bf__faq-a { font-size: 16px; padding: 0 22px 20px; }
}

@media (max-width: 720px) {
    .p-bf__faq { padding: 20px 0 40px; }
    .p-bf__faq-inner { padding: 0 16px; }
    .p-bf__faq-title { font-size: 26px; margin-bottom: 20px; }
    .p-bf__faq-list { gap: 10px; }
    .p-bf__faq-item { border-radius: 16px; }
    .p-bf__faq-q { font-size: 16px; padding: 16px 18px; gap: 12px; }
    .p-bf__faq-icon { width: 18px; height: 18px; }
    .p-bf__faq-a { font-size: 14px; padding: 0 18px 16px; }
}