/*
Theme Name: Pets Health Journal
Author: CodeElliX
Version: 1.0
*/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: rgba(9, 2, 40, 0.8);
    background-color: #ffffff;
    font-family: 'Open Sans', sans-serif;
}

a,
button {
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Source Serif 4', serif;
}

/* HEADER */

.header_wrap {
    position: relative;
    display: flex;
    z-index: 2;
    max-height: 130px;
    min-width: 100%;
    background: linear-gradient(to left, rgb(15, 2, 74), rgb(69, 76, 174), rgb(96, 115, 210), rgb(58, 159, 198));
}

.header_wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to left,
            rgb(4, 6, 105) 0%,
            rgba(104, 94, 196, 0.7) 30%,
            rgba(109, 181, 207, 0) 60%),
        url("assets/img/footer-back.png") right center / cover no-repeat;
    opacity: 0.3;
    z-index: -1;
    background-position: center;
}

.hero {
    display: flex;
    padding: 10px 0;
    color: rgb(255, 255, 255);
    width: 55%;
}

.hero_container a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.hero_container h1 {
    order: 2;
    font-size: clamp(22px, 6vw, 42px);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    margin-left: 20%;
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
    max-width: fit-content;
    line-height: 1.1;
    text-decoration: none;
    text-wrap: nowrap;
}

.hero_container p {
    order: 1;
    font-size: clamp(10px, 2.2vw, 18px);
    padding: 2px 8px;
    font-weight: 700;
    background-color: rgba(240, 248, 255, 0.5);
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
    margin-bottom: 0;
    margin-top: 0;
}

.navigation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 40%;
    font-size: 18px;
}

.header_nav {
    margin-top: 1%;
}

.header_nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.header_nav ul li {
    text-wrap: nowrap;
}

.header_nav a {
    position: relative;
    margin-left: 20px;
    text-decoration: none;
    color: aliceblue;
    font-weight: 500;
}

.header_nav a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: aliceblue;
    transition: width 0.35s ease;
}

.header_nav a:hover::after {
    width: 100%;
}

.header_nav a.active::after {
    width: 100%;
}


@media (max-width: 895px) {

    #burger {
        display: flex;
    }

    .header_nav {
        display: none;
    }

    .header_wrap {
        flex-direction: row-reverse;
    }

    .hero_container {
        width: 100%;
    }

    .hero {
        width: 100%;

    }

    .hero_container h1 {
        align-self: center;
    }

    .hero_container p {
        align-self: flex-end;
        border-bottom-right-radius: 0px;
        border-top-right-radius: 0px;
        border-bottom-left-radius: 4px;
        border-top-left-radius: 4px;
    }
}

/* MOBILE NAV */

.mobile_nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.mobile_nav.active {
    pointer-events: auto;
}

.mobile_nav_content {
    position: relative;
    display: flex;
    width: 80%;
    flex-direction: column;
    background-color: rgb(136, 192, 238);
    height: 100vh;
    overflow: scroll;
    transform: translateX(-100%);
    transition: transform 0.5s ease-in-out;
    z-index: 10;
}

.mobile_nav_content::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to left,
            rgb(4, 6, 105) 0%,
            rgba(104, 94, 196, 0.7) 30%,
            rgba(109, 181, 207, 0) 60%),
        url("assets/img/footer-back.png") right center / cover no-repeat;
    opacity: 0.3;
    z-index: -1;
    background-position: center;
}

.mobile_nav.active .mobile_nav_content {
    transform: translateX(0);
}

.mobile_nav_back {
    position: absolute;
    z-index: -2;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile_nav.active .mobile_nav_back {
    opacity: 1;
}

.mobile_nav_menu {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile_nav_items {
    padding: 70px 40px 25px 40px;
}

.mobile_nav_clouse {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 2%;
    top: 2%;
    width: 36px;
    height: 36px;
    padding: 0;
    background-color: rgb(254, 221, 238);
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(255, 120, 180, 0.25);
    border: 2px solid rgb(64, 75, 142);
}

.mobile_nav_section {
    display: flex;
    padding: 20px 0;
    gap: 20px;
    flex-direction: column;
    border-bottom: 2px solid rgba(253, 248, 248, 0.3);
}

.mobile_menu_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: clamp(18px, 3vw, 18px);
    font-weight: 600;
}

.mobile_menu_list li {
    list-style: none;
    display: flex;
    align-items: center;
    padding-left: 0;
    line-height: 1.2;
}

.mobile_menu_list li::before {
    content: "";
    width: 26px;
    height: 26px;
    background-image: url("assets/img/paw-mob-menu.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    display: inline-block;
    background-color: rgb(254, 221, 238);
    border-radius: 50%;
    opacity: 0.6;
    border-color: rgb(64, 75, 142);
}

.mobile_nav_menu nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding-left: 10%;
    color: white;
}

.mobile_nav_menu nav a svg {
    stroke: rgb(9, 2, 40);
}

/* BURGER */

.burger_wrap {
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    justify-content: space-between;
    width: clamp(36px, 10vw, 48px);
    aspect-ratio: 4 / 3;
    position: relative;
    cursor: pointer;
    margin-left: 16%;
    margin-top: 18%;
    -webkit-tap-highlight-color: transparent;
}

.burger_wrap span {
    position: absolute;
    right: 0;
    width: 100%;
    height: 3px;
    background-color: white;
    transition: all 0.5s ease;
}

.burger_wrap span:nth-of-type(1) {
    top: 0;
}

.burger_wrap span:nth-of-type(2) {
    top: 12px;
}

.burger_wrap span:nth-of-type(3) {
    top: 24px;
}

#burger {
    display: none;
}

