  :root{
    --orange:#e86f39;
    --red:#9a1628;
    --bg:#f7f5f0;
    --bg-alt:#efece5;
    --paper:#fdfcf8;
    --ink:#1a1614;
    --ink-soft:#5a554f;
    --line:#d9d3c4;
    --line-soft:#e8e3d6;
	  
	--page-title-display: block!important;
	--bardnwn-container: min(92%, 1280px);
	  
	  /* На больших экранах (Full HD+) — расширяем */
@media (min-width: 1920px) {
    :root {
        --bardnwn-container: min(88%, 1600px);
    }
}

/* На 4K — ещё шире */
@media (min-width: 2560px) {
    :root {
        --bardnwn-container: min(85%, 1920px);
    }
}
} 

  body{
    background:var(--bg)!important;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
  }

	/* Отступы в меню между элементами */

nav ul{
	gap:24px!important;
}

  /* ─── Декоративный фон с разметкой ─── */
  body::before{
    content:"";
    position:fixed;
    inset:0;
    background-image:
      linear-gradient(rgba(154,22,40,.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(154,22,40,.025) 1px, transparent 1px);
    background-size:80px 80px;
    pointer-events:none;
    z-index:0;
  }

  .container{
    max-width:var(--bardnwn-container);
    margin:0 auto;
    padding:0;
    position:relative;
    z-index:1;
  }
  
  /* Верхний хедер режим работы */
  .header-schedule {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.header-schedule__icon {
    font-size: 18px;
    line-height: 1;
}

.header-schedule__text {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.header-schedule__text .bold{
    font-size:15px;
    font-weight:700;
}

.header-schedule__status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1;
}

/* Статус "Открыто" */
.header-schedule__status--open {
    background: #dcfce7;
    color: #166534;
}

.header-schedule__status--open::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

/* Статус "Закрыто" */
.header-schedule__status--closed {
    background: #fee2e2;
    color: #991b1b;
}

.header-schedule__status--closed::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@media (max-width: 1024px) {
    .header-schedule__text {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .header-schedule__icon {
        font-size: 16px;
    }
    .header-schedule__text {
        font-size: 12px;
    }
    .header-schedule__status {
        font-size: 10px;
        padding: 2px 8px;
    }
}

/* Верхний хедер телефон и почта */

.header-contact{
    display: flex;
}
.header-contact span{
    margin-right: 5px;
}
.header-contact a{
color: var(--ink-soft);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    opacity: 0.95;
}
.header-contact a:hover{
    color: var(--ast-global-color-7);
    opacity: 1;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
	text-decoration: underline!important;
    text-underline-offset: 3px;
}

/* Специфичные стили для email */
.header-contact a[href^="mailto:"] {
    padding-right: 5px;
}

/* Специфичные стили для телефона - делаем жирнее */
.header-contact a[href^="tel:"] {
    font-weight: 600;
    font-size: 15px;
}

/* Уменьшаем отступы между пунктами меню на средних экранах */
@media (max-width: 1140px) {
    .main-header-menu .menu-item > a {
        padding-left: 12px !important;
        padding-right: 12px !important;
        font-size: 14px !important;
    }
    
    /* Уменьшаем логотип */
    .site-logo-img img {
        max-height: 45px !important;
        width: auto !important;
    }
    
    /* Скрываем подпись под логотипом на средних экранах */
    .site-description,
	.site-title,
	.ast-custom-button{
        display: none !important;
    }
}

 
  /* ─── Responsive ─── */
  @media (max-width: 980px){
    .container{padding:0 24px}
    nav ul{display:none}
    .menu-toggle{display:block}
    .hero{padding:50px 0 60px}
    .hero-grid{grid-template-columns:1fr;gap:50px}
    .hero-visual{max-width:440px;margin:0 auto;width:100%}
    .stats-strip{grid-template-columns:1fr 1fr}
    .stat:nth-child(2){border-right:none}
    .stat:nth-child(1),.stat:nth-child(2){border-bottom:1px solid var(--line)}
    section{padding:80px 0}
    .section-head{grid-template-columns:1fr;gap:24px;margin-bottom:48px}
    .catalog{grid-template-columns:1fr 1fr}
    .about-grid{grid-template-columns:1fr;gap:48px}
    .articles{grid-template-columns:1fr}
    .final-cta-grid{grid-template-columns:1fr;gap:32px}
    .features{grid-template-columns:1fr}
  }
  @media (max-width: 560px){
    .catalog{grid-template-columns:1fr}
    .stats-strip{grid-template-columns:1fr}
    .stat{border-right:none;border-bottom:1px solid var(--line)}
    .stat:last-child{border-bottom:none}

    .logo-text strong{font-size:16px}
    .logo-text span{font-size:10px}
    .cta{padding:9px 16px;font-size:13px}
  }

/* ─── Шапка ─── */
  header{
    background:rgba(247,245,240,.92);

  }
  .nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 0;
  }
  .logo{
    display:flex;
    align-items:center;
    gap:14px;
    text-decoration:none;
    color:var(--ink);
  }
  .logo img{
    height:42px;
    width:auto;
  }
  .logo-text{
    display:flex;
    flex-direction:column;
    line-height:1.1;
  }
  .logo-text strong{
    font-weight:600;
    font-size:18px;
    letter-spacing:.02em;
  }
  .logo-text span{
    font-size:11px;
    color:var(--ink-soft);
    letter-spacing:.08em;
    text-transform:uppercase;
    margin-top:2px;
  }

  nav a{
    text-decoration:none;
    color:var(--ink);
    font-size:14px;
    font-weight:500;
    position:relative;
    padding:6px 0;
    transition:color .2s;
  }
  nav a:hover{color:var(--orange)}
  nav a::after{
    content:"";
    position:absolute;
    left:0;right:0;bottom:0;
    height:2px;
    background:var(--orange);
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .3s;
  }
  nav a:hover::after{transform:scaleX(1)}
  .cta{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:var(--red);
    color:#fff;
    padding:11px 22px;
    border-radius:2px;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    transition:background .2s, transform .2s;
  }
  .cta:hover{background:#7e1220;transform:translateY(-1px)}
  .cta svg{width:14px;height:14px}
  .menu-toggle{display:none;background:none;border:none;cursor:pointer;padding:8px}





/* ============================================
   ФУТЕР - ГЛОБАЛЬНЫЕ СТИЛИ (ТЕПЛАЯ ВЕРСИЯ)
   ============================================ */

.site-footer-custom {
    /* ТЕПЛЫЕ цвета - с коричневым/бежевым подтоном */
    --footer-bg: #2d2520;           /* Теплый темно-коричневый вместо #1e1a1f */
    --footer-bg-dark: #1f1a17;      /* Теплый черный вместо #151218 */
    --footer-text: #d4c8c0;         /* Теплый бежево-серый вместо #b8c1d1 */
    --footer-text-light: #a89890;   /* Теплый серо-коричневый вместо #8b95a8 */
    --footer-heading: #f5ebe5;      /* Теплый белый с бежевым оттенком */
    --footer-accent: #7a2035;       /* Бордовый (оставляем) */
    --footer-accent-hover: #8B1E3F; /* Бордовый (оставляем) */
    --footer-border: rgba(245, 235, 229, 0.12); /* Теплая граница */
    --footer-input-bg: #3d3228;     /* Теплый коричневый вместо #252b3d */
    
    background-color: var(--footer-bg);
    color: var(--footer-text);
    font-size: 14px;
    line-height: 1.6;
    margin-top: 80px;
}

.site-footer-custom * {
    box-sizing: border-box;
}

.site-footer-custom a {
    color: var(--footer-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.site-footer-custom a:hover {
    color: #ffffff;
}

.site-footer-custom .container {
    max-width: var(--bardnwn-container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   CTA СЕКЦИЯ (Теплый градиент)
   ============================================ */

.footer-cta-section {
    /* ТЕПЛЫЙ градиент - коричневый с бордовым подтоном */
    background: linear-gradient(135deg, #4a2f2e 0%, #2d1f1e 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.footer-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* ТЕПЛЫЙ паттерн с коричневыми тонами */
    background: linear-gradient(135deg, #3d2a25 0%, #2a1f1a 100%);
    opacity: 0.4;
}

.footer-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.footer-cta-content {
    flex: 1;
    max-width: 500px;
}

.footer-cta-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.footer-cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
}

.footer-cta-form {
    display: flex;
    gap: 12px;
    flex: 1;
    max-width: 500px;
}

.footer-cta-input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(245, 235, 229, 0.95); /* Теплый бежевый */
    border: 2px solid transparent;
    border-radius: 6px;
    font-size: 15px;
    color: #2d2520; /* Теплый темный */
    outline: none;
    transition: all 0.3s ease;
}

.footer-cta-input:focus {
    border-color: #f5ebe5;
    background: #f5ebe5;
}

.footer-cta-input::placeholder {
    color: #a89890; /* Теплый серо-коричневый */
}

.footer-cta-button {
    padding: 14px 32px;
    background: #ffffff;
    color: var(--footer-accent);
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.footer-cta-button:hover {
    background: #f5ebe5; /* Теплый бежевый hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-cta-privacy {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin: 12px 0 0 0;
    text-align: center;
}

.footer-cta-privacy a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

.footer-cta-privacy a:hover {
    color: #ffffff;
}

/* ============================================
   ОСНОВНАЯ ЧАСТЬ ФУТЕРА (4 колонки)
   ============================================ */

.footer-main {
    padding: 60px 0 40px;
    background-color: var(--footer-bg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 40px;
}

/* ============================================
   КОЛОНКИ ФУТЕРА
   ============================================ */

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    color: var(--footer-heading);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 24px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--footer-border);
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.title-accent {
    display: inline-block;
    width: 4px;
    height: 20px;
    background: var(--footer-accent);
    border-radius: 2px;
}

/* ============================================
   КОЛОНКА 1: О КОМПАНИИ
   ============================================ */

.footer-about-text {
    color: var(--footer-text);
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 24px 0;
}

.footer-about-text strong {
    color: var(--footer-heading);
    font-weight: 600;
}

/* Бейджи */
.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--footer-input-bg);
    border-radius: 8px;
    border: 1px solid var(--footer-border);
    transition: all 0.3s ease;
}

.footer-badge:hover {
    background: rgba(122, 32, 53, 0.15); /* Теплый бордовый */
    border-color: var(--footer-accent);
    transform: translateX(4px);
}

.footer-badge svg {
    width: 20px;
    height: 20px;
    color: var(--footer-accent);
    flex-shrink: 0;
}

.footer-badge span {
    color: var(--footer-text);
    font-size: 13px;
    font-weight: 500;
}

/* Кнопки скачивания */
.footer-download-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-download-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-download-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.footer-download-btn--primary {
    background: var(--footer-accent);
    color: #ffffff !important;
}

.footer-download-btn--primary:hover {
    background: var(--footer-accent-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(122, 32, 53, 0.3);
}

.footer-download-btn--secondary {
    background: var(--footer-input-bg);
    color: var(--footer-text);
    border: 1px solid var(--footer-border);
}

.footer-download-btn--secondary:hover {
    background: rgba(245, 235, 229, 0.08); /* Теплый hover */
    color: #f5ebe5;
    border-color: var(--footer-accent);
}

/* ============================================
   КОЛОНКА 2: КОНТАКТЫ
   ============================================ */

.footer-contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--footer-input-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--footer-border);
    transition: all 0.3s ease;
}

.footer-contact-item:hover .contact-icon {
    background: var(--footer-accent);
    border-color: var(--footer-accent);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    color: var(--footer-accent);
    transition: color 0.3s ease;
}

.footer-contact-item:hover .contact-icon svg {
    color: #ffffff;
}

.contact-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-link {
    color: var(--footer-heading);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-desc {
    color: var(--footer-text-light);
    font-size: 12px;
}

.contact-text {
    color: var(--footer-text);
    font-size: 14px;
    line-height: 1.5;
}

.contact-text strong {
    color: var(--footer-heading);
    font-weight: 600;
}

.contact-desc-link {
    color: var(--footer-accent);
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-desc-link:hover {
    color: var(--footer-accent-hover);
    text-decoration: underline;
}

/* Социальные сети */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--footer-border);
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--footer-input-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--footer-border);
    transition: all 0.3s ease;
}

.social-link svg {
    width: 20px;
    height: 20px;
    color: var(--footer-text);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--footer-accent);
    border-color: var(--footer-accent);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(122, 32, 53, 0.3);
}

.social-link:hover svg {
    color: #ffffff;
}

/* ============================================
   КОЛОНКА 3: ИНФОРМАЦИЯ
   ============================================ */

.footer-info-group {
    margin-bottom: 24px;
}

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

.footer-info-group-title {
    color: var(--footer-heading);
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links li a {
    color: var(--footer-text);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 2px 0;
}

.footer-links li a:hover {
    color: #f5ebe5; /* Теплый белый */
    transform: translateX(4px);
}

/* ============================================
   КОЛОНКА 4: КАТАЛОГ ПРОДУКЦИИ
   ============================================ */

.footer-links--products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.footer-links--products li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
}

.footer-links--products li a svg {
    width: 16px;
    height: 16px;
    color: var(--footer-accent);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-links--products li a:hover svg {
    color: #f5ebe5; /* Теплый белый */
    transform: scale(1.1);
}

.footer-catalog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 20px;
    background: var(--footer-accent);
    color: #ffffff !important;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-catalog-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.footer-catalog-link:hover {
    background: var(--footer-accent-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(122, 32, 53, 0.3);
}

.footer-catalog-link:hover svg {
    transform: translateX(4px);
}

/* ============================================
   НИЖНЯЯ ЧАСТЬ ФУТЕРА (Copyright)
   ============================================ */

.footer-bottom {
    background-color: var(--footer-bg-dark);
    padding: 30px 0;
    border-top: 1px solid var(--footer-border);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-copyright p {
    color: var(--footer-text-light);
    font-size: 13px;
    margin: 0 0 8px 0;
    line-height: 1.6;
}

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

.footer-copyright i {
    color: var(--footer-text-light);
    font-style: italic;
}

.footer-legal {
    font-size: 12px !important;
}

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

.footer-legal a:hover {
    color: #f5ebe5;
}

/* Способы оплаты */
.footer-payment-methods {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.payment-label {
    color: var(--footer-text-light);
    font-size: 13px;
    font-weight: 500;
}

.payment-icons {
    display: flex;
    gap: 12px;
}

.payment-icon {
    width: 48px;
    height: 32px;
    background: var(--footer-input-bg);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--footer-border);
    transition: all 0.3s ease;
}

.payment-icon:hover {
    border-color: var(--footer-accent);
    transform: translateY(-2px);
}

.payment-icon svg {
    width: 100%;
    height: 100%;
}

/* Юридическая информация */
.footer-legal-info {
    padding-top: 20px;
    border-top: 1px solid var(--footer-border);
}

.footer-legal-info p {
    color: var(--footer-text-light);
    font-size: 11px;
    line-height: 1.6;
    margin: 0 0 8px 0;
}

.footer-legal-info p:last-child {
    margin-bottom: 0;
}

.footer-legal-info a {
    color: var(--footer-text);
    text-decoration: underline;
}

.footer-legal-info a:hover {
    color: #f5ebe5;
}

/* ============================================
   АДАПТИВНОСТЬ - ПЛАНШЕТЫ (768px - 1024px)
   ============================================ */

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-cta-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .footer-cta-content {
        max-width: 100%;
    }
    
    .footer-cta-form {
        max-width: 100%;
        width: 100%;
    }
    
    .footer-links--products {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   АДАПТИВНОСТЬ - МОБИЛЬНЫЕ (< 768px)
   ============================================ */

@media (max-width: 768px) {
    .site-footer-custom {
        margin-top: 40px;
    }
    
    .footer-cta-section {
        padding: 40px 0;
    }
    
    .footer-cta-title {
        font-size: 22px;
    }
    
    .footer-cta-text {
        font-size: 14px;
    }
    
    .footer-cta-form {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-cta-button {
        width: 100%;
    }
    
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column-title {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .footer-badges {
        gap: 10px;
    }
    
    .footer-badge {
        padding: 10px 12px;
    }
    
    .footer-contact-item {
        margin-bottom: 16px;
    }
    
    .footer-info-group {
        margin-bottom: 20px;
    }
    
    .footer-bottom {
        padding: 24px 0;
    }
    
    .footer-bottom-content {
        gap: 16px;
    }
    
    .footer-payment-methods {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* ============================================
   АДАПТИВНОСТЬ - МАЛЕНЬКИЕ МОБИЛЬНЫЕ (< 480px)
   ============================================ */

@media (max-width: 480px) {
    .footer-cta-title {
        font-size: 20px;
    }
    
    .footer-cta-input {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .footer-cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .footer-column-title {
        font-size: 15px;
    }
    
    .footer-about-text,
    .footer-links li a,
    .contact-text {
        font-size: 13px;
    }
    
    .contact-link {
        font-size: 14px;
    }
    
    .footer-copyright p,
    .footer-legal-info p {
        font-size: 11px;
    }
}

/* ============================================
   АНИМАЦИИ И ЭФФЕКТЫ
   ============================================ */

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

.footer-column {
    animation: fadeInUp 0.6s ease forwards;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

/* Плавная прокрутка для якорных ссылок */
html {
    scroll-behavior: smooth;
}

/* Улучшение доступности */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Фокус для клавиатурной навигации */
.footer-links li a:focus,
.social-link:focus,
.footer-download-btn:focus,
.footer-catalog-link:focus {
    outline: 2px solid var(--footer-accent);
    outline-offset: 2px;
    border-radius: 4px;
}