/* ============================================
   Cookie Notice - Independent Styling
   ============================================ */

#cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

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

.cookie-notice-text {
  flex: 1;
  min-width: 300px;
}

.cookie-notice-text h4 {
  margin: 0 0 10px 0;
  font-size: 20px;
  font-weight: 600;
  color: #333;
  font-family: 'Poppins', sans-serif;
}

.cookie-notice-text p {
  margin: 0;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
}

.cookie-notice-text a {
  color: #0693e3;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.cookie-notice-text a:hover {
  color: #0571b3;
}

.cookie-notice-buttons {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
}

.cookie-accept {
  background: #0693e3;
  color: #fff;
}

.cookie-accept:hover {
  background: #0571b3;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(6, 147, 227, 0.3);
}

.cookie-decline {
  background: #f5f5f5;
  color: #333;
  border: 1px solid #ddd;
}

.cookie-decline:hover {
  background: #e0e0e0;
  border-color: #bbb;
}

@media (max-width: 768px) {
  #cookie-notice {
    padding: 15px;
  }
  
  .cookie-notice-content {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  
  .cookie-notice-text {
    min-width: 100%;
  }
  
  .cookie-notice-text h4 {
    font-size: 18px;
  }
  
  .cookie-notice-text p {
    font-size: 13px;
  }
  
  .cookie-notice-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
    padding: 14px 30px;
  }
}