body.menu-open {
    position: fixed;
    width: 100%;
    overflow: hidden;
}

@media (max-width: 895px) {
    #burger {
        display: flex;
    }

    .header_nav {
        display: none;
    }
}

/* SEARCH */


.search_wrapper {
    position: absolute;
    top: 48%;
    right: 6%;
}

.search_results {
    min-height: 68vh;
    margin: 5% 4% 0 5%;
    word-break: break-word;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.found_articles {
    text-align: start;
    position: relative;
    align-self: flex-start;
    margin-top: 5%;
    margin-bottom: 5%;
    list-style: none;
    font-size: 20px;
}

.found_article_item {
    display: flex;
}

.found_article_item {
    padding-bottom: 2%;
}

.found_article_item::before {
    content: "🦋";
    font-size: 20px;
    background: linear-gradient(to left, rgb(15, 2, 74), rgb(114, 118, 179), rgb(165, 207, 224));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0 10px;
}

.not_found_articles {
    margin-top: 10%;
    margin-bottom: 7%;
    font-size: 22px;
    text-align: center;
    color: #3f83ea;
}

.search_results h1 {
    font-size: clamp(28px, 4vw, 32px);
    font-weight: 400;
    align-self: flex-start;
    line-height: 1.2;
}


.search_results img {
    width: 100px;
    height: 100px;
    margin-top: 5%;
    opacity: 0.7;
}

.declaration_result_search {
    font-size: 28px;
    opacity: 0.8;
    color: #666;
}

.search_inner {
    position: relative;
}

.input {
    width: 100%;
    height: 100%;
    padding: 8px 40px;
    outline: none;
    border: 2px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search_inner .input:focus {
    border-color: #7eb9e8;
}

.icon_search {
    position: absolute;
    padding: 12px 20px;
    width: 24px;
    height: 24px;
    z-index: 2;
    bottom: 48%;
    left: -10px;
    color: black;
    opacity: 0.3;
    background: transparent;
    border: none;
}

.icon_clouse {
    border: none;
    padding: 12px 20px;
    position: absolute;
    width: 24px;
    height: 24px;
    z-index: 2;
    bottom: 48%;
    right: -10px;
    margin-right: 10%;
    color: black;
    opacity: 0.3;
    pointer-events: none;
    background: transparent;
    visibility: hidden;
}

.search_inner.has_value .icon_clouse {
    visibility: visible;
    pointer-events: auto;
}

input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    display: none;
}

input[type="search"]::-moz-search-clear {
    display: none;
}

input[type="search"]::-ms-clear {
    display: none;
}

@media (hover: hover) and (pointer: fine) {

    .icon_clouse,
    .icon_search {
        cursor: pointer;
    }
}

@media (max-width: 569px) {

    .search_wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        position: absolute;
        top: 110%;
        right: 0;
    }

    .search_wrapper .icon_clouse {
        right: -6%;
    }

    .search_inner {
        width: 90vw;
    }

    .search_results {
        margin-top: 20%;
        margin-bottom: 10%;
    }

    .not_found_articles {
        margin-top: 40%;
    }

}

@media (min-width: 570px) and (max-width: 895px) {

    .search_wrapper {
        position: absolute;
        top: 110%;
        right: 3%;
    }

    .search_wrapper:focus-within {
        width: 70%;
    }

    .search_wrapper .icon_clouse {
        right: -8%;
    }

    .search_results {
        margin-top: 10%;
    }

    .not_found_articles {
        margin-top: 40%;
    }

}

/* FOOTER */

.footer_wrap {
    position: relative;
    overflow: hidden;
    z-index: 3;
    display: flex;
    flex-direction: column;
    height: 220px;
    color: aliceblue;
    background: linear-gradient(to left, rgb(15, 2, 74), rgb(69, 76, 174), rgb(96, 115, 210), rgb(58, 159, 198));
}

.footer_top {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 1%;
    margin: auto 0;
}

.footer_top::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to left,
            rgb(4, 6, 105) 0%,
            rgba(104, 94, 196, 0.7) 30%,
            rgba(109, 181, 207, 0) 60%),
        url("assets/img/footer-back.png") right center / cover no-repeat;
    opacity: 0.3;
    z-index: -1;
    right: -100px;
    background-position: center;
}

