:root {
  --ccube-brochure-bar-height: 56px;
}

html {
  scroll-padding-top: var(--ccube-brochure-bar-height);
}

body {
  padding-top: var(--ccube-brochure-bar-height);
}

.ccube-brochure-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99998;
  background: #111827;
  color: #fff;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.18);
}

body.admin-bar .ccube-brochure-bar {
  top: 32px;
}

.ccube-brochure-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 56px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
}

.ccube-brochure-bar__text {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
}

.ccube-brochure-open,
.ccube-brochure-submit {
  appearance: none;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.ccube-brochure-open {
  flex: 0 0 auto;
  padding: 13px 18px;
  background: #f59e0b;
  color: #111827;
  box-shadow: 0 8px 18px rgba(245, 158, 11, 0.28);
}

.ccube-brochure-shortcode-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ccube-brochure-open:hover,
.ccube-brochure-open:focus,
.ccube-brochure-submit:hover,
.ccube-brochure-submit:focus {
  transform: translateY(-1px);
  outline: none;
}

.ccube-brochure-open:focus,
.ccube-brochure-submit:focus,
.ccube-brochure-modal__close:focus {
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.34);
}

.ccube-brochure-modal[hidden] {
  display: none;
}

.ccube-brochure-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  padding: 20px;
}

.ccube-brochure-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(3px);
}

.ccube-brochure-modal__dialog {
  position: relative;
  width: min(100%, 440px);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  color: #111827;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
}

.ccube-brochure-modal__dialog h2 {
  margin: 0 40px 20px 0;
  color: #111827;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
}

.ccube-brochure-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #f8fafc;
  color: #334155;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 34px;
  text-align: center;
  box-shadow: inset 0 0 0 1px #e5e7eb;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.ccube-brochure-modal__close:hover {
  background: #111827;
  color: #fff;
  box-shadow: inset 0 0 0 1px #111827;
  transform: translateY(-1px);
}

.ccube-brochure-form {
  display: grid;
  gap: 8px;
}

.ccube-brochure-form label {
  margin-top: 8px;
  color: #374151;
  font-size: 14px;
  font-weight: 700;
}

.ccube-brochure-form input {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #fff;
  color: #111827;
  font-size: 16px;
  line-height: 1.4;
}

.ccube-brochure-form input:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
  outline: none;
}

.ccube-brochure-form input[aria-invalid="true"] {
  border-color: #dc2626;
}

.ccube-brochure-error {
  min-height: 18px;
  color: #b91c1c;
  font-size: 13px;
  line-height: 1.35;
}

.ccube-brochure-message {
  display: none;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.4;
}

.ccube-brochure-message.is-info,
.ccube-brochure-message.is-error,
.ccube-brochure-message.is-success {
  display: block;
}

.ccube-brochure-message.is-info {
  background: #eff6ff;
  color: #1d4ed8;
}

.ccube-brochure-message.is-error {
  background: #fef2f2;
  color: #b91c1c;
}

.ccube-brochure-message.is-success {
  background: #ecfdf5;
  color: #047857;
}

.ccube-brochure-submit {
  width: 100%;
  min-height: 48px;
  margin-top: 10px;
  padding: 14px 18px;
  background: #111827;
  color: #fff;
  box-shadow: 0 10px 20px rgba(17, 24, 39, 0.18);
}

.ccube-brochure-submit:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.ccube-brochure-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

body.ccube-brochure-modal-open {
  overflow: hidden;
}

@media (max-width: 600px) {
  .ccube-brochure-bar__inner {
    flex-direction: column;
    gap: 8px;
    min-height: 88px;
    padding: 10px 0;
  }

  .ccube-brochure-bar__text {
    font-size: 13px;
  }

  .ccube-brochure-open {
    width: 100%;
    max-width: 260px;
    padding: 12px 14px;
  }

  .ccube-brochure-modal {
    padding: 14px;
  }

  .ccube-brochure-modal__dialog {
    padding: 22px;
  }

  .ccube-brochure-modal__dialog h2 {
    font-size: 23px;
  }
}

@media (max-width: 782px) {
  body.admin-bar .ccube-brochure-bar {
    top: 46px;
  }
}
