 footer {
    margin-top: 34px;
    background: #fff;
    border-top: 1px solid var(--stroke);
  }
  .footer-top {
    padding: 18px 0;
  }
  .footer-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }
  .footer-desc {
    color: var(--muted);
    font-size: 13px;
  }
  .payment-methods {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 14px 0 0;
  }
  .payment-methods img {
    height: 20px;
    width: auto;
  }

  #protectedImage {
    height: auto;
    display: block;
  }

  /* Cookie Banner Styles */
  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: white;
    padding: 16px;
    z-index: 10000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    display: none;
  }
  .cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .cookie-text {
    font-size: 14px;
    line-height: 1.5;
    color: #e5e7eb;
  }
  .cookie-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .cookie-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    white-space: nowrap;
  }
  .cookie-accept {
    background: var(--brand);
    color: white;
  }
  .cookie-accept:hover {
    background: var(--brand-2);
    transform: translateY(-1px);
  }
  .cookie-settings {
    background: #374151;
    color: white;
  }
  .cookie-settings:hover {
    background: #4b5563;
  }
  .cookie-reject {
    background: transparent;
    color: #9ca3af;
    border: 1px solid #4b5563;
  }
  .cookie-reject:hover {
    background: #374151;
    color: white;
  }

  /* Мобильная адаптация */
  @media (max-width: 768px) {
    .cookie-content {
      gap: 16px;
    }
    .cookie-text {
      font-size: 13px;
      text-align: center;
      line-height: 1.4;
    }
    .cookie-buttons {
      justify-content: center;
    }
    .cookie-btn {
      padding: 12px 16px;
      font-size: 13px;
      flex: 1;
      min-width: 120px;
      max-width: 200px;
    }
  }

  @media (max-width: 480px) {
    .cookie-banner {
      padding: 12px;
    }
    .cookie-text {
      font-size: 12px;
    }
    .cookie-buttons {
      flex-direction: column;
      align-items: center;
    }
    .cookie-btn {
      width: 100%;
      max-width: 280px;
      padding: 14px 16px;
    }
  }

  /* Анимация появления */
  @keyframes slideUp {
    from {
      transform: translateY(100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .cookie-banner.show {
    display: block;
    animation: slideUp 0.3s ease-out;
  }