.footer_wrap a {
    padding: 1%;
    line-height: 1;
    align-self: center;
    width: fit-content;
    background-color: rgba(240, 248, 255, 0.5);
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    text-decoration: none;
    color: inherit;
}

.footer_wrap h1 {
    font-size: clamp(22px, 6vw, 40px);
}

.footer_wrap h1 span {
    display: inline-block;
    background: linear-gradient(90deg,
            rgb(15, 2, 74), rgb(69, 76, 174), rgb(96, 115, 210), rgb(58, 159, 198));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    background-size: 100% 100%;

}

.footer_nav {
    width: fit-content;
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
    text-align: center;
    gap: 5px;
}

.footer_nav ul {
    list-style: none;
}

.footer_nav ul li {
    padding-top: 5%;
    line-height: 1.2;
}

.footer_top a,
.footer_bottom a {
    color: aliceblue;
}

.footer_top a {
    padding: 1px 4px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.1s ease-in-out;
    width: fit-content;
    background-color: transparent;
}

.footer_top a:hover {
    background-color: rgba(240, 248, 255, 0.5);
    color: rgb(20, 4, 84);
}

.footer_bottom {
    background-color: rgba(240, 248, 255, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    font-size: 12px;
    padding: 0.5% 0;
    margin-top: auto;
}

.footer_bottom p {
    display: flex;
    text-wrap: nowrap;
    line-height: 1.2;
    color: rgb(20, 4, 84);
}

.footer_bottom a {
    background-color: inherit;
    text-decoration-color: #6144df;
}

.footer_bottom p span {
    color: rgb(97, 68, 223);
    padding: 0 2px;
}

.footer_bottom p span:not(:last-child) {
    filter: hue-rotate(220deg) saturate(5);
}

/* FRONT PAGE */

.top {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 2%;
    width: 100%;
    height: 350px;
    color: rgb(23, 18, 99);
    font-style: italic;
    overflow: hidden;
    box-shadow: 0 8px 12px -8px rgba(0, 0, 0, 0.25);
}

.top::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: url('assets/img/paws.png');
    opacity: 0.07;
    top: 0;
    left: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

.front_introduction {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e1edf7;
    padding: 4%;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.front_introduction h1 {
    text-align: center;
    font-size: clamp(18px, 2vw, 32px);
    line-height: 1.2;
    font-weight: normal;
    margin-top: 2%;
}

.front_introduction img {
    width: 100px;
    height: 100px;
    align-self: center;
    margin-right: -50px;
}

.top_img_knowledge {
    max-height: 100%;
    margin-bottom: -50px;
}

.top_1 {
    width: 100px;
    height: 100px;
    background-color: rgb(238, 225, 201);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.top_2 {
    width: 75px;
    height: 75px;
    background-color: rgb(216, 243, 216);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.top_3 {
    width: 50px;
    height: 50px;
    background-color: rgb(244, 220, 224);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.sections_menu {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 5% 0 5% 0;
}

.sections_menu h2 {
    margin-left: 2%;
    line-height: 1.1;
}

.sections_menu_cards {
    display: flex;
    flex-wrap: wrap;
    align-self: center;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}

.menu_card {
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
    border: 1px solid #e5e7eb;
    padding: 24px;
    border-radius: 8px;
    transition: transform 0.2s ease-in-out;
    background-color: rgb(225, 237, 247);
}

.menu_card h3 {
    margin-bottom: 10px;
    margin-top: 10px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    color: rgb(72, 67, 94);
}

.menu_card p {
    color: #4fa3e8;
    text-align: center;
    line-height: 1.2;
}

.menu_card_img {
    width: clamp(50px, 150px, 150px);
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 50%;
}

.next-btn {
    flex-shrink: 0;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    opacity: 0.8;
}

.next-btn img {
    width: clamp(30px, 50px, 80px);
    height: auto;
    object-fit: contain;
}

.menu_description {
    flex: 1;
}

@media (max-width: 764px) {

    .top {
        flex-direction: column-reverse;
        min-height: max-content;
    }

    .front_introduction {
        width: 100%;
        flex-direction: column;
        margin-top: 5%;
        min-height: max-content;
        padding-top: 18%;
    }

    .front_introduction img {
        width: 100px;
        height: 100px;
        margin: 0;
    }

    .top img {
        height: auto;
    }

    .menu_card {
        flex-direction: column;
        min-height: max-content;
        min-width: 350px;
    }

    .sections_menu_cards {
        gap: 10px;
    }

    .sections_menu h2 {
        text-align: center;
    }

    .menu_card h2 {
        margin-top: 10px;
    }

    .menu_card p {
        padding: 0 30px;
        text-align: center;
        color: blue;
    }

    .next-btn {
        margin-top: 10px;
    }

    .top_img_knowledge {
        margin-top: 8%;
    }

}

@media (min-width: 765px) and (max-width: 1250px) {
    .front_introduction {
        flex-direction: column;
        margin-top: 5%;
        min-height: max-content;
        padding-top: 16%;
    }
}

/* PAGE ABOUT US */

.about_page {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: justify;
    font-size: 18px;
    z-index: 1;
}

.about_author::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: url('assets/img/paws.png');
    opacity: 0.07;
    top: 0;
    left: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

.about_page section {
    padding: 4%;
    margin-top: 2%;
    border-bottom: 1px solid rgba(12, 3, 55, 0.2);
}

.about_intro {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about_page h3 {
    text-align: center;
}

.about_intro img {
    width: 600px;
    height: 400px;
}

.about_mission {
    display: flex;
    flex-direction: column;
}

.about_mission img {
    align-self: center;
    width: 60%;
    height: 50%;
}

.about_page h1 {
    margin-bottom: 20px;
}

.about_page h2 {
    margin-top: 40px;
}

.about_page p {
    line-height: 1.7;
    margin: 15px 0;
}

.about_page ul {
    margin: 15px 0 15px 20px;
}

.about_page li {
    margin-bottom: 8px;
}

.about_author {
    overflow: hidden;
}

.about_author ul {
    display: flex;
    gap: 20px;
}

.about_author ul li {
    text-align: center;
    list-style-type: "🐾  ";
    list-style-position: inside;
    border-radius: 4px;
    background-color: rgb(196, 238, 246);
    padding: 1%;
}

.about_disclaimer {
    display: flex;
    align-items: center;
}

.about_disclaimer img {
    height: 150px;
}

.about_disclaimer p {
    font-size: 18px;
}

@media (max-width: 800px) {

    .about_page {
        padding: 20px 20px;
    }

    .about_intro {
        flex-direction: column;
        gap: 10px;
    }

    .about_intro img {
        width: 60%;
        height: 60%;
    }

    .about_author ul {
        gap: 10px;
        flex-wrap: wrap;
    }

    .about_author ul li {
        flex: 1;
        padding: 2%;
    }

}

/* AUTHOR */

.autor_wrap {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    text-align: justify;
}

.autor_wrap h2 {
    text-align: center;
    line-height: 1.2;
}

.autor_main {
    display: flex;
    flex-direction: row;
    padding: 2%;
    gap: 20px;
}

.autor_topic {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 40%;
}

.autor_topic h2 {
    text-align: center;
}

.autor_topic ul li {
    list-style: none;
}

.topic_about {
    margin-top: 5%;
    padding-left: 10px;
    font-size: 18px;
}

.topic_about li {
    display: flex;
    align-items: center;
    margin-top: 5%;
    gap: 20px;
    padding-right: 2%;
    text-align: left;
}

.topic_about li svg {
    stroke: aliceblue;
}

.topic_svg_container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    background: linear-gradient(to left, rgb(15, 2, 74), rgb(69, 76, 174), rgb(96, 115, 210), rgb(58, 159, 198));
    padding: 2px;
    border-radius: 50%;
}

.topic_img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
}

.topic_adress_wrap {
    position: relative;
}

.topic_adress {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    bottom: 0;
    left: -90px;
    background: linear-gradient(to left, rgb(15, 2, 74), rgb(114, 118, 179), rgb(165, 207, 224));
    border-radius: 50%;
    color: white;
}

.autor_main_content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 60%;
    padding: 20px 20px 20px 20px;
    z-index: 1;
}

.autor_main_content::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: url('assets/img/paws.png');
    opacity: 0.07;
    top: 0;
    left: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

.autor_main_content h1 {
    text-align: center;
    line-height: 1.2;
}

.autor_main_content p {
    padding: 10px;
    font-size: 18px;
}

.autor_main_content svg {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    padding: 1%;
    stroke: #ffffff;
    background: linear-gradient(to left, rgb(15, 2, 74), rgb(114, 118, 179), rgb(165, 207, 224));
}

@media (max-width: 680px) {

    .autor_wrap {
        margin-top: 15%;
    }

    .autor_main {
        flex-direction: column;
    }

    .autor_topic {
        width: 100%;
    }

    .autor_main_content {
        width: 100%;
    }
}

@media (min-width: 681px) and (max-width: 894px) {

    .autor_wrap {
        margin-top: 10%;
    }

}

/* CONTACTS */

.contacts_container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    z-index: 1;
}

.contacts_container::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: url('assets/img/paws.png');
    opacity: 0.07;
    top: 0;
    left: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

.contact_title {
    display: flex;
    margin: 50px 0 50px 0;
    text-align: center;
}

.form_container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 60%;
    max-width: 100%;
}


.form_elements {
    display: flex;
    flex-direction: column;
    max-width: 100%;
}

.form_group input,
.form_group textarea {
    margin-bottom: 2%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    min-width: 100%;
    width: 80%;
}

.form_group label {
    font-weight: 600;
    padding-bottom: 20px;
}

.form_group input:focus,
.form_group textarea:focus {
    outline: none;
    border-color: #3f83ea;
}

.form_group_btn {
    position: relative;
    align-self: flex-end;
    margin-right: 15%;
}

.wpcf7-spinner {
    position: absolute;
    top: 20%;
    background-color: #3f83ea;
}

.form_group_btn input {
    padding: 12px 20px;
    background: linear-gradient(to left, rgb(15, 2, 74), rgb(96, 115, 210), rgb(58, 159, 198));
    background-size: 200% 100%;
    background-position: left center;
    transition: background-position 0.3s ease-in-out;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    max-width: 200px;
    border: none;
    outline: none;
}

.form_elements input:hover {
    background-position: right center;
}

.wpcf7 form.sent .wpcf7-response-output {
    display: none !important;
    border-radius: 4px;
    background: #43b58b;
    text-align: center;
    border: none;
    color: white;
    font-weight: 600;
}

.wpcf7 form {
    display: flex;
    flex-direction: column;
}

.wpcf7 form p {
    margin: 0;
}

.wpcf7-turnstile {
    margin: 20px 0;
}

/* ошибка */
.wpcf7 form.invalid .wpcf7-response-output {
    background: rgba(255, 0, 0, 0.8);
    text-align: center;
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 4px;
}

/* ошибка отправки */
.wpcf7 form.failed .wpcf7-response-output {
    background: rgba(255, 165, 0, 0.8);
    text-align: center;
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 4px;
}

/* спам */
.wpcf7 form.spam .wpcf7-response-output {
    border-radius: 4px;
    background-color: rgb(181, 71, 137);
    text-align: center;
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 4px;
}

#cf7-notice {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    background: #43b58b;
    color: white;
    padding: 15px 25px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

#cf7-notice.show {
    display: block;
    opacity: 1;
}

