/* ==========================================================================
   CSS VARIABLES
   ========================================================================== */

:root {
    --color-red: #C41D34;
    --color-red-dark: #A50D24;
    --color-black: #000000;
    --color-dark: #1A1A1A;
    --color-dark-green: #2A3C2E;
    --color-green-sale: #037750;
    --color-white: #FFFFFF;
    --color-off-white: #F8F8F0;
    --color-light-bg: #F5F0EB;
    --color-gray: #888888;
    --color-gray-strike: #A2A2A2;

    --font-primary: 'Poppins', sans-serif;
    --font-decorative: 'Rousseau Deco', sans-serif;

    --container-max: 1440px;
    --container-padding: 20px;
    --mobile-breakpoint: 768px;

    --radius-sm: 8px;
    --radius-md: 20px;
    --radius-lg: 50px;

    --transition: 0.3s ease;
}

/* ==========================================================================
   RESET / BASE
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-black);
    background-color: var(--color-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity var(--transition);
}

a:hover {
    opacity: 0.8;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ==========================================================================
   BUTTON UTILITIES — hover color swap
   ========================================================================== */
.u-btn--black,
.u-btn--white,
.u-btn--red,
.u-btn--red-light {
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.u-btn--black:hover,
.u-btn--white:hover,
.u-btn--red:hover,
.u-btn--red-light:hover {
    opacity: 1;
}

.u-btn--black {
    background-color: var(--color-black);
    color: var(--color-white);
    box-shadow: 5px 5px 0 0 rgba(0, 0, 0, 0.17);
}
.u-btn--black:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

.u-btn--white {
    background-color: var(--color-white);
    color: var(--color-black);
}
.u-btn--white:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

.u-btn--red {
    background-color: var(--color-red);
    color: var(--color-white);
}
.u-btn--red:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

/* Red button on a dark block — hover swaps to white instead of black */
.u-btn--red-light {
    background-color: var(--color-red);
    color: var(--color-white);
}
.u-btn--red-light:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-decorative);
    font-weight: 400;
    line-height: 1;
}

/* ==========================================================================
   UTILITY
   ========================================================================== */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ==========================================================================
   PAGE HEADER (shared red banner)
   ========================================================================== */

.page-header {
    padding: 44px 20px;
    text-align: center;
}

.page-header__title {
    font-family: var(--font-decorative);
    font-size: 36px;
    font-weight: 400;
    color: var(--color-white);
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
}

@media (max-width: 768px) {
    .page-header {
        padding: 21px 20px;
    }

    .page-header__title {
        font-size: 32px;
    }
}

/* ==========================================================================
   PAGINATION (shared)
   ========================================================================== */

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination .page-numbers {
    list-style: none;
    display: flex;
    gap: 16px;
    padding: 0;
    margin: 0;
    align-items: center;
}

.pagination .page-numbers li {
    display: inline-flex;
}

.pagination .page-numbers li a,
.pagination .page-numbers li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 1.2px;
    color: var(--color-black);
    text-decoration: none;
    transition: background-color var(--transition), color var(--transition);
}

.pagination .page-numbers li a:hover {
    background-color: var(--color-red);
    color: var(--color-white);
    opacity: 1;
}

.pagination .page-numbers li span.current {
    background-color: var(--color-red);
    color: var(--color-white);
}

@media (max-width: 768px) {
    .pagination .page-numbers li a,
    .pagination .page-numbers li span {
        width: 30px;
        height: 30px;
        font-size: 16px;
        letter-spacing: 0.8px;
    }

    .pagination .page-numbers {
        gap: 12px;
    }
}

/* ==========================================================================
   SELECT2 (global) — vendor CSS rounds dropdown/selection by default
   ========================================================================== */

body .select2-dropdown {
    border-radius: 0;
}

body .select2-container .select2-selection--single,
body .select2-container .select2-selection--multiple {
    border-radius: 0;
}

/* ==========================================================================
   HEADER - INFO BAR
   ========================================================================== */

.header-info-bar {
    background-color: var(--color-black);
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.header-info-bar__text {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    color: var(--color-white);
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
}

/* ==========================================================================
   HEADER - STICKY WRAPPER
   ========================================================================== */

.site-header-wrap {
    position: sticky;
    top: 0;
    z-index: 100;
}

/* ==========================================================================
   HEADER - MAIN
   ========================================================================== */

.site-header {
    height: 92px;
    position: relative;
    background-color: var(--color-white);
}

.site-header__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    position: relative;
}

.site-header__left {
    display: flex;
    align-items: center;
    gap: 11px;
    z-index: 1;
}

.site-header__menu-toggle {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
}

