:root {
    --primary: #E85D04;
    --primary-dark: #c44e00;
    --primary-light: #fff3ed;
    --dark: #111827;
    --gray-900: #1f2937;
    --gray-700: #374151;
    --gray-500: #6b7280;
    --gray-300: #d1d5db;
    --gray-100: #f3f4f6;
    --white: #fff;
    --green: #16a34a;
    --radius: 10px;
    --radius-lg: 16px;
    --shadow: 0 1px 3px rgba(0, 0, 0, .08), 0 4px 12px rgba(0, 0, 0, .06);
    --shadow-lg: 0 4px 24px rgba(0, 0, 0, .12);
    --font: 'Inter', system-ui, sans-serif;
    --tr: 0.2s ease
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font);
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.6
}

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

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

ul {
    list-style: none
}

button {
    cursor: pointer;
    font-family: var(--font);
    border: none;
    background: none
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--dark);
    color: #fff;
    padding: 16px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .2);
    display: none
}

.cookie-notice.visible {
    display: block
}

.cookie-notice__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap
}

.cookie-notice__text {
    flex: 1;
    font-size: .9rem
}

.cookie-notice__text a {
    color: #f97316;
    text-decoration: underline
}

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

/* .topbar {
    background: var(--dark);
    color: #fff;
    font-size: .8rem;
    padding: 8px 0
}

.topbar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap
}

.topbar a {
    color: #f97316
} */

.site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--gray-300);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06)
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem
}

.logo__icon {
    font-size: 1.4rem
}

.logo__text {
    color: var(--dark)
}

.logo__text strong {
    color: var(--primary)
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px
}

.main-nav__link {
    padding: 8px 14px;
    border-radius: var(--radius);
    font-size: .95rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: color var(--tr), background var(--tr)
}

.main-nav__link:hover,
.main-nav__link.active {
    color: var(--primary);
    background: var(--primary-light)
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px
}

.cart-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: .95rem;
    color: var(--gray-900);
    padding: 8px 14px;
    border-radius: var(--radius);
    border: 2px solid var(--gray-300);
    transition: all var(--tr);
    position: relative
}

.cart-link:hover {
    border-color: var(--primary);
    color: var(--primary)
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--primary);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    background: none;
    border: none;
    cursor: pointer
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--tr);
    cursor: pointer;
    border: 2px solid transparent
}

.btn--primary {
    background: var(--primary);
    color: #fff
}

.btn--primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px)
}

.btn--outline {
    background: transparent;
    border-color: var(--gray-300);
    color: var(--gray-700)
}

.btn--outline:hover {
    border-color: var(--primary);
    color: var(--primary)
}

.btn--dark {
    background: var(--dark);
    color: #fff
}

.btn--dark:hover {
    background: var(--gray-900)
}

.btn--full {
    width: 100%
}

.btn--lg {
    padding: 16px 32px;
    font-size: 1.1rem
}

.btn--sm {
    padding: 8px 16px;
    font-size: .875rem
}

.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(232, 93, 4, .2) 0%, transparent 60%)
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1
}

.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(232, 93, 4, .2);
    border: 1px solid rgba(232, 93, 4, .4);
    color: #f97316;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 20px
}

.hero__title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px
}

.hero__title span {
    color: var(--primary)
}

.hero__subtitle {
    font-size: 1.15rem;
    color: #94a3b8;
    margin-bottom: 32px;
    max-width: 500px
}

.hero__ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.hero__trust {
    display: flex;
    gap: 20px;
    margin-top: 32px;
    flex-wrap: wrap
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .85rem;
    color: #94a3b8
}

.hero__trust-item strong {
    color: #fff
}

.hero__image {
    position: relative
}

.hero__image img {
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
    width: 100%
}

.hero__badge {
    position: absolute;
    top: -16px;
    right: -16px;
    background: var(--primary);
    color: #fff;
    padding: 10px 18px;
    border-radius: var(--radius);
    font-size: .85rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg)
}

.countdown-bar {
    background: var(--primary);
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: .9rem;
    font-weight: 600
}

#countdown {
    font-size: 1rem;
    font-weight: 800
}

.section {
    padding: 72px 0
}

.section--gray {
    background: var(--gray-100)
}

.section__header {
    text-align: center;
    margin-bottom: 48px
}

.section__tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: .8rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .05em
}

.section__title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 12px
}

.section__subtitle {
    color: var(--gray-500);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px
}

.product-card {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-300);
    overflow: hidden;
    transition: all var(--tr);
    display: flex;
    flex-direction: column
}

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

.product-card__img {
    position: relative;
    background: var(--gray-100);
    padding: 24px;
    text-align: center
}

.product-card__img img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin: 0 auto
}

