.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 20px 15px;
  z-index: 99999;
  border-top: 1px solid var(--gray-border-color);
}

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

.cookie-text-block {
  flex: 1;
  padding-right: 20px;
}

.cookie-button-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}

.cookie-details-title {
  font-size: 14px;
  margin: 0 0 5px 0;
}

.cookie-details-link {
  color: #3498db;
  text-decoration: underline;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-details {
  display: none;
  font-size: 14px;
  line-height: 1.4;
}

.cookie-btn {
  background: #fc6184;
  border: none;
  padding: 14px 38px;
  border-radius: 23px;
  cursor: pointer;
  font-family: var(--font-semi-bold);
  font-size: 16px;
  line-height: 1;
  color: #ffffff !important;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-text-block {
    padding-right: 0;
    margin-bottom: 15px;
    width: 100%;
  }
  
  .cookie-button-wrapper {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    width: 100%;
    text-align: center;
  }
}