@font-face {
    font-family: "Figtree";
    src: url("./Figtree-ExtraBold.woff2") format("woff2"),
         url("./Figtree-ExtraBold.woff") format("woff");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Figtree";
    src: url("./Figtree-Bold.woff2") format("woff2"),
         url("./Figtree-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Figtree";
    src: url("./Figtree-SemiBold.woff2") format("woff2"),
         url("./Figtree-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Fredoka";
    src: url("./Fredoka-Medium.woff2") format("woff2"),
         url("./Fredoka-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Fredoka";
    src: url("./Fredoka-SemiBold.woff2") format("woff2"),
         url("./Fredoka-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

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

html {
    min-width: 320px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: #125b85;
    background: #ffffff;
    font-family: "Figtree";
}

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

a {
    color: inherit;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 740px;
    background: #ffffff;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    background: #faf0e8;
    pointer-events: none;
}

.hero::before {
    top: 0;
    right: 0;
    left: 0;
    height: calc(100% - 70px);
}

.hero::after {
	right: -4%;
	bottom: 10px;
	left: -4%;
	height: 150px;
	border-radius: 0 0 50% 50% / 0 0 40% 40%;
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(430px, 560px) minmax(480px, 1fr);
    gap: 46px;
    width: min(1200px, calc(100% - 48px));
    min-height: 740px;
    margin: 0 auto;
    padding: 87px 0 78px;
}

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.features {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0 0 44px;
    padding: 0;
    list-style: none;
}

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

.features__icon {
    width: auto;
    height: 30px;
    object-fit: contain;
}

.hero__title {
    max-width: 560px;
    margin: 0 0 28px;
    color: #185e86;
    font-family: "Fredoka";
    font-size: clamp(44px, 4.1vw, 60px);
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: 0;
}

.hero__text {
    max-width: 550px;
    margin: 0 0 24px;
    color: #185e86;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.38;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 0 0 56px;
}

.price__label {
    color: #185e86;
    font-size: 24px;
    font-weight: 700;
}

.price__value {
    color: #ff8200;
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
}

.hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 346px;
    min-height: 67px;
    padding: 18px 32px;
    border-radius: 999px;
    background: #ff8200;
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero__button:hover,
.hero__button:focus-visible {
    background: #e87500;
    transform: translateY(-1px);
}

.toy-slider {
    position: relative;
    align-self: start;
    --scene-width: clamp(520px, 44vw, 750px);
    width: calc(100% + max(24px, (100vw - 1200px) / 2));
    margin-right: calc(-1 * max(24px, (100vw - 1200px) / 2));
    min-width: 0;
}

.toy-slider__bg {
    position: absolute;
    top: -87px;
    right: -12px;
    z-index: 0;
    width: var(--scene-width);
    max-width: none;
    pointer-events: none;
}

.toy-slider__viewport {
	position: relative;
	z-index: 1;
	overflow: visible;
	width: var(--scene-width);
	margin: -87px -12px 0 auto;
	touch-action: pan-y;
}

.toy-slider__track {
    position: relative;
    height: calc(var(--scene-width) * 0.84);
}

.toy-slide {
    position: absolute;
    inset: 0;
    min-height: 100%;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.toy-slide--active {
    opacity: 1;
    visibility: visible;
}

.toy-slide__toy {
    position: absolute;
    top: calc(var(--scene-width) * 0.12);
    right: calc(var(--scene-width) * 0.165);
    width: calc(var(--scene-width) * 0.713);
    max-width: none;
    filter: drop-shadow(0 28px 22px rgba(80, 45, 20, 0.22));
    transition: transform 0.45s ease, opacity 0.45s ease;
}


.toy-slider__dots {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: calc(var(--scene-width) * 0.04) 0 0 calc(var(--scene-width) * 0.107);
}

.toy-slider__dot {
    width: 33px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #c9bab0;
    cursor: pointer;
    transition: width 0.2s ease, background-color 0.2s ease;
}

.toy-slider__dot--active {
    width: 64px;
    background: #bd7031;
}

.toy-slider__dot:focus-visible {
    outline: 3px solid rgba(18, 91, 133, 0.45);
    outline-offset: 4px;
}

.comfort {
    background: #ffffff;
    color: #4f4f4f;
}

.comfort__inner {
    width: min(984px, calc(100% - 48px));
    margin: 0 auto;
    padding: 79px 0 72px;
    text-align: center;
}

.comfort__title {
    margin: 0 0 42px;
    color: #185e86;
    font-family: "Fredoka";
    font-size: 48px;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: 0;
}

.comfort__copy {
    display: grid;
    gap: 25px;
    max-width: 730px;
    margin: 0 auto 46px;
}

.comfort__copy p {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.34;
}

.comfort__tagline {
    margin: 0 0 67px;
    color: #d95f68;
    font-family: "Fredoka";
    font-size: 30px;
    font-weight: 500;
    line-height: 1.1;
}

.comfort-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 62px;
    margin: 0 0 72px;
    padding: 0;
    list-style: none;
}

.comfort-benefits__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    color: #4f4f4f;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.15;
}

.comfort-benefits__icon {
    width: auto;
    height: 120px;
    object-fit: contain;
}

.comfort__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 346px;
    min-height: 67px;
    padding: 18px 32px;
    border-radius: 999px;
    background: #ff8200;
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.comfort__button:hover,
.comfort__button:focus-visible {
    background: #e87500;
    transform: translateY(-1px);
}

.reasons {
    background: #faf0e8;
    color: #4f4f4f;
}

.reasons__inner {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    padding: 97px 0 120px;
    text-align: center;
}

.reasons__title {
    max-width: 850px;
    margin: 0 auto 57px;
    color: #185e86;
    font-family: "Fredoka";
    font-size: 48px;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: 0;
}

.reason-cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.reason-card {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 394px;
    padding: 44px 38px 36px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(92, 62, 42, 0.05);
}

.reason-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.reason-card:nth-child(5) {
    grid-column: 4 / span 2;
}

.reason-card__icon {
    width: auto;
    height: 124px;
    margin-bottom: 31px;
    object-fit: contain;
}

.reason-card__title {
    max-width: 290px;
    margin: 0 0 24px;
    color: #185e86;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.35;
}

.reason-card__text {
    max-width: 310px;
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
}

.reason-slider__dots {
    display: none;
}

.zoo-friends {
    background: #bfe3fb url(//thermalaidproducts.com/cdn/shop/t/9/assets/l1-4bg.jpg?v=145294052239192209151783791837) center top / cover no-repeat;
    color: #4f4f4f;
}

.zoo-friends__inner {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    padding: 92px 0 96px;
    text-align: center;
}

.zoo-friends__title {
    margin: 0 0 42px;
    color: #185e86;
    font-family: "Fredoka";
    font-size: 48px;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: 0;
}

.zoo-friends__subtitle {
    margin: 0 0 48px;
    color: #185e86;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25;
}

.zoo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 27px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.zoo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 554px;
    padding: 26px 30px 43px;
    border-radius: 24px;
    background: #ffffff;
}

.zoo-card__image-wrap {
    position: relative;
    width: 100%;
    max-width: 220px;
    margin: 0 auto 25px;
}

.zoo-card__image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
}

.zoo-card__title {
    margin: 0 0 18px;
    color: #185e86;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.1;
}

.zoo-card__text {
    max-width: 230px;
    margin: 0 auto 30px;
    color: #4f4f4f;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
}

.zoo-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 208px;
    min-height: 56px;
    margin-top: auto;
    padding: 15px 20px;
    border-radius: 999px;
    background: #ff8200;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.zoo-card__button:hover,
.zoo-card__button:focus-visible {
    background: #e87500;
    transform: translateY(-1px);
}

.two-ways {
    background: #ffffff;
    color: #4f4f4f;
}

.two-ways__inner {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    padding: 99px 0 70px;
    text-align: center;
}

.two-ways__title {
    margin: 0 0 62px;
    color: #185e86;
    font-family: "Fredoka";
    font-size: 48px;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: 0;
}

.two-ways__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin: 0 0 64px;
    padding: 0;
    list-style: none;
}

.two-way-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 447px;
    padding: 44px 42px 44px;
    border-radius: 24px;
    box-shadow: inset 0 -12px 0 rgba(24, 94, 134, 0.08);
}

