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

html {
    scroll-behavior: smooth;
}

/* === THEME TOKENS === */
:root {
    --bg: #ffffff;
    --bg-soft: #f6f8f6;
    --bg-tint: #f1f7f2;
    --surface: #ffffff;
    --border: #e4e8e5;
    --border-strong: #c7dac9;
    --text: #1c1f1d;
    --text-muted: #4b5450;
    --text-soft: #6b7570;
    --heading: #11241a;
    --accent: #2d6f47;
    --accent-hover: #235a39;
    --accent-light: #e6f3ec;
    --accent-soft: #74b88b;
    --cta-grad-from: #2d6f47;
    --cta-grad-to: #1f5532;
    --hero-grad-from: #f1f7f2;
    --hero-grad-to: #ffffff;
    --footer-bg: #11241a;
    --footer-border: #1f3a2a;
    --footer-text: #9caea3;
    --footer-text-soft: #7d8c84;
    --footer-brand-accent: #74b88b;
    --form-bg: #f6f8f6;
    --shadow-card: 0 16px 40px rgba(17, 36, 26, 0.08);
    --shadow-hover: 0 10px 30px rgba(17, 36, 26, 0.06);
    --shadow-banner: 0 16px 48px rgba(17, 36, 26, 0.14);
    --error: #c14545;
    --success-bg: #e6f3ec;
    --success-text: #1d6437;
}

[data-theme="dark"] {
    --bg: #0d1612;
    --bg-soft: #131e18;
    --bg-tint: #16241c;
    --surface: #14201a;
    --border: #243329;
    --border-strong: #355645;
    --text: #e6ece8;
    --text-muted: #aab7ae;
    --text-soft: #8a978f;
    --heading: #f1f5f2;
    --accent: #4eb073;
    --accent-hover: #62c188;
    --accent-light: #1d3a26;
    --accent-soft: #6fcc94;
    --cta-grad-from: #1f5532;
    --cta-grad-to: #133722;
    --hero-grad-from: #131e18;
    --hero-grad-to: #0d1612;
    --footer-bg: #0a110d;
    --footer-border: #1c2a22;
    --footer-text: #8a978f;
    --footer-text-soft: #62706a;
    --footer-brand-accent: #6fcc94;
    --form-bg: #131e18;
    --shadow-card: 0 16px 40px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.35);
    --shadow-banner: 0 16px 48px rgba(0, 0, 0, 0.55);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.25s ease, color 0.25s ease;
}

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

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

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

ul, ol {
    list-style: none;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === HEADER === */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    transition: background-color 0.25s ease, border-color 0.25s ease;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 24px;
}

.header__logo {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--accent);
}

.header__logo-mark {
    color: var(--text);
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 36px;
    margin-left: auto;
}

.header__nav-list {
    display: flex;
    gap: 32px;
}

.header__nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    transition: color 0.2s ease;
}

.header__nav-link:hover {
    color: var(--accent);
}

.header__nav-link--active {
    color: var(--accent);
}

.header__controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 38px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background-color: var(--bg);
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.header__toggle:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.header__toggle svg {
    width: 16px;
    height: 16px;
}

.header__toggle--lang {
    min-width: 52px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.header__toggle--theme .header__toggle-icon--moon {
    display: none;
}

[data-theme="dark"] .header__toggle--theme .header__toggle-icon--sun {
    display: none;
}

[data-theme="dark"] .header__toggle--theme .header__toggle-icon--moon {
    display: inline-block;
}

.header__burger {
    display: none;
    width: 28px;
    height: 28px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.header__burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__burger--open .header__burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header__burger--open .header__burger-line:nth-child(2) {
    opacity: 0;
}

.header__burger--open .header__burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 620px;
    background: linear-gradient(180deg, var(--hero-grad-from) 0%, var(--hero-grad-to) 100%);
    overflow: hidden;
}

.hero__canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 620px;
    padding: 80px 0;
}

.hero__content {
    max-width: 720px;
}

.hero__eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--accent);
    background-color: var(--accent-light);
    padding: 8px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero__title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 22px;
    color: var(--heading);
}

.hero__title-accent {
    color: var(--accent);
}

