.trend-cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  padding: 16px 0;
  background: rgba(34, 34, 34, 0.96);
  border-top: 2px solid #e3831c;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.25);
}

.trend-cookie-consent__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.trend-cookie-consent__text {
  flex: 1 1 320px;
  margin: 0;
  color: #f7f7f2;
  font-size: 14px;
  line-height: 1.5;
}

.trend-cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.trend-cookie-consent__policy {
  color: #e3831c;
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.trend-cookie-consent__policy:hover {
  color: #ffffff;
}

.trend-cookie-consent__accept {
  appearance: none;
  border: 0;
  border-radius: 30px;
  padding: 10px 24px;
  background: #e3831c;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.trend-cookie-consent__accept:hover {
  background: #c97218;
}

@media (max-width: 640px) {
  .trend-cookie-consent {
    padding: 12px 0;
  }

  .trend-cookie-consent__inner {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
  }

  .trend-cookie-consent__text {
    flex: 0 0 auto;
  }

  .trend-cookie-consent__actions {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
  }

  .trend-cookie-consent__accept {
    width: 100%;
    text-align: center;
  }
}
