/**
 * @file
 * Куки-баннер для сайта Спецформа.
 */

#digital-cookies {
  position: fixed;
  bottom: 20px;
  left: 50px;
  z-index: 2999;
  
  max-width: 340px;
  width: 100%;
  min-width: 280px;
  
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  
  opacity: 0;
  display: none;
  
  font-size: 14px;
  line-height: 1.5;
  
  transition: opacity 0.3s ease;
}

#digital-cookies.active {
  display: block !important;
  opacity: 1;
}

.dc-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  
  padding: 20px;
}

.dc-body__text {
  margin: 0;
}

.dc-boty__text-title {
  margin: 0 0 4px 0;
  font-weight: 700;
  font-size: 16px;
}

.dc-body__text p {
  margin: 0;
}

.dc-body__btns {
  width: 100%;
}

#dc-btn-accept {
  width: 100%;
  padding: 10px 16px;
  
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  
  color: #fff;
  background-color: #911504;
  border: 1px solid #911504;
  border-radius: 6px;
  
  cursor: pointer;
  transition: opacity 0.2s ease;
}

#dc-btn-accept:hover,
#dc-btn-accept:focus {
  opacity: 0.8;
}

#dc-btn-accept:active {
  opacity: 0.6;
}

/* Адаптив для мобильных */
@media (max-width: 480px) {
  #digital-cookies {
    left: 0;
    bottom: 0;
    max-width: 100%;
    min-width: unset;
    width: 100%;
    border-radius: 0;
  }
  
  .dc-body {
    padding: 16px 20px;
  }
}