.details {
    display: flex;
    align-self: flex-start;
    margin-top: 5%;
    background: aliceblue;
    border-radius: 4px;
    border: 4px;
    padding: 2%;
}

.details address {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-style: normal;
}

.details a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: rgb(20, 4, 84);
}

.details svg {
    border: 1px solid #3f83ea;
    padding: 2%;
    border-radius: 4px;
    stroke: #72aadb;
}

.copy-email-container {
    position: relative;
    display: inline-block;
}

#copy-notice {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #28a745;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    white-space: nowrap;
    z-index: 100;
}

#copy-notice.show {
    opacity: 1;
}

/* PRIVACY POLICI */

.privacy_wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 18px;
    z-index: 1;
    text-align: justify;
}

.privacy_wrap::before {
    position: absolute;
    content: '';
    background: url('assets/img/paws.png');
    offset: 0;
    z-index: -1;
    opacity: 0.07;
    width: 100%;
    height: 100%;
}

.privacy_wrap h1,
.privacy_wrap h2,
.privacy_wrap h3 {
    line-height: 1.2;
    margin: 2% 0;
    text-align: center;
}

.privacy_container {
    display: flex;
    flex-direction: column;
    padding: 2% 0 5% 0;
    max-width: 900px;
    background-color: white;
}

.privacy_container section {
    padding: 5%;
    border-bottom: 1px solid rgba(28, 78, 83, 0.2);
}

