/* Cookie Consent Modal Styles */
.cookie-consent-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-top: 3px solid #03bfcb;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  font-family: inherit;
}

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

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

.cookie-consent-text h3 {
  margin: 0 0 8px 0;
  color: #333;
  font-size: 18px;
  font-weight: 600;
}

.cookie-consent-text p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

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

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  min-width: 100px;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #03bfcb 0%, #0288a3 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(3, 191, 203, 0.3);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(3, 191, 203, 0.4);
}

.cookie-btn-decline {
  background: #f8f9fa;
  color: #666;
  border: 2px solid #e9ecef;
}

.cookie-btn-decline:hover {
  background: #e9ecef;
  color: #333;
  transform: translateY(-1px);
}

.cookie-consent-link {
  color: #03bfcb;
  text-decoration: none;
  font-weight: 500;
}

.cookie-consent-link:hover {
  text-decoration: underline;
}

/* Mobile responsive for cookie modal */
@media (max-width: 768px) {
  .cookie-consent-modal {
    padding: 15px;
  }

  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .cookie-consent-text {
    min-width: auto;
  }

  .cookie-consent-buttons {
    width: 100%;
    justify-content: center;
  }

  .cookie-btn {
    flex: 1;
    max-width: 150px;
  }
}
