html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(17, 17, 17, 1);
    background-color: rgba(248, 248, 248, 1);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;}
a {
    text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}
ul, ol {
    list-style: none;
}
button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    font-family: "Open Sans", sans-serif;
    text-decoration: none;
}
section {
    max-width: 1440px;
    margin: 0 auto;
}
.hidden {
    display: none !important;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    clip: rect(0 0 0 0);
}

/* ============== Header ============== */

.header {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    width: 100%;
}
.header__container {
    position: relative;
    width: 100%;
}
.header__burger-toggle {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}
.header__contacts,
.header__nav-box {
    display: none;
}
.header__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    position: relative;
    z-index: 10;
    background-color: rgba(255, 255, 255, 1);
}
.header__burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 20;
    position: relative;
}
.header__burger span {
    width: 100%;
    height: 2px;
    background-color: rgba(17, 17, 17, 1);
    transition: all 0.3s ease;
}
.header__burger-toggle:checked ~ .header__main .header__burger span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background-color: rgba(255, 255, 255, 1);
}
.header__burger-toggle:checked ~ .header__main .header__burger span:nth-child(2) {
    opacity: 0;
}
.header__burger-toggle:checked ~ .header__main .header__burger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background-color: rgba(255, 255, 255, 1);
}
.header__logo {
    color: rgba(51, 51, 51, 1);
    font-family: "Varela Round";
    font-size: 24px;
}
.header__cart {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 20;
}
.header__cart-name {
    display: none; 
}
.header__cart-icon {
    width: 28px;
    height: 28px;
    fill: rgba(17, 17, 17, 1);
    transition: transform 0.3s ease;
}
.header__cart:hover .header__cart-icon {
    animation: shake 0.5s ease-in-out;
}
.header__nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    background-color: rgba(248, 248, 248, 1);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 15;
    padding: 70px 0 0;
    overflow-y: auto;
}
.header__burger-toggle:checked ~ .header__nav-mobile {
    right: 0;
}

.header__nav-mobile-content {
    display: flex;
    flex-direction: column;  
    justify-content: space-between;  
    height: 100%;
}
.header__mobile-logo {
    text-align: center;
    font-size: 32px;
    padding-bottom: 20px;
}
.header__nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 20px;
}
.header__nav-mobile .header__nav-link {
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
    width: fit-content;
}
.header__nav-link {
    color: rgba(17, 17, 17, 1);
    font-size: 14px;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}
