:root {
  color-scheme: light;
  --gb-blue: #1f6fd1;
  --gb-blue-dark: #124f9f;
  --gb-blue-soft: #eaf3ff;
  --gb-green: #0b9b70;
  --gb-green-dark: #087557;
  --gb-green-soft: #e9f9f3;
  --gb-orange: #f59e0b;
  --gb-red: #e24d5c;
  --gb-navy: #14243b;
  --gb-navy-2: #1c3150;
  --gb-text: #18263a;
  --gb-muted: #6c7b8e;
  --gb-line: #dfe7ef;
  --gb-bg: #f4f7fa;
  --gb-white: #fff;
  --gb-shadow: 0 18px 45px rgba(31, 55, 88, .10);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--gb-text); background: var(--gb-bg); }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }

.gb-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(210, 222, 234, .9);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(15px);
}

.gb-header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.gb-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 950;
  letter-spacing: -.035em;
  text-decoration: none;
}

.gb-brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(145deg, #3478ef, #135fc7);
  box-shadow: 0 10px 22px rgba(31, 111, 209, .24);
}

.gb-brand-mark::after {
  content: "↗";
  margin: -2px 0 0 2px;
  color: #9cf0d2;
  font-size: 22px;
}

.gb-nav { display: flex; align-items: center; gap: 9px; }
.gb-nav a {
  padding: 10px 13px;
  border-radius: 11px;
  color: #53657b;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
.gb-nav a.active { color: var(--gb-blue-dark); background: var(--gb-blue-soft); }

.gb-main { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 38px 0 70px; }

.gb-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  gap: 30px;
  padding: 34px;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 15%, rgba(67, 164, 255, .34), transparent 20rem),
    linear-gradient(135deg, #12233a, #193758 72%, #145079);
  box-shadow: 0 24px 60px rgba(20, 36, 59, .22);
}

.gb-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -130px;
  width: 320px;
  height: 320px;
  border: 55px solid rgba(255, 255, 255, .05);
  border-radius: 50%;
}

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

.gb-live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #42d7a6;
  box-shadow: 0 0 0 6px rgba(66, 215, 166, .12);
  animation: gbPulse 1.7s infinite;
}

@keyframes gbPulse { 50% { box-shadow: 0 0 0 10px rgba(66, 215, 166, 0); } }

.gb-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -.052em;
}

.gb-hero-copy { position: relative; z-index: 2; }
.gb-hero-copy p {
  max-width: 660px;
  margin: 18px 0 0;
  color: #cad8e8;
  font-size: 16px;
  line-height: 1.6;
}

