@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');
@font-face {
    font-family: "Averta";
    font-style: normal;
    font-weight: 400;
    src: local("Averta"),
    url("fonts/AvertaRegular.eot") format("eot"),
    url("fonts/AvertaRegular.woff") format("woff"),
    url("fonts/AvertaRegular.ttf") format("truetype");
}
@font-face {
    font-family: "AvertaBold";
    font-style: normal;
    font-weight: 400;
    src: local("AvertaBold"),
    url("fonts/AvertaBold.eot") format("eot"),
    url("fonts/AvertaBold.woff") format("woff"),
    url("fonts/AvertaBold.ttf") format("truetype");
}
@font-face {
    font-family: "GardensC";
    font-style: normal;
    font-weight: 400;
    src: local("GardensC"),
    url("fonts/GardensC_03_1.eot") format("eot"),
    url("fonts/GardensC_03_1.woff") format("woff"),
    url("fonts/GardensC_03_1.ttf") format("truetype");
}

:root {
  --block-bg: #61AD36;
  --block-hover: #357012;
  --block-text: #FFFFFF;
  --text-color: #1D1F1D;
  --link-color: #165816;
  --link-hover: #314C51;
  --btn-color: #61AD36;
  --btn-hover: #314C51;
  --btn-text: #FFFFFF;
  --font-text: "Averta", "Arial", sans-serif;
  --font-bold: "AvertaBold", "Arial", sans-serif;
  --font-logo: 'Oswald', sans-serif;
  --font-garden: 'GardensC', sans-serif;
}

.cookie-notice {
    position: fixed;
    left: 50%;
    bottom: 1em;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 1em;
    max-width: calc(100% - 2em);
    padding: 1em;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    box-sizing: border-box;
}

.cookie-notice[hidden] {
    display: none;
}

.cookie-notice__text {
    font-size: 14px;
    line-height: 1.4;
}

.cookie-notice__button {
    flex-shrink: 0;
    border: 0;
    border-radius: 6px;
    padding: 0.6em 1em;
    background: var(--btn-color);
    color: var(--btn-text, #fff);
    cursor: pointer;
}

.d-modal-float-button {
    position: fixed;
    left: 1em;
    bottom: 1em;
    z-index: 9998;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    background: var(--btn-color);
    color: var(--btn-text, #fff);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.d-modal-float-button[hidden] {
    display: none;
}

.privacy-policy {
    padding: 40px 0;
}

.privacy-policy h1 {
    margin-bottom: 24px;
}

.privacy-policy h2 {
    margin-top: 32px;
    margin-bottom: 16px;
}

.privacy-policy h3 {
    margin-top: 24px;
    margin-bottom: 12px;
}

.privacy-policy p,
.privacy-policy li {
    line-height: 1.6;
}

.privacy-policy ol,
.privacy-policy ul {
    padding-left: 1.5em;
}

.privacy-policy__lead {
    font-size: 1.1em;
}

.footer__link {
    color: inherit;
    text-decoration: underline;
}

.footer__link:hover {
    color: var(--btn-color);
}

@media (max-width: 600px) {
    .cookie-notice {
        width: calc(100% - 2em);
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .cookie-notice__button {
        width: 100%;
    }

    .privacy-policy {
        padding: 24px 0;
    }
}
