/* ========================================
   aminainfo — Cookie Consent Banner
   Luxury dark marble + gold typography
   ======================================== */

.cookie-consent {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 14px;
  z-index: 10000;
  display: flex;
  justify-content: center;
  pointer-events: none;

  transform: translateY(120%);
  opacity: 0;
  transition: transform 420ms cubic-bezier(0.23, 1, 0.32, 1), opacity 320ms ease;
}

.cookie-consent.is-visible {
  pointer-events: auto;
  transform: translateY(0);
  opacity: 1;
}

.cookie-consent.is-hidden {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}

.cookie-inner {
  width: min(980px, 100%);
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(6, 4, 2, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.65), 0 0 60px rgba(212, 175, 55, 0.12);

  padding: 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cookie-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cookie-title {
  font-family: "Playfair Display", serif;
  color: rgba(240, 216, 120, 0.95);
  letter-spacing: 0.08em;
  font-weight: 800;
  font-size: 0.95rem;
}

.cookie-copy {
  color: rgba(245, 240, 232, 0.95);
  font-weight: 600;
  font-size: 0.86rem;
}

.cookie-p {
  margin: 0;
}

.cookie-link {
  color: rgba(212, 175, 55, 0.95);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
}

.cookie-link:hover {
  color: rgba(240, 216, 120, 1);
  border-bottom-color: rgba(240, 216, 120, 0.7);
}

.cookie-actions {
  flex-shrink: 0;
}

.cookie-accept {
  border: 1px solid rgba(212, 175, 55, 0.55);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.35), rgba(0, 0, 0, 0.20));
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset, 0 0 44px rgba(212, 175, 55, 0.16);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 216, 120, 0.85);
  box-shadow: 0 0 70px rgba(212, 175, 55, 0.22);
}

.cookie-accept:active {
  transform: translateY(0);
}

.cookie-accept-main {
  display: block;
  font-weight: 900;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

.cookie-accept-sub {
  display: block;
  font-weight: 800;
  font-size: 0.78rem;
  color: rgba(240, 216, 120, 0.95);
  margin-top: 2px;
}

@media (max-width: 720px) {
  .cookie-consent {
    left: 10px;
    right: 10px;
    bottom: 12px;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    display: flex;
    justify-content: flex-end;
  }

  .cookie-accept {
    width: 100%;
  }
}