.two-way-card--warm {
    background: #f9e0cf;
}

.two-way-card--cool {
    background: #dceaf7;
}

.two-way-card--reuse {
    background: #d9f0e6;
}

.two-way-card__icon {
    width: 121px;
    height: 121px;
    margin-bottom: 31px;
    object-fit: contain;
}

.two-way-card__title {
    max-width: 245px;
    margin: 0 0 18px;
    color: #185e86;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.12;
}

.two-way-card__text {
    max-width: 300px;
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
}

.two-ways__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 386px;
    min-height: 67px;
    padding: 18px 32px;
    border-radius: 999px;
    background: #ff8200;
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.two-ways__button:hover,
.two-ways__button:focus-visible {
    background: #e87500;
    transform: translateY(-1px);
}

.two-ways-slider__dots {
    display: none;
}

.alternative {
    position: relative;
    overflow: hidden;
    min-height: 677px;
    background: #ffffff url(//thermalaidproducts.com/cdn/shop/t/9/assets/l1-6-bg.jpg?v=9319921139509713111783791842) center top / cover no-repeat;
}

.alternative__mobile-image {
    display: none;
}

.alternative__inner {
    position: relative;
    width: min(1200px, calc(100% - 48px));
    min-height: 677px;
    margin: 0 auto;
}