.privacy_container h2 {
    padding-bottom: 1%;
}

.privacy_container ul li {
    list-style: none;
}

.privacy_container ul li::before {
    content: "🦋";
    font-size: 20px;
    background: linear-gradient(to left, rgb(15, 2, 74), rgb(114, 118, 179), rgb(165, 207, 224));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0 10px;
}

.privacy_container section:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.privacy_head h1 {
    text-align: center;
}

.privacy_date {
    text-align: center;
    padding-bottom: 5%;
}


.privacy_wrap h1 {
    font-size: clamp(26px, 3vw, 40px);
}

.privacy_wrap h2 {
    font-size: clamp(22px, 2.5vw, 32px);
}

.privacy_wrap h3 {
    font-size: clamp(18px, 2vw, 24px);
}

@media (max-width: 894px) {

    .privacy_head {
        margin-top: 5%;
    }

}

/* TERMS */

.terms_wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    font-size: 18px;
    text-align: justify;
}

.terms_wrap::before {
    position: absolute;
    content: '';
    background: url('assets/img/paws.png');
    offset: 0;
    z-index: -1;
    opacity: 0.07;
    width: 100%;
    height: 100%;
}

.terms_wrap h1,
.terms_wrap h2,
.terms_wrap h3 {
    line-height: 1.2;
    margin: 2% 0;
    text-align: center;
}

.terms_container {
    display: flex;
    flex-direction: column;
    padding: 2% 0 5% 0;
    max-width: 900px;
    background-color: white;
}

