/* === Accessibility === */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* === Age Verification Popup === */
.age-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 35, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.age-overlay.hidden {
    display: none;
}

.age-popup {
    background: white;
    border-radius: 24px;
    padding: 40px;
    max-width: 520px;
    width: 100%;
    text-align: center;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
    animation: popupIn 0.35s cubic-bezier(.4,0,.2,1);
}

@keyframes popupIn {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.age-popup__bulldog {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 16px;
}

.age-popup__title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: #1a2a3a;
    margin-bottom: 8px;
}

.age-popup__text {
    font-size: 14px;
    color: #4a6178;
    line-height: 1.5;
    margin-bottom: 24px;
}

.age-popup__buttons {
    display: flex;
    gap: 12px;
}

.age-popup__btn {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.age-popup__btn--yes {
    background: linear-gradient(135deg, #1a3a5c, #3470a8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.age-popup__paw {
    width: 18px;
    height: 18px;
    filter: invert(1);
}

.age-popup__btn--yes:hover {
    box-shadow: 0 4px 16px rgba(52, 112, 168, 0.4);
    transform: translateY(-1px);
}

.age-popup__btn--no {
    background: #f0f0f0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.age-popup__paw--dark {
    filter: none;
    opacity: 0.4;
}

.age-popup__btn--no:hover {
    background: #e5e5e5;
}

.age-popup__disclaimer {
    margin-top: 20px;
    font-size: 11px;
    color: #999;
    font-style: italic;
}

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

:root {
    --bg-primary: #f0f4f8;
    --bg-secondary: #e8eef4;
    --bg-card: #ffffff;
    --text-primary: #1a2a3a;
    --text-secondary: #4a6178;
    --text-muted: #8899aa;
    --accent: #3a8fd4;
    --accent-light: #5bb8f5;
    --accent-bg: #e8f2fc;
    --accent-dark: #2a6fa8;
    --accent-gold: #e8a820;
    --accent-red: #e53935;
    --accent-green: #27ae60;
    --border: #dce4ec;
    --radius: 16px;
    --radius-sm: 10px;
    --font-display: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

/* === Background Bulldogs === */
.bg-bulldogs {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-bulldog {
    position: absolute;
    height: auto;
    user-select: none;
    opacity: 0.15;
}

/* Левые — как было */
.bg-bulldog--1 {
    top: 12%;
    left: 3%;
    width: 220px;
    transform: rotate(-8deg);
}

.bg-bulldog--3 {
    top: 33%;
    left: 8%;
    width: 210px;
    transform: rotate(10deg);
}

.bg-bulldog--5 {
    top: 53%;
    left: 2%;
    width: 230px;
    transform: rotate(5deg);
}

.bg-bulldog--7 {
    top: 73%;
    left: 6%;
    width: 240px;
    transform: rotate(-4deg);
}

/* Правые — зеркально левым, тот же ритм отступов */
.bg-bulldog--2 {
    top: 15%;
    right: 1%;
    width: 252px;
    transform: scaleX(-1) rotate(6deg);
}

.bg-bulldog--4 {
    top: 35%;
    right: 6%;
    width: 228px;
    transform: scaleX(-1) rotate(-7deg);
}

.bg-bulldog--6 {
    top: 55%;
    right: 3%;
    width: 240px;
    transform: scaleX(-1) rotate(-9deg);
}

.bg-bulldog--8 {
    top: 75%;
    right: 5%;
    width: 240px;
    transform: scaleX(-1) rotate(5deg);
}

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

/* === Header === */
.header {
    background: linear-gradient(135deg, #1a3a5c 0%, #2a5a8a 50%, #3470a8 100%);
    color: white;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.main, .footer {
    position: relative;
    z-index: 1;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo__icon {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.bulldog-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.logo__text h1,
.logo__text .logo__title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.logo__subtitle {
    font-size: 14px;
    opacity: 0.6;
    margin-top: 2px;
    font-weight: 400;
}

.header__stats {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat {
    text-align: center;
}

.stat__number {
    display: block;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stat__label {
    font-size: 10px;
    opacity: 0.55;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
}

.stat--updated {
    text-align: left;
    border-left: 1px solid rgba(255,255,255,0.15);
    padding-left: 20px;
}

.stat--updated .stat__value {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}

/* === Filters === */
.main {
    flex: 1;
    padding: 28px 0 56px;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    margin-bottom: 28px;
    padding: 0;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
}

.filters__section {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
}

.filters__section:not(:last-child) {
    border-right: 1px solid var(--border);
}

.filters__label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.filters__label-icon {
    width: 14px;
    height: 14px;
    filter: invert(48%) sepia(79%) saturate(500%) hue-rotate(180deg) brightness(95%);
    opacity: 0.6;
}

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

.filters__buttons {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 7px 16px;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    background: var(--bg-primary);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-bg);
}

.filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(58, 143, 212, 0.3);
}

/* Filter button with logo */
.filter-btn--logo {
    padding: 5px 12px;
    display: flex;
    align-items: center;
}

.filter-btn__logo {
    height: 20px;
    width: auto;
    display: block;
}

.filter-btn--logo.active {
    background: var(--accent);
    padding: 5px 12px;
}

.filter-btn--logo.active .filter-btn__logo {
    filter: none;
}

.filter-btn__count {
    font-size: 11px;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.08);
    color: var(--text-muted);
    padding: 1px 6px;
    border-radius: 100px;
    margin-left: 4px;
}

.filter-btn.active .filter-btn__count {
    background: rgba(255, 255, 255, 0.25);
    color: white;
}

.price-range {
    display: flex;
    align-items: center;
    gap: 6px;
}

.price-input {
    width: 70px;
    padding: 7px 10px;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    background: var(--bg-primary);
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.2s;
    -moz-appearance: textfield;
}

.price-input::-webkit-outer-spin-button,
.price-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.price-input:focus {
    border-color: var(--accent);
}

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

.price-range__currency {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
}


.sort-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.sort-select {
    padding: 7px 34px 7px 14px;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    background: var(--bg-primary);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.sort-select:focus {
    border-color: var(--accent);
}

.sort-paw {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    pointer-events: none;
    filter: invert(48%) sepia(79%) saturate(500%) hue-rotate(180deg) brightness(95%);
}

.filters__section--search {
    margin-left: auto;
    border-right: none !important;
}

.filters__search {
    position: relative;
    width: 100%;
    max-width: 260px;
}

.search-input {
    width: 100%;
    padding: 8px 14px 8px 38px;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    background: var(--bg-primary);
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.search-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(58, 143, 212, 0.1);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-icon {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    pointer-events: none;
}

/* === Results bar === */
.results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.results-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.results-bar__sort {
    display: flex;
    align-items: center;
    gap: 6px;
}

.paw-icon {
    width: 18px;
    height: 18px;
    opacity: 0.6;
    margin-top: -4px;
    /* чёрный → синий #3a8fd4 */
    filter: invert(48%) sepia(79%) saturate(500%) hue-rotate(180deg) brightness(95%);
}

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

/* === Product Card === */
.product-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.25s cubic-bezier(.4,0,.2,1), box-shadow 0.25s cubic-bezier(.4,0,.2,1), border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(26, 58, 92, 0.12);
    border-color: transparent;
}

.product-card__image {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 8px;
    position: relative;
    overflow: hidden;
}

.product-card__image > img:not(.product-card__store-logo) {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__image-placeholder {
    width: 72px;
    height: 72px;
    opacity: 0.12;
}

/* Discount badge */
.product-card__discount {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent-red);
    color: white;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    z-index: 2;
    letter-spacing: -0.3px;
}

/* Store badge */
.product-card__store {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    color: var(--text-primary);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Store logo badge on product card */
.product-card__store-logo {
    position: absolute;
    top: 10px;
    left: 10px;
    height: 28px;
    width: auto;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    z-index: 2;
}

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

.product-card__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card__volume {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.product-card__prices {
    margin-top: auto;
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-top: 8px;
}

.product-card__price-new {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-gold);
    letter-spacing: -0.5px;
}

.product-card__price-currency {
    font-size: 14px;
    font-weight: 600;
}

.product-card__price-old {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-card__valid {
    margin-top: 6px;
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-card__link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

/* Buy button */
.product-card__buy {
    display: block;
    margin-top: 10px;
    padding: 10px 0;
    background: linear-gradient(135deg, #1a3a5c, #3470a8);
    color: white;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border-radius: 100px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.product-card:hover .product-card__buy {
    box-shadow: 0 4px 14px rgba(52, 112, 168, 0.4);
    transform: translateY(-1px);
}

/* === Empty State === */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state__icon {
    width: 150px;
    height: 150px;
    margin-bottom: 24px;
    object-fit: contain;
}

.empty-state__text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

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

/* === Footer === */
.footer {
    background: linear-gradient(135deg, #1a3a5c 0%, #2a5a8a 100%);
    color: rgba(255,255,255,0.6);
    padding: 28px 0;
    margin-top: auto;
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.footer__left {
    flex-shrink: 0;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-bulldog-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

.footer__title {
    font-family: var(--font-display);
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    font-weight: 700;
}

.footer__right {
    text-align: right;
}

.footer__disclaimer {
    font-size: 11px;
    margin-top: 4px;
    line-height: 1.4;
}

.footer__warning {
    font-size: 11px;
    margin-top: 6px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.footer__age-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
    vertical-align: middle;
}

.footer__attribution {
    font-size: 11px;
    margin-top: 6px;
}

.footer__attribution a {
    color: rgba(255,255,255,0.7);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer__attribution a:hover {
    color: white;
}

/* === Loading animation === */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.product-card {
    animation: fadeIn 0.35s cubic-bezier(.4,0,.2,1) both;
}

/* Stagger animation */
.product-card:nth-child(1) { animation-delay: 0.03s; }
.product-card:nth-child(2) { animation-delay: 0.06s; }
.product-card:nth-child(3) { animation-delay: 0.09s; }
.product-card:nth-child(4) { animation-delay: 0.12s; }
.product-card:nth-child(5) { animation-delay: 0.15s; }
.product-card:nth-child(6) { animation-delay: 0.18s; }
.product-card:nth-child(7) { animation-delay: 0.21s; }
.product-card:nth-child(8) { animation-delay: 0.24s; }

/* === Navigation === */
.header__left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo {
    text-decoration: none;
    color: inherit;
}

.logo__title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.nav {
    display: flex;
    gap: 6px;
}

.nav__link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 100px;
    transition: all 0.2s ease;
}

.nav__link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.nav__link--active {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    font-weight: 600;
}

/* Hamburger toggle — hidden on desktop */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle--active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle--active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle--active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile dropdown menu — hidden on desktop */
.mobile-menu {
    display: none;
}


/* === Page Content (static pages) === */
.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.page-content__title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.page-content__subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Steps */
.steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}

.step__number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1a3a5c, #3470a8);
    color: white;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step__title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.step__text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 40px;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.info-card__title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.info-card__text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.info-card--full {
    grid-column: 1 / -1;
}

/* Contacts */
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 40px;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
}

.contact-card__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--accent);
}

.contact-card__icon svg {
    width: 100%;
    height: 100%;
}

.contact-card__title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.contact-card__text {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.contact-card__link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.contact-card__link:hover {
    text-decoration: underline;
}

.contact-card__desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* === Subscribe Section === */
.subscribe {
    background: linear-gradient(135deg, #e8f2fc 0%, #f0f4f8 100%);
    border-top: 1px solid var(--border);
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

.subscribe__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.subscribe__info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.subscribe__bulldog {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.subscribe__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.subscribe__text {
    font-size: 14px;
    color: var(--text-secondary);
}

.subscribe__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    max-width: 420px;
}

.subscribe__fields {
    display: flex;
    gap: 8px;
}

.subscribe__input {
    flex: 1;
    padding: 10px 16px;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    background: white;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.2s;
}

.subscribe__input:focus {
    border-color: var(--accent);
}

.subscribe__input--tg {
    max-width: 170px;
}

.subscribe__btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #1a3a5c, #3470a8);
    color: white;
    border: none;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.subscribe__btn:hover {
    box-shadow: 0 4px 16px rgba(52, 112, 168, 0.4);
    transform: translateY(-1px);
}

.subscribe__paw {
    width: 16px;
    height: 16px;
    filter: invert(1);
}

.subscribe__status {
    font-size: 13px;
    min-height: 20px;
}

.subscribe__status--success {
    color: var(--accent-green);
}

.subscribe__status--error {
    color: var(--accent-red);
}

/* === Footer Nav === */
.footer__center {
    flex-shrink: 0;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__nav a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer__nav a:hover {
    color: white;
}

/* === Stats Dashboard === */
.stats-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 32px;
}

.stats-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.stats-card__label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.stats-card__row {
    display: flex;
    gap: 24px;
}

.stats-card__number {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.stats-card__desc {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
    display: block;
}

/* Bar chart */
.stats-chart {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 200px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 32px;
}

.stats-chart__col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.stats-chart__bar-wrap {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.stats-chart__bar {
    width: 100%;
    max-width: 48px;
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 6px 6px 0 0;
    min-height: 4px;
    position: relative;
    transition: height 0.3s ease;
}

.stats-chart__val {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
}

.stats-chart__label {
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.stats-section__title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

/* Stats list with bars */
.stats-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stats-list__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 8px;
    overflow: hidden;
}

.stats-list__bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: var(--accent-bg);
    border-radius: 8px;
    z-index: 0;
}

.stats-list__name {
    position: relative;
    z-index: 1;
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 80%;
}

.stats-list__count {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-dark);
}

/* === Responsive === */
@media (max-width: 1200px) {
    .bg-bulldogs {
        display: none;
    }

    .header__stats {
        width: 100%;
        justify-content: space-around;
    }
}

@media (max-width: 768px) {
    .header__inner {
        flex-wrap: wrap;
        padding: 14px 0;
    }

    .header__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .header__left {
        width: 100%;
    }

    /* Hide desktop nav on mobile */
    .header__left > .nav {
        display: none;
    }

    .logo__title {
        font-size: 20px;
    }

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

    /* Second row: hamburger + stats */
    .nav-toggle {
        display: flex;
    }

    .header__stats {
        width: 100%;
        justify-content: space-around;
        gap: 12px;
    }

    .stat__number {
        font-size: 18px;
    }

    .stat__label {
        font-size: 9px;
    }

    .stat--updated .stat__value {
        font-size: 11px;
    }

    /* Mobile dropdown */
    .mobile-menu {
        display: block;
        max-height: 0;
        overflow: hidden;
        background: linear-gradient(135deg, #15304d 0%, #1e4a75 100%);
        transition: max-height 0.3s ease;
    }

    .mobile-menu--open {
        max-height: 200px;
    }

    .mobile-menu__nav {
        display: flex;
        flex-direction: column;
        padding: 4px 24px 12px;
    }

    .mobile-menu__link {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        transition: color 0.2s;
    }

    .mobile-menu__link:last-child {
        border-bottom: none;
    }

    .mobile-menu__link:hover,
    .mobile-menu__link--active {
        color: white;
    }

    .filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filters__section:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .filters__section--search {
        margin-left: 0;
    }

    .filters__search {
        max-width: 100%;
    }

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

    .product-card__image {
        aspect-ratio: 1;
        padding: 12px;
    }

    .product-card__price-new {
        font-size: 18px;
    }

    /* Subscribe */
    .subscribe__inner {
        flex-direction: column;
        text-align: center;
    }

    .subscribe__info {
        flex-direction: column;
    }

    .subscribe__form {
        max-width: 100%;
        width: 100%;
    }

    .subscribe__fields {
        flex-direction: column;
    }

    .subscribe__input--tg {
        max-width: 100%;
    }

    /* Footer */
    .footer__inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer__right {
        text-align: center;
    }

    .footer__nav {
        flex-direction: row;
        justify-content: center;
    }

    /* Static pages */
    .page-content__title {
        font-size: 28px;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

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

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

    .stats-chart {
        height: 160px;
        gap: 6px;
        padding: 16px 10px;
    }

    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .stat--updated {
        display: none;
    }

    .header__stats {
        gap: 8px;
    }

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

    .product-card__body {
        padding: 10px 12px;
    }

    .product-card__name {
        font-size: 13px;
    }

    .product-card__price-new {
        font-size: 16px;
    }

    .product-card__buy {
        font-size: 12px;
        padding: 8px 0;
    }
}
