/* =============================================
   PODGUZNIK.RU — Bootstrap 5 overrides
   Brand: #F8B7C9 (light pink) → #70365B (burgundy)
   ============================================= */

a {
    color: #ed532b;
    text-decoration: none;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

a:hover {
    text-decoration: underline;
}


/* --- Breadcrumb --- */
.breadcrumb {
    --bs-breadcrumb-divider: '>';
    --bs-breadcrumb-divider-color: #bbb;
    font-size: 12px;
    margin-bottom: 12px;
}

.breadcrumb-item a {
    color: #777;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--brand-burgundy);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #444;
}

/* --- Цвета бренда --- */
:root {
    --brand-pink: #F8B7C9;
    --brand-burgundy: #70365B;
    --brand-phone: #000000;
    /* яркий малиновый для номера телефона */
    --footer-bg: #2a2a2a;
    --footer-contacts-bg: #222222;
}

/* --- Body --- */
body {
    background-color: #f4f4f4;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 13px;
    color: #333;
}

/* =============================================
   HEADER TOP BAR
   ============================================= */

header a:hover {
    text-decoration: none;
}

.header-topbar {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    padding: 8px 0;
}

/* Быстрые ссылки (Для себя / Япония / 99р / Бренды) */
.topbar-quicklinks {
    display: flex;
    align-items: center;
    gap: 4px;
}

.topbar-quicklink {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #555;
    padding: 4px 10px;
    font-size: 11px;
    line-height: 1.3;
    text-align: center;
    border-right: 1px solid #e8e8e8;
    transition: color .2s;
    min-width: 72px;
}

.topbar-quicklink:last-child {
    border-right: none;
}

.topbar-quicklink:hover {
    color: var(--brand-burgundy);
}

.topbar-quicklink .ql-icon {
    font-size: 20px;
    margin-bottom: 3px;
    display: block;
}

.topbar-quicklink.ql-99 .ql-icon {
    color: #e05500;
}

/* Лого */
.header-logo img {
    height: 42px;
    width: auto;
}

/* Утилиты справа (Доставка, Оплата, Корзина, Телефон) */
.topbar-utils {
    display: flex;
    align-items: center;
    gap: 16px;
}

.topbar-util-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #555;
    font-size: 11px;
    line-height: 1.3;
    text-align: center;
    transition: color .2s;
}

.topbar-util-link:hover {
    color: var(--brand-burgundy);
}

.topbar-util-link .util-icon {
    font-size: 20px;
    margin-bottom: 2px;
}

.topbar-phone {
    color: var(--brand-phone) !important;
    font-size: 14px !important;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
}

.topbar-phone .phone-hours {
    display: block;
    font-size: 10px;
    font-weight: 400;
    color: #999;
}

/* =============================================
   MAIN CATEGORY NAVBAR
   ============================================= */
.navbar-cats {
    background: #fff;
    border-bottom: 2px solid #e8e8e8;
    padding: 0;
    min-height: 40px;
}

.navbar-cats .navbar-nav {
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-cats .nav-link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #333 !important;
    padding: 10px 14px !important;
    white-space: nowrap;
    transition: color .15s, background .15s;
    line-height: 1;
}

.navbar-cats .nav-link:hover,
.navbar-cats .nav-item.active .nav-link {
    color: var(--brand-burgundy) !important;
    background: #fdf5f8;
}

.navbar-cats .dropdown-menu {
    border-radius: 0;
    border-top: 2px solid var(--brand-burgundy);
    min-width: 200px;
    padding: 6px 0;
    font-size: 13px;
}

.navbar-cats .dropdown-item {
    padding: 5px 16px;
    color: #444;
}

.navbar-cats .dropdown-item:hover {
    background: #fdf5f8;
    color: var(--brand-burgundy);
}

.navbar-search-btn {
    color: #555 !important;
    font-size: 18px;
    padding: 8px 12px !important;
}

.navbar-search-btn:hover {
    color: var(--brand-burgundy) !important;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        align-items: center;
        justify-content: center;
    }
}

/* =============================================
   MAIN CONTENT
   ============================================= */
main>.container {
    background: #fff;
    padding: 20px;
    border-radius: 2px;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--footer-bg);
    color: #ccc;
    font-size: 12px;
}

/* Блок контактов */
.footer-contacts {
    background: url("../images/foot-top.png") repeat-x;
    /* background: var(--footer-contacts-bg); */
    padding: 28px 0 24px;
    /* border-bottom: 1px solid #3a3a3a; */
}

.footer-hr {
    height: 20px;
    background: url("../images/foot-bg3.png") repeat-x;
}

.footer-contacts-heading {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 8px;
}

.footer-phone {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

.footer-phone-city {
    font-size: 11px;
    color: #888;
}

.footer-phone-hours {
    font-size: 11px;
    color: #888;
    margin-top: 2px;
}

.footer-email a {
    color: #7ab3e0;
    text-decoration: none;
    font-size: 14px;
}

.footer-email a:hover {
    color: #a0ccee;
    text-decoration: underline;
}

.footer-callback {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    color: #aaa;
    font-size: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: color .2s;
}

.footer-callback:hover {
    color: #fff;
}

/* Соцсети */
.social-links {
    display: flex;
    gap: 6px;
    margin-top: 4px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    transition: opacity .2s;
}

.social-link:hover {
    opacity: .8;
    color: #fff;
}

.social-fb {
    background: #3b5998;
}

.social-tw {
    background: #1da1f2;
}

.social-vk {
    background: #4a76a8;
}

.social-ok {
    background: #f97400;
}

/* Блок ссылок */
.footer-links {
    padding: 24px 0 20px;
}

.footer-links-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 5px;
}

.footer-links ul a {
    color: #999;
    text-decoration: none;
    font-size: 12px;
    transition: color .2s;
}

.footer-links ul a:hover {
    color: var(--brand-pink);
}

/* Нижняя строка футера */
.footer-bottom {
    /* border-top: 1px solid #3a3a3a; */
    background: #222222;
    padding: 10px 0;
    font-size: 11px;
    color: #666;
}

.footer-bottom a {
    color: #777;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #999;
}

.header-topbar .effect-icon {
    color: #844360;
    font-size: 170%;
    height: 25px;
    display: inline-block;
    position: relative;
}

/* index */

.block_homeblocks {
    padding: 40px 0;
    clear: both;
    float: none;
}

.block_homeblocks .block_content {
    padding: 0 25px 0 5px;
}

.block_homeblocks_image {
    height: 90px;
    background: center no-repeat;
    background-size: contain;
}

.block_third {
    float: left;
    width: 33.3333333333%;
    margin: 10px 0;
}

.acenter {
    text-align: center;
}

.block_homeblocks h3 {
    font-size: 1.17em;
    margin: 10px 0;
}

.clear {
    clear: both;
    line-height: 0;
}