/* ==============================================
   STUDIO PULEO — Cookie Banner Styles
   ============================================== */

#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  width: calc(100% - 32px);
  max-width: 860px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.06);
  z-index: 9999;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.35s ease;
  font-family: 'Montserrat', sans-serif;
}

#cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

#cookie-banner.hiding {
  transform: translateX(-50%) translateY(140px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.3s ease;
}

.cb-inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  flex-wrap: wrap;
}

.cb-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: #FEF3E2;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #F97316;
  margin-top: 2px;
}

.cb-text {
  flex: 1;
  min-width: 220px;
}

.cb-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

.cb-text p {
  font-size: 12px;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

.cb-text a {
  color: #F97316;
  font-weight: 600;
  text-decoration: underline;
}

.cb-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  align-self: center;
  flex-wrap: wrap;
}

.cb-btn {
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.cb-btn-primary {
  background: #F97316;
  color: #fff;
}
.cb-btn-primary:hover {
  background: #ea6707;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(249,115,22,0.35);
}

.cb-btn-secondary {
  background: #F9FAFB;
  color: #555;
  border: 1px solid #e5e7eb;
}
.cb-btn-secondary:hover {
  background: #F3F4F6;
  color: #333;
}

@media (max-width: 600px) {
  #cookie-banner {
    bottom: 12px;
    border-radius: 12px;
  }
  .cb-inner {
    padding: 16px;
  }
  .cb-actions {
    width: 100%;
    justify-content: flex-end;
  }
}
