.widget-page {
  display: grid;
  gap: 24px;
}

.widget-hero,
.widget-detail-head,
.widget-related {
  border-radius: 18px;
  border: 1px solid rgba(62, 42, 12, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(62, 42, 12, 0.06);
}

.widget-hero {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 42px);
}

.widget-hero h1,
.widget-detail-head h1 {
  margin: 0;
  max-width: 820px;
  color: #2f2418;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.05;
}

.widget-hero p,
.widget-detail-head p,
.widget-related p {
  max-width: 760px;
  margin: 20px 0 0 0;
  color: #776554;
  font-size: 16px;
  line-height: 1.7;
}

.widget-hero__cta,
.widget-detail-head__login {
  width: fit-content;
}

.widget-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #f6b21a, #d98900);
  color: #3b291a;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(193, 132, 10, 0.18);
}

.widget-hero__cta:hover,
.widget-hero__cta:focus-visible {
  background: linear-gradient(135deg, #ffd56a, #c1840a);
  color: #2f2116;
  box-shadow: 0 16px 30px rgba(193, 132, 10, 0.24);
}

.widget-list {
  display: grid;
  gap: 12px;
}

.widget-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 118px;
  border-radius: 16px;
  border: 1px solid rgba(62, 42, 12, 0.08);
  padding: 16px 18px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(62, 42, 12, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.widget-card:hover,
.widget-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(193, 132, 10, 0.28);
  box-shadow: 0 16px 36px rgba(62, 42, 12, 0.08);
}

.widget-card__icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(246, 178, 26, 0.12);
  color: #9a6400;
  font-size: 25px;
  box-shadow: inset 0 0 0 1px rgba(193, 132, 10, 0.14);
}

.widget-card__body {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.widget-card small {
  color: #9a6400;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.widget-card strong {
  color: #2f2418;
  font-size: 19px;
  line-height: 1.25;
}

.widget-card em {
  color: #776554;
  font-size: 13px;
  font-style: normal;
  line-height: 1.55;
}

.widget-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: fit-content;
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(246, 178, 26, 0.12);
  color: #6d4200;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: inset 0 0 0 1px rgba(193, 132, 10, 0.16);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.widget-card:hover .widget-card__action,
.widget-card:focus-visible .widget-card__action {
  background: #c1840a;
  color: #fff;
  box-shadow: 0 10px 22px rgba(193, 132, 10, 0.18);
}

.widget-detail-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
}

.widget-detail-head .landing-eyebrow {
  grid-column: 1 / -1;
}