.product-card__badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: .75rem;
    font-weight: 700
}

.badge--primary {
    background: var(--primary);
    color: #fff
}

.product-card__body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.product-card__brand {
    font-size: .8rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 4px
}

.product-card__name {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark)
}

.product-card__tagline {
    font-size: .85rem;
    color: var(--gray-500);
    margin-bottom: 10px
}

.product-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 12px
}

.tag {
    font-size: .75rem;
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500
}

.product-card__rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    font-size: .85rem
}

.stars {
    color: #f59e0b;
    font-size: 1rem
}

.product-card__footer {
    margin-top: auto
}

.product-card__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px
}

.price-current {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark)
}

.price-old {
    font-size: .95rem;
    color: var(--gray-500);
    text-decoration: line-through
}

.price-save {
    font-size: .8rem;
    font-weight: 700;
    color: var(--green)
}

.feature-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    border-top: 1px solid var(--gray-300);
    border-bottom: 1px solid var(--gray-300)
}

.feature-strip__item {
    padding: 24px 20px;
    text-align: center;
    border-right: 1px solid var(--gray-300)
}

.feature-strip__item:last-child {
    border-right: none
}

.feature-strip__icon {
    font-size: 1.8rem;
    margin-bottom: 8px
}

.feature-strip__title {
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: 4px
}

.feature-strip__text {
    font-size: .85rem;
    color: var(--gray-500)
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px
}

.category-card {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-300);
    padding: 28px 20px;
    text-align: center;
    transition: all var(--tr);
    text-decoration: none;
    color: var(--dark);
    display: block
}

.category-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px)
}

.category-card__icon {
    font-size: 2.5rem;
    margin-bottom: 12px
}

.category-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px
}

.category-card__text {
    font-size: .875rem;
    color: var(--gray-500)
}

.trust-banner {
    background: var(--dark);
    color: #fff;
    padding: 48px 0
}

.trust-banner__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    text-align: center
}

.trust-banner__value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1
}

.trust-banner__label {
    font-size: .9rem;
    color: #94a3b8;
    margin-top: 4px
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px
}

.blog-card {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-300);
    overflow: hidden;
    transition: all var(--tr);
    display: flex;
    flex-direction: column
}

.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: var(--primary)
}

.blog-card__img {
    height: 200px;
    overflow: hidden
}

.blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.blog-card__body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.blog-card__cat {
    font-size: .75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 8px
}

.blog-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3
}

.blog-card__excerpt {
    font-size: .875rem;
    color: var(--gray-500);
    flex: 1
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 14px;
    font-size: .875rem;
    font-weight: 600;
    color: var(--primary)
}

.faq-list {
    max-width: 800px;
    margin: 0 auto
}

.faq-item {
    border-bottom: 1px solid var(--gray-300)
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform var(--tr)
}

.faq-question.open svg {
    transform: rotate(180deg)
}

.faq-answer {
    padding: 0 0 20px;
    font-size: .95rem;
    color: var(--gray-700);
    line-height: 1.7;
    display: none
}

.faq-answer.open {
    display: block
}

.page-hero {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    padding: 56px 0;
    text-align: center
}

.page-hero__title {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 12px
}

.page-hero__subtitle {
    color: #94a3b8;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    padding: 60px 0
}

.product-detail__gallery {
    background:#ffffff;
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center
}

.product-detail__gallery img {
    max-height: 360px;
    object-fit: contain;
    margin: 0 auto
}

.product-detail__brand {
    font-size: .85rem;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 8px
}

.product-detail__name {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 8px
}

.product-detail__tagline {
    font-size: 1.1rem;
    color: var(--gray-500);
    margin-bottom: 16px
}

.product-detail__rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px
}

.product-detail__price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px
}

.product-detail__price-current {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--dark)
}

.product-detail__price-old {
    font-size: 1.2rem;
    color: var(--gray-500);
    text-decoration: line-through
}

.product-detail__price-save {
    background: #dcfce7;
    color: var(--green);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: .875rem;
    font-weight: 700
}

.product-detail__desc {
    color: var(--gray-700);
    margin-bottom: 28px;
    line-height: 1.7;
    font-size: 1.05rem
}

.product-detail__features h4 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .05em
}

.product-detail__features ul {
    display: grid;
    gap: 8px;
    margin-bottom: 28px
}

.product-detail__features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .9rem
}

.product-detail__features li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700
}

.product-detail__actions {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.product-detail__trust {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
    padding: 16px;
    background: var(--gray-100);
    border-radius: var(--radius)
}

.product-detail__trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .85rem;
    color: var(--gray-700)
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    overflow: hidden;
    width: fit-content
}

