.yc-cookie-consent {
  z-index: 2147483000;
  color: #111;
  background: var(--surface-1, #fff);
  border: 1px solid var(--border-subtle, rgba(0, 0, 0, 0.12));
  border-radius: 16px;
  width: calc(100% - 48px);
  max-width: 1040px;
  max-height: calc(100vh - 48px);
  margin: 0 auto;
  padding: 20px;
  font-family: var(--font-body, Arial, sans-serif);
  line-height: 1.4;
  display: flex;
  gap: 24px;
  align-items: center;
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  overflow: auto;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.15);
}

.yc-cookie-consent__content {
  flex: 1;
}

.yc-cookie-consent__title {
  color: inherit;
  margin: 0 0 8px;
  font: 600 20px/1.2 var(--font-display, var(--font-body, Arial, sans-serif));
}

.yc-cookie-consent__description {
  color: var(--text-secondary, rgba(0, 0, 0, 0.6));
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.yc-cookie-consent__link {
  color: inherit;
  text-decoration: underline;
}

.yc-cookie-consent__actions {
  flex: none;
  display: flex;
  gap: 12px;
  align-items: center;
}

.yc-cookie-consent__button {
  min-height: 45px;
  padding: 10px 20px;
  border-radius: 10px;
  font: 600 15px/1.2 var(--font-body, Arial, sans-serif);
  cursor: pointer;
}

.yc-cookie-consent__button--primary {
  color: #fff;
  background: var(--yu-gradient, linear-gradient(143deg, #fda36e, #d01ce7));
  border: 1px solid transparent;
}

.yc-cookie-consent__button--secondary {
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
}

@media (max-width: 767px) {
  .yc-cookie-consent {
    width: calc(100% - 24px);
    max-height: calc(100vh - 24px);
    padding: 16px;
    display: block;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    right: 12px;
  }

  .yc-cookie-consent__actions {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .yc-cookie-consent__button {
    width: 100%;
  }
}