.site-header__menu-toggle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-header__menu-toggle[aria-expanded="true"] img {
    filter: invert(1);
}

.site-header__phone {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-header__phone-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex-shrink: 0;
}

.site-header__phone-text {
    display: flex;
    flex-direction: column;
}

.site-header__phone-number {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-black);
    white-space: nowrap;
}

.site-header__phone-number:hover {
    opacity: 0.8;
}

.site-header__phone-hours {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-black);
    white-space: nowrap;
}

.site-header__logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    /* No hover opacity — the transition promotes the half-pixel-positioned
       logo to a compositor layer, causing a visible blur/shift on hover */
    transition: none;
}

.site-header__logo:hover {
    opacity: 1;
}

.site-header__logo img {
    height: 69px;
    width: auto;
}

.site-header__right {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1;
}

.site-header__search-wrapper {
    position: relative;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.site-header__search-toggle,
.site-header__cart,
.site-header__account {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    flex-shrink: 0;
}

.site-header__search-toggle--desktop {
    z-index: 2;
    transition: opacity 0.25s ease;
}

.site-header__search-toggle--mobile {
    display: none;
}

.site-header__search-toggle img,
.site-header__cart img,
.site-header__account img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-header__cart-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background-color: var(--color-red);
    color: var(--color-white);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 10px;
    min-width: 12px;
    height: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   SLIDE MENU
   ========================================================================== */

.slide-menu {
    position: fixed;
    top: 145px;
    left: 0;
    width: 372px;
    max-width: 100%;
    height: calc(100dvh - 145px);
    background-color: var(--color-off-white);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-overflow-scrolling: touch;
}

.slide-menu.is-open {
    transform: translateX(0);
}

.slide-menu__close {
    display: none;
}

.slide-menu__content {
    margin-top: 0;
}

.slide-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.slide-menu__item {
    border: none;
}

.slide-menu__item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.slide-menu__link {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 16px;
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: 1.6px;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-align: left;
    line-height: 1.5;
}

.slide-menu__link:hover {
    opacity: 0.7;
}

.slide-menu__toggle {
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.slide-menu__toggle[aria-expanded="true"] {
    transform: rotate(180deg);
}

.slide-menu__sub-list {
    list-style: none;
    padding: 0 0 8px 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.slide-menu__sub-list.is-open {
    max-height: 500px;
}

.slide-menu__sub-item {
    padding: 4px 0;
}

.slide-menu__sub-link {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    color: var(--color-black);
    letter-spacing: 0.8px;
    text-decoration: none;
    display: block;
    padding: 3px 0;
    line-height: 1.5;
}

.slide-menu__sub-link:hover {
    opacity: 0.7;
}

.slide-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: none;
}

.slide-menu-overlay.is-open {
    display: block;
}

/* ==========================================================================
   ACCOUNT MENU
   ========================================================================== */

.site-header__account-icon-active {
    display: none;
}

.site-header__account.is-active .site-header__account-icon {
    display: none;
}

.site-header__account.is-active .site-header__account-icon-active {
    display: block;
}

.account-menu__heading {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--color-black);
    padding: 16px 0;
    line-height: 1.5;
}

.account-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.account-menu__list li a {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    color: var(--color-black);
    letter-spacing: 0.8px;
    text-decoration: none;
    display: block;
    padding: 4px 0;
    line-height: 1.8;
    transition: opacity var(--transition);
}

.account-menu__list li a:hover {
    opacity: 0.7;
}

/* ==========================================================================
   SEARCH - DESKTOP INLINE
   ========================================================================== */

.search-inline {
    position: absolute;
    right: 0;
    top: 0;
    width: 44px;
    height: 44px;
    background: var(--color-white);
    border-radius: 22px;
    overflow: hidden;
    opacity: 0;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
    display: flex;
    pointer-events: none;
    z-index: 1;
}

.search-inline.is-open {
    width: 312px;
    opacity: 1;
    pointer-events: auto;
    background-color: var(--color-off-white);
}

.search-inline__input {
    flex: 1;
    border: none;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    outline: none;
    background: transparent;
    color: var(--color-black);
    height: 100%;
    min-width: 0;
    padding-left: 20px;
}

.search-inline__input::placeholder {
    color: var(--color-gray);
}

.search-inline__submit {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-black);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
    cursor: pointer;
}

.search-inline__submit img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: invert(1);
}

/* ==========================================================================
   SEARCH - MOBILE PANEL
   ========================================================================== */