.alternative__content {
    width: min(570px, 100%);
    margin: 0 auto;
    padding-top: 56px;
    text-align: center;
}

.alternative__title {
    margin: 0 0 43px;
    color: #185e86;
    font-family: "Fredoka";
    font-size: 48px;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: 0;
}

.alternative__text {
    margin: 0 auto 35px;
    color: #185e86;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.35;
}

.alternative__text strong {
    font-weight: 800;
}

.alternative__arrow {
    position: absolute;
    top: clamp(392px, 30vw, 406px);
    left: clamp(8px, 13vw - 63px, 124px);
    width: clamp(210px, 20vw, 288px);
    height: auto;
}

.great-for {
    background: #faf0e8;
    color: #185e86;
}

.great-for__inner {
    display: grid;
    grid-template-columns: minmax(360px, 1fr) minmax(480px, 599px);
    align-items: center;
    gap: 34px;
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    padding: 111px 0 102px;
}

.great-for__content {
    min-width: 0;
}

.great-for__title {
    margin: 0 0 49px;
    color: #185e86;
    font-family: "Fredoka";
    font-size: 48px;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: 0;
}

.great-for__list {
    display: grid;
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.great-for__list li {
    position: relative;
    min-height: 28px;
    padding-left: 45px;
    color: #185e86;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.18;
}

.great-for__list li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
    background: url(//thermalaidproducts.com/cdn/shop/t/9/assets/l1-7-li-icon.png?v=77112843679885492601783791842) center / contain no-repeat;
}

.great-for__image {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.different {
    background: #ffffff;
    color: #185e86;
}

.different__inner {
    width: min(1140px, calc(100% - 48px));
    margin: 0 auto;
    padding: 92px 0 86px;
    text-align: center;
}

.different__title {
    max-width: 620px;
    margin: 0 auto 92px;
    color: #185e86;
    font-family: "Fredoka";
    font-size: 46px;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: 0;
}

.different__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 42px;
    align-items: start;
    margin-bottom: 75px;
}

.different-slider__dots {
    display: none;
}

.different-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
}

.different-card__icon {
    width: 139px;
    height: 139px;
    margin-bottom: 13px;
    object-fit: contain;
}

.different-card__title {
    margin: 0 0 22px;
    color: #185e86;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: 0;
}

.different-card__text {
    max-width: 244px;
    margin: 0;
    color: #4f4f4f;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.22;
}

.different__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 408px;
    min-height: 67px;
    padding: 18px 34px;
    border-radius: 999px;
    background: #ff8200;
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.different__button:hover,
.different__button:focus-visible {
    background: #e87500;
    transform: translateY(-1px);
}

.different__button:focus-visible {
    outline: 3px solid rgba(24, 94, 134, 0.45);
    outline-offset: 4px;
}

.choose-animal {
    background: #faf0e8;
    color: #185e86;
}