.qty-btn {
    width: 40px;
    height: 46px;
    background: var(--gray-100);
    color: var(--dark);
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    cursor: pointer
}

.qty-btn:hover {
    background: var(--gray-300)
}

.qty-input {
    width: 56px;
    height: 46px;
    text-align: center;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    outline: none
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
    padding: 48px 0
}

.cart-table {
    width: 100%
}

.cart-table thead th {
    text-align: left;
    padding: 12px 16px;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--gray-500);
    border-bottom: 2px solid var(--gray-300)
}

.cart-row td {
    padding: 16px;
    border-bottom: 1px solid var(--gray-300);
    vertical-align: middle
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 16px
}

.cart-product__img {
    width: 80px;
    height: 60px;
    object-fit: contain;
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 6px
}

.cart-product__name {
    font-weight: 600;
    font-size: .95rem
}

.cart-product__price {
    font-size: .85rem;
    color: var(--gray-500)
}

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

.cart-qty input {
    width: 50px;
    padding: 6px;
    text-align: center;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: .95rem
}

.cart-remove {
    color: var(--gray-500);
    font-size: .8rem;
    cursor: pointer;
    text-decoration: underline;
    background: none;
    border: none
}

.cart-remove:hover {
    color: red
}

.cart-price {
    font-weight: 700;
    font-size: 1rem
}

.cart-empty {
    text-align: center;
    padding: 80px 20px
}

.cart-empty h2 {
    font-size: 1.5rem;
    margin-bottom: 12px
}

.cart-empty p {
    color: var(--gray-500);
    margin-bottom: 24px
}

.order-summary {
    background: #fff;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: sticky;
    top: 90px
}

.order-summary__title {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-300)
}

.order-summary__item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100)
}

.order-summary__item img {
    width: 48px;
    height: 40px;
    object-fit: contain;
    background: var(--gray-100);
    border-radius: 6px;
    padding: 4px
}

.order-summary__item-info {
    flex: 1
}

.order-summary__item-name {
    font-size: .9rem;
    font-weight: 600
}

.order-summary__item-qty {
    font-size: .8rem;
    color: var(--gray-500)
}

.order-summary__item-price {
    font-size: .95rem;
    font-weight: 700
}

.order-summary__line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: .95rem
}

.order-summary__line.total {
    border-top: 2px solid var(--gray-300);
    padding-top: 14px;
    margin-top: 8px;
    font-size: 1.1rem;
    font-weight: 800
}

.price-highlight {
    color: var(--primary);
    font-size: 1.3rem
}

.order-summary__perks {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 14px;
    margin-top: 16px
}

.order-summary__perk {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    margin-bottom: 6px
}

.order-summary__perk:last-child {
    margin-bottom: 0
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
    padding: 48px 0
}

.checkout-section {
    background: #fff;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 20px
}

.checkout-section h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px
}

.form-group:last-child {
    margin-bottom: 0
}

.form-group label {
    font-size: .875rem;
    font-weight: 600;
    color: var(--gray-700)
}

.form-group label span {
    color: var(--gray-500);
    font-weight: 400
}

.form-group input,
.form-group textarea {
    padding: 11px 14px;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: .95rem;
    font-family: var(--font);
    outline: none;
    transition: border-color var(--tr);
    background: #fff;
    color: var(--dark)
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232, 93, 4, .1)
}

.payment-info {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 16px;
    font-size: .9rem;
    color: var(--gray-700);
    line-height: 1.6
}

.checkout-agree {
    font-size: .85rem;
    color: var(--gray-500);
    margin-top: 12px;
    text-align: center
}

.checkout-agree a {
    color: var(--primary);
    text-decoration: underline
}

.thankyou {
    text-align: center;
    padding: 100px 20px;
    max-width: 600px;
    margin: 0 auto
}

.thankyou__icon {
    font-size: 5rem;
    margin-bottom: 24px
}

.thankyou__title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 16px
}

.thankyou__text {
    font-size: 1.1rem;
    color: var(--gray-500);
    margin-bottom: 32px;
    line-height: 1.7
}

.article-hero {
    background: #0f172a;
    color: #fff;
    padding: 48px 0 0
}

.article-hero__tag {
    display: inline-block;
    background: rgba(232, 93, 4, .2);
    border: 1px solid rgba(232, 93, 4, .4);
    color: #f97316;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: .8rem;
    font-weight: 700;
    margin-bottom: 16px
}

.article-hero__meta {
    font-size: .85rem;
    color: #94a3b8;
    margin-bottom: 12px
}

.article-hero__title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px
}

.article-hero__author {
    font-size: .875rem;
    color: #94a3b8;
    margin-bottom: 28px
}

.article-hero__img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    margin-top: 28px
}

