/* Базовые цвета */
:root {
    --primary-color: #8B4513;
    --secondary-color: #A0522D;
    --dark-brown-color: #2A1F16;
    --light-brown-color: #D2B48C;
    --cream-color: #FFF5E1;
  }
  
  /* Базовые стили для body и шрифтов */
  body {
    font-family: 'Lora', serif;
    color: var(--dark-brown-color);
    background-color: var(--cream-color);
  }
  
  /* Стили для кнопок */
  .btn {
    @apply inline-flex items-center justify-center px-6 py-3 font-medium rounded-full transition duration-300 ease-in-out;
    background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: #fff;
  }
  
  .btn-icon {
    @apply w-12 h-12 rounded-full flex items-center justify-center shadow-lg;
  }
  
  /* Стили для ссылок */
  .link-hover {
    @apply transition-colors duration-300;
  }
  .link-hover:hover {
    color: var(--primary-color);
  }
  
  /* Анимация вращения */
  .animate-spin {
    animation: spin 3s linear infinite;
  }
  @keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  
  /* Стили для баннера с cookies */
  .cookie-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
  }
  
  .cookie-wrapper .buttons {
    display: flex;
    gap: 1rem;
  }
  
  .cookie-button {
    padding: 0.5rem 1rem;
    border-radius: 9999px; /* rounded-full */
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  #acceptBtn {
    background-color: var(--primary-color);
    color: white;
  }
  
  #declineBtn {
    background-color: #e5e7eb;
    color: #1f2937;
  }
  
  .cookie-wrapper a {
    color: var(--primary-color);
    text-decoration: underline;
  }
  
  @media (min-width: 768px) {
    .cookie-wrapper {
      flex-direction: row;
      justify-content: space-between;
      text-align: left;
    }
  }