.widget-frame-card {
  display: grid;
  justify-items: center;
  overflow: hidden;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.widget-frame {
  display: block;
  width: min(100%, 820px);
  min-height: 360px;
  border: 0;
  border-radius: 18px;
  background: transparent;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.widget-frame.is-loaded {
  opacity: 1;
}

.widget-frame--honey-moisture {
  min-height: 360px;
}

.widget-frame--product-cost {
  min-height: 520px;
}

.widget-frame--queen-selection {
  min-height: 560px;
}

.widget-frame--queen-calendar {
  min-height: 680px;
}

.widget-frame--varroa-treatment {
  min-height: 430px;
}

.widget-related {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.widget-related .section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.widget-related__all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: fit-content;
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(246, 178, 26, 0.12);
  color: #6d4200;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(193, 132, 10, 0.16);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.widget-related__all:hover,
.widget-related__all:focus-visible {
  background: #f3ae17;
  color: #fff;
  box-shadow: 0 10px 22px rgba(193, 132, 10, 0.18);
}

.widget-related__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.widget-related__list a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  padding: 9px 12px;
  background: #fff;
  color: #6d4200;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(193, 132, 10, 0.14);
}

.widget-related__list a:hover,
.widget-related__list a:focus-visible {
  background: rgba(246, 178, 26, 0.1);
}

.widget-related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}

.widget-related-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  min-height: 126px;
  border-radius: 16px;
  border: 1px solid rgba(62, 42, 12, 0.08);
  padding: 14px;
  background: rgba(255, 255, 255, 0.96);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(62, 42, 12, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.widget-related-card:hover,
.widget-related-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(193, 132, 10, 0.28);
  box-shadow: 0 14px 30px rgba(62, 42, 12, 0.08);
}

.widget-related-card__thumb {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(246, 178, 26, 0.12);
  color: #9a6400;
  font-size: 24px;
  box-shadow: inset 0 0 0 1px rgba(193, 132, 10, 0.16);
}

.widget-related-card__body {
  display: grid;
  gap: 5px;
}

.widget-related-card small {
  color: #9a6400;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.widget-related-card strong {
  color: #2f2418;
  font-size: 15px;
  line-height: 1.3;
}

.widget-related-card em {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #776554;
  font-size: 12px;
  font-style: normal;
  line-height: 1.45;
}

@media (max-width: 720px) {
  .widget-detail-head {
    grid-template-columns: 1fr;
  }

  .widget-frame {
    width: 100%;
    min-height: 420px;
  }

  .widget-frame--honey-moisture,
  .widget-frame--varroa-treatment {
    min-height: 480px;
  }

  .widget-frame--product-cost,
  .widget-frame--queen-selection {
    min-height: 680px;
  }

  .widget-frame--queen-calendar {
    min-height: 760px;
  }
}

html:has(.widget-embed-body),
.widget-embed-body {
  margin: 0;
  min-height: 100%;
  background: #fff;
  color: #3b291a;
}

.widget-embed-body {
  box-sizing: border-box;
  padding: 0;
  font-family: "Noto Sans Georgian", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.widget-embed-body [class^="geobee-"],
.widget-embed-body [class*=" geobee-"] {
  font-family: "Noto Sans Georgian", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.widget-embed-body [hidden] {
  display: none !important;
}

.widget-embed-body .geobee-varroa-container,
.widget-embed-body .geobee-calculator-container,
.widget-embed-body .geobee-queen-calendar-container,
.widget-embed-body .geobee-cost-container,
.widget-embed-body .geobee-moisture-container {
  width: min(100%, 760px);
  max-width: 760px;
  margin: 30px auto;
  box-sizing: border-box;
  border: 1px solid rgba(62, 42, 12, 0.08);
  border-radius: 18px;
  padding: clamp(16px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.96);
  color: #3b291a;
  box-shadow: 0 12px 28px rgba(62, 42, 12, 0.05);
}

.widget-embed-body form {
  display: grid;
  gap: 14px;
  margin: 0;
}

.widget-embed-body .geobee-calc-header {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  text-align: left;
  border-bottom: 1px solid rgba(193, 132, 10, 0.16);
}

.widget-embed-body .geobee-calc-header h2 {
  margin: 0;
  color: #2f2418;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
}

.widget-embed-body .geobee-calc-header p {
  margin: 0;
  color: #776554;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
}

.widget-embed-body .calc-section,
.widget-embed-body .calc-grid-inputs .calc-section {
  display: grid;
  gap: 7px;
  margin-bottom: 0;
  border: 1px solid rgba(62, 42, 12, 0.07);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255, 250, 240, 0.42);
  text-align: left;
}

.widget-embed-body .calc-grid-inputs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 0;
}

.widget-embed-body .product-cost-form {
  gap: 18px;
}

.widget-embed-body .product-cost-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.widget-embed-body .product-cost-field {
  min-width: 0;
  min-height: 100%;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.widget-embed-body .product-cost-field--primary {
  grid-column: 1 / -1;
  padding: 0;
  background: transparent;
}

.widget-embed-body .product-cost-field--primary input {
  min-height: 50px;
  font-size: 15px;
}

.widget-embed-body .calc-section label {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin: 0;
  color: #3b291a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.widget-embed-body .anchor-emoji {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(246, 178, 26, 0.12);
  font-style: normal;
  line-height: 1;
}

.widget-embed-body .tooltip-text {
  display: block;
  margin: -2px 0 0 31px;
  color: #8a7764;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.45;
}

.widget-embed-body .calc-section input,
.widget-embed-body .calc-section select,
.widget-embed-body .calc-grid-inputs input,
.widget-embed-body .calc-grid-inputs select {
  width: 100%;
  min-height: 46px;
  box-sizing: border-box;
  border: 1px solid rgba(193, 132, 10, 0.22);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.98);
  color: #2f2418;
  font: 700 14px/1.35 "Noto Sans Georgian", system-ui, sans-serif;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.widget-embed-body .calc-section select,
.widget-embed-body .calc-grid-inputs select {
  padding-right: 34px;
  cursor: pointer;
}

.widget-embed-body .calc-section input:focus,
.widget-embed-body .calc-section select:focus,
.widget-embed-body .calc-grid-inputs input:focus,
.widget-embed-body .calc-grid-inputs select:focus {
  outline: none;
  border-color: #c1840a;
  box-shadow: 0 0 0 3px rgba(246, 178, 26, 0.18);
}

.widget-embed-body .calc-section:hover {
  border-color: rgba(193, 132, 10, 0.18);
  background: rgba(255, 250, 240, 0.64);
}

.widget-embed-body .product-cost-field:hover {
  background: transparent;
}

.widget-embed-body button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  min-width: 220px;
  min-height: 48px;
  margin: 8px auto 0;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  background: linear-gradient(135deg, #f6b21a, #c1840a);
  color: #2f2418;
  font: 700 14px/1.25 "Noto Sans Georgian", system-ui, sans-serif;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(154, 100, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.widget-embed-body button:hover,
.widget-embed-body button:focus-visible {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #ffd56a, #c1840a);
  box-shadow: 0 16px 30px rgba(154, 100, 0, 0.22);
  outline: none;
}

.widget-embed-body .solution-result-box,
.widget-embed-body .calc-result-box,
.widget-embed-body .calendar-timeline,
.widget-embed-body .cost-result-box,
.widget-embed-body .moisture-result-box {
  margin-top: 18px;
  border: 1px solid rgba(193, 132, 10, 0.16);
  border-radius: 16px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.72), rgba(255, 255, 255, 0.96));
  color: #3b291a;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.widget-embed-body .result-grid,
.widget-embed-body .result-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
  margin: 15px 0;
}

.widget-embed-body .grid-item,
.widget-embed-body .stat-card,
.widget-embed-body .timeline-item {
  border: 1px solid rgba(193, 132, 10, 0.14);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: #3b291a;
  box-shadow: 0 8px 20px rgba(62, 42, 12, 0.05);
}

.widget-embed-body .grid-item,
.widget-embed-body .stat-card {
  text-align: center;
}

.widget-embed-body .grid-item span,
.widget-embed-body .stat-value,
.widget-embed-body .timeline-date {
  display: block;
  color: #9a6400;
  font-size: 17px;
  font-weight: 700;
}

.widget-embed-body .stat-title {
  display: block;
  margin-bottom: 5px;
  color: #776554;
  font-size: 12px;
  font-weight: 600;
}

.widget-embed-body .calendar-timeline {
  display: grid;
  gap: 12px;
}

.widget-embed-body .calendar-timeline h3,
.widget-embed-body .solution-result-box h3,
.widget-embed-body .cost-result-box h3,
.widget-embed-body .calc-result-box h3,
.widget-embed-body .moisture-result-box h3 {
  margin: 0 0 12px;
  color: #2f2418;
  font-size: 18px;
  font-weight: 700;
}

.widget-embed-body .timeline-content h4 {
  margin: 0 0 8px;
  color: #2f2418;
  font-size: 15px;
  line-height: 1.35;
}

.widget-embed-body .warning-text,
.widget-embed-body .roi-info-text,
.widget-embed-body .timeline-content p,
.widget-embed-body .moisture-result-box p,
.widget-embed-body .calc-result-box p,
.widget-embed-body .total-volume {
  color: #776554;
  font-size: 13px;
  line-height: 1.6;
}

.widget-embed-body .status-elite,
.widget-embed-body .moisture-ok,
.widget-embed-body .success-step {
  border-color: rgba(47, 111, 62, 0.24);
  background: linear-gradient(135deg, #edf8ef, #ffffff);
  color: #2f6f3e;
}

.widget-embed-body .status-nurse,
.widget-embed-body .active-step {
  border-color: rgba(193, 132, 10, 0.22);
  background: linear-gradient(135deg, #fff3cf, #ffffff);
  color: #6d4200;
}

.widget-embed-body .status-rejected,
.widget-embed-body .moisture-warn,
.widget-embed-body .danger-step {
  border-color: rgba(154, 45, 32, 0.2);
  background: linear-gradient(135deg, #ffe4e0, #ffffff);
  color: #9a2d20;
}

@media (max-width: 560px) {
  .widget-embed-body {
    padding: 0;
  }

  .widget-embed-body .geobee-varroa-container,
  .widget-embed-body .geobee-calculator-container,
  .widget-embed-body .geobee-queen-calendar-container,
  .widget-embed-body .geobee-cost-container,
  .widget-embed-body .geobee-moisture-container {
    border-radius: 14px;
  }

  .widget-embed-body .calc-section,
  .widget-embed-body .calc-grid-inputs .calc-section {
    padding: 12px;
  }

  .widget-embed-body .product-cost-grid {
    grid-template-columns: 1fr;
  }

  .widget-embed-body .product-cost-field--primary {
    grid-column: auto;
    padding: 0;
  }

  .widget-embed-body .product-cost-field {
    padding: 0;
  }

  .widget-embed-body .tooltip-text {
    margin-left: 0;
  }

  .widget-embed-body button {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .widget-card {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
  }

  .widget-card__action {
    grid-column: 2;
    justify-self: start;
    margin-top: 4px;
  }

  .widget-related .section-heading {
    display: grid;
    justify-content: stretch;
  }

  .widget-related__all {
    justify-self: start;
  }
}
