/*--------------------------------------------------------------
# Cookie Banner Styling
--------------------------------------------------------------*/

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #065b5e 0%, #0ea8ac 100%);
  color: #ffffff;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(6, 91, 94, 0.2);
  border-top: 3px solid #1dc8cd;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
  backdrop-filter: blur(10px);
}

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

.cookie-banner-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-banner-content {
  flex: 1;
  min-width: 300px;
}

.cookie-banner-title {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-banner-title::before {
  content: "🍪";
  font-size: 1.2rem;
}

.cookie-banner-text {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  opacity: 0.95;
}

.cookie-banner-text a {
  color: #1dc8cd;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s ease;
}

.cookie-banner-text a:hover {
  color: #ffffff;
}

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

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-family: var(--nav-font);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.cookie-btn-accept {
  background: #1dc8cd;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(29, 200, 205, 0.3);
}

.cookie-btn-accept:hover {
  background: #17b3b8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29, 200, 205, 0.4);
}

.cookie-btn-decline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.cookie-btn::before {
  font-size: 0.8rem;
}

.cookie-btn-accept::before {
  content: "✓";
}

.cookie-btn-decline::before {
  content: "✕";
}

/* Responsive Design */
@media (max-width: 768px) {
  .cookie-banner {
    padding: 16px;
  }
  
  .cookie-banner-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .cookie-banner-content {
    min-width: auto;
  }
  
  .cookie-banner-actions {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1;
    max-width: 150px;
  }
}

@media (max-width: 480px) {
  .cookie-banner-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .cookie-btn {
    max-width: none;
    width: 100%;
  }
}

/* Animation for fade out */
.cookie-banner.hiding {
  transform: translateY(100%);
  opacity: 0;
}