/* ===== STICKY FOOTER ===== */

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#content {
    flex: 1 0 auto;
}

/* ===== SITE FOOTER ===== */

.site-footer {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

/* Блок адреса */
.footer-address {
    margin: 0 auto;
    margin-top: 50px;
    padding: 25px 0 15px;
    width: 948px;
    display: grid;
    gap: 10px;
}

.footer-address p {
    margin: 2px 0;
    /*margin-bottom: 20px;*/
}

.address-word-phone {
    display: inline-block;
    min-width: 65px;
}

.offer-notice {
    margin: 4px 0 0;
    text-align: center;
}

/* Навигационная полоса */
/*.footer-navigation ul {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*}*/

.footer-navigation ul, .bottom-navigation ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    margin-bottom: 20px;
    color: #4f4f4f;
}

.footer-navigation ul li:not(:last-child)::after,
.bottom-navigation ul li:not(:last-child)::after {
    content: "|";
    padding: 0 15px;
    color: #4f4f4f;
}

.footer-navigation ul {
    background: white;
    padding: 20px;
}

.footer-navigation *, .bottom-navigation * {
    color: #4f4f4f;
}



/* Нижняя строка: SEO-ссылки + копирайт */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
    padding: 4px 20px;
}

.footer-bottom-center {
    flex: 1;
}

.bottom-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.copyright-platzcart {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    justify-content: flex-end;
}

.copyright-platzcart * {
    color: #00dce7;
    font-size: 9px;
}

.copyright-platzcart a {
    margin-right: 20px;
}




/* ===== LEGAL DOCS PAGE ===== */

.legal-docs-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.legal-docs-list__item {
    padding: 14px 0;
    border-bottom: 1px solid #e5e5e5;
}

.legal-docs-list__item:last-child {
    border-bottom: none;
}

.legal-docs-list__link {
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
}

.legal-docs-list__link:hover {
    text-decoration: underline;
}

.legal-docs-list__desc {
    margin: 4px 0 0;
    font-size: 13px;
    color: #666;
}

/* ===== COOKIE CONSENT ===== */

#cookie-consent {
    display: none;
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 50%;
    box-sizing: border-box;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: #000;
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,.5);
    z-index: 9999;
}

.cookie-consent-desc {
    max-width: 400px;
}

#cookie-consent a {
    color: #7ab3ff;
    text-decoration: underline;
}

#cookie-consent-accept {
    flex-shrink: 0;
    background: #1a6dff;
    color: #fff;
    border: none;
    padding: 10px 28px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 6px;
    white-space: nowrap;
}

#cookie-consent-close {
    position: absolute;
    top: 0;
    right: -1px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    border-radius: 0 10px 0 0;
    cursor: pointer;
    z-index: 1;
}

@media (max-width: 850px) {
    #cookie-consent {
        flex-direction: column;
        align-items: stretch;
        width: 90%;
    }
    #cookie-consent-accept {
        width: 200px;
        align-self: center;
    }
}

.offer-notice {
    margin-top: 20px;
}

 .base-data-table {
     width: 100%;
     border-collapse: collapse;
     font-family: Arial, sans-serif;
     font-size: 14px;
     margin: 20px 0;
 }

.base-data-table thead th {
    font-weight: bold;
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #000000;
}

.base-data-table tbody td {
    padding: 10px 15px;
    border: 1px solid #000000;
    vertical-align: top;
}