.hero__lead {
    font-size: 19px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 600px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn--primary {
    background-color: var(--accent);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(45, 111, 71, 0.28);
}

.btn--primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(45, 111, 71, 0.38);
}

.btn--ghost {
    background-color: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}

.btn--ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn--block {
    width: 100%;
}

/* === SECTION === */
.section {
    padding: 96px 0;
}

.section--muted {
    background-color: var(--bg-soft);
}

.section__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.section__eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

.section__title {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.8px;
    line-height: 1.2;
    color: var(--heading);
    margin-bottom: 16px;
}

.section__lead {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* === FEATURES === */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.features__item {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.features__item:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-hover);
}

.features__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.features__title {
    font-size: 19px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 10px;
}

.features__text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* === COLLECTIONS === */
.collections {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 280px);
    gap: 20px;
}

.collections__card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--border);
}

.collections__card:nth-child(1) {
    grid-row: 1 / 3;
}

.collections__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collections__card:hover .collections__card-img {
    transform: scale(1.05);
}

.collections__card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 36, 26, 0) 40%, rgba(17, 36, 26, 0.85) 100%);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #ffffff;
}

.collections__card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.collections__card-text {
    font-size: 14px;
    opacity: 0.9;
}

/* === PRODUCTS === */
.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.product-card__media {
    aspect-ratio: 4 / 5;
    background-color: var(--bg-soft);
    overflow: hidden;
}

.product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-card__img {
    transform: scale(1.04);
}

.product-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.product-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--heading);
}

.product-card__desc {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.5;
    margin-bottom: 8px;
}

.product-card__footer {
    display: flex;
    align-items: center;
    margin-top: auto;
    padding-top: 4px;
}

.product-card__price {
    font-size: 19px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.3px;
}

/* === KEYWORDS SECTION === */
.keywords {
    background-color: var(--bg-tint);
    padding: 80px 0;
}

.keywords__title {
    font-size: 32px;
    font-weight: 800;
    color: var(--heading);
    margin-bottom: 24px;
    text-align: center;
}

.keywords__text {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 920px;
    margin: 0 auto 18px;
    text-align: center;
}

.keywords__text strong {
    color: var(--accent);
    font-weight: 600;
}

/* === FAQ === */
.faq__list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq__item {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px 26px;
}

.faq__question {
    font-size: 17px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 10px;
}

.faq__answer {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* === TESTIMONIALS === */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
}

.testimonial__quote {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 20px;
}

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

.testimonial__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial__name {
    font-size: 14px;
    font-weight: 700;
    color: var(--heading);
}

.testimonial__role {
    font-size: 13px;
    color: var(--text-soft);
}

/* === CTA === */
.cta {
    background: linear-gradient(135deg, var(--cta-grad-from) 0%, var(--cta-grad-to) 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.cta__title {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.8px;
    margin-bottom: 16px;
}

.cta__text {
    font-size: 17px;
    opacity: 0.92;
    max-width: 620px;
    margin: 0 auto 28px;
}

.cta .btn--primary {
    background-color: #ffffff;
    color: var(--accent);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.cta .btn--primary:hover {
    background-color: var(--bg-tint);
}

/* === PAGE HERO === */
.page-hero {
    background: linear-gradient(180deg, var(--hero-grad-from) 0%, var(--hero-grad-to) 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero__title {
    font-size: 46px;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--heading);
    margin-bottom: 14px;
}

.page-hero__lead {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
}

/* === ABOUT === */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.about-content__image img {
    border-radius: 16px;
    width: 100%;
}

.about-content__title {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--heading);
    margin-bottom: 18px;
}

.about-content__text {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.about-stats__item {
    text-align: center;
    padding: 28px;
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
}

.about-stats__number {
    font-size: 38px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 6px;
}

.about-stats__label {
    font-size: 14px;
    color: var(--text-muted);
}

/* === CONTACT === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
}

.contact-info__title {
    font-size: 28px;
    font-weight: 800;
    color: var(--heading);
    margin-bottom: 14px;
}

.contact-info__text {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-info__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-info__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 10px;
    background-color: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info__label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-soft);
    margin-bottom: 2px;
}

.contact-info__value {
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
}

/* === FORM === */
.form {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px;
}

.form__row {
    margin-bottom: 18px;
}

.form__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text);
    background-color: var(--form-bg);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--accent);
    background-color: var(--bg);
}

.form__textarea {
    resize: vertical;
    min-height: 140px;
}

.form__error {
    display: block;
    font-size: 13px;
    color: var(--error);
    margin-top: 6px;
    min-height: 18px;
}

.form__success {
    background-color: var(--success-bg);
    color: var(--success-text);
    padding: 14px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 18px;
    display: none;
}

.form__success--visible {
    display: block;
}

/* === LEGAL === */
.legal {
    padding: 60px 0 96px;
}

.legal__content {
    max-width: 820px;
    margin: 0 auto;
}

.legal__content h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--heading);
    margin: 36px 0 14px;
    letter-spacing: -0.3px;
}