.article-hero__img-caption {
    font-size: .8rem;
    color: #64748b;
    margin-top: 6px;
    font-style: italic
}

.article-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 48px 20px
}

.article-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-700)
}

.article-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 16px 24px;
    background: var(--primary-light);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--gray-700);
    margin: 28px 0
}

.article-content img {
    border-radius: var(--radius-lg);
    margin: 28px 0;
    width: 100%
}

.article-content .img-caption {
    font-size: .8rem;
    color: var(--gray-500);
    text-align: center;
    font-style: italic;
    margin-top: -20px;
    margin-bottom: 28px
}

.product-spotlight {
    background: #fff;
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 40px 0;
    box-shadow: var(--shadow-lg)
}

.product-spotlight__header {
    background: var(--primary);
    color: #fff;
    padding: 10px 20px;
    font-size: .85rem;
    font-weight: 700;
    text-align: center
}

.product-spotlight__body {
    padding: 24px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 24px;
    align-items: center
}

.product-spotlight__img {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 20px
}

.product-spotlight__img img {
    width: 100%;
    max-height: 160px;
    object-fit: contain
}

.product-spotlight__name {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 4px
}

.product-spotlight__tagline {
    font-size: .9rem;
    color: var(--gray-500);
    margin-bottom: 12px
}

.product-spotlight__feats {
    display: grid;
    gap: 4px;
    margin: 12px 0
}

.product-spotlight__feats li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .875rem
}

.product-spotlight__feats li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700
}

.product-spotlight__price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 14px 0
}

.product-spotlight__price-current {
    font-size: 2rem;
    font-weight: 900;
    color: var(--dark)
}

.product-spotlight__price-old {
    font-size: 1rem;
    text-decoration: line-through;
    color: var(--gray-500)
}

.reviews-section {
    background: var(--gray-100);
    padding: 48px 0
}

.reviews-grid {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    gap: 20px
}

.review-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow)
}

.review-card__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px
}

.review-card__author {
    font-weight: 700;
    font-size: .95rem
}

.review-card__date {
    font-size: .8rem;
    color: var(--gray-500)
}

.review-card__stars {
    color: #f59e0b;
    font-size: 1.1rem;
    margin-bottom: 8px
}

.review-card__text {
    font-size: .95rem;
    color: var(--gray-700);
    line-height: 1.6
}

.review-card__verified {
    font-size: .8rem;
    color: var(--green);
    font-weight: 600;
    margin-top: 8px
}

.legal-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 20px
}

.legal-content h1 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 8px
}

.legal-content .last-updated {
    color: var(--gray-500);
    font-size: .875rem;
    margin-bottom: 40px
}

.legal-content h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 32px 0 12px
}

.legal-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 20px 0 8px
}

.legal-content p,
.legal-content li {
    font-size: .95rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 12px
}

.legal-content ul {
    padding-left: 20px
}

.legal-content ul li {
    list-style: disc
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline
}

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0
}

.legal-content table th,
.legal-content table td {
    border: 1px solid var(--gray-300);
    padding: 10px 14px;
    font-size: .875rem;
    text-align: left
}

.legal-content table th {
    background: var(--gray-100);
    font-weight: 700
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    padding: 60px 0
}

.contact-info h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px
}

.contact-info p {
    color: var(--gray-700);
    margin-bottom: 24px;
    line-height: 1.7
}

.contact-info__item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px
}

.contact-info__icon {
    font-size: 1.3rem
}

.contact-info__label {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--gray-500)
}

.contact-info__val {
    font-size: .95rem
}

.contact-info__val a {
    color: var(--primary)
}

.shop-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 32px
}

.filter-btn {
    padding: 8px 18px;
    border-radius: 100px;
    border: 1.5px solid var(--gray-300);
    background: #fff;
    font-size: .875rem;
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    transition: all var(--tr)
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light)
}

/* .site-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 64px 0 0
} */

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

.footer-col--brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 16px
}

.footer-col p {
    font-size: .875rem;
    line-height: 1.7;
    margin-bottom: 16px
}

.footer-contact {
    font-size: .875rem;
    line-height: 2
}

.footer-contact a {
    color: #f97316
}

.footer-col h4 {
    color: #fff;
    font-size: .875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 16px
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.footer-col ul a {
    font-size: .875rem;
    transition: color var(--tr)
}

.footer-col ul a:hover {
    color: #f97316
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 24px 0
}

.footer-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 16px
}

.footer-trust span {
    font-size: .85rem;
    color: #fff
}

/* .footer-legal {
    font-size: .8rem;
    color: #64748b;
    line-height: 1.7
} */

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .875rem;
    color: var(--gray-500);
    margin-bottom: 32px
}