.terms_container section {
    padding: 5%;
    border-bottom: 1px solid rgba(28, 78, 83, 0.2);
}

.terms_container h2 {
    padding-bottom: 1%;
}

.terms_container ul li {
    list-style: none;
}

.terms_container ul li::before {
    content: "🦋";
    font-size: 20px;
    background: linear-gradient(to left, rgb(15, 2, 74), rgb(114, 118, 179), rgb(165, 207, 224));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0 10px;
}

.terms_container section:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.terms_head h1 {
    text-align: center;
}

.terms_date {
    text-align: center;
    padding-bottom: 5%;
}

.terms_wrap h1 {
    font-size: clamp(26px, 3vw, 40px);
}

.terms_wrap h2 {
    font-size: clamp(22px, 2.5vw, 32px);
}

.terms_wrap h3 {
    font-size: clamp(18px, 2vw, 24px);
}

@media (max-width: 894px) {

    .terms_head {
        margin-top: 5%;
    }

}

/* COOKIE POLICI */

.cookie_policy_wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    font-size: 18px;
    text-align: justify;
}

.cookie_policy_wrap::before {
    position: absolute;
    content: '';
    background: url('assets/img/paws.png');
    offset: 0;
    z-index: -1;
    opacity: 0.07;
    width: 100%;
    height: 100%;
}

.cookie_policy_wrap h1,
.cookie_policy_wrap h2,
.cookie_policy_wrap h3 {
    line-height: 1.2;
    margin: 2% 0;
    text-align: center;
}

.cookie_policy_container {
    display: flex;
    flex-direction: column;
    padding: 2% 0 5% 0;
    max-width: 900px;
    background-color: white;
}

.cookie_policy_container section {
    padding: 5%;
    border-bottom: 1px solid rgba(28, 78, 83, 0.2);
}

.cookie_policy_container ul li {
    list-style: none;
}

.cookie_policy_container ul li::before {
    content: "🦋";
    font-size: 20px;
    background: linear-gradient(to left, rgb(15, 2, 74), rgb(114, 118, 179), rgb(165, 207, 224));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0 10px;
}

.cookie_policy_container section:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.cookie_date {
    text-align: center;
    padding-bottom: 5%;
}

.cookie_policy_wrap h1 {
    font-size: clamp(26px, 3vw, 40px);
}

.cookie_policy_wrap h2 {
    font-size: clamp(22px, 2.5vw, 32px);
}

.cookie_policy_wrap h3 {
    font-size: clamp(18px, 2vw, 24px);
}

@media (max-width: 894px) {

    .cookie_policy_head {
        margin-top: 5%;
    }

}

/* SECTIONS (PET CARE) */

.sections {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
    min-height: 70vh;
}

.section_header {
    margin-left: 2%;
    width: fit-content;
    margin: 0 4% 3% 2%;
    align-self: first baseline;
}

.section_header h1 {
    display: flex;
    align-items: center;
    font-size: 36px;
    line-height: 1;
    margin: auto 0;
    padding: 0;
    margin-top: 10%;
}

.section_header h1 img {
    width: 40px;
    height: 40px;
}

.section_description {
    color: #666;
    max-width: 600px;
    margin: 0;
    padding: 0;
    padding-left: 8%;
}

.articles {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.article_card {
    display: flex;
    flex-direction: column;
    min-width: 330px;
    width: 340px;
    height: 340px;
    background: #f5f7fa;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article_card a {
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
    text-align: center;
}


.article_card_image {
    height: 70%;
}

.article_card_image img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.card_link {
    height: 100%;
}

.article_card_content {
    height: 30%;
}

.card {
    display: flex;
    flex-direction: column;
}

.article_card_description {
    text-align: center;
    flex: 1;
    margin: 0 5% 0 5%;
}

.article_card h2 {
    padding: 16px 16px 0;
    font-size: 18px;
    line-height: 1.2;
}

.article_card p {
    padding: 8px 16px 16px;
    color: #555;
    font-size: 14px;
}

.no_found {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #3f83ea;
    margin-top: 20%;
}

.no_found svg {
    width: 60px;
    height: 60px;
    stroke: orange;
}


@media (max-width: 600px) {

    .section_header {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left: 2%;
        margin-top: 4%;
        align-self: center;
    }

    .section_header h1 {
        font-size: 28px;
        text-align: left;
        align-self: first baseline;
    }

}

/* PAGINATION */

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    flex-shrink: 0;
}

.pagination_list {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
}

.pagination a {
    padding: 4px 12px;
    line-height: 1.2;
    text-wrap: nowrap;
    border-radius: 8px;
    text-decoration: none;
    background: #f0f0f0;
    color: rgb(15, 2, 74);
}

.pagination a:focus {
    background: rgb(108, 168, 240);
    color: white;
}

.pagination a:focus svg {
    stroke: white;
}

