:root {
  --stbk-cream: #fff8ea;
  --stbk-card: #ffffff;
  --stbk-ink: #231f20;
  --stbk-muted: #746f68;
  --stbk-accent: #f2c879;
  --stbk-accent-2: #b9d9c3;
  --stbk-border: rgba(35, 31, 32, 0.12);
  --stbk-shadow: 0 18px 45px rgba(65, 50, 25, 0.12);
}

.stbk-vote {
  color: var(--stbk-ink);
  font-family: inherit;
  max-width: 1220px;
  margin: 0 auto;
}

.stbk-message {
  max-width: 760px;
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--stbk-cream);
  border: 1px solid var(--stbk-border);
}

.stbk-hero {
  display: grid;
  grid-template-columns: minmax(120px, 240px) minmax(0, 1fr);
  gap: clamp(18px, 3.2vw, 38px);
  align-items: start;
  padding: clamp(22px, 4.2vw, 46px);
  margin: 0 0 30px;
  border: 1px solid var(--stbk-border);
  border-radius: 30px;
  background:
    radial-gradient(circle at 0% 0%, rgba(242, 200, 121, 0.30), transparent 34%),
    linear-gradient(135deg, #fffdf7 0%, #fff4d8 100%);
  box-shadow: var(--stbk-shadow);
  overflow: hidden;
}

.stbk-hero--no-image {
  grid-template-columns: minmax(0, 1fr);
}

.stbk-hero__copy {
  align-self: start;
}

.stbk-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #9f6f18;
  font-weight: 800;
}

.stbk-kicker:before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--stbk-accent);
  box-shadow: 13px 0 0 var(--stbk-accent-2), 26px 0 0 #f2b7b7;
  margin-right: 28px;
}

.stbk-hero h1 {
  font-size: clamp(34px, 5vw, 66px);
  line-height: .98;
  letter-spacing: -0.04em;
  margin: 0 0 18px;
  max-width: 760px;
}

.stbk-hero__intro {
  max-width: 760px;
  color: #50483f;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.58;
}

.stbk-hero__intro p {
  margin: 0 0 12px;
}

.stbk-hero__intro p:last-child {
  margin-bottom: 0;
}

.stbk-hero__intro strong,
.stbk-hero__intro b {
  color: var(--stbk-ink);
  font-weight: 850;
}

.stbk-hero__intro a {
  color: #8a5f12;
  font-weight: 800;
  text-decoration-thickness: 2px;
}

.stbk-hero__intro ul,
.stbk-hero__intro ol {
  margin: 10px 0 0 20px;
  padding: 0;
}

.stbk-hero__visual {
  align-self: start;
}

.stbk-hero__visual img,
.stbk-hero__image {
  display: block;
  width: 100%;
  max-width: 240px;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(0,0,0,.12);
  background: #fff;
}

.stbk-toolbar {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 22px;
  padding: 12px 14px;
  border: 1px solid var(--stbk-border);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
}

.stbk-counter {
  font-size: 15px;
  color: var(--stbk-muted);
  padding-left: 6px;
}

.stbk-counter strong,
.stbk-count {
  color: var(--stbk-ink);
}

.stbk-scroll-submit,
.stbk-submit,
.stbk-select-btn {
  border: 0;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: .02em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.stbk-scroll-submit {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--stbk-ink);
  color: #fff;
  white-space: nowrap;
}

.stbk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(245px, 100%), 1fr));
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
  margin-bottom: 34px;
}

.stbk-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 14px;
  border: 1px solid var(--stbk-border);
  border-radius: 24px;
  background: var(--stbk-card);
  box-shadow: 0 10px 24px rgba(0,0,0,.055);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.stbk-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(0,0,0,.10);
}

.stbk-card.is-selected {
  border-color: rgba(139, 122, 44, .45);
  background: linear-gradient(180deg, #ffffff 0%, #fff7df 100%);
  box-shadow: 0 18px 38px rgba(145, 102, 20, .18);
}

.stbk-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: #f6f1e7;
  cursor: pointer;
  outline: none;
}

.stbk-card__media:focus-visible {
  box-shadow: 0 0 0 4px rgba(242, 200, 121, .65);
}

.stbk-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: transform .22s ease;
}

.stbk-card:hover .stbk-card__media img {
  transform: scale(1.025);
}