.choose-animal__inner {
    width: min(1056px, calc(100% - 48px));
    margin: 0 auto;
    padding: 94px 0 110px;
    text-align: center;
}

.choose-animal__title {
    margin: 0 0 52px;
    color: #185e86;
    font-family: "Fredoka";
    font-size: 48px;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: 0;
}

.choose-animal__text {
    max-width: 696px;
    margin: 0 auto 58px;
    color: #185e86;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.35;
}

.choose-animal__gallery {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    justify-items: center;
    align-items: end;
    gap: 10px 14px;
    width: min(1056px, 100%);
    margin: 0 auto 60px;
}

.choose-animal__toy {
    width: auto;
    max-width: 100%;
    height: 240px;
    object-fit: contain;
}

.choose-animal__toy--wide {
    width: auto;
}

.choose-animal__toy:nth-child(6) {
    grid-column: 2;
}

.choose-animal__toy:nth-child(7) {
    grid-column: 3;
}

.choose-animal__toy:nth-child(8) {
    grid-column: 4;
}

.choose-animal__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 11px;
    margin: 0 0 46px;
    color: #185e86;
    font-size: 23px;
    font-weight: 800;
    line-height: 1;
}

.choose-animal__price strong {
    color: #ff8200;
    font-size: 56px;
    font-weight: 800;
    line-height: 0.9;
}

.choose-animal__actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.choose-animal__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 365px;
    min-height: 67px;
    padding: 18px 32px;
    border: 2px solid #ff8200;
    border-radius: 999px;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.choose-animal__button--primary {
    background: #ff8200;
    color: #ffffff;
}

.choose-animal__button--secondary {
    background: transparent;
    color: #ff8200;
}

.choose-animal__button--primary:hover,
.choose-animal__button--primary:focus-visible {
    background: #e87500;
    border-color: #e87500;
    transform: translateY(-1px);
}

.choose-animal__button--secondary:hover,
.choose-animal__button--secondary:focus-visible {
    background: #ff8200;
    color: #ffffff;
    transform: translateY(-1px);
}

.choose-animal__button:focus-visible {
    outline: 3px solid rgba(24, 94, 134, 0.45);
    outline-offset: 4px;
}

.faq {
    background: #ffffff;
    color: #185e86;
}

.faq__inner {
    width: min(796px, calc(100% - 48px));
    margin: 0 auto;
    padding: 94px 0 128px;
}

.faq__title {
    margin: 0 0 57px;
    color: #185e86;
    font-family: "Fredoka";
    font-size: 46px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
}

.faq__list {
    display: grid;
}

.faq__item {
    border-bottom: 1px solid rgba(79, 79, 79, 0.85);
}