.pagination a.pagination_prev,
.pagination a.pagination_next,
.pagination span.pagination_prev,
.pagination span.pagination_next {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    border: 2px solid rgb(15, 2, 74);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.pagination a svg {
    stroke: rgb(15, 2, 74);
}

.pagination span[aria-disabled="true"] {
    opacity: 0.4;
    border-color: gray;
    cursor: default;
}

/* SINGLE */

.single_wrap {
    padding-bottom: 10%;
}

.single_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70%;
    margin: 0 auto;
    padding: 0 2%;
    border-left: 1px solid rgba(143, 168, 155, 0.5);
    border-right: 1px solid rgba(143, 168, 155, 0.5);
}

.single_content header {
    margin-bottom: 5%;
}

.single_text p:not(:last-child) {
    margin: 0;
    padding-bottom: 3%;
    padding-top: 0;
}

.single_text ul,
.single_text ol {
    margin-top: 2%;
    margin-left: 2%;
    width: 90%;
    padding-left: 0;
}

.single_text ol {
    margin: 0 auto 1% auto;
}

.single_text ol li {
    padding-top: 10px;
    line-height: 1.2;
}

.single_text ol li::marker {
    color: rgb(97, 85, 232);
}

.single_text {
    font-size: 20px;
    text-align: justify;
}

.single_text h3,
.single_text h4,
.single_text h5,
.single_text h6 {
    margin: 0;
    padding: 2% 0;
}

.single_content a {
 text-decoration: underline;
 color: #72aadb;
}

.single_content h1 {
    font-size: clamp(26px, 2.8vw, 36px);
}

.single_content h2 {
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: bold;
    padding: 0;
    margin: 0;
}

.single_content h3 {
    font-size: clamp(18px, 2vw, 24px);
}

.single_content ul li {
    display: flex;
    align-items: center;
    list-style: none;
    word-break: break-word;
    line-height: 1.2;
    margin-bottom: 3%;
}

.single_content ul li::before {
    content: "🦋";
    font-size: 20px;
    background: linear-gradient(to left, rgb(15, 2, 74), rgb(114, 118, 179), rgb(165, 207, 224));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0 10px;
}

.single_wrap h1,
.single_wrap h2 {
    line-height: 1.2;
    margin: 8% 0 4% 0;
    text-align: center;
}

.single_meta {
    display: flex;
    margin: 0 auto;
    width: fit-content;
}

.single_date {
    display: flex;
    align-items: center;
    gap: 2px;
}

.single_content img {
    width: 100%;
    height: auto;
    max-height: 500px;
    display: block;
    object-fit: cover;
    margin: 2rem auto;
    border-radius: 12px;
}

.single_author a {
    text-decoration: none;
    color: rgb(20, 4, 84);
    transition: color 0.2s ease-in-out;
}

.single_author a:hover {
    color: rgb(108, 168, 240);
}

.single_author::after {
    content: '/';
    margin: 0 10px;
    color: rgb(108, 168, 240);
}

blockquote {
    display: flex;
    align-items: center;
    border-left: 4px solid #ccc;
    padding-left: 4%;
    padding-bottom: 5%;
    padding-top: 5%;
    margin: 20px 0;
    font-style: italic;
    color: #555;
}

@media (max-width: 821px) {
    .single_content {
        border: none;
        width: 99%;
    }

    .single_text {
        padding: 0 2%;
    }
}

/* BREADCRUMB */

.breadcrumb {
    padding-left: 1%;
    text-transform: uppercase;
}

.breadcrumb ul {
    display: flex;
    align-items: center;
    padding: 1%;
    border-bottom: 1px solid rgba(28, 78, 83, 0.2);
}

.breadcrumb li+li::before {
    content: ">";
    margin: 0 10px;
    color: rgb(108, 168, 240);
}

.breadcrumb ul li {
    list-style: none;
    text-decoration: none;
    white-space: nowrap;
}

.breadcrumb a {
    text-decoration: none;
    transition: color 0.2s ease-in-out;
    color: rgb(20, 4, 84);
}

.breadcrumb a:hover {
    color: rgb(108, 168, 240);
}

.breadcrumb_home a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb li:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* FAQ */

.faq {
    -webkit-tap-highlight-color: transparent;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.faq h2 {
    text-align: left;
    margin: 10% 0 4% 0;
    padding-bottom: 0.5%;
    width: fit-content;
    border-bottom: 4px solid rgb(82, 80, 145);
}

.faq summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    cursor: pointer;
    font-weight: 500;
    font-size: clamp(18px, 2.8vw, 18px);
    ;
    text-align: left;
    text-transform: uppercase;
    -webkit-tap-highlight-color: transparent;
    line-height: 1.2;
}