.search-panel {
    position: fixed;
    top: 112px;
    left: 0;
    width: 100%;
    background-color: var(--color-off-white);
    z-index: 1001;
    padding: 15px 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.search-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-panel__form {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 312px;
    height: 44px;
    background: var(--color-white);
    border-radius: 22px;
    overflow: hidden;
    margin: 0 auto;
}

.search-panel__input {
    flex: 1;
    border: none;
    padding: 0 20px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    outline: none;
    background: transparent;
    color: var(--color-black);
    height: 100%;
    min-width: 0;
}

.search-panel__input::placeholder {
    color: var(--color-gray);
}

.search-panel__submit {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-black);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
}

.search-panel__submit:hover {
    opacity: 1;
}

/* ==========================================================================
   FOOTER - NEWSLETTER
   ========================================================================== */

.site-footer {
    width: 100%;
}

.footer-main {
    display: flex;
    flex-direction: column;
    background-color: var(--color-light-bg);
    padding-top: 30px;
}

.footer-newsletter {
    background-color: var(--color-red);
    padding: 20px 0;
    text-align: center;
    max-width: 647px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    margin-bottom: -60px;
}

.footer-newsletter__inner {
    max-width: 500px;
    margin: 0 auto;
}

.footer-newsletter__title {
    font-size: 36px;
    color: var(--color-off-white);
    margin-bottom: 10px;
    font-family: var(--font-primary), sans-serif;
    font-weight: 600;
}

.footer-newsletter__subtitle {
    font-weight: 400;
    font-size: 14px;
    color: var(--color-off-white);
    margin-bottom: 13px;
    line-height: 1.4;
}

.footer-newsletter__form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 19px;
    margin-bottom: 12px;
}

.footer-newsletter__input {
    width: 100%;
    max-width: 250px ;
    height: 36px;
    border: none;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-black);
    background-color: var(--color-white);
    outline: none;
    text-align: center;
}

.footer-newsletter__input::placeholder {
    color: var(--color-black);
    opacity: 1;
}

.footer-newsletter__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 30px;
    background-color: var(--color-black);
    color: var(--color-off-white);
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 15px;
    border: none;
    border-radius: 19px;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity var(--transition);
}

.footer-newsletter__btn:hover {
    opacity: 1;
}

.footer-newsletter__legal {
    font-weight: 400;
    font-size: 10px;
    color: var(--color-off-white);
    line-height: 1.6;
}

.footer-newsletter__legal a {
    text-decoration: underline;
    color: var(--color-off-white);
}

/* ==========================================================================
   FOOTER - NAVIGATION
   ========================================================================== */

.footer-nav {
    padding: 107px 0 60px;
}

.footer-nav > div{
    position: relative;
    max-width: calc(1325px + var(--container-padding) * 2);
}

.footer-nav__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.footer-nav__heading {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--color-black);
    margin-bottom: 21px;
    line-height: 1.5;
}

.footer-nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav__list li a {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.8px;
    color: var(--color-black);
    text-decoration: none;
    display: block;
    line-height: 1.8;
    transition: opacity var(--transition);
}

.footer-nav__list li a:hover {
    opacity: 0.7;
}

.footer-nav__social {
    display: flex;
    gap: 10px;
}

.footer-nav__social-link {
    display: block;
    width: 44px;
    height: 44px;
}

.footer-nav__social-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-nav__bird {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 135px;
    height: 135px;
    z-index: 2;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.footer-nav__bird-circle {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
}

.footer-nav__bird-body {
    position: absolute;
    width: 55% !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
}

/* ==========================================================================
   FOOTER - PATTERN
   ========================================================================== */

.footer-pattern {
    height: 117px;
    background-color: var(--color-black);
    background-image: url('../inc/images/kropki.png');
    background-size: auto 100%;
    background-repeat: repeat-x;
    background-position: center;
}

/* ==========================================================================
   FOOTER - COPYRIGHT
   ========================================================================== */

.footer-copyright {
    background-color: var(--color-red);
    height: 50px;
}

.footer-copyright__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0;
    max-width: calc(1325px + var(--container-padding) * 2);
}

.footer-copyright__text,
.footer-copyright__credit {
    font-weight: 400;
    font-size: 16px;
    color: var(--color-black);
    letter-spacing: 0.8px;
    line-height: 1;
}

.footer-copyright__credit a {
    text-decoration: underline;
    color: var(--color-black);
}

/* ==========================================================================
   FOOTER - EU LOGOS
   ========================================================================== */

.footer-eu__inner picture {
    display: contents;
}

.footer-eu {
    background-color: var(--color-white);
    padding-bottom: 17px;
}

.footer-eu__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-eu__img {
    height: 114px !important;
    max-width: 800px !important;
    width: 100% !important;
    object-fit: cover !important;
}

