/* ═══════════════════════════════════════════════════════════════
   GLASSMORPHISM COOKIE BANNER
   ═══════════════════════════════════════════════════════════════ */

.cookie-glass {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  max-width: 480px;
  width: calc(100% - 48px);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 0, 0, 0.05);
  z-index: 9999;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-family: 'Jost', sans-serif;
}

.cookie-glass.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.cookie-glass-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cookie-glass-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(14, 189, 243, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.cookie-glass-content {
  flex: 1;
}

.cookie-glass-text {
  color: #333;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 8px 0;
}

.cookie-glass-text a {
  color: #0ebdf3;
  text-decoration: none;
  border-bottom: 1px solid rgba(14, 189, 243, 0.4);
  transition: border-color 0.3s;
}

.cookie-glass-text a:hover {
  border-bottom-color: #0ebdf3;
}

.cookie-glass-btn {
  flex-shrink: 0;
  padding: 10px 20px;
  background: linear-gradient(135deg, #0ebdf3, #0a9bc8);
  color: #000;
  border: none;
  border-radius: 10px;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.cookie-glass-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(14, 189, 243, 0.4);
}

@media (max-width: 480px) {
  .cookie-glass {
    bottom: 16px;
    width: calc(100% - 32px);
    padding: 16px 20px;
  }
  
  .cookie-glass-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-glass-icon {
    width: 40px;
    height: 40px;
  }
  
  .cookie-glass-btn {
    width: 100%;
  }
}