.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: rgba(165, 201, 38, 1);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.header__nav-link:hover::after {
    width: 100%;
}
.header__nav-link:hover {
    color: rgba(165, 201, 38, 1);
}
.header__mobile-footer {
    display: flex;
    flex-direction: column-reverse;
    background-color: rgba(165, 201, 38, 1);
    padding: 40px 0;
}
.header__mobile-contacts {
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 10px;
    padding-top: 20px;
}
.header__contact-link {
    display: block;
    font-size: 14px;
    text-decoration: none;
    color: rgba(255, 255, 255, 1);
    opacity: 0.8;
}
.header__contact-link:hover {
    text-decoration: underline;
}
.header__mobile-socials {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-bottom: 20px;
    border-bottom: solid 1px rgba(255, 255, 255, 1);
}
.header__social-link {
    padding: 10px;
    display: flex;
}
.header__social-link svg {    
    fill: rgba(255, 255, 255, 1);
    transition: all 0.3s ease;
}
.header__social-link:hover svg {
    transform: scale(1.3);
}
.header__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 12;
    cursor: pointer;
    pointer-events: none;
}
.header__burger-toggle:checked ~ .header__overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.header__nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 25;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header__nav-close span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: rgba(17, 17, 17, 1);
    transition: background-color 0.3s ease;
}
.header__nav-close span:first-child {
    transform: rotate(45deg);
}
.header__nav-close span:last-child {
    transform: rotate(-45deg);
}
.header__nav-close:hover span {
    background-color: rgba(255, 82, 82, 1);
}
.header__mobile-cart {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.header__mobile-cart-link {
    color: rgba(17, 17, 17, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 20px;
    transition: background-color 0.3s ease;
}
.header__mobile-cart-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
}
.header__mobile-cart-text {
    font-size: 16px;
    flex: 1;
}
.header__mobile-cart-icon {
    fill: rgba(17, 17, 17, 1);
}
.header__cart-count, .header__mobile-cart-count {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(165, 201, 38, 1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
}
.header__cart-count, .header__mobile-cart-count span {
    color: rgba(255, 255, 255, 1);
    font-size: 12px;
}

/* ============== Hero Section ============== */

.hero {
    padding: 0 20px;
    height: 640px;
    background: url('../images/main-bg.png') no-repeat center / cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hero__container {
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 1);
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 570px;
}
.hero__sub-title {
    color: rgba(165, 201, 38, 1);
    font-size: 13px;
}
.hero__title {
    font-family: Varela Round;
    font-size: 28px;
    text-align: center;
}
.hero__button {
    border-radius: 24px;
    background-color: rgba(165, 201, 38, 1);
    padding: 12px 28px;
    color: rgba(255, 255, 255, 1);
    font-size: 14px;
    width: fit-content;
    transition: all 0.3s ease;
}
.hero__button:hover {
    background-color: rgba(143, 179, 32, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(165, 201, 38, 0.3);
}

/* ============== catalog Section ============== */

.catalog {
    padding: 120px 0;
}
.catalog__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
    gap: 60px;
}
.catalog__title-container {
    display: flex;
    flex-direction: column;
    gap: 120px;    
    justify-content: center;
    align-items: center;
}
.catalog__title {
    padding: 30px 20px;
    display: flex;
    flex-direction: column-reverse;
    width: 100%;  
    max-width: 570px;  
}
.stuffed {
    align-items: end;
    position: relative;
    border-radius: 16px;
    background-color: rgba(255, 193, 44, 1);
}
.wooden {
    align-items: start;
    position: relative;
    border-radius: 16px;
    background-color: rgba(251, 65, 107, 1);
}
.catalog__title img {
    width: 160px;
    height: auto;
}
.img-stuffed {
    z-index: 5;
    position: absolute;
    bottom: 45%;
    left: 15px;
}
.img-wooden {
    z-index: 5;
    position: absolute;
    right: 15px;
    bottom: 45%;
}
.catalog__title h3 {
    margin-top: 16px;
    color: rgba(255, 255, 255, 1);
    font-family: Varela Round;
    font-size: 28px;
}
.catalog__title button {
    width: fit-content;
    padding: 8px 24px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 1);
    transition: all 0.3s ease;
}
.catalog__title button:hover {
    background-color: rgba(165, 201, 38, 1);
    color: rgba(255, 255, 255, 1);
}
.catalog__toys-head {
    display: flex;
    flex-direction: column;
    gap: 34px;
    margin-bottom: 40px;
}
.catalog__toys-title-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.catalog__toys-title-container h3 {
    font-family: 'Varela Round', sans-serif;
    font-size: 24px;
}
.catalog__toys-title-container button {
    display: flex;
    gap: 4px;
    align-items: center;
    padding-bottom: 4px;
    border-bottom: solid 2px rgba(221, 221, 221, 1);
    position: relative;
    transition: all 0.3s ease;
}
.catalog__toys-title-container button::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: rgba(165, 201, 38, 1);
    transition: width 0.3s ease;
}
.catalog__toys-title-container button:hover::after {
    width: 100%;
}
.catalog__lines{
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
}
.catalog__line {
    width: 100%;
    height: 2px;
    background-color: rgba(221, 221, 221, 1);
}
.catalog__line-green {
    height: 2px;
    background-color: rgba(165, 201, 38, 1);
    position: absolute;
    left: 0;
    top: 0;
    width: 25%;
    transition: left 0.3s ease;
}
.catalog__toys-list {
    display: flex;
    gap: 30px;
    justify-content: start;
    overflow: hidden;
}
.catalog__toys-item {
    max-width: 270px;
    padding: 32px 44px;
    border-radius: 16px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}
.catalog__toys-item:hover {
    box-shadow: 0 12px 30px rgba(165, 201, 38, 0.3);
    border-color: rgba(165, 201, 38, 1);
}
.catalog__toys-item img {
    width: 182px;
    height: 182px;
    object-fit: contain;
}
.catalog__toys-item p {
    margin-top: 25px;
    margin-bottom: 12px;
    font-family: 'Varela Round';
    font-size: 14px;
    line-height: 1.4;
}
.catalog__toys-item span {
    border-radius: 16px;
    background-color: rgba(165, 201, 38, 1);
    padding: 2px 12px;
    color: rgba(255, 255, 255, 1);
    font-size: 12px;
    line-height: 1.7;
}

/* ============== about Section ============== */