.faq summary::after {
    content: "";
    background-image: url("assets/img/chevron-down.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    display: inline-block;
    flex-shrink: 0;
    margin-left: 8px;
}

.faq details {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    line-height: 1.3;
    padding: 0 0 4% 0;
}

.faq details[open] summary::after {
    transform: rotate(-90deg);
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq details p {
    background-color: rgb(255, 255, 255);
}

.faq_content {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transform: translateY(-6px);
    transition: grid-template-rows 0.45s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
}

.faq_content>* {
    overflow: hidden;
}

.faq details[open] .faq_content {
    grid-template-rows: 1fr;
    opacity: 1;
    transform: translateY(0);
}

.faq summary {
    user-select: none;
}

.medical_disclaimer {
    padding: 2% 5%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* SCROLL */

.scroll_top {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 30px;
    right: 2%;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(to left, rgb(15, 2, 74), rgb(114, 118, 179), rgb(165, 207, 224));
    color: white;
    font-size: 26px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 2;
}

.scroll_top.active {
    opacity: 1;
    visibility: visible;
}

/* СAROUSEL */

.carousel {
    margin: 40px 0;
}

.carousel h2 {
    margin-bottom: 1%;
    margin-left: 2%;
}

.carousel_track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.carousel_track::-webkit-scrollbar {
    display: none;
}

.carousel_item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    min-width: 330px;
    width: 340px;
    height: 340px;
    background: #f5f7fa;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid transparent;
    transition: box-shadow 0.2s ease, border 0.3s ease-in-out;
    scroll-snap-align: start;
    margin-bottom: 2%;
}

.carousel_item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.carousel_item a {
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
    text-align: center;
    width: 100%;
    height: 100%;
}

.carousel_item_img {
    height: 70%;
    min-height: 70%;
    overflow: hidden;
}

.carousel_item_img img {
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.carousel_item h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30%;
    line-height: 1;
    padding: 1%;
}

@media (max-width: 718px) {

    .carousel_item {
        width: 320px;
        height: 320px;
    }

}

/* IMPORTANT RULES */

.important_rules {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 400px;
    min-height: max-content;
    width: 100%;
    margin-bottom: 5%;
}

.important_rules::before {
    position: absolute;
    content: '';
    background: url('assets/img/flower-back.jpg');
    offset: 0;
    z-index: 1;
    opacity: 1;
    width: 100%;
    height: 400px;
}

.important_rules_descn {
    flex: 4;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 12px -8px rgba(0, 0, 0, 0.25);
}

.important_rules_head {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 100%;
}

.important_rules_head h2 {
    text-align: center;
    background-color: rgba(63, 74, 140, 0.6);
    color: #e1edf7;
    border-radius: 4px;
    padding: 0 2%;
    padding: 2%;
    width: 70%;
    z-index: 1;
}

.important_rules_list {
    display: flex;
    justify-content: center;
    width: 50%;
}

.important_rules_descn ul {
    display: flex;
    flex-direction: column;
    width: 50%;
    z-index: 1;
}

.important_rules_descn ul li {
    background-color: rgba(240, 248, 255, 0.8);
    border-radius: 4px;
    padding: 1%;
    display: flex;
    align-items: center;
    list-style: none;
    font-size: 22px;
    color: rgb(56, 128, 167);
    line-height: 1.2;
}

.important_rules_descn ul li:not(:last-child) {
    margin-bottom: 10%;
}

.important_rules_descn ul li svg {
    stroke: rgb(64, 75, 142);
    margin-right: 4%;
    height: 48px;
    width: 48px;
    flex-shrink: 0;
}

.important_rules_note {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    color: rgb(63, 74, 140);
    z-index: 1;
    background-color: rgba(240, 248, 255, 0.5);
}

@media (max-width: 820px) {

    .important_rules_descn {
        flex-direction: column;
    }

    .important_rules_head {
        width: 100%;
    }

    .important_rules_head h2 {
        width: 100%;
        border-radius: inherit;
    }

    .important_rules_list {
        width: 100%;
    }

    .important_rules_descn ul {
        width: 100%;
    }

    .important_rules_descn ul li {
        padding-left: 5%;
        font-size: 20px;
        padding: 4%;
    }

    .important_rules_descn ul li:not(:last-child) {
        margin-bottom: 1%;
    }

    .important_rules_descn ul li svg {
        height: 28px;
        width: 28px;
    }

    .important_rules_note {
        text-align: center;
        padding: 0 2%;
        font-size: 14px;
    }
}

/* COOKIE-BANNER */

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 900px;
    width: calc(100% - 40px);
    background: rgba(25, 17, 96, 0.9);
    color: #f0f8ff;
    padding: 16px 20px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    z-index: 9999;
}

.cookie-banner a {
    color: #72cee2;
    text-decoration: underline;
}

.cookie-banner button {
    background: linear-gradient(to left, rgb(15, 2, 74), rgb(69, 76, 174), rgb(96, 115, 210), rgb(58, 159, 198));
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.cookie-banner button:hover {
    opacity: 0.9;
}

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