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

/* -- BASE -- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #181C24;
    min-height: 100vh;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* -- PAGE WRAPPER -- */
.page-wrapper {
    width: 1440px;
    margin: 0 auto;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* -- HEADER -- */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #ffffff;
    height: 90px;
}

.header__inner {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 82px;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo__icon {
    width: 100px;
    height: 100px;
}

.logo__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    list-style: none;
}

.nav__link {
    display: block;
    padding: 12px 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #181C24;
    border-radius: 12px;
    transition: color 0.3s, background-color 0.3s;
}

.nav__link--active {
    color: #aaaaaa;
    cursor: default;
    pointer-events: none;
}

/* -- BUTTON -- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 235px;
    height: 56px;
    background-color: #181C24;
    color: #ffffff;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

/* -- HERO -- */
.hero {
    position: relative;
    background-color: #ff4646;
    background-image: url('assets/images/bg-snow.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 600px;
}

.hero__ball-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: auto;
    z-index: 1;
    pointer-events: none;
}

.hero__garland {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    padding: 60px 0;
    width: 430px;
    max-width: 430px;
    text-align: center;
}

.hero__tag {
    font-family: 'Allura', cursive;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #ffffff;
}

.hero__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.5;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffffff;
}

.hero__sub {
    font-family: 'Allura', cursive;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #ffffff;
}

/* -- ABOUT -- */
.about {
    background-color: #ff4646;
    background-image: url('assets/images/bg-snow.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 60px 8px;
    display: flex;
    justify-content: center;
}

.about__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    border-radius: 20px;
    width: 1276px;
    height: 528px;
    max-width: 1276px;
    background-color: #ffffff;
    overflow: hidden;
}

.about__text {
    padding: 60px 0 60px 60px;
    width: 426px;
    max-width: 426px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.about__label {
    font-family: 'Allura', cursive;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #ff4646;
}

.about__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.52;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #181C24;
}

.about__desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.48;
    color: #181C24;
}

.about__image {
    width: 638px;
    height: 528px;
    flex-shrink: 0;
    overflow: hidden;
}

.about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 20px 20px 0;
}