.legal__content h2:first-child {
    margin-top: 0;
}

.legal__content p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.legal__content ul {
    margin: 0 0 18px 22px;
}

.legal__content li {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-muted);
    list-style: disc;
    margin-bottom: 8px;
}

.legal__meta {
    font-size: 14px;
    color: var(--text-soft);
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

/* === FOOTER === */
.footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 64px 0 28px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer__brand {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
}

.footer__brand-accent {
    color: var(--footer-brand-accent);
}

.footer__about {
    font-size: 14px;
    line-height: 1.7;
    color: var(--footer-text);
    max-width: 320px;
}

.footer__title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 18px;
}

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

.footer__link {
    font-size: 14px;
    color: var(--footer-text);
    transition: color 0.2s ease;
}

.footer__link:hover {
    color: #ffffff;
}

.footer__contact-item {
    font-size: 14px;
    color: var(--footer-text);
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer__bottom {
    border-top: 1px solid var(--footer-border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: var(--footer-text-soft);
}

/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 200;
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px 26px;
    box-shadow: var(--shadow-banner);
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.cookie-banner--visible {
    display: flex;
}

.cookie-banner__text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
}

.cookie-banner__text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-banner__btn {
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.cookie-banner__btn--accept {
    background-color: var(--accent);
    color: #ffffff;
}

.cookie-banner__btn--accept:hover {
    background-color: var(--accent-hover);
}

.cookie-banner__btn--decline {
    background-color: var(--bg-soft);
    color: var(--text);
}

.cookie-banner__btn--decline:hover {
    background-color: var(--border);
}

/* === MEDIA === */
@media (max-width: 1024px) {
    .hero__title {
        font-size: 44px;
    }

    .section {
        padding: 72px 0;
    }

    .section__title {
        font-size: 34px;
    }

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

    .products {
        grid-template-columns: repeat(3, 1fr);
    }

    .collections {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 240px 240px 240px;
    }

    .collections__card:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header__inner {
        height: 64px;
        gap: 12px;
    }

    .header__nav {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background-color: var(--bg);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        border-bottom: 1px solid var(--border);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        margin-left: 0;
    }

    .header__nav--open {
        transform: translateY(0);
    }

    .header__nav-list {
        flex-direction: column;
        width: 100%;
        gap: 18px;
    }

    .header__controls {
        gap: 6px;
    }

    .header__toggle {
        height: 36px;
        padding: 0 10px;
        font-size: 12px;
    }

    .header__burger {
        display: flex;
    }

    .hero {
        min-height: auto;
    }

    .hero__inner {
        min-height: auto;
        padding: 60px 0;
    }

    .hero__title {
        font-size: 34px;
    }

    .hero__lead {
        font-size: 16px;
    }

    .section {
        padding: 56px 0;
    }

    .section__title {
        font-size: 28px;
    }

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

    .features {
        grid-template-columns: 1fr;
    }

    .testimonials {
        grid-template-columns: 1fr;
    }

    .cta__title {
        font-size: 28px;
    }

    .page-hero__title {
        font-size: 34px;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
        gap: 14px;
        padding: 18px;
    }

    .cookie-banner__actions {
        width: 100%;
    }

    .cookie-banner__btn {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .products {
        grid-template-columns: 1fr;
    }

    .collections {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 220px);
    }

    .collections__card:nth-child(1) {
        grid-column: 1 / 2;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr;
    }

    .form {
        padding: 22px;
    }
}