.stbk-check {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--stbk-accent-2);
  color: var(--stbk-ink);
  font-size: 24px;
  font-weight: 900;
  opacity: 0;
  transform: scale(.6);
  transition: opacity .18s ease, transform .18s ease;
  box-shadow: 0 8px 18px rgba(0,0,0,.15);
}

.stbk-card.is-selected .stbk-check {
  opacity: 1;
  transform: scale(1);
}

.stbk-lightbox {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.88);
  color: var(--stbk-ink);
  font-size: 20px;
  line-height: 1;
  cursor: zoom-in;
  box-shadow: 0 8px 18px rgba(0,0,0,.10);
}

.stbk-card h3 {
  margin: 14px 4px 12px;
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.stbk-select-btn {
  margin-top: auto;
  width: 100%;
  padding: 13px 14px;
  border-radius: 999px;
  background: #fff0c4;
  color: #3b2d09;
  box-shadow: inset 0 0 0 1px rgba(70, 49, 0, .12);
}

.stbk-card.is-selected .stbk-select-btn {
  background: var(--stbk-accent-2);
  color: #15331f;
}

.stbk-card.is-selected .stbk-select-btn:after {
  content: ' ✓';
}

.stbk-select-btn:hover,
.stbk-scroll-submit:hover,
.stbk-submit:hover {
  transform: translateY(-1px);
}

.stbk-form {
  margin: 0 0 36px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--stbk-border);
  border-radius: 28px;
  background: #fffdf7;
  box-shadow: var(--stbk-shadow);
}

.stbk-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.stbk-form label {
  display: block;
}

.stbk-form label span:first-child {
  display: block;
  margin-bottom: 7px;
  font-weight: 800;
}

.stbk-form em {
  font-style: normal;
  color: var(--stbk-muted);
  font-weight: 500;
  font-size: 13px;
}

.stbk-form input[type="text"],
.stbk-form input[type="email"],
.stbk-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--stbk-border);
  border-radius: 16px;
  padding: 13px 14px;
  background: #fff;
  color: var(--stbk-ink);
  font-size: 16px;
}

.stbk-comment {
  margin-top: 16px;
}

.stbk-consent {
  display: flex !important;
  gap: 10px;
  margin-top: 16px;
  align-items: flex-start;
  color: #4d463d;
  font-size: 14px;
  line-height: 1.4;
}

.stbk-consent input {
  margin-top: 3px;
}

.stbk-error {
  margin: 18px 0 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: #ffe1df;
  color: #771b14;
  font-weight: 700;
}

.stbk-submit {
  margin-top: 18px;
  width: 100%;
  padding: 16px 24px;
  border-radius: 999px;
  background: var(--stbk-ink);
  color: #fff;
  font-size: 18px;
}

.stbk-submit:disabled {
  opacity: .65;
  cursor: wait;
}

.stbk-thanks {
  margin: 26px 0;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 30px;
  background: linear-gradient(135deg, #fff8ea, #e8f3ec);
  border: 1px solid var(--stbk-border);
  text-align: center;
  box-shadow: var(--stbk-shadow);
}

.stbk-thanks h2 {
  margin: 0 0 8px;
  font-size: clamp(34px, 4vw, 56px);
}

.stbk-coupon strong {
  display: inline-block;
  margin-left: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px dashed rgba(35,31,32,.3);
  letter-spacing: .05em;
}

.stbk-modal[hidden] { display: none; }
.stbk-modal {
  position: fixed;
  z-index: 999999;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(22, 18, 14, .82);
}

.stbk-modal img {
  max-width: min(1100px, 96vw);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 25px 80px rgba(0,0,0,.4);
}

.stbk-modal p {
  color: #fff;
  font-weight: 800;
  text-align: center;
  margin: 12px 0 0;
}

.stbk-modal__close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--stbk-ink);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

body.stbk-modal-open { overflow: hidden; }

@media (max-width: 760px) {
  .stbk-hero { grid-template-columns: 1fr; border-radius: 24px; }
  .stbk-hero__visual img, .stbk-hero__image { max-width: 180px; }
  .stbk-toolbar { top: auto; bottom: 12px; margin-bottom: 18px; }
  .stbk-grid { grid-template-columns: 1fr; }
  .stbk-form__grid { grid-template-columns: 1fr; }
  .stbk-scroll-submit { padding: 10px 13px; font-size: 13px; }
}