.about {
    max-width: 1440px;
    height: 464px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/about-bg.png') no-repeat center / cover;
}
.about__container {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 718px;
}
.about__sub-title {
    color: rgba(255, 255, 255, 1);
    font-size: 13px;
    margin-bottom: 18px;
}
.about__title {
    color: rgba(255, 255, 255, 1);
    font-family: Varela Round;
    font-size: 24px;
    margin-bottom: 18px;
}
.about__description {
    color: rgba(255, 255, 255, 1);
    font-size: 14px;
    margin-bottom: 26px;
    text-align: center;
}
.about__button {
    background-color: rgba(165, 201, 38, 1);
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}
.about__button:hover {
    background-color: rgba(143, 179, 32, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(165, 201, 38, 1);
}
.about__button svg {
    fill: rgba(255, 255, 255, 1);
}


/* ============== Get It Section ============== */

.delivery {
    padding: 60px 0;
}
.delivery__container {
    padding: 0 20px;
}
.delivery__title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.delivery__sub-title {
    color: rgba(165, 201, 38, 1);
    font-size: 13px;
    margin-bottom: 18px;
}
.delivery__title {
    font-family: Varela Round;
    font-size: 24px;
    text-align: center;
}
.delivery__content {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}
.delivery__content-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.delivery__content-title {
    font-family: Varela Round;
    font-size: 24px;
    margin-bottom: 24px;
}
.delivery__content-line {
    display: flex;
    width: 70px;
    height: 2px;
    background-color: rgba(165, 201, 38, 1);
}
.delivery__content-desription {
    color: rgba(153, 153, 153, 1);
    margin-top: 24px;
    margin-bottom: 26px;
}
.delivery__content-btn {
    border-radius: 24px;
    padding: 12px 28px;
    background-color: rgba(165, 201, 38, 1);
    color: rgba(255, 255, 255, 1);
    width: fit-content;
    transition: all 0.3s ease;
}
.delivery__content-btn:hover {
    background: rgba(143, 179, 32, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(165, 201, 38, 0.3);
}
.delivery__content-image {
    border-radius: 16px;
    background: url('../images/kids.png') no-repeat center / cover;
    width: 100%;
    height: 422px;
}

/* ============== Subscribe Section ============== */

.subscribe {
    padding: 60px 0;
}
.subscribe__container {
    padding: 0 20px;
}
.subscribe__content {
    padding: 40px 10px;
    border-radius: 16px;
    box-shadow: 0px 1px 2px 0px rgba(221, 221, 221, 1);
    background-color: rgba(255, 255, 255, 1);
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.subscribe__title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.subscribe__icon-box {    
    width: 44px;
    height: 44px;
    padding: 10px;
    background-color: rgba(165, 201, 38, 1);
}
.subscribe__icon-box {
    fill: rgba(255, 255, 255, 1);
}
.subscribe__title-name {
    font-family: Varela Round;
    font-size: 18px;
}
.subscribe__title-name-green {
    color: rgba(165, 201, 38, 1);
}
.subscribe__message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.subscribe__input {
    border: 2px solid rgba(165, 201, 38, 1);
    border-radius: 24px;
    background-color: rgba(248, 248, 248, 1);
    width: 376px;
    height: 47px;
    padding: 0;
    padding-left: 10px;
}
.subscribe__input::placeholder {
    color: rgba(17, 17, 17, 1);
    line-height: 1.7;
}
.subscribe__btn {
    border-radius: 24px;
    background-color: rgba(165, 201, 38, 1);
    padding: 12px 28px;
    color: rgba(255, 255, 255, 1);
    width: fit-content;
    transition: all 0.3s ease;
}
.subscribe__btn:hover {
    background-color: rgba(143, 179, 32, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(165, 201, 38, 0.3);
}


/* ============== Instagram Section ============== */

.instagram {
    padding: 60px 0 ;
}
.instagram__container {    
    padding: 0 20px;
}
.instagram__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.instagram__sub-title {
    color: rgba(165, 201, 38, 1);
    font-size: 13px;
    margin-bottom: 18px;
    text-align: center;
}
.instagram__title {
    font-family: Varela Round;
    font-size: 24px;
    text-align: center;
}
.instagram__images {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 колонки */
    gap: 15px;
    margin: 40px 0 50px;
    width: 100%;
}
.instagram__img {
    width: 100%; /* Растягиваем на всю ячейку */
    height: auto;
    aspect-ratio: 1 / 1; /* Квадратные */
    object-fit: cover;
}
.instagram__img:nth-child(n+5) {
    display: none;
}
.instagram__button {
    border-radius: 24px;
    background-color: rgba(165, 201, 38, 1);
    padding: 12px 28px;
    color: rgba(255, 255, 255, 1);
    line-height: 1.7;
    text-align: center;
    display: inline-block;
    width: auto;
    margin: 0 auto;
    transition: all 0.3s ease;
}
.instagram__button:hover {
    background-color: rgba(143, 179, 32, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(165, 201, 38, 0.3);
}


/* ----------------- FOOTER ----------------- */

.footer {
    max-width: 1440px;
    margin: auto;
    padding: 60px 0;
    background-color: rgba(165, 201, 38, 1);
}
.footer__container {
    padding: 0 20px;
}
.footer__top {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    gap: 20px;
}

.footer__logo {
    color: rgba(255, 255, 255, 1);
    font-family: Varela Round;
    font-size: 24px;
    transition: transform 0.3s ease;
    position: relative;
    width: fit-content;
}
.footer__logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 1);
    transition: width 0.3s ease;
}
.footer__logo:hover::after {
    width: 100%;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;    
}
.footer__nav-link {    
    color: rgba(255, 255, 255, 1);
    position: relative;
}

.footer__nav-link::after,
.footer__credits a::after,
.footer__info a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}
.footer__nav-link:hover::after,
.footer__credits a:hover::after,
.footer__info a:hover::after {
    width: 100%;
}

.footer__socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.footer__socials svg {
    fill: rgba(255, 255, 255, 1);
    transition: transform 0.3s ease;
}
.footer__social-link:hover svg {
    transform: scale(1.5);
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);    
}

.footer__credits {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.footer__credits p {
    color: rgba(255, 255, 255, 1);
}
.footer__credits a {
    color: rgba(255, 255, 255, 1);
    position: relative;
}

.footer__info {
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer__info p {
    color: rgba(255, 255, 255, 1);
}
.footer__info a {
    color: rgba(255, 255, 255, 1);    
    position: relative;
}
.footer__info span {    
    width: 3px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.5);
}

/* ----------------- MEDIA ----------------- */

@media (min-width: 500px) { 
    .catalog__title {
        flex-direction: column;
        padding: 40px 20px;
    }
    .catalog__title img {
        width: 190px;
    }
    .img-stuffed, .img-wooden {
        bottom: 15px;
    }
    .catalog__title h3 {
        margin-top: 0;
        margin-bottom: 16px;
    }
}
@media (min-width: 600px) {
    .hero {
        padding: 0;
    }
    .hero__container {
        padding: 55px;
    }
    .hero__title {
        font-size: 32px;
    }

    .catalog__title img {
        width: 220px;
    }    
    
    .subscribe__input {
        padding-left: 15px;
    }

    .instagram__images {
        gap: 20px;
        grid-template-columns: repeat(3, 1fr); /* 3 колонки */
    }    
    .instagram__img:nth-child(n+5) {
        display: block;
    }
}
@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
    .header__burger,
    .header__burger-toggle,
    .header__nav-mobile,
    .header__overlay {
        display: none;
    }
    .header__contacts {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 5px 40px;
        background-color: rgba(165, 201, 38, 1);
    }
    .header__contact {
        display: flex;
        align-items: center;
        gap: 16px;
    }
    .header__contact-link {
        font-size: 12px;
        text-decoration: none;
        position: relative;
    }
    .header__socials {
        display: flex;
        align-items: center;
        gap: 5px;
    }
    .header__social-link {
        padding: 5px;
    }
    .header__social-link svg {
        width: 18px;
        height: 18px;
        transition: transform 0.3s ease, fill 0.3s ease;
    }
    .header__socials-link:hover svg {
        transform: scale(1.2);
    }    
    .header__main {
        padding: 20px 40px;
        justify-content: flex-start;
        gap: 60px;
    } 
    .header__nav-box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex: 1;
    }
    .header__nav {
        display: flex;
        align-items: center;
        gap: 40px;
    }
    .header__cart {
        display: flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
    }
    .header__cart-name {
        display: inline;
        font-size: 14px;
    }
    .header__cart-icon {
        width: 32px;
        height: 32px;
    }

    .hero__container {
        padding: 55px 75px;
    }
    .hero__title{
        font-size: 38px;
    }

    .catalog__title-container {
        flex-direction: row;
        gap: 40px;
    }
    .catalog__title {
        flex-direction: column-reverse;
    }
    .img-stuffed, .img-wooden {
        bottom: 45%;
    }
    .catalog__title img {
        width: 150px;
    }
    .catalog__title h3 {
        margin-top: 16px;
        margin-bottom: 0;
    }
    .catalog__toys-title-container h3 {
        font-size: 28px;
    }

    .about__container{
        padding: 0;
    }
    .about__title  {
        font-size: 28px;
    }
    .about__description {
        font-size: 16px;
    }

    .delivery__content {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .delivery__title {
        font-size: 28px;
    }
    .delivery__content-title {
        font-size: 28px;
    }
    .delivery__content-info {
        align-items: start;
    }
    

    .subscribe__content {
        padding: 35px;
    }    

    .instagram__title {
        font-size: 28px;
    } 
    .instagram__images {        
        gap: 15px;
    }    

    .footer {
        padding: 40px 0;
    }        
    .footer__top {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap; 
    }
    .footer__nav {
        flex-direction: row;
    }    
    .footer__socials {
        order: 3; 
        flex: 0 0 100%; 
        margin-top: 20px;
        justify-content: center;
    }
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}
@media (min-width: 992px) {
    .catalog__title-container {
        flex-direction: row;
        gap: 40px;
    }
    .catalog__title {
        flex-direction: column;
    }
    .img-stuffed, .img-wooden {
        bottom: 15px;
    }
    .catalog__title img {
        width: 180px;
    }
    .catalog__title h3 {
        margin-top: 0;
        margin-bottom: 16px;
    }

    .subscribe__content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        justify-content: space-between;
    }
    .subscribe__icon-box{
        width: 64px;
        height: 64px;
        padding: 20px;
    }
    .subscribe__title {
        justify-content: flex-start;
        width: 100%;
    }
    .subscribe__title-name {
        font-size: 22px;
        max-width: 300px;
    }
    .subscribe__message {
        width: 100%;
        justify-content: flex-end;
    }    
    .subscribe__input {
        max-width: 100%;
    }
    
    .delivery__content {
        gap: 80px;
    }

    .instagram__images {
        grid-template-columns: repeat(6, 1fr);
    }  
    
    .footer__socials {
        flex: 0 0 auto;
        margin-top: 0;
        order: 2;
    }    
    .footer__nav {
        order: 1;
    }
}
@media (min-width: 1199px) {
    .container {
        padding: 0 60px;
    }

    .header__contacts {
        padding: 5px 60px;
    }
    .header__main {
        padding: 10px 60px;
    }
    .header__logo {
        font-size: 28px;
    }
    .header__nav-link {
        font-size: 16px;
    }    

    .hero__sub-title {
        font-size: 14px;
    }

    .catalog__title-container {
        gap: 80px;
    }
    .catalog__title {
        flex-direction: column;
    }    
    .catalog__title img {
        width: 220px;
    }

    .about__sub-title {
        font-size: 14px;
    }
    .about__title  {
        font-size: 32px;
    }
    .about__description {
        font-size: 18px;
    }
    .about__button {
        width: 64px;
        height: 64px;
    }
    .about__button svg {
        width: 24px;
        height: 24px;
    }

    .delivery {
        padding: 120px 0 60px;
    }  
    .delivery__sub-title {
        font-size: 14px;
    }    
    .delivery__title {
        font-size: 32px;
    }
    .delivery__content-title {
        font-size: 32px;
    }
    .delivery__content {
        gap: 150px;
        margin-top: 80px;
    }
    .delivery__content-desription {
        font-size: 16px;
    }

    .instagram {
        padding: 60px 0 120px;
    }
    .instagram__sub-title {
        font-size: 14px;
    }
    .instagram__title {
        font-size: 32px;
    }
    .instagram__images {        
        margin: 80px 0 70px;
    }

    .footer__logo {
        font-size: 28px;
    }
    .footer__nav {
        gap: 30px;
    }
    .footer__nav-link {
        font-size: 16px;
    }
    .footer__socials svg {
        width: 24px;
        height: 24px;
    }
}
@media (min-width: 1440px) {  
    .container {
        padding: 0 120px;
    }
    
    .header__contacts {
        padding: 5px 120px;
    }
    .header__main {
        padding: 20px 120px;
    }
    .header__logo {
        font-size: 32px;
    }
    .header__nav-link {
        font-size: 18px;
    }
    .header__cart-name {
        font-size: 16px;
    }

    .catalog__title-container {
        gap: 120px;
    }
    .catalog__toys-list {
        justify-content: center;
    }
    
    .footer__logo {
        font-size: 32px;
    }    
    .footer__nav-link {
        font-size: 18px;
    }
    .footer__credits p, .footer__credits a, .footer__info p, .footer__info a {
        font-size: 16px;
    }
}
