/* ===== COOKIES BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(95, 95, 95, 0.95);
  color: #f7f1e9;
  padding: 20px;
  z-index: 9999;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 3px solid #cfa27e;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 -5px 20px rgba(95, 95, 95, 0.3);
}

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

.cookie-banner.hide {
  transform: translateY(100%);
  pointer-events: none;
}

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

.cookie-text h3 {
  margin: 0 0 10px 0;
  font-size: 1.2rem;
  color: #cfa27e;
  font-weight: 600;
}

.cookie-text p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #f7f1e9;
}

.cookie-text a {
  color: #cfa27e;
  text-decoration: underline;
  transition: color 0.3s ease;
}

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

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: 'Montserrat', sans-serif;
}

.cookie-btn-accept {
  background: #cfa27e;
  color: #f7f1e9;
  box-shadow: 0 3px 10px rgba(207, 162, 126, 0.3);
}

.cookie-btn-accept:hover {
  background: #b3866e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(207, 162, 126, 0.4);
}

.cookie-btn-settings {
  background: transparent;
  color: #f7f1e9;
  border: 2px solid #cfa27e;
}

.cookie-btn-settings:hover {
  background: #cfa27e;
  color: #f7f1e9;
  transform: translateY(-2px);
}

.cookie-btn-reject {
  background: transparent;
  color: #f7f1e9;
  border: 2px solid #5f5f5f;
}

.cookie-btn-reject:hover {
  background: #5f5f5f;
  color: #f7f1e9;
  transform: translateY(-2px);
}

/* ===== COOKIES MODAL ===== */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.cookie-modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cookie-modal-content {
  background: white;
  border-radius: 15px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
  border-bottom: 1px solid #eee;
}

.cookie-modal-header h2 {
  margin: 0;
  color: #333;
  font-size: 1.5rem;
}

.cookie-close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #999;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-close:hover {
  background: #f5f5f5;
  color: #333;
}

.cookie-modal-body {
  padding: 25px;
}

.cookie-category {
  margin-bottom: 25px;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fafafa;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.cookie-category h3 {
  margin: 0;
  color: #333;
  font-size: 1.1rem;
}

.cookie-category p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* ===== COOKIE SWITCH ===== */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 25px;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 25px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 19px;
  width: 19px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background-color: #cfa27e;
}

input:checked + .cookie-slider:before {
  transform: translateX(25px);
}

input:disabled + .cookie-slider {
  background-color: #cfa27e;
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-modal-footer {
  padding: 25px;
  border-top: 1px solid #eee;
  text-align: center;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.cookie-modal-footer .cookie-btn {
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  min-width: 120px;
}

.cookie-modal-footer .cookie-btn-accept {
  background: #cfa27e;
  color: #f7f1e9;
}

.cookie-modal-footer .cookie-btn-accept:hover {
  background: #b3866e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(207, 162, 126, 0.4);
}

.cookie-modal-footer .cookie-btn-reject {
  background: transparent;
  color: #5f5f5f;
  border: 2px solid #5f5f5f;
}

.cookie-modal-footer .cookie-btn-reject:hover {
  background: #5f5f5f;
  color: #f7f1e9;
  transform: translateY(-2px);
}

.cookie-modal-footer .cookie-btn-save {
  background: #cfa27e;
  color: #f7f1e9;
}

.cookie-modal-footer .cookie-btn-save:hover {
  background: #b3866e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(207, 162, 126, 0.4);
}

/* ===== PRIVACY POLICY PAGE ===== */
.privacy-policy {
  min-height: calc(100vh - 200px);
  padding: 100px 0 50px;
}

.privacy-policy .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.privacy-policy h1 {
  color: #5f5f5f;
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
}

.privacy-policy h2 {
  color: #333;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.5rem;
  border-bottom: 2px solid #cfa27e;
  padding-bottom: 5px;
}

.privacy-policy h3 {
  color: #555;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.privacy-policy p, .privacy-policy li {
  line-height: 1.6;
  margin-bottom: 10px;
  color: #666;
}

.privacy-policy ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.privacy-policy section {
  margin-bottom: 30px;
  padding: 20px;
  background: #fafafa;
  border-radius: 10px;
  border-left: 4px solid #cfa27e;
}

.privacy-policy strong {
  color: #333;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  .cookie-btn {
    padding: 12px 16px;
    font-size: 0.8rem;
  }
  
  .cookie-modal-content {
    width: 95%;
    margin: 10px;
  }
  
  .cookie-modal-header,
  .cookie-modal-body,
  .cookie-modal-footer {
    padding: 20px;
  }
  
  .cookie-category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .privacy-policy h1 {
    font-size: 2rem;
  }
  
  .privacy-policy h2 {
    font-size: 1.3rem;
  }
  
  .privacy-policy .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .cookie-banner {
    padding: 15px;
  }
  
  .cookie-text h3 {
    font-size: 1rem;
  }
  
  .cookie-text p {
    font-size: 0.8rem;
  }
  
  .cookie-btn {
    padding: 10px 14px;
    font-size: 0.75rem;
  }
  
  .privacy-policy {
    padding: 80px 0 30px;
  }
}
