.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  padding: 20px;
  box-sizing: border-box;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.cookie-consent.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.cookie-consent__panel {
  max-width: 960px;
  margin: 0 auto;
  background: #F5F0E8;
  border: 1px solid rgba(44, 44, 37, 0.12);
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(28, 28, 20, 0.18);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-consent__text {
  font-family: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  font-size: 16px;
  line-height: 1.6;
  color: #3D3D32;
  margin: 0;
  flex: 1;
}

.cookie-consent__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-consent__btn {
  font-family: 'Jost', 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 24px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  border: none;
}

.cookie-consent__btn--accept {
  background: #2C2C25;
  color: #F5F0E8;
  box-shadow: 0 2px 8px rgba(28, 28, 20, 0.2);
}

.cookie-consent__btn--accept:hover {
  background: #1A1A14;
}

.cookie-consent__btn--decline {
  background: #FFFFFF;
  color: #2C2C25;
  border: 1.5px solid #2C2C25;
}

.cookie-consent__btn--decline:hover {
  background: #EDE8DC;
}

@media (max-width: 768px) {
  .cookie-consent {
    padding: 16px;
  }

  .cookie-consent__panel {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 20px;
  }

  .cookie-consent__actions {
    flex-direction: column;
  }

  .cookie-consent__btn {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-consent {
    transition: none;
  }
}