/* -- SLIDER -- */
.slider {
    height: 488px;
    background-color: #ff4646;
    background-image: url('assets/images/bg-snow.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.section-label {
    font-family: 'Allura', cursive;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 0.05em;
    text-align: center;
    color: #ffffff;
    padding-top: 60px;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.52;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
    margin-bottom: 20px;
}

.slider__viewport {
    overflow: hidden;
    padding-left: 82px;
}

.slider__track {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 21px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.slider__word {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 80px;
    line-height: 1;
    text-transform: uppercase;
    color: #ffffff;
    flex-shrink: 0;
}

.slider__img {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    object-fit: cover;
    flex-shrink: 0;
}

.slider__nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    padding-top: 20px;
    padding-right: 82px;
}

.slider__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.slider__btn:disabled {
    opacity: 0.3;
    cursor: default;
}

/* -- BEST GIFTS -- */
.best-gifts {
    height: 554px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #ff4646;
    background-image: url('assets/images/bg-snow.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.best-gifts__label {
    font-family: 'Allura', cursive;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 0.05em;
    text-align: center;
    color: #ffffff;
    padding-top: 60px;
}

.best-gifts__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.52;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
}

/* -- GIFT CARDS (shared: best-gifts + gifts page) -- */
.gifts-grid {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 0 82px;
}

.gift-card {
    border-radius: 20px;
    width: 310px;
    background-color: #ecf3f8;
    cursor: pointer;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.gift-card__img {
    width: 100%;
    height: 230px;
    object-fit: contain;
    display: block;
    background-color: #ecf3f8;
}

.gift-card__body {
    background-color: #ffffff;
    border-radius: 0 0 20px 20px;
    padding: 20px;
}

.gift-card__tag {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.3;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 9px;
}

.gift-card__tag--work    { color: #4361ff; }
.gift-card__tag--health  { color: #06a44f; }
.gift-card__tag--harmony { color: #ff43f7; }

.gift-card__name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.52;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #181C24;
    transition: color 0.3s;
}

/* -- CTA -- */
.cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    border-radius: 0 0 20px 20px;
    background-color: #ff4646;
    background-image: url('assets/images/bg-snow.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.cta__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.cta__title {
    width: 426px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.52;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
    padding-top: 60px;
    margin-bottom: 18px;
}

.cta__tag {
    font-family: 'Allura', cursive;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 0.05em;
    text-align: center;
    color: #ffffff;
    padding-top: 20px;
    margin-bottom: 8px;
}

.countdown {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 20px;
    width: 344px;
    height: 72px;
    background: rgba(255, 255, 255, 0.4);
    margin-bottom: 40px;
}

.countdown__block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    min-width: 80px;
}

.countdown__block + .countdown__block {
    border-left: 1px solid rgba(255, 255, 255, 0.4);
}

.countdown__num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.52;
    letter-spacing: 0.16em;
    text-align: center;
    color: #ffffff;
}

.countdown__label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.3;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
}

.cta__scene {
    position: relative;
    width: 100%;
    margin-top: -80px;
    z-index: 1;
}

.cta__forest-bg {
    width: 100%;
    display: block;
}

/* -- FOOTER -- */
.footer {
    background-color: #ffffff;
    padding: 60px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__cards {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 12px;
    padding: 0 8px;
    margin-bottom: 21px;
    width: 100%;
}

.footer__card {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    border-radius: 20px;
    height: 204px;
    background-color: #ecf3f8;
    transition: box-shadow 0.3s;
}

.footer__card-icon {
    width: 80px;
    height: 80px;
}

.footer__card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer__card-main {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.52;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-align: center;
    color: #181C24;
    transition: color 0.3s;
}

.footer__card-sub {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.52;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    color: #181C24;
    transition: color 0.3s;
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__socials {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    height: 40px;
    margin-top: 39px;
    margin-bottom: 13px;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 8px;
    transition: background-color 0.3s;
}

.footer__copy {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.48;
    text-align: center;
    color: #181C24;
}

.footer__made {
    font-family: 'Allura', cursive;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 0.05em;
    text-align: center;
    color: #181C24;
    padding-top: 13px;
}

.footer__made a {
    color: #181C24;
    transition: color 0.3s;
}

/* -- GIFTS PAGE -- */
.gifts-section {
    position: relative;
    background-color: #ff4646;
    background-image: url('assets/images/bg-snow.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-bottom: 80px;
}

.gifts-section__garland {
    width: 100%;
    display: block;
    pointer-events: none;
}

.gifts-section__header {
    text-align: center;
    padding: 40px 82px 32px;
}

.gifts-section__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.5;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 28px;
}

.gifts-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.gifts-tabs__btn {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 10px 24px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}

.gifts-tabs__btn--active {
    background-color: #ffffff;
    color: #ff4646;
    border-color: #ffffff;
    cursor: default;
    pointer-events: none;
}

.gifts-section .gifts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 0 82px;
}

/* -- BACK TO TOP -- */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid rgba(0, 0, 0, 0.1);
    color: #181C24;
    font-size: 16px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 300;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: background-color 0.3s, color 0.3s;
}

.back-to-top.visible {
    display: flex;
}

/* -- BURGER MENU -- */
.burger-btn {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 4px;
}

.burger-btn__line {
    display: block;
    width: 28px;
    height: 2px;
    background-color: #181C24;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.burger-btn.open .burger-btn__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger-btn.open .burger-btn__line:nth-child(2) {
    opacity: 0;
}

.burger-btn.open .burger-btn__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-mobile {
    display: none;
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 99;
    padding: 20px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.nav-mobile.open {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.nav-mobile .nav__link {
    font-size: 14px;
    padding: 12px 40px;
    width: 100%;
    text-align: center;
}

/* ============================================================
   HOVER — тільки на desktop
   ============================================================ */
@media (hover: hover) and (pointer: fine) {

    .nav__link:hover:not(.nav__link--active) {
        color: #ff4646;
        background-color: rgba(255, 70, 70, 0.1);
    }

    .btn:hover {
        background-color: #ffffff;
        color: #181C24;
    }

    .slider__btn:hover:not(:disabled) {
        background-color: #ffffff;
        color: #ff4646;
        border-color: #ffffff;
    }

    .gift-card:hover {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    }

    .gift-card:hover .gift-card__name {
        color: #ff4646;
    }

    .footer__card:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .footer__card:hover .footer__card-main,
    .footer__card:hover .footer__card-sub {
        color: #ff4646;
    }

    .footer__social-link:hover {
        background-color: rgba(255, 70, 70, 0.1);
    }

    .footer__social-link:hover img {
        filter: invert(30%) sepia(90%) saturate(400%) hue-rotate(320deg);
    }

    .footer__made a:hover {
        color: #ff4646;
    }

    .gifts-tabs__btn:hover {
        background-color: rgba(255, 255, 255, 0.2);
        border-color: #ffffff;
    }

    .back-to-top:hover {
        background-color: #ff4646;
        color: #ffffff;
    }
}

/* ============================================================
   MEDIA — 768px
   ============================================================ */
@media (max-width: 768px) {

    .page-wrapper {
        width: 100%;
    }

    .header__inner {
        padding: 0 20px;
    }

    .nav {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .hero {
        min-height: 400px;
        border-radius: 12px 12px 0 0;
    }

    .hero__ball-bg {
        height: 100%;
        width: auto;
        max-width: none;
    }

    .hero__content {
        width: 90%;
        max-width: 90%;
        padding: 40px 20px;
        box-sizing: border-box;
    }

    .hero__title {
        font-size: 22px;
        letter-spacing: 0.08em;
        word-break: break-word;
    }

    .btn {
        min-width: auto;
        width: auto;
        padding: 14px 24px;
        white-space: nowrap;
        font-size: 11px;
    }

    .about {
        padding: 20px;
    }

    .about__inner {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .about__text {
        width: 100%;
        max-width: 100%;
        padding: 32px 24px;
    }

    .about__image {
        width: 100%;
        height: 300px;
        flex-shrink: 0;
    }

    .about__image img {
        border-radius: 0 0 20px 20px;
    }

    .slider {
        height: auto;
        padding-bottom: 40px;
    }

    .slider__viewport {
        padding-left: 20px;
    }

    .slider__word {
        font-size: 48px;
    }

    .slider__img {
        width: 140px;
        height: 140px;
    }

    .slider__nav {
        padding-right: 20px;
    }

    .best-gifts {
        height: auto;
        padding-bottom: 40px;
    }

    .gifts-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 20px;
    }

    .gift-card {
        width: 100%;
    }

    .cta {
        padding: 40px 20px 0;
    }

    .cta__title {
        width: 100%;
        font-size: 18px;
        padding-top: 20px;
    }

    .footer {
        padding: 40px 20px;
    }

    .footer__cards {
        flex-direction: column;
        padding: 0;
    }

    .footer__card {
        width: 100%;
        height: auto;
        padding: 32px 20px;
    }

    .footer__card-main {
        font-size: 18px;
    }

    .gifts-section__header {
        padding: 40px 20px 32px;
    }

    .gifts-section__title {
        font-size: 24px;
    }

    .gifts-section .gifts-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }
}

/* ============================================================
   MEDIA — 380px
   ============================================================ */
@media (max-width: 380px) {

    body {
        overflow-x: hidden;
    }

    .page-wrapper {
        width: 100%;
        overflow-x: hidden;
    }

    .header {
        height: 60px;
    }

    .header__inner {
        padding: 0 16px;
    }

    .nav-mobile {
        top: 60px;
    }

    .hero {
        min-height: 320px;
        border-radius: 0;
    }

    .hero__ball-bg {
        height: 100%;
        width: auto;
        max-width: none;
    }

    .hero__content {
        width: 85%;
        max-width: 85%;
        padding: 32px 16px;
        gap: 8px;
        box-sizing: border-box;
    }

    .hero__title {
        font-size: 16px;
        letter-spacing: 0.05em;
        word-break: break-word;
    }

    .hero__tag,
    .hero__sub {
        font-size: 20px;
    }

    .btn {
        min-width: auto;
        width: auto;
        padding: 12px 20px;
        white-space: nowrap;
        font-size: 10px;
    }

    .about {
        padding: 16px;
    }

    .about__inner {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .about__text {
        width: 100%;
        max-width: 100%;
        padding: 24px 20px;
        gap: 12px;
    }

    .about__title {
        font-size: 18px;
        letter-spacing: 0.08em;
    }

    .about__desc {
        font-size: 14px;
    }

    .about__image {
        width: 100%;
        height: 220px;
    }

    .about__image img {
        border-radius: 0 0 20px 20px;
    }

    .slider {
        height: auto;
        padding-bottom: 32px;
    }

    .section-label {
        padding-top: 32px;
        font-size: 20px;
    }

    .section-title {
        font-size: 18px;
        padding: 0 16px;
    }

    .slider__viewport {
        padding-left: 16px;
    }

    .slider__word {
        font-size: 32px;
        padding: 0 10px;
    }

    .slider__img {
        width: 90px;
        height: 90px;
    }

    .slider__nav {
        padding-right: 16px;
    }

    .best-gifts {
        height: auto;
        padding-bottom: 32px;
    }

    .best-gifts__label {
        font-size: 20px;
        padding-top: 32px;
    }

    .best-gifts__title {
        font-size: 18px;
        padding: 0 16px;
    }

    .gifts-grid {
        grid-template-columns: 1fr;
        padding: 0 16px;
        gap: 12px;
    }

    .gift-card {
        width: 100%;
    }

    .cta {
        padding: 32px 16px 0;
    }

    .cta__title {
        width: 100%;
        font-size: 16px;
        letter-spacing: 0.08em;
        padding-top: 0;
    }

    .cta__tag {
        font-size: 20px;
    }

    .countdown {
        width: 100%;
        max-width: 320px;
        gap: 0;
    }

    .countdown__block {
        padding: 0 10px;
        min-width: auto;
    }

    .countdown__num {
        font-size: 20px;
    }

    .countdown__label {
        font-size: 9px;
    }

    .footer {
        padding: 32px 16px;
    }

    .footer__cards {
        flex-direction: column;
        padding: 0;
    }

    .footer__card {
        width: 100%;
        height: auto;
        padding: 24px 16px;
    }

    .footer__card-main {
        font-size: 16px;
        letter-spacing: 0.06em;
    }

    .footer__card-sub {
        font-size: 13px;
    }

    .footer__copy {
        font-size: 13px;
    }

    .footer__made {
        font-size: 20px;
    }

    .gifts-section__header {
        padding: 24px 16px 20px;
    }

    .gifts-section__title {
        font-size: 20px;
        letter-spacing: 0.08em;
    }

    .gifts-tabs {
        flex-wrap: wrap;
        gap: 6px;
    }

    .gifts-section .gifts-grid {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }
}
