/* =============================================
   STRAPZY'S — GDPR Cookie Consent Banner
   ============================================= */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #111111;
  border-top: 1px solid #1e1e1e;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.6);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#cookie-banner.visible {
  transform: translateY(0);
}

.cookie-text {
  flex: 1;
  min-width: 0;
}

.cookie-text p {
  margin: 0;
  font-size: 13px;
  color: #888888;
  line-height: 1.6;
}

.cookie-text a {
  color: #c8ff00;
  text-decoration: none;
}

.cookie-text a:hover {
  text-decoration: underline;
}

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

.cookie-btn-accept {
  background: #c8ff00;
  color: #000000;
  border: none;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.cookie-btn-accept:hover {
  opacity: 0.85;
}

.cookie-btn-decline {
  background: transparent;
  color: #555555;
  border: 1px solid #2a2a2a;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.cookie-btn-decline:hover {
  color: #888888;
  border-color: #444444;
}

@media (max-width: 640px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 20px 24px;
    gap: 16px;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1;
    text-align: center;
  }
}
