/* ============================================
   Antikoshka.ru — Custom Styles
   Дополнение к основной теме. Не переопределяет Bootstrap/theme.
   ============================================ */

/* --- Promo Banner --- */
.ak-promo-banner {
    background: linear-gradient(135deg, #f89828, #f52f6e);
    color: #fff;
    text-align: center;
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    position: relative;
    z-index: 1050;
    letter-spacing: 0.3px;
}
.ak-promo-banner a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.ak-promo-banner-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
}
.ak-promo-banner-close:hover {
    color: #fff;
}

/* --- Visual Breadcrumbs --- */
.ak-breadcrumbs {
    padding: 12px 0 0;
    font-size: 0.8rem;
}
.ak-breadcrumbs a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}
.ak-breadcrumbs a:hover {
    color: #f89828;
}
.ak-breadcrumbs .ak-breadcrumb-sep {
    margin: 0 6px;
    color: #d1d5db;
}
.ak-breadcrumbs .ak-breadcrumb-current {
    color: #2d2a26;
    font-weight: 600;
}

/* --- Hero Spacing (navbar-floating не занимает место в потоке) --- */

/* Главная: отступы управляются inline-стилями — не трогаем */

/* Landing-страницы: секция pt-7 с контейнером pt-5 */
.page-wrapper > section.pt-7:first-of-type {
    padding-top: 5rem !important;
}

/* Страницы price, calculator, contacts — hero-секции с кастомными классами */
.price-hero,
.calc-page,
.contact-hero {
    padding-top: 110px !important;
}

@media (max-width: 991px) {
    .hero {
        padding-top: 72px !important;
    }
    .ak-breadcrumbs-wrapper {
        padding-top: 64px;
    }
    .price-hero,
    .calc-page,
    .contact-hero {
        padding-top: 90px !important;
    }
}

/* --- Floating WhatsApp Button --- */
.ak-float-wa {
    position: fixed;
    bottom: 84px;
    right: 24px;
    z-index: 1040;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}
.ak-float-wa:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    color: #fff;
}
.ak-float-wa svg {
    width: 26px;
    height: 26px;
}

/* --- Fade-in Animation --- */
.ak-fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.ak-fade-in.ak-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Calculator Savings Badge --- */
.calc-savings {
    display: none;
    margin-top: 8px;
    padding: 8px 14px;
    background: #d1fae5;
    color: #059669;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 10px;
    text-align: center;
}
.calc-savings.visible {
    display: block;
}

/* --- Contacts WhatsApp Button --- */
.contact-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 50px;
    background: #25d366;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
}
.contact-btn-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    color: #fff;
}