.faq__question {
    position: relative;
    display: block;
    padding: 36px 54px 36px 0;
    color: #185e86;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.18;
    list-style: none;
    cursor: pointer;
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question::after {
    content: "";
    position: absolute;
    top: 44px;
    right: 5px;
    width: 12px;
    height: 12px;
    border-top: 4px solid #185e86;
    border-left: 4px solid #185e86;
    transform: rotate(225deg);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.faq__item[open] .faq__question {
    padding-bottom: 18px;
}

.faq__item[open] .faq__question::after {
    transform: rotate(45deg);
}

.faq__answer {
    max-width: 760px;
    padding: 0 54px 36px 0;
}

.faq__answer p {
    margin: 0;
    color: #4f4f4f;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.32;
}

@media (max-width: 1060px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-top: 0;
    }

    .hero__content {
        order: 2;
        align-items: center;
        text-align: center;
    }

    .features {
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 30px;
    }

    .hero__text {
        max-width: 680px;
    }

    .toy-slider__viewport {
        margin: calc(var(--scene-width) * -0.027) auto 0;
    }

    .toy-slider {
        order: 1;
        --scene-width: min(520px, calc(100vw - 48px));
        width: auto;
        margin-right: 0;
    }

    .toy-slider__bg {
        top: 0;
        right: 50%;
        transform: translateX(50%);
    }

    .toy-slider__dots {
        margin: 28px 0 40px;
    }

    .reasons__inner {
        padding: 76px 0 88px;
    }

    .reason-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .reason-card,
    .reason-card:nth-child(4),
    .reason-card:nth-child(5) {
        grid-column: auto;
    }

    .reason-card:last-child {
        grid-column: 1 / -1;
        width: min(50%, 386px);
        margin: 0 auto;
    }

    .zoo-friends__inner {
        padding: 76px 0 80px;
    }

    .zoo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .zoo-card {
        min-height: 520px;
    }

    .two-ways__inner {
        padding: 76px 0 66px;
    }

    .two-ways__cards {
        gap: 18px;
    }

    .two-way-card {
        padding: 36px 28px 40px;
    }

    .two-way-card__title {
        font-size: 26px;
    }

    .alternative {
        background-position: center top;
    }

    .alternative__content {
        width: min(520px, 100%);
    }

    .alternative__title {
        font-size: 42px;
    }

    .alternative__text {
        font-size: 22px;
    }

    .great-for__inner {
        grid-template-columns: 1fr;
        gap: 44px;
        padding: 76px 0 84px;
    }

    .great-for__image {
        order: -1;
        width: min(100%, 599px);
        margin: 0 auto;
    }

    .great-for__content {
        width: min(680px, 100%);
        margin: 0 auto;
    }

    .different__inner {
        padding: 74px 0 76px;
    }

    .different__title {
        margin-bottom: 58px;
        font-size: 42px;
    }

    .different__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 46px 34px;
        margin-bottom: 56px;
    }

    .choose-animal__inner {
        padding: 74px 0 84px;
    }

    .choose-animal__title {
        margin-bottom: 34px;
        font-size: 42px;
    }

    .choose-animal__text {
        margin-bottom: 42px;
        font-size: 22px;
    }

    .choose-animal__gallery {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 14px 12px;
        margin-bottom: 48px;
    }

    .choose-animal__toy,
    .choose-animal__toy--wide,
    .choose-animal__toy:nth-child(n) {
        grid-column: auto;
        width: auto;
        height: 220px;
    }

    .choose-animal__actions {
        gap: 14px;
    }

    .choose-animal__button {
        min-width: 0;
        width: min(50%, 365px);
        padding: 18px 24px;
        font-size: 18px;
    }

    .faq__inner {
        padding: 74px 0 92px;
    }

    .faq__title {
        margin-bottom: 38px;
        font-size: 42px;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 0;
    }

    .hero__inner {
        width: min(100% - 32px, 520px);
        min-height: 0;
        padding: 0 0 72px;
    }

    .toy-slider {
        --scene-width: min(520px, 100vw);
    }

    .features {
        gap: 14px 18px;
    }

    .features__icon {
        height: 27px;
    }

    .hero__title {
        font-size: 42px;
    }

    .hero__text {
        font-size: 19px;
    }

    .price {
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 34px;
    }

    .price__label {
        font-size: 20px;
    }

    .price__value {
        font-size: 46px;
    }

    .hero__button {
        min-width: 0;
        width: 100%;
        min-height: 60px;
        font-size: 17px;
    }

    .toy-slider__viewport {
        width: calc(var(--scene-width) * 0.887);
    }

    .toy-slide {
        min-height: calc(var(--scene-width) * 0.84);
    }

    .toy-slider__track {
        height: calc(var(--scene-width) * 0.84);
    }

    .toy-slider__bg {
        top: 0;
    }

    .toy-slide__toy {
        top: calc(var(--scene-width) * 0.12);
        right: 50%;
        width: calc(var(--scene-width) * 0.75);
        transform: translateX(50%);
    }

    .toy-slide:nth-child(n) .toy-slide__toy {
        transform: translateX(50%);
    }

    .toy-slider__dots {
        margin: 20px 0 34px;
    }

    .comfort__inner {
        width: min(100% - 32px, 520px);
        padding: 52px 0 58px;
    }

    .comfort__title {
        margin-bottom: 28px;
        font-size: 38px;
    }

    .comfort__copy {
        gap: 20px;
        margin-bottom: 34px;
    }

    .comfort__copy p {
        font-size: 19px;
    }

    .comfort__tagline {
        margin-bottom: 42px;
        font-size: 26px;
    }

    .comfort-benefits {
        grid-template-columns: 1fr;
        gap: 34px;
        margin-bottom: 44px;
    }

    .comfort-benefits__item {
        gap: 16px;
        font-size: 21px;
    }

    .comfort-benefits__icon {
        height: 104px;
    }

    .comfort__button {
        min-width: 0;
        width: 100%;
        min-height: 60px;
        font-size: 17px;
    }

    .reasons__inner {
        width: min(100% - 32px, 520px);
        padding: 56px 0 66px;
    }

    .reasons__title {
        margin-bottom: 34px;
        font-size: 38px;
    }

    .reason-cards {
        position: relative;
        display: block;
        min-height: 0;
        touch-action: pan-y;
    }

    .reason-card {
        position: absolute;
        inset: 0;
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        transition: opacity 0.45s ease, visibility 0.45s ease;
    }

    .reason-card--active {
        position: relative;
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
    }

    .reason-card,
    .reason-card:last-child,
    .reason-card--active {
        width: 100%;
        min-height: 0;
        padding: 34px 26px 30px;
    }

    .reason-card__icon {
        height: 104px;
        margin-bottom: 24px;
    }

    .reason-card__title {
        margin-bottom: 16px;
        font-size: 22px;
    }

    .reason-card__text {
        font-size: 18px;
    }

    .reason-slider__dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 22px;
    }

    .reason-slider__dot {
        width: 28px;
        height: 10px;
        padding: 0;
        border: 0;
        border-radius: 999px;
        background: #d7cbc2;
        cursor: pointer;
        transition: width 0.2s ease, background-color 0.2s ease;
    }

    .reason-slider__dot--active {
        width: 56px;
        background: #ff8200;
    }

    .reason-slider__dot:focus-visible {
        outline: 3px solid rgba(24, 94, 134, 0.45);
        outline-offset: 4px;
    }

    .zoo-friends__inner {
        width: min(100% - 32px, 520px);
        padding: 54px 0 62px;
    }

    .zoo-friends__title {
        margin-bottom: 22px;
        font-size: 38px;
    }

    .zoo-friends__subtitle {
        margin-bottom: 34px;
        font-size: 20px;
    }

    .zoo-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .zoo-card {
        min-height: 0;
        padding: 14px 12px 18px;
        border-radius: 18px;
    }

    .zoo-card__image-wrap {
        max-width: 124px;
        margin-bottom: 14px;
    }

    .zoo-card__title {
        margin-bottom: 10px;
        font-size: 16px;
    }

    .zoo-card__text {
        margin-bottom: 16px;
        font-size: 13px;
    }

    .zoo-card__button {
        width: 100%;
        min-height: 42px;
        padding: 12px 10px;
        font-size: 12px;
    }

    .two-ways__inner {
        width: min(100% - 32px, 520px);
        padding: 54px 0 58px;
    }

    .two-ways__title {
        margin-bottom: 34px;
        font-size: 38px;
    }

    .two-ways__cards {
        position: relative;
        display: block;
        margin-bottom: 0;
        touch-action: pan-y;
    }

    .two-way-card {
        position: absolute;
        inset: 0;
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        transition: opacity 0.45s ease, visibility 0.45s ease;
    }

    .two-way-card--active {
        position: relative;
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
    }

    .two-way-card,
    .two-way-card--active {
        min-height: 0;
        padding: 34px 26px 38px;
    }

    .two-way-card__icon {
        width: 104px;
        height: 104px;
        margin-bottom: 24px;
    }

    .two-way-card__title {
        font-size: 24px;
    }

    .two-way-card__text {
        font-size: 18px;
    }

    .two-ways-slider__dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin: 22px 0 38px;
    }

    .two-ways-slider__dot {
        width: 28px;
        height: 10px;
        padding: 0;
        border: 0;
        border-radius: 999px;
        background: #d7cbc2;
        cursor: pointer;
        transition: width 0.2s ease, background-color 0.2s ease;
    }

    .two-ways-slider__dot--active {
        width: 56px;
        background: #ff8200;
    }

    .two-ways-slider__dot:focus-visible {
        outline: 3px solid rgba(24, 94, 134, 0.45);
        outline-offset: 4px;
    }

    .two-ways__button {
        min-width: 0;
        width: 100%;
        min-height: 60px;
        font-size: 17px;
    }

    .alternative {
        min-height: 0;
        background: #ffffff;
    }

    .alternative__mobile-image {
        display: block;
        width: 100%;
        height: auto;
    }

    .alternative__inner {
        width: min(100% - 32px, 520px);
        min-height: 0;
        padding: 46px 0 58px;
    }

    .alternative__content {
        width: 100%;
        padding-top: 0;
    }

    .alternative__title {
        margin-bottom: 28px;
        font-size: 38px;
    }

    .alternative__text {
        margin-bottom: 24px;
        font-size: 19px;
    }

    .alternative__arrow {
        display: none;
    }

    .great-for__inner {
        width: min(100% - 32px, 520px);
        gap: 30px;
        padding: 54px 0 58px;
    }

    .great-for__title {
        margin-bottom: 30px;
        font-size: 38px;
        text-align: center;
    }

    .great-for__list {
        gap: 17px;
    }

    .great-for__list li {
        padding-left: 40px;
        font-size: 20px;
    }

    .great-for__image {
        border-radius: 16px;
    }

    .different__inner {
        width: min(100% - 32px, 520px);
        padding: 54px 0 60px;
    }

    .different__title {
        max-width: 420px;
        margin-bottom: 42px;
        font-size: 38px;
    }

    .different__grid {
        position: relative;
        display: block;
        margin-bottom: 0;
        touch-action: pan-y;
    }

    .different-card {
        position: absolute;
        inset: 0;
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        transition: opacity 0.45s ease, visibility 0.45s ease;
    }

    .different-card--active {
        position: relative;
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
    }

    .different-card,
    .different-card--active {
        min-height: 0;
    }

    .different-card__icon {
        width: 118px;
        height: 118px;
        margin-bottom: 12px;
    }

    .different-card__title {
        margin-bottom: 14px;
        font-size: 25px;
    }

    .different-card__text {
        max-width: 300px;
        font-size: 19px;
    }

    .different-slider__dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin: 24px 0 42px;
    }

    .different-slider__dot {
        width: 28px;
        height: 10px;
        padding: 0;
        border: 0;
        border-radius: 999px;
        background: #d7cbc2;
        cursor: pointer;
        transition: width 0.2s ease, background-color 0.2s ease;
    }

    .different-slider__dot--active {
        width: 56px;
        background: #ff8200;
    }

    .different-slider__dot:focus-visible {
        outline: 3px solid rgba(24, 94, 134, 0.45);
        outline-offset: 4px;
    }

    .different__button {
        min-width: 0;
        width: 100%;
        min-height: 60px;
        padding: 16px 24px;
        font-size: 17px;
    }

    .choose-animal__inner {
        width: min(100% - 32px, 520px);
        padding: 54px 0 64px;
    }

    .choose-animal__title {
        margin-bottom: 26px;
        font-size: 38px;
    }

    .choose-animal__text {
        margin-bottom: 34px;
        font-size: 19px;
    }

    .choose-animal__gallery {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-items: center;
        align-items: end;
        gap: 18px 14px;
        width: 100%;
        margin-bottom: 34px;
    }

    .choose-animal__toy,
    .choose-animal__toy--wide,
    .choose-animal__toy:nth-child(n) {
        width: auto;
        max-width: 100%;
        height: 156px;
        margin: 0 auto;
    }

    .choose-animal__price {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 34px;
        font-size: 20px;
    }

    .choose-animal__price strong {
        font-size: 48px;
    }

    .choose-animal__actions {
        flex-direction: column;
        gap: 14px;
    }

    .choose-animal__button {
        width: 100%;
        min-height: 60px;
        font-size: 17px;
    }

    .faq__inner {
        width: min(100% - 32px, 520px);
        padding: 54px 0 70px;
    }

    .faq__title {
        margin-bottom: 26px;
        font-size: 38px;
    }

    .faq__question {
        padding: 26px 40px 26px 0;
        font-size: 22px;
    }

    .faq__question::after {
        top: 33px;
        right: 3px;
        width: 10px;
        height: 10px;
        border-width: 3px;
    }

    .faq__item[open] .faq__question {
        padding-bottom: 14px;
    }

    .faq__answer {
        padding: 0 40px 26px 0;
    }

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