.breadcrumb a {
    color: var(--primary)
}

.breadcrumb span {
    color: var(--gray-300)
}

.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: .9rem
}

.alert--success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0
}

.alert--error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca
}

.view-all-link {
    text-align: center;
    margin-top: 40px
}

@media(max-width:1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .hero__inner {
        grid-template-columns: 1fr
    }

    .hero__image {
        display: none
    }

    .product-detail {
        grid-template-columns: 1fr
    }

    .cart-layout,
    .checkout-layout {
        grid-template-columns: 1fr
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .product-spotlight__body {
        grid-template-columns: 1fr
    }
}

@media(max-width:768px) {
    .main-nav {
        display: none;
        flex-direction: column;
        gap: 4px;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 16px 20px;
        box-shadow: var(--shadow-lg);
        z-index: 99
    }

    .main-nav.open {
        display: flex
    }

    .main-nav__link {
        padding: 12px 16px;
        width: 100%;
        border-radius: var(--radius)
    }

    .nav-toggle {
        display: flex
    }

    .hero {
        padding: 48px 0
    }

    .section {
        padding: 48px 0
    }

    .feature-strip {
        grid-template-columns: 1fr 1fr
    }

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

    .form-row {
        grid-template-columns: 1fr
    }

    /* .topbar__inner {
        justify-content: center;
        gap: 12px;
        font-size: .75rem
    } */
}

@media(max-width:480px) {
    .hero__ctas {
        flex-direction: column
    }

    .categories-grid {
        grid-template-columns: 1fr 1fr
    }
}
/* =========================================================
   FULL FIRST SCREEN:
   Advertising disclosure + Header + Hero
   ========================================================= */

.first-screen {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    background: #0f172a;
    overflow: hidden;
}

/* =========================================================
   Advertising disclosure bar
   ========================================================= */

.ad-disclosure-bar {
    flex: 0 0 auto;
    width: 100%;
    background: #111827;
    color: #ffffff;
    border-bottom: 4px solid var(--primary);
    position: relative;
    z-index: 110;
}

.ad-disclosure-bar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 13px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.ad-disclosure-bar__label {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 17px;
    border-radius: 5px;
    background: var(--primary);
    color: #ffffff;
    font-size: clamp(0.95rem, 1.2vw, 1.08rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.ad-disclosure-bar__text {
    max-width: 780px;
    margin: 0;
    color: #f3f4f6;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.45;
}

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

.first-screen .site-header {
    flex: 0 0 auto;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--gray-300);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.first-screen .site-header__inner {
    position: relative;
    height: 68px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 8px;
    border-radius: 8px;
    transition: background var(--tr);
}

.nav-toggle:hover {
    background: var(--gray-100);
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform var(--tr), opacity var(--tr);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   Hero filling remaining viewport height
   ========================================================= */

.first-screen .hero {
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
    padding: clamp(34px, 6vh, 76px) 0;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.first-screen .hero > .container {
    width: 100%;
}

.first-screen .hero__inner {
    width: 100%;
}

.first-screen .hero__secondary-btn {
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
}

.first-screen .hero__secondary-btn:hover {
    border-color: var(--primary);
    background: rgba(232, 93, 4, 0.12);
    color: #ffffff;
}

.first-screen .hero__image img {
    max-height: min(47dvh, 500px);
    object-fit: cover;
}

/* =========================================================
   Compact desktop screens / small laptops
   ========================================================= */

@media (min-width: 1025px) and (max-height: 760px) {
    .ad-disclosure-bar__inner {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .first-screen .site-header__inner {
        height: 62px;
    }

    .first-screen .hero {
        padding: 28px 0;
    }

    .first-screen .hero__title {
        margin-bottom: 14px;
    }

    .first-screen .hero__subtitle {
        margin-bottom: 22px;
    }

    .first-screen .hero__trust {
        margin-top: 22px;
    }

    .first-screen .hero__image img {
        max-height: 410px;
    }
}

/* =========================================================
   Tablets
   ========================================================= */

@media (max-width: 1024px) {
    .first-screen .hero {
        padding: clamp(34px, 6vh, 54px) 0;
    }

    .first-screen .hero__inner {
        max-width: 720px;
        margin: 0 auto;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .first-screen .hero__image {
        display: none;
    }

    .first-screen .hero__subtitle {
        max-width: 600px;
    }
}

/* =========================================================
   Smartphones
   ========================================================= */

@media (max-width: 768px) {
    .first-screen {
        overflow: visible;
    }

    .ad-disclosure-bar__inner {
        padding: 10px 16px 11px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .ad-disclosure-bar__label {
        padding: 8px 16px;
        font-size: 0.9rem;
        letter-spacing: 0.08em;
    }

    .ad-disclosure-bar__text {
        max-width: 520px;
        font-size: 0.76rem;
        line-height: 1.4;
    }

    .first-screen .site-header__inner {
        height: 60px;
    }

    .first-screen .logo {
        font-size: 1.12rem;
    }

    .first-screen .logo__icon {
        font-size: 1.2rem;
    }

    .nav-toggle {
        display: flex;
        margin-left: auto;
    }

    .first-screen .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: -20px;
        right: -20px;
        flex-direction: column;
        gap: 4px;
        padding: 12px 20px 16px;
        background: #ffffff;
        border-top: 1px solid var(--gray-300);
        box-shadow: 0 16px 28px rgba(0, 0, 0, 0.14);
        z-index: 120;
    }

    .first-screen .main-nav.open {
        display: flex;
    }

    .first-screen .main-nav__link {
        width: 100%;
        padding: 11px 14px;
    }

    /* .first-screen .hero {
        align-items: flex-start;
        padding: clamp(20px, 4.5vh, 34px) 0 26px;
    } */

    .first-screen .hero__tag {
        margin-bottom: 13px;
        padding: 5px 12px;
        font-size: 0.76rem;
    }

    .first-screen .hero__title {
        font-size: clamp(1.85rem, 9vw, 2.5rem);
        margin-bottom: 13px;
    }

    .first-screen .hero__subtitle {
        font-size: 0.95rem;
        line-height: 1.52;
        margin-bottom: 20px;
    }

    .first-screen .hero__ctas {
        gap: 10px;
    }

    .first-screen .hero__ctas .btn--lg {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .first-screen .hero__trust {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px 14px;
        margin-top: 20px;
    }

    .first-screen .hero__trust-item {
        font-size: 0.78rem;
    }
}

/* =========================================================
   Narrow smartphones
   ========================================================= */

@media (max-width: 480px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .first-screen .main-nav {
        left: -16px;
        right: -16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .ad-disclosure-bar__inner {
        padding: 9px 12px 10px;
    }

    .ad-disclosure-bar__label {
        font-size: 0.84rem;
        padding: 7px 14px;
    }

    .ad-disclosure-bar__text {
        font-size: 0.72rem;
    }

    .first-screen .hero {
        padding-top: 18px;
        padding-bottom: 22px;
    }

    .first-screen .hero__title {
        font-size: clamp(1.7rem, 9.5vw, 2.15rem);
    }

    .first-screen .hero__subtitle {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }

    .first-screen .hero__ctas {
        flex-direction: column;
    }

    .first-screen .hero__ctas .btn {
        width: 100%;
    }

    .first-screen .hero__trust {
        margin-top: 17px;
        gap: 8px 10px;
    }
}

/* =========================================================
   Very short mobile screens:
   content can naturally extend instead of being cropped
   ========================================================= */

@media (max-width: 768px) and (max-height: 680px) {
    .first-screen {
        min-height: 100dvh;
        height: auto;
    }

    .first-screen .hero {
        flex: 0 0 auto;
        padding-top: 16px;
        padding-bottom: 20px;
    }

    .first-screen .hero__trust {
        margin-top: 14px;
    }
}
/* =========================================================
   MOBILE FIRST SCREEN — spacious version
   Добавить в самый конец style.css
   ========================================================= */

@media (max-width: 768px) {

    .first-screen {
        min-height: 100svh;
        min-height: 100dvh;
        height: auto;
        overflow: hidden;
        background: #0f172a;
    }

    /* -------------------------
       Advertising disclosure
       ------------------------- */

    .ad-disclosure-bar {
        border-bottom-width: 3px;
    }

    .ad-disclosure-bar__inner {
        padding: 11px 16px 12px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 9px;
        text-align: center;
    }

    .ad-disclosure-bar__label {
        width: 100%;
        padding: 9px 14px;
        border-radius: 5px;
        font-size: 0.93rem;
        line-height: 1;
        letter-spacing: 0.08em;
    }

    .ad-disclosure-bar__text {
        max-width: none;
        padding: 0 3px;
        font-size: 0.79rem;
        line-height: 1.48;
        color: #f3f4f6;
    }

    /* -------------------------
       Header
       ------------------------- */

    .first-screen .site-header {
        position: relative;
        top: auto;
    }

    .first-screen .site-header__inner {
        height: 64px;
    }

    .first-screen .logo {
        gap: 8px;
        font-size: 1.16rem;
    }

    .first-screen .logo__icon {
        font-size: 1.28rem;
    }

    .nav-toggle {
        width: 44px;
        height: 44px;
        padding: 9px;
    }

    .nav-toggle span {
        width: 25px;
        height: 2px;
    }

    /* -------------------------
       Hero fills remaining screen,
       but content is no longer compressed
       ------------------------- */

    .first-screen .hero {
        flex: 1 1 auto;
        min-height: calc(100dvh - 177px);
        padding: 27px 0 30px;
        align-items: stretch;
    }

    .first-screen .hero > .container {
        display: flex;
        width: 100%;
    }

    .first-screen .hero__inner {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
        max-width: none;
        min-height: 100%;
        gap: 26px;
    }

    .first-screen .hero__content {
        width: 100%;
    }

    .first-screen .hero__tag {
        margin-bottom: 18px;
        padding: 7px 14px;
        font-size: 0.8rem;
        line-height: 1.2;
    }

    .first-screen .hero__title {
        font-size: clamp(2.15rem, 10.7vw, 2.8rem);
        line-height: 1.08;
        letter-spacing: -0.035em;
        margin-bottom: 17px;
    }

    .first-screen .hero__subtitle {
        max-width: none;
        font-size: 1rem;
        line-height: 1.6;
        color: #b6c2d2;
        margin-bottom: 25px;
    }

    .first-screen .hero__ctas {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .first-screen .hero__ctas .btn {
        width: 100%;
        min-height: 52px;
        padding: 14px 20px;
        border-radius: 9px;
        font-size: 1rem;
        font-weight: 700;
    }

    .first-screen .hero__trust {
        margin-top: 25px;
        padding-top: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 16px;
        row-gap: 13px;
    }

    .first-screen .hero__trust-item {
        gap: 5px;
        font-size: 0.83rem;
        line-height: 1.4;
        color: #b7c3d4;
    }

    .first-screen .hero__trust-item strong {
        font-weight: 700;
    }

    .first-screen .hero__image {
        display: none;
    }
}


/* =========================================================
   STANDARD SMARTPHONES: 360–480 px
   ========================================================= */

@media (min-width: 360px) and (max-width: 480px) {

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .first-screen .main-nav {
        left: -20px;
        right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .first-screen .hero {
        padding-top: 28px;
        padding-bottom: 30px;
    }
}


/* =========================================================
   NARROW SMARTPHONES: до 359 px
   Сохраняем читаемость, но немного экономим место
   ========================================================= */

@media (max-width: 359px) {

    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .ad-disclosure-bar__inner {
        padding: 10px 12px;
    }

    .ad-disclosure-bar__label {
        font-size: 0.86rem;
    }

    .ad-disclosure-bar__text {
        font-size: 0.74rem;
    }

    .first-screen .hero {
        padding: 22px 0 24px;
    }

    .first-screen .hero__tag {
        margin-bottom: 14px;
        font-size: 0.74rem;
    }

    .first-screen .hero__title {
        font-size: 1.92rem;
        margin-bottom: 14px;
    }

    .first-screen .hero__subtitle {
        font-size: 0.92rem;
        margin-bottom: 20px;
    }

    .first-screen .hero__ctas .btn {
        min-height: 48px;
        font-size: 0.93rem;
    }

    .first-screen .hero__trust {
        margin-top: 20px;
        row-gap: 9px;
    }

    .first-screen .hero__trust-item {
        font-size: 0.76rem;
    }
}


/* =========================================================
   SHORT MOBILE SCREENS
   ========================================================= */

@media (max-width: 768px) and (max-height: 700px) {

    .first-screen {
        min-height: 100dvh;
        overflow: visible;
    }

    .first-screen .hero {
        min-height: auto;
        flex: 0 0 auto;
    }

    .first-screen .hero__inner {
        min-height: auto;
    }
}
/* =========================================================
   FOOTER + ADVERTISING DISCLOSURE
   ========================================================= */

.site-footer {
    background: #0f172a;
    color: #a8b3c5;
    padding: 0;
}

/* =========================================================
   Advertising disclosure
   ========================================================= */

.advertising-disclosure {
    background: #111827;
    border-top: 4px solid var(--primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 42px 0 40px;
}

.advertising-disclosure__inner {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.advertising-disclosure__heading {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.advertising-disclosure__badge {
    flex-shrink: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 11px 18px;
    border-radius: 5px;
    background: var(--primary);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.advertising-disclosure__title {
    max-width: 840px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(0.8rem, 1.15vw, 0.96rem);
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: 0.025em;
}

.advertising-disclosure__text {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 38px;
    row-gap: 21px;
}

.advertising-disclosure__text p {
    margin: 0;
    color: #c3cedd;
    font-size: 0.9rem;
    line-height: 1.75;
}

.advertising-disclosure__text p:last-child {
    grid-column: 1 / -1;
    max-width: 1040px;
}

.advertising-disclosure__text strong {
    color: #ffffff;
    font-weight: 700;
}

.advertising-disclosure__text a {
    color: #fb923c;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--tr);
}

.advertising-disclosure__text a:hover {
    color: #fdba74;
}

/* =========================================================
   Main footer
   ========================================================= */

.site-footer__main {
    padding-top: 54px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(310px, 1.65fr) repeat(2, minmax(170px, 1fr));
    gap: clamp(38px, 6vw, 78px);
    align-items: start;
    margin-bottom: 48px;
}

.footer-col--brand {
    max-width: 440px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 1.32rem;
    line-height: 1;
    font-weight: 500;
}

.footer-logo__icon {
    color: var(--primary);
    font-size: 1.45rem;
}

.footer-logo__text strong {
    color: var(--primary);
    font-weight: 800;
}

.footer-brand-text {
    max-width: 410px;
    margin: 0 0 20px;
    color: #a8b3c5;
    font-size: 0.91rem;
    line-height: 1.75;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 7px;
    color: #a8b3c5;
    font-size: 0.91rem;
    line-height: 1.7;
    font-style: normal;
}

.footer-contact a {
    width: fit-content;
    color: #fb923c;
    transition: color var(--tr);
}

.footer-contact a:hover {
    color: #fdba74;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-col h4 {
    margin: 4px 0 20px;
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    color: #a8b3c5;
    font-size: 0.91rem;
    line-height: 1.45;
    transition: color var(--tr);
}

.footer-col ul a:hover {
    color: #fb923c;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 25px 0 30px;
}

.footer-legal {
    max-width: 940px;
    margin: 0;
    color: #718096;
    font-size: 0.81rem;
    line-height: 1.75;
}

/* =========================================================
   Laptop / tablet
   ========================================================= */

@media (max-width: 1024px) {

    .advertising-disclosure {
        padding: 36px 0;
    }

    .advertising-disclosure__heading {
        flex-direction: column;
        gap: 16px;
    }

    .advertising-disclosure__text {
        column-gap: 30px;
    }

    .site-footer__main {
        padding-top: 46px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px 46px;
        margin-bottom: 42px;
    }

    .footer-col--brand {
        max-width: none;
        grid-column: 1 / -1;
        padding-bottom: 34px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-brand-text {
        max-width: 610px;
    }
}

/* =========================================================
   Smartphone
   ========================================================= */

@media (max-width: 680px) {

    .advertising-disclosure {
        padding: 29px 0 30px;
        border-top-width: 3px;
    }

    .advertising-disclosure__inner {
        gap: 22px;
    }

    .advertising-disclosure__heading {
        gap: 14px;
    }

    .advertising-disclosure__badge {
        width: 100%;
        padding: 11px 14px;
        font-size: 0.88rem;
    }

    .advertising-disclosure__title {
        font-size: 0.94rem;
        line-height: 1.55;
        letter-spacing: 0.015em;
    }

    .advertising-disclosure__text {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .advertising-disclosure__text p {
        padding: 15px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 0.86rem;
        line-height: 1.68;
    }

    .advertising-disclosure__text p:first-child {
        padding-top: 0;
        border-top: none;
    }

    .advertising-disclosure__text p:last-child {
        padding-bottom: 0;
    }

    .site-footer__main {
        padding-top: 36px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 34px;
    }

    .footer-col--brand {
        grid-column: auto;
        padding-bottom: 30px;
        margin-bottom: 27px;
    }

    .footer-logo {
        font-size: 1.25rem;
        margin-bottom: 17px;
    }

    .footer-logo__icon {
        font-size: 1.35rem;
    }

    .footer-brand-text,
    .footer-contact {
        font-size: 0.89rem;
    }

    .footer-col:not(.footer-col--brand) {
        padding-bottom: 28px;
        margin-bottom: 28px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-col:last-child {
        margin-bottom: 0;
    }

    .footer-col h4 {
        margin: 0 0 17px;
        font-size: 0.84rem;
    }

    .footer-col ul {
        gap: 11px;
    }

    .footer-col ul a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding: 23px 0 27px;
    }

    .footer-legal {
        font-size: 0.77rem;
        line-height: 1.7;
    }
}

/* =========================================================
   Narrow smartphone
   ========================================================= */

@media (max-width: 380px) {

    .advertising-disclosure {
        padding: 25px 0 27px;
    }

    .advertising-disclosure__badge {
        font-size: 0.82rem;
        letter-spacing: 0.075em;
    }

    .advertising-disclosure__title {
        font-size: 0.87rem;
    }

    .advertising-disclosure__text p {
        font-size: 0.82rem;
    }

    .site-footer__main {
        padding-top: 31px;
    }
}