.gb-rule-card {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 20px;
  background: rgba(255, 255, 255, .08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.gb-rule-card strong { display: block; font-size: 19px; line-height: 1.3; }
.gb-rule-card p { margin: 9px 0 0; color: #c8d6e6; font-size: 13px; line-height: 1.55; }
.gb-rule-icons { display: flex; gap: 9px; margin-bottom: 16px; }
.gb-rule-icons span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-right: -17px;
  border: 3px solid #1a3859;
  border-radius: 50%;
  color: #164635;
  background: #9fe5cd;
  font-size: 12px;
  font-weight: 950;
}

.gb-section { margin-top: 34px; }
.gb-section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 17px; }
.gb-section-head h2 { margin: 4px 0 0; font-size: clamp(25px, 4vw, 34px); letter-spacing: -.04em; }
.gb-section-head p { max-width: 450px; margin: 0; color: var(--gb-muted); font-size: 13px; line-height: 1.5; }
.gb-section-label { color: var(--gb-blue); font-size: 10px; font-weight: 950; letter-spacing: .09em; text-transform: uppercase; }

.gb-filters { display: flex; gap: 8px; margin-bottom: 17px; overflow-x: auto; scrollbar-width: none; }
.gb-filters::-webkit-scrollbar { display: none; }
.gb-category-filters { margin-top: -6px; }
.gb-category-filters .gb-filter { border-color: #c9d8e6; background: #f8fbfe; }
.gb-category-filters .gb-filter.active { border-color: var(--gb-navy); color: #fff; background: var(--gb-navy); }
.gb-filter {
  flex: 0 0 auto;
  min-height: 39px;
  padding: 8px 14px;
  border: 1px solid var(--gb-line);
  border-radius: 999px;
  color: #53657b;
  background: #fff;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}
.gb-filter.active { border-color: var(--gb-blue); color: #fff; background: var(--gb-blue); }

.gb-lot-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 17px; }
.gb-lot-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--gb-line);
  border-radius: 21px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(29, 51, 82, .07);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.gb-lot-card:hover { transform: translateY(-3px); border-color: #a8c9ee; box-shadow: var(--gb-shadow); }
.gb-lot-link { display: block; color: inherit; text-decoration: none; }
.gb-lot-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 215px;
  padding: 24px;
  background: linear-gradient(145deg, #f3f7fb, #e9f4ff);
}
.gb-lot-visual.perfume { background: linear-gradient(145deg, #fff3f5, #f2e8f5); }
.gb-lot-visual.tool { background: linear-gradient(145deg, #edf8f3, #e1f1ea); }

.gb-card-status {
  position: absolute;
  top: 13px;
  left: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border-radius: 999px;
  color: #fff;
  background: rgba(20, 36, 59, .88);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .05em;
}
.gb-card-status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #42d7a6; }
.gb-card-save {
  position: absolute;
  right: 13px;
  top: 13px;
  padding: 7px 9px;
  border-radius: 999px;
  color: #8b4e00;
  background: #fff3d7;
  font-size: 10px;
  font-weight: 950;
}

.gb-product-art { position: relative; filter: drop-shadow(0 17px 18px rgba(45, 63, 82, .18)); }
.gb-tracker { width: 102px; height: 102px; border: 9px solid #f8fafc; border-radius: 27px; background: linear-gradient(145deg, #313944, #111820); box-shadow: inset 0 0 0 2px #647180; }
.gb-tracker::after { content: "X"; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 30px; font-weight: 900; }
.gb-bottle { width: 82px; height: 114px; border: 5px solid #fff; border-radius: 8px 8px 16px 16px; background: linear-gradient(160deg, #d7a1ad, #7e4057); }
.gb-bottle::before { content: ""; position: absolute; top: -24px; left: 19px; width: 44px; height: 27px; border-radius: 4px 4px 1px 1px; background: #2d2630; }
.gb-bottle::after { content: "DKNY"; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 14px; font-weight: 900; letter-spacing: .08em; }
.gb-drill { width: 128px; height: 76px; border-radius: 18px 35px 12px 16px; background: linear-gradient(150deg, #15926c, #087152); transform: rotate(-8deg); }
.gb-drill::before { content: ""; position: absolute; right: -53px; top: 20px; width: 61px; height: 19px; border-radius: 0 10px 10px 0; background: #263b42; }
.gb-drill::after { content: ""; position: absolute; left: 33px; bottom: -57px; width: 43px; height: 67px; border-radius: 4px 4px 15px 15px; background: linear-gradient(90deg, #087152, #15926c); }

.gb-lot-body { padding: 17px; }
.gb-lot-title { min-height: 48px; margin: 0; font-size: 18px; line-height: 1.32; letter-spacing: -.02em; }
.gb-fixed { display: inline-flex; margin-top: 9px; padding: 5px 8px; border-radius: 7px; color: var(--gb-green-dark); background: var(--gb-green-soft); font-size: 9px; font-weight: 950; letter-spacing: .05em; text-transform: uppercase; }
.gb-price-row { display: flex; align-items: end; justify-content: space-between; gap: 12px; margin-top: 15px; }
.gb-price { font-size: 28px; font-weight: 950; letter-spacing: -.045em; }
.gb-market { color: #8592a2; font-size: 11px; text-align: right; }
.gb-market s { display: block; font-size: 14px; font-weight: 800; }
.gb-progress-meta { display: flex; justify-content: space-between; gap: 10px; margin-top: 16px; color: #52657b; font-size: 11px; font-weight: 850; }
.gb-progress-track { height: 11px; margin-top: 8px; overflow: hidden; border-radius: 999px; background: #e6edf3; }
.gb-progress-fill { width: var(--progress, 50%); height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--gb-green), #42cf9e); box-shadow: 0 0 15px rgba(11, 155, 112, .25); }
.gb-card-bottom { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 14px; padding-top: 13px; border-top: 1px solid #edf1f5; }
.gb-time { color: var(--gb-red); font-size: 11px; font-weight: 900; }
.gb-open { color: var(--gb-blue); font-size: 11px; font-weight: 950; }

.gb-detail {
  scroll-margin-top: 95px;
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid var(--gb-line);
  border-radius: 27px;
  background: #fff;
  box-shadow: var(--gb-shadow);
}
.gb-detail-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 17px 22px; border-bottom: 1px solid var(--gb-line); }
.gb-back { border: 0; color: var(--gb-blue); background: transparent; font-size: 12px; font-weight: 900; cursor: pointer; }
.gb-detail-status { display: inline-flex; align-items: center; gap: 8px; color: var(--gb-green-dark); font-size: 11px; font-weight: 950; }
.gb-detail-status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gb-green); }
.gb-detail-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr); }
.gb-detail-product { padding: 34px; }
.gb-detail-art {
  display: grid;
  place-items: center;
  min-height: 360px;
  border-radius: 22px;
  background: linear-gradient(145deg, #f4f8fb, #eaf4ff);
}
.gb-detail-art .gb-tracker { width: 148px; height: 148px; border-radius: 38px; }
.gb-detail-title { margin: 24px 0 0; font-size: 29px; line-height: 1.15; letter-spacing: -.04em; }
.gb-detail-sub { margin: 9px 0 0; color: var(--gb-muted); font-size: 13px; line-height: 1.55; }

.gb-deal-panel { padding: 30px; color: #fff; background: linear-gradient(145deg, var(--gb-navy), var(--gb-navy-2)); }
.gb-deal-top { display: flex; align-items: start; justify-content: space-between; gap: 20px; }
.gb-deal-label { color: #9db0c8; font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.gb-deal-price { margin-top: 4px; font-size: 44px; font-weight: 950; letter-spacing: -.055em; }
.gb-save-pill { padding: 8px 10px; border-radius: 10px; color: #ffe5ac; background: rgba(245, 158, 11, .16); font-size: 12px; font-weight: 900; }
.gb-outcome { margin-top: 22px; padding: 17px; border: 1px solid rgba(255, 255, 255, .13); border-radius: 16px; background: rgba(255, 255, 255, .06); }
.gb-outcome strong { display: block; font-size: 16px; }
.gb-outcome p { margin: 6px 0 0; color: #b9c9db; font-size: 12px; line-height: 1.5; }
.gb-counter-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 19px; }
.gb-counter { padding: 14px 10px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 13px; background: rgba(255, 255, 255, .06); text-align: center; }
.gb-counter b { display: block; font-size: 26px; letter-spacing: -.04em; }
.gb-counter span { color: #9fb1c7; font-size: 9px; font-weight: 850; text-transform: uppercase; }
.gb-deal-progress { height: 14px; margin-top: 14px; overflow: hidden; border-radius: 999px; background: rgba(255, 255, 255, .12); }
.gb-deal-progress div { width: 74%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #28c18f, #6be0bb); }
.gb-countdown-label { margin-top: 22px; color: #9fb1c7; font-size: 10px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.gb-countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 9px; }
.gb-time-cell { padding: 11px 5px; border-radius: 11px; color: #fff; background: #0d1b2d; text-align: center; }
.gb-time-cell b { display: block; font-size: 23px; }
.gb-time-cell span { color: #8296ae; font-size: 8px; font-weight: 800; text-transform: uppercase; }
.gb-join {
  width: 100%;
  min-height: 56px;
  margin-top: 20px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(145deg, #0eb17f, #07815f);
  box-shadow: 0 13px 26px rgba(2, 119, 86, .28);
  font-weight: 950;
  cursor: pointer;
}
.gb-join:active { transform: translateY(1px); }
.gb-payment-note { margin: 11px 4px 0; color: #9fb1c7; font-size: 10px; line-height: 1.5; text-align: center; }

.gb-share-box {
  margin-top: 17px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 15px;
  background: rgba(255, 255, 255, .06);
}
.gb-share-message { display: grid; grid-template-columns: 38px 1fr; gap: 11px; align-items: start; }
.gb-share-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: #0b664c;
  background: #9fe5cd;
  font-size: 18px;
  font-weight: 950;
}
.gb-share-message strong { display: block; font-size: 13px; }
.gb-share-message p { margin: 4px 0 0; color: #b9c9db; font-size: 10px; line-height: 1.5; }
.gb-share-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
.gb-share-button {
  min-height: 41px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  font-size: 10px;
  font-weight: 900;
  cursor: pointer;
}
.gb-share-button.primary { border-color: #80d9bc; color: #0b664c; background: #a8ead4; }
.gb-share-button:active { transform: translateY(1px); }

.gb-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 25px; border-top: 1px solid var(--gb-line); }
.gb-info-card { padding: 20px; border: 1px solid var(--gb-line); border-radius: 17px; background: #fafcfe; }
.gb-info-card h3 { margin: 0 0 14px; font-size: 18px; }
.gb-compare-row { display: grid; grid-template-columns: 1fr auto; gap: 16px; padding: 11px 0; border-bottom: 1px solid #e8eef4; font-size: 13px; }
.gb-compare-row:last-child { border-bottom: 0; }
.gb-compare-row b { font-size: 14px; }
.gb-compare-row.ours { color: var(--gb-green-dark); font-weight: 900; }
.gb-steps { display: grid; gap: 11px; }
.gb-step { display: grid; grid-template-columns: 31px 1fr; gap: 11px; align-items: start; }
.gb-step-num { display: grid; place-items: center; width: 31px; height: 31px; border-radius: 9px; color: var(--gb-blue); background: var(--gb-blue-soft); font-size: 12px; font-weight: 950; }
.gb-step strong { display: block; font-size: 13px; }
.gb-step p { margin: 3px 0 0; color: var(--gb-muted); font-size: 11px; line-height: 1.5; }

.gb-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 100;
  width: min(430px, calc(100% - 28px));
  padding: 15px 17px;
  border-radius: 14px;
  color: #fff;
  background: #13243a;
  box-shadow: 0 20px 50px rgba(11, 24, 42, .3);
  font-size: 12px;
  font-weight: 800;
  transform: translate(-50%, 140%);
  transition: transform .25s ease;
}
.gb-toast.show { transform: translate(-50%, 0); }

/* Center / admin preview */
.gb-center-body { min-height: 100vh; background: #eef3f7; }
.gb-center-shell { display: grid; grid-template-columns: 245px minmax(0, 1fr); min-height: 100vh; }
.gb-sidebar { padding: 22px 15px; color: #d7e4f2; background: #13243a; }
.gb-sidebar .gb-brand { padding: 0 8px 21px; color: #fff; }
.gb-side-label { margin: 20px 10px 8px; color: #7890aa; font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.gb-side-link { display: flex; align-items: center; gap: 10px; min-height: 44px; padding: 10px 12px; border-radius: 11px; color: #b7c7d9; font-size: 12px; font-weight: 800; text-decoration: none; }
.gb-side-link.active { color: #fff; background: #205e9f; box-shadow: inset 3px 0 #65d1ae; }
.gb-side-icon { width: 22px; color: #8eabc7; text-align: center; }
.gb-center-main { min-width: 0; }
.gb-center-top { min-height: 70px; padding: 0 25px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid #dbe4ec; background: #fff; }
.gb-center-top strong { font-size: 15px; }
.gb-admin-badge { padding: 7px 10px; border-radius: 999px; color: #31506f; background: #eef4f9; font-size: 10px; font-weight: 900; }
.gb-center-content { padding: 26px; }
.gb-center-title-row { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.gb-center-title-row h1 { margin: 4px 0 0; font-size: 31px; letter-spacing: -.045em; }
.gb-center-title-row p { margin: 7px 0 0; color: var(--gb-muted); font-size: 12px; }
.gb-admin-layout { display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: 19px; align-items: start; }
.gb-form-card, .gb-preview-card { border: 1px solid #dbe4ec; border-radius: 18px; background: #fff; box-shadow: 0 9px 26px rgba(29, 51, 82, .06); }
.gb-form-section { padding: 22px; border-bottom: 1px solid #e7edf3; }
.gb-form-section:last-child { border-bottom: 0; }
.gb-form-section-head { display: flex; align-items: start; justify-content: space-between; gap: 15px; margin-bottom: 17px; }
.gb-form-section h2 { margin: 0; font-size: 17px; }
.gb-form-section-head p { max-width: 380px; margin: 4px 0 0; color: var(--gb-muted); font-size: 10px; line-height: 1.45; }
.gb-private-label { flex: 0 0 auto; padding: 6px 8px; border-radius: 7px; color: #8b4e00; background: #fff3d7; font-size: 9px; font-weight: 950; }
.gb-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; }
.gb-field { display: grid; gap: 6px; }
.gb-field.full { grid-column: 1 / -1; }
.gb-field label { color: #4f6278; font-size: 10px; font-weight: 850; }
.gb-field input, .gb-field select, .gb-field textarea {
  width: 100%;
  min-height: 45px;
  padding: 10px 12px;
  border: 1px solid #cfdbe5;
  border-radius: 10px;
  color: var(--gb-text);
  background: #fbfdff;
  outline: none;
  font-size: 12px;
}
.gb-field textarea { min-height: 82px; resize: vertical; }
.gb-field input:focus, .gb-field select:focus, .gb-field textarea:focus { border-color: #6e9fe2; box-shadow: 0 0 0 3px rgba(31, 111, 209, .1); background: #fff; }
.gb-requirement-note { margin: 13px 0 0; padding: 11px 12px; border-radius: 10px; color: #31506f; background: #edf6ff; font-size: 10px; line-height: 1.5; }
.gb-product-count { display: inline-grid; place-items: center; min-width: 23px; height: 23px; margin-left: 5px; border-radius: 999px; color: var(--gb-blue-dark); background: var(--gb-blue-soft); font-size: 10px; vertical-align: 2px; }
.gb-add-product { flex: 0 0 auto; min-height: 39px; padding: 8px 12px; border: 1px solid #9fc2e8; border-radius: 10px; color: var(--gb-blue-dark); background: var(--gb-blue-soft); font-size: 10px; font-weight: 950; cursor: pointer; }
.gb-product-list { display: grid; gap: 13px; }
.gb-product-editor { padding: 15px; border: 1px solid #d6e3ee; border-radius: 14px; background: #f9fbfd; }
.gb-product-editor-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 13px; }
.gb-product-editor-head strong { font-size: 12px; }
.gb-product-editor-head span { padding: 5px 7px; border-radius: 7px; color: var(--gb-green-dark); background: var(--gb-green-soft); font-size: 8px; font-weight: 950; letter-spacing: .04em; }
.gb-remove-product { min-height: 31px; padding: 6px 9px; border: 1px solid #f0b7bf; border-radius: 8px; color: #a83140; background: #fff4f5; font-size: 9px; font-weight: 900; cursor: pointer; }
.gb-money-wrap { position: relative; }
.gb-money-wrap input { padding-right: 35px; }
.gb-money-wrap::after { content: "€"; position: absolute; right: 13px; top: 50%; transform: translateY(-50%); color: #748398; font-size: 12px; font-weight: 900; }
.gb-link-generator { padding: 14px; border: 1px solid #cfe0ef; border-radius: 13px; background: #f4f9ff; }
.gb-link-generator label { display: block; margin-bottom: 7px; color: #4f6278; font-size: 10px; font-weight: 850; }
.gb-link-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }
.gb-link-row input {
  min-width: 0;
  min-height: 45px;
  padding: 10px 12px;
  border: 1px solid #c6d8e8;
  border-radius: 10px;
  color: #31506f;
  background: #fff;
  font-size: 11px;
  font-weight: 750;
}
.gb-copy-link { min-height: 45px; border: 0; border-radius: 10px; padding: 10px 14px; color: #fff; background: var(--gb-blue); font-size: 11px; font-weight: 900; cursor: pointer; }
.gb-link-hint { margin: 8px 1px 0; color: #71849a; font-size: 9px; line-height: 1.45; }
.gb-form-actions { display: flex; justify-content: flex-end; gap: 9px; padding: 17px 22px; }
.gb-secondary, .gb-primary { min-height: 44px; padding: 10px 15px; border-radius: 10px; font-size: 11px; font-weight: 900; cursor: pointer; }
.gb-secondary { border: 1px solid #cfdbe5; color: #4f6278; background: #fff; }
.gb-primary { border: 0; color: #fff; background: var(--gb-blue); }
.gb-preview-card { position: sticky; top: 18px; overflow: hidden; }
.gb-preview-head { padding: 15px 17px; border-bottom: 1px solid #e3eaf1; color: #52657b; font-size: 10px; font-weight: 950; letter-spacing: .06em; text-transform: uppercase; }
.gb-admin-lot { margin: 14px; }
.gb-admin-lot .gb-lot-card:hover { transform: none; }
.gb-cost-summary { margin: 0 14px 14px; padding: 15px; border-radius: 13px; background: #f1f6fa; }
.gb-cost-caption { margin-bottom: 6px; color: #31506f; font-size: 9px; font-weight: 950; letter-spacing: .04em; text-transform: uppercase; }
.gb-cost-row { display: flex; justify-content: space-between; gap: 15px; padding: 6px 0; color: #637489; font-size: 10px; }
.gb-cost-row.total { margin-top: 5px; padding-top: 10px; border-top: 1px solid #d6e0e9; color: var(--gb-text); font-size: 12px; font-weight: 950; }

.gb-empty-state { display: grid; min-height: 170px; place-items: center; margin-top: 18px; padding: 28px; border: 1px dashed #c7d5e3; border-radius: 17px; color: #667990; background: rgba(255,255,255,.75); font-size: 14px; font-weight: 800; text-align: center; }
.gb-empty-state[hidden] { display: none; }
.gb-back { text-decoration: none; }
.gb-real-product-image { display: block; width: 100%; height: 100%; object-fit: contain; }
.gb-product-fallback { display: grid; place-items: center; gap: 10px; min-height: 180px; padding: 24px; color: #61758c; text-align: center; }
.gb-product-fallback-icon { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 18px; color: #0b664c; background: #a8ead4; font-size: 28px; font-weight: 950; }
.gb-lot-visual .gb-real-product-image { position: absolute; inset: 32px; width: calc(100% - 64px); height: calc(100% - 64px); }
.gb-detail-art .gb-real-product-image { width: min(100%, 360px); max-height: 330px; object-fit: contain; }
.gb-selected-product { margin-bottom: 8px; color: #a9bed7; font-size: 12px; font-weight: 900; letter-spacing: .02em; }
.gb-product-picker { display: grid; gap: 8px; margin-top: 22px; }
.gb-product-picker[hidden] { display: none; }
.gb-product-choice { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 12px; align-items: center; width: 100%; min-height: 58px; padding: 11px 13px; border: 1px solid #d4dfeb; border-radius: 13px; color: #334d68; background: #fff; text-align: left; cursor: pointer; }
.gb-product-choice strong { font-size: 12px; line-height: 1.35; }
.gb-product-choice span { color: var(--gb-blue); font-size: 12px; font-weight: 950; white-space: nowrap; }
.gb-product-choice.active { border-color: #55a0ef; background: #edf6ff; box-shadow: 0 0 0 3px rgba(31,119,209,.1); }
.gb-join:disabled { cursor: not-allowed; opacity: .72; box-shadow: none; }
.gb-market { align-self: center; }

@media (max-width: 980px) {
  .gb-lot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gb-detail-grid { grid-template-columns: minmax(0, 1fr); }
  .gb-detail-product, .gb-deal-panel, .gb-info-grid { min-width: 0; width: 100%; max-width: 100%; }
  .gb-admin-layout { grid-template-columns: 1fr; }
  .gb-preview-card { position: static; }
  .gb-center-shell { grid-template-columns: 76px minmax(0, 1fr); }
  .gb-sidebar { padding-inline: 10px; }
  .gb-sidebar .gb-brand span:last-child, .gb-side-link span:last-child, .gb-side-label { display: none; }
  .gb-sidebar .gb-brand { justify-content: center; padding-inline: 0; }
  .gb-side-link { justify-content: center; padding-inline: 0; }
}

@media (max-width: 720px) {
  .gb-header-inner, .gb-main { width: min(100% - 22px, 1180px); }
  .gb-header-inner { min-height: 62px; }
  .gb-brand { font-size: 18px; }
  .gb-brand-mark { width: 37px; height: 37px; }
  .gb-nav a:not(.active) { display: none; }
  .gb-main { padding-top: 18px; }
  .gb-hero { grid-template-columns: 1fr; gap: 21px; padding: 25px 20px; border-radius: 21px; }
  .gb-hero h1 { font-size: 37px; }
  .gb-hero-copy p { font-size: 14px; }
  .gb-lot-grid { display: grid; grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: min(82vw, 330px); overflow-x: auto; margin-right: -11px; padding: 2px 11px 14px 1px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .gb-lot-grid::-webkit-scrollbar { display: none; }
  .gb-lot-card { scroll-snap-align: start; }
  .gb-product-picker {
    display: flex;
    width: 100%;
    max-width: 100%;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    margin: 20px 0 0;
    padding: 3px 14px 13px 0;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
  }
  .gb-product-picker::-webkit-scrollbar { display: none; }
  .gb-product-choice {
    flex: 0 0 calc(100% - 38px);
    width: calc(100% - 38px);
    min-width: 0;
    min-height: 82px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .gb-section-head { display: grid; gap: 7px; }
  .gb-detail { width: 100%; max-width: 100%; border-radius: 20px; }
  .gb-detail-product { min-width: 0; width: 100%; max-width: 100%; padding: 20px 14px; overflow: hidden; }
  .gb-deal-panel { min-width: 0; width: 100%; max-width: 100%; padding: 20px 14px; overflow: hidden; }
  .gb-detail-art { min-height: 250px; }
  .gb-detail-art .gb-real-product-image { max-width: 100%; max-height: 245px; }
  .gb-detail-title { font-size: 27px; overflow-wrap: anywhere; }
  .gb-deal-top { min-width: 0; flex-wrap: wrap; gap: 10px; }
  .gb-selected-product, .gb-outcome strong, .gb-outcome p, .gb-share-message p { overflow-wrap: anywhere; }
  .gb-counter-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; }
  .gb-counter { min-width: 0; padding: 12px 4px; }
  .gb-counter b { font-size: 22px; }
  .gb-counter span { font-size: 8px; }
  .gb-countdown { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 5px; }
  .gb-time-cell { min-width: 0; padding: 10px 2px; }
  .gb-time-cell b { font-size: 19px; }
  .gb-time-cell span { font-size: 7px; }
  .gb-join { min-height: 52px; margin-top: 17px; }
  .gb-share-message { grid-template-columns: 38px minmax(0, 1fr); }
  .gb-share-actions { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .gb-share-button { min-width: 0; padding-inline: 5px; }
  .gb-info-grid { grid-template-columns: minmax(0, 1fr); padding: 14px; }
  .gb-info-card { min-width: 0; padding: 17px 14px; }
  .gb-deal-price { font-size: 38px; }
  .gb-center-shell { display: block; }
  .gb-sidebar { position: sticky; top: 0; z-index: 30; display: flex; align-items: center; gap: 5px; overflow-x: auto; padding: 8px 10px; }
  .gb-sidebar .gb-brand { flex: 0 0 auto; padding: 0 8px 0 0; }
  .gb-sidebar .gb-brand-mark { width: 34px; height: 34px; }
  .gb-side-link { flex: 0 0 auto; min-width: 42px; min-height: 42px; padding: 8px; }
  .gb-center-top { min-height: 58px; padding: 0 14px; }
  .gb-center-content { padding: 16px 11px 35px; }
  .gb-center-title-row { display: grid; gap: 10px; }
  .gb-center-title-row h1 { font-size: 26px; }
  .gb-fields { grid-template-columns: 1fr; }
  .gb-field.full { grid-column: auto; }
  .gb-form-section { padding: 17px; }
  .gb-form-section-head { display: grid; }
  .gb-add-product { width: 100%; }
  .gb-product-editor { padding: 13px; }
  .gb-link-row { grid-template-columns: 1fr; }
  .gb-copy-link { width: 100%; }
  .gb-form-actions { position: sticky; bottom: 0; z-index: 20; padding: 12px; background: rgba(255,255,255,.95); }
  .gb-form-actions button { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
