.pvh-cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 12000;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  transform: translateY(110%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
  pointer-events: none;
}

.pvh-cookie-consent.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.pvh-cookie-consent__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(79, 141, 255, 0.35);
  background: rgba(7, 12, 26, 0.96);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
}

html[data-theme='light'] .pvh-cookie-consent__inner {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 -8px 28px rgba(15, 23, 42, 0.12);
}

.pvh-cookie-consent__message {
  margin: 0;
  flex: 1 1 16rem;
  max-width: 52rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text, #e2e8f0);
  text-align: start;
}

html[data-theme='light'] .pvh-cookie-consent__message {
  color: #1e293b;
}

.pvh-cookie-consent__link {
  color: var(--accent, #60a5fa);
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

.pvh-cookie-consent__link:hover {
  color: var(--accent-hover, #93c5fd);
}

.pvh-cookie-consent__actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.65rem;
}

.pvh-cookie-consent__reject,
.pvh-cookie-consent__accept {
  flex: 0 0 auto;
  min-width: 7rem;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.pvh-cookie-consent__reject {
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: transparent;
  color: var(--text, #e2e8f0);
}

html[data-theme='light'] .pvh-cookie-consent__reject {
  border-color: rgba(100, 116, 139, 0.45);
  color: #475569;
}

.pvh-cookie-consent__reject:hover {
  background: rgba(148, 163, 184, 0.12);
}

.pvh-cookie-consent__accept {
  border: 0;
  background: linear-gradient(180deg, #60a5fa, #3b82f6);
  color: #0f172a;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35);
}

.pvh-cookie-consent__accept:hover {
  filter: brightness(1.06);
}

.pvh-cookie-consent[dir='rtl'] .pvh-cookie-consent__message {
  text-align: right;
}

body.pvh-cookie-consent-open {
  padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 640px) {
  .pvh-cookie-consent__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .pvh-cookie-consent__message {
    text-align: center;
  }

  .pvh-cookie-consent__actions {
    width: 100%;
    flex-direction: column;
  }

  .pvh-cookie-consent__reject,
  .pvh-cookie-consent__accept {
    width: 100%;
  }

  body.pvh-cookie-consent-open {
    padding-bottom: calc(7.5rem + env(safe-area-inset-bottom, 0px));
  }
}