.footer-eu__text {
    max-width: 770px;
    margin: 15px auto 0;
    text-align: center;
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    color: var(--color-black, #000);
}

.footer-eu__text p {
    margin: 0;
}

/* ==========================================================================
   BODY LOCK
   ========================================================================== */

.site-header__right.search-active .site-header__search-toggle--desktop {
    opacity: 0;
    pointer-events: none;
}

/* ==========================================================================
   RESPONSIVE - MOBILE
   ========================================================================== */

@media (max-width: 1400px){
    .footer-copyright__inner{
        padding: 0 20px;
    }
    .footer-nav__bird{
        right: 20px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .site-header__inner {
        padding: 0 20px;
    }

    .site-header__phone {
        display: none;
    }

    .site-header__logo img {
        height: 60px;
    }

    .site-header__search-wrapper,
    .site-header__search-toggle--desktop {
        display: none;
    }

    .site-header__search-toggle--mobile {
        display: flex;
        width: 44px;
        height: 44px;
    }

    .search-panel {
        top: 145px;
    }
}

/* Mobile section reorder (stores before map on contact page) */
@media (max-width: 768px) {
    .site-main {
        display: flex;
        flex-direction: column;
    }

    .site-main > .stores {
        order: 1;
    }

    .site-main > .contact-map {
        order: 2;
    }
}

@media (max-width: 768px) {
    .header-info-bar {
        height: 32px;
    }

    .site-header__cart-badge{
        bottom: 0;
        right: 0;
    }

    .slide-menu {
        top: 113px;
        height: calc(100dvh - 113px);
        width: 100%;
    }

    .header-info-bar__text {
        font-size: 10px;
    }

    .site-header {
        height: 81px;
    }

    .site-header__inner {
        padding: 0 13px;
    }

    .site-header__phone {
        display: none;
    }

    .site-header__search-toggle--mobile {
        display: flex;
        width: 31px;
        height: 31px;
    }

    .site-header__search-wrapper,
    .site-header__search-toggle--desktop {
        display: none;
    }

    .site-header__menu-toggle {
        width: 31px;
        height: 31px;
    }

    .site-header__left {
        gap: 8px;
    }

    .site-header__logo img {
        height: 45px;
    }

    .site-header__cart,
    .site-header__account {
        width: 31px;
        height: 31px;
    }

    .site-header__right {
        gap: 8px;
    }

    .search-panel {
        display: none;
    }

    .search-panel.is-open {
        display: block;
    }

    /* Footer mobile */
    .site-footer {
        display: flex;
        flex-direction: column;
    }

    .footer-main {
        order: 1;
        padding-top: 0;
    }

    .footer-newsletter {
        order: 2;
        max-width: 100%;
        margin-bottom: 0;
        padding: 35px 20px 28px;
        position: static;
        z-index: auto;
    }

    .footer-pattern {
        order: 3;
        height: 100px;
    }

    .footer-eu {
        order: 4;
        padding: 0 0 20px;
        background-color: var(--color-white);
    }

    .footer-eu__inner {
        padding: 0;
        max-width: 100%;
    }

    .footer-eu__img {
        max-width: 100% !important;
        width: 100% !important;
        height: 70px !important;
        object-fit: contain !important;
    }

    .footer-eu__text {
        margin-top: 12px;
        padding: 0 15px;
        font-size: 11px;
    }

    .footer-copyright {
        order: 5;
        height: auto;
        padding: 25px 20px 0;
        background-color: var(--color-white);
    }

    .footer-copyright__inner {
        flex-direction: column;
        text-align: center;
        gap: 0;
        padding: 0;
        max-width: 100%;
    }

    .footer-copyright__text {
        font-size: 16px;
        letter-spacing: 0.8px;
        padding-bottom: 15px;
    }

    .footer-copyright__credit {
        font-size: 16px;
        letter-spacing: 0.8px;
        background-color: var(--color-light-bg);
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        padding: 15px 20px;
    }

    .footer-nav {
        padding: 35px 0 0;
    }

    .footer-nav__grid {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 30px;
    }

    .footer-nav__col--social {
        text-align: center;
        background-color: var(--color-white);
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        padding: 30px;
    }

    .footer-nav__social {
        justify-content: center;
        gap: 15px;
    }

    .footer-newsletter__legal p:first-child{
        margin-bottom: 15px;
    }

    .footer-nav__social-link {
        width: 64px;
        height: 64px;
    }

    .footer-nav__bird {
        display: none;
    }

    .footer-newsletter__title {
        font-size: 36px;
    }

    .footer-newsletter__subtitle {
        font-size: 14px;
    }

    .footer-newsletter__input {
        max-width: 240px ;
    }
}
