.alk-rentree-selector {
  max-width: 1180px;
  margin: 28px auto;
  padding: 24px;
  border: 1px solid #d9e6ee;
  border-radius: 12px;
  background: #ffffff;
  color: #243344;
  box-shadow: 0 10px 28px rgba(20, 40, 55, 0.08);
}

.alk-rentree-selector * {
  box-sizing: border-box;
}

.alk-rentree-selector__intro {
  margin-bottom: 18px;
}

.alk-rentree-selector__eyebrow {
  margin: 0 0 6px;
  color: #315f78;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.alk-rentree-selector h2 {
  margin: 0 0 8px;
  color: #1b2c3a;
  font-family: Georgia, serif;
  font-size: 30px;
  line-height: 1.12;
}

.alk-rentree-selector__intro p:not(.alk-rentree-selector__eyebrow) {
  max-width: 680px;
  margin: 0;
  color: #5e7080;
  font-size: 14px;
  line-height: 1.55;
}

.alk-rentree-selector__panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  padding: 16px;
  border-radius: 10px;
  background: #eef5f9;
}

.alk-rentree-selector__field {
  min-width: 0;
}

.alk-rentree-selector__field label {
  display: block;
  margin-bottom: 6px;
  color: #315f78;
  font-size: 12px;
  font-weight: 800;
}

.alk-rentree-selector__field select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid #c9dbe6;
  border-radius: 8px;
  background: #ffffff;
  color: #243344;
  font-size: 14px;
}

.alk-rentree-selector__field select:focus {
  border-color: #315f78;
  outline: 2px solid rgba(49, 95, 120, 0.18);
  outline-offset: 1px;
}

.alk-rentree-selector__button {
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  background: #243344;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

.alk-rentree-selector__button:hover:not(:disabled) {
  background: #1b2c3a;
}

.alk-rentree-selector__button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.alk-rentree-selector__hint {
  margin: 12px 0 0;
  color: #5e7080;
  font-size: 13px;
}

.alk-rentree-selector .is-hidden {
  display: none;
}

.alk-rentree-context {
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid #d9e6ee;
  border-radius: 10px;
  background: #ffffff;
  color: #243344;
  box-shadow: 0 8px 22px rgba(20, 40, 55, 0.07);
}

.alk-rentree-context__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.alk-rentree-context__eyebrow {
  margin: 0 0 5px;
  color: #315f78;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.alk-rentree-context__path {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: #243344;
  font-size: 14px;
  font-weight: 800;
}

.alk-rentree-context__path span:not(:last-child)::after {
  content: ">";
  margin-left: 6px;
  color: #7c8c99;
  font-weight: 600;
}

.alk-rentree-context__change {
  flex: none;
  color: #315f78;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.alk-rentree-context__change:hover {
  color: #1b2c3a;
}

.alk-rentree-context__groups {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.alk-rentree-context__group {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid #c9dbe6;
  border-radius: 8px;
  background: #eef5f9;
  color: #243344;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.alk-rentree-context__group:hover,
.alk-rentree-context__group.is-active {
  border-color: #243344;
  background: #243344;
  color: #ffffff;
}

@media (max-width: 980px) {
  .alk-rentree-selector__panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .alk-rentree-selector__button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .alk-rentree-selector {
    margin: 20px 12px;
    padding: 18px;
  }

  .alk-rentree-selector h2 {
    font-size: 24px;
  }

  .alk-rentree-selector__panel {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .alk-rentree-context__main {
    align-items: flex-start;
    flex-direction: column;
  }

  .alk-rentree-context__change {
    width: 100%;
  }

  .alk-rentree-context__group {
    flex: 1 1 100%;
    justify-content: center;
  }
}

.alk-rentree-builder {
  max-width: 1180px;
  margin: 28px auto;
  color: #243344;
}

.alk-rentree-builder * {
  box-sizing: border-box;
}

.alk-rentree-builder__head {
  margin-bottom: 16px;
  padding: 22px;
  border: 1px solid #d9e6ee;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(20, 40, 55, 0.08);
}

.alk-rentree-builder h1 {
  margin: 0 0 10px;
  color: #1b2c3a;
  font-family: Georgia, serif;
  font-size: 30px;
  line-height: 1.14;
}

.alk-rentree-builder__path,
.alk-rentree-builder__prefs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.alk-rentree-builder__path {
  margin-bottom: 12px;
  font-weight: 800;
}

.alk-rentree-builder__path span:not(:last-child)::after {
  content: ">";
  margin-left: 8px;
  color: #7c8c99;
  font-weight: 600;
}

.alk-rentree-builder__prefs span,
.alk-rentree-builder__summary div,
.alk-rentree-builder__summary a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 8px;
  background: #eef5f9;
  color: #315f78;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.alk-rentree-builder__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid #d9e6ee;
  border-radius: 10px;
  background: #ffffff;
}

.alk-rentree-builder__summary div {
  gap: 8px;
  background: #ffffff;
  border: 1px solid #d9e6ee;
}

.alk-rentree-builder__summary strong {
  color: #8b155f;
}

.alk-rentree-builder__summary a {
  background: #243344;
  color: #ffffff;
}

.alk-rentree-builder__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.alk-rentree-builder__product {
  display: grid;
  grid-template-rows: 170px 1fr;
  min-height: 360px;
  border: 1px solid #d9e6ee;
  border-radius: 10px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(20, 40, 55, 0.07);
}

.alk-rentree-builder__image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: #f6f9fb;
}

.alk-rentree-builder__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.alk-rentree-builder__product > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
}

.alk-rentree-builder__need {
  margin: 0;
  color: #315f78;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.alk-rentree-builder__product h2 {
  flex: 1;
  margin: 0;
  color: #243344;
  font-size: 14px;
  line-height: 1.35;
}

.alk-rentree-builder__product strong {
  color: #8b155f;
  font-size: 18px;
}

.alk-rentree-builder__product a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 8px;
  background: #f2a900;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.alk-rentree-builder__missing,
.alk-rentree-builder__empty {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid #f1d5a8;
  border-radius: 10px;
  background: #fff8ec;
  color: #6b4b13;
}

.alk-rentree-builder__missing h2 {
  margin: 0 0 10px;
  font-size: 16px;
}

.alk-rentree-builder__missing p {
  margin: 6px 0;
}

@media (max-width: 980px) {
  .alk-rentree-builder__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .alk-rentree-builder {
    margin: 20px 12px;
  }

  .alk-rentree-builder__grid {
    grid-template-columns: 1fr;
  }

  .alk-rentree-builder__summary,
  .alk-rentree-builder__prefs {
    align-items: stretch;
    flex-direction: column;
  }

  .alk-rentree-builder__summary div,
  .alk-rentree-builder__summary a,
  .alk-rentree-builder__prefs span {
    width: 100%;
    justify-content: center;
  }
}

/* Builder v1.1.3 pack UX */
.alk-rentree-builder {
  max-width: 1180px;
  margin: 24px auto 42px;
  color: #243344;
}

.alk-rentree-builder * {
  box-sizing: border-box;
}

.alk-rentree-builder__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 16px;
  align-items: stretch;
  margin-bottom: 14px;
}

.alk-rentree-builder__intro,
.alk-rentree-builder__budget,
.alk-rentree-builder__toolbar,
.alk-rentree-builder__product,
.alk-rentree-builder__missing,
.alk-rentree-builder__empty {
  border: 1px solid #d9e6ee;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(20, 40, 55, 0.07);
}

.alk-rentree-builder__intro {
  padding: 22px;
}

.alk-rentree-builder__intro h1 {
  margin: 0 0 10px;
  color: #1b2c3a;
  font-family: Georgia, serif;
  font-size: 30px;
  line-height: 1.15;
}

.alk-rentree-builder__path,
.alk-rentree-builder__prefs,
.alk-rentree-builder__stats,
.alk-rentree-builder__actions,
.alk-rentree-builder__card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.alk-rentree-builder__path {
  margin-bottom: 12px;
  color: #243344;
  font-size: 14px;
  font-weight: 800;
}

.alk-rentree-builder__path span:not(:last-child)::after {
  content: ">";
  margin-left: 8px;
  color: #7c8c99;
  font-weight: 600;
}

.alk-rentree-builder__prefs span,
.alk-rentree-builder__stats span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 8px;
  background: #eef5f9;
  color: #315f78;
  font-size: 12px;
  font-weight: 800;
}

.alk-rentree-builder__budget {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 18px;
}

.alk-rentree-builder__budget-row,
.alk-rentree-builder__budget-meta,
.alk-rentree-builder__line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.alk-rentree-builder__budget-row span,
.alk-rentree-builder__budget-meta span,
.alk-rentree-builder__line span {
  color: #5e7080;
  font-size: 12px;
  font-weight: 800;
}

.alk-rentree-builder__budget-row strong {
  color: #8b155f;
  font-size: 26px;
  line-height: 1;
}

.alk-rentree-builder__meter {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e6edf2;
}

.alk-rentree-builder__meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #57a06a;
}

.alk-rentree-builder__toolbar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  padding: 12px;
}

.alk-rentree-builder__stats strong {
  margin-right: 4px;
  color: #243344;
}

.alk-rentree-builder__actions {
  justify-content: flex-end;
}

.alk-rentree-builder__primary,
.alk-rentree-builder__secondary,
.alk-rentree-builder__card-actions a,
.alk-rentree-builder__card-actions button,
.alk-rentree-builder__empty a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #243344;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.alk-rentree-builder__primary {
  background: #243344;
  color: #ffffff;
}

.alk-rentree-builder__primary:disabled,
.alk-rentree-builder__card-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.alk-rentree-builder__secondary,
.alk-rentree-builder__card-actions a,
.alk-rentree-builder__empty a {
  background: #ffffff;
  color: #243344;
}

.alk-rentree-builder__section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin: 18px 0 12px;
}

.alk-rentree-builder__section-head h2 {
  margin: 0;
  color: #1b2c3a;
  font-size: 20px;
  line-height: 1.25;
}

.alk-rentree-builder__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.alk-rentree-builder__product {
  display: grid;
  grid-template-rows: auto 150px 1fr;
  min-height: 330px;
  overflow: hidden;
}

.alk-rentree-builder__product-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px 0;
}

.alk-rentree-builder__badge {
  display: inline-flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: #243344;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.alk-rentree-builder__need {
  min-width: 0;
  margin: 0;
  color: #315f78;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.alk-rentree-builder__image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  padding: 12px;
  background: #f6f9fb;
  color: #7c8c99;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.alk-rentree-builder__image img {
  max-width: 100%;
  max-height: 126px;
  object-fit: contain;
}

.alk-rentree-builder__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
}

.alk-rentree-builder__body h3 {
  min-height: 42px;
  margin: 0;
  color: #243344;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.alk-rentree-builder__line strong {
  color: #8b155f;
  font-size: 18px;
}

.alk-rentree-builder__line span {
  padding: 5px 8px;
  border-radius: 999px;
  background: #eef7ef;
  color: #57a06a;
}

.alk-rentree-builder__card-actions {
  margin-top: auto;
}

.alk-rentree-builder__card-actions a,
.alk-rentree-builder__card-actions button {
  flex: 1 1 0;
  min-width: 0;
}

.alk-rentree-builder__card-actions button {
  background: #eef5f9;
  color: #315f78;
}

.alk-rentree-builder__missing,
.alk-rentree-builder__empty {
  margin-top: 18px;
  padding: 16px;
}

.alk-rentree-builder__missing {
  border-color: #f1d5a8;
  background: #fff8ec;
}

.alk-rentree-builder__missing-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.alk-rentree-builder__missing-list div {
  padding: 12px;
  border: 1px solid #f1d5a8;
  border-radius: 8px;
  background: #ffffff;
}

.alk-rentree-builder__missing-list strong,
.alk-rentree-builder__missing-list span {
  display: block;
}

.alk-rentree-builder__missing-list strong {
  color: #243344;
  font-size: 13px;
}

.alk-rentree-builder__missing-list span {
  margin-top: 4px;
  color: #6b4b13;
  font-size: 12px;
}

.alk-rentree-builder__empty h2 {
  margin: 0 0 12px;
  font-size: 18px;
}

@media (max-width: 980px) {
  .alk-rentree-builder__hero,
  .alk-rentree-builder__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .alk-rentree-builder__intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .alk-rentree-builder {
    margin: 18px 10px 32px;
  }

  .alk-rentree-builder__hero,
  .alk-rentree-builder__grid,
  .alk-rentree-builder__missing-list {
    grid-template-columns: 1fr;
  }

  .alk-rentree-builder__toolbar,
  .alk-rentree-builder__actions,
  .alk-rentree-builder__stats {
    align-items: stretch;
    flex-direction: column;
  }

  .alk-rentree-builder__primary,
  .alk-rentree-builder__secondary {
    width: 100%;
  }
}

/* Builder v1.1.5 product grid cleanup */
.alk-rentree-builder__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.alk-rentree-builder__product {
  grid-template-rows: auto 160px 1fr;
  min-height: 338px;
  border-radius: 8px;
}

.alk-rentree-builder__image {
  min-height: 160px;
  padding: 14px;
  background: #ffffff;
}

.alk-rentree-builder__image img {
  max-height: 145px;
}

.alk-rentree-builder__body h3 {
  min-height: 58px;
  font-size: 13px;
}

.alk-rentree-builder__line strong {
  font-size: 16px;
}

.alk-rentree-builder__line span {
  padding: 4px 7px;
  font-size: 11px;
}

.alk-rentree-builder__card-actions {
  gap: 7px;
}

.alk-rentree-builder__card-actions a,
.alk-rentree-builder__card-actions button {
  min-height: 34px;
  padding: 0 10px;
}

@media (max-width: 1180px) {
  .alk-rentree-builder__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .alk-rentree-builder__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .alk-rentree-builder__grid {
    grid-template-columns: 1fr;
  }
}

/* Builder v1.1.6 remove yellow/orange accents */
.alk-rentree-builder__product a,
.alk-rentree-builder__card-actions a,
.alk-rentree-builder__empty a {
  background: #ffffff;
  border-color: #243344;
  color: #243344;
}

.alk-rentree-builder__product a:hover,
.alk-rentree-builder__card-actions a:hover,
.alk-rentree-builder__empty a:hover {
  background: #243344;
  color: #ffffff;
}

.alk-rentree-builder__missing,
.alk-rentree-builder__empty {
  border-color: #d9e6ee;
  background: #ffffff;
  color: #243344;
}

.alk-rentree-builder__missing-list div {
  border-color: #d9e6ee;
  background: #f8fbfd;
}

.alk-rentree-builder__missing-list span {
  color: #5e7080;
}

.alk-rentree-builder__image {
  background: #ffffff;
}


.alk-rentree-builder__feature {
  color: #315f78;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

/* Builder v1.2.1 larger product images */
.alk-rentree-builder__product {
  grid-template-rows: auto 220px 1fr;
  min-height: 410px;
}

.alk-rentree-builder__image {
  min-height: 220px;
  padding: 12px;
}

.alk-rentree-builder__image img {
  max-height: 205px;
}

/* Builder v1.2.2 extra large product images */
.alk-rentree-builder__product {
  grid-template-rows: auto 280px 1fr;
  min-height: 480px;
}

.alk-rentree-builder__image {
  min-height: 280px;
  padding: 10px;
}

.alk-rentree-builder__image img {
  max-height: 265px;
}

/* Builder cart actions - v1.3.0 */
.alk-rentree-builder__primary:not(:disabled) {
  background: #1b3044;
  border-color: #1b3044;
  color: #fff;
  cursor: pointer;
}

.alk-rentree-builder__primary:not(:disabled):hover,
.alk-rentree-builder__add:not(:disabled):hover {
  background: #102234;
  border-color: #102234;
  color: #fff;
}

.alk-rentree-builder__card-actions {
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8px;
}

.alk-rentree-builder__card-actions .alk-rentree-builder__add {
  background: #1b3044;
  border-color: #1b3044;
  color: #fff;
  cursor: pointer;
}

.alk-rentree-builder__card-actions .alk-rentree-builder__add:disabled {
  background: #dbe4ec;
  border-color: #dbe4ec;
  color: #607386;
  cursor: default;
}

@media (max-width: 767px) {
  .alk-rentree-builder__card-actions {
    grid-template-columns: 1fr;
  }
}
/* Builder quantity selector - v1.3.1 */
.alk-rentree-builder__qty {
  align-items: center;
  border: 1px solid #1b3044;
  border-radius: 6px;
  color: #1b3044;
  display: grid;
  font-size: 12px;
  font-weight: 800;
  gap: 6px;
  grid-template-columns: auto minmax(48px, 1fr);
  min-height: 44px;
  padding: 0 10px;
  text-transform: uppercase;
}

.alk-rentree-builder__qty input {
  border: 0;
  color: #1b3044;
  font: inherit;
  min-width: 0;
  outline: 0;
  text-align: center;
  width: 100%;
}

@media (max-width: 767px) {
  .alk-rentree-builder__qty {
    grid-template-columns: auto 80px;
    justify-content: center;
  }
}
/* Builder quantity stepper - v1.3.2 */
.alk-rentree-builder__qty {
  grid-template-columns: auto 34px minmax(42px, 1fr) 34px;
  padding: 0 8px;
}

.alk-rentree-builder__qty button {
  align-items: center;
  background: #eef5fa;
  border: 1px solid #c7d7e4;
  border-radius: 5px;
  color: #1b3044;
  cursor: pointer;
  display: flex;
  font-size: 18px;
  font-weight: 900;
  height: 30px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  width: 34px;
}

.alk-rentree-builder__qty button:hover {
  background: #dfeaf2;
}

.alk-rentree-builder__qty input::-webkit-outer-spin-button,
.alk-rentree-builder__qty input::-webkit-inner-spin-button {
  margin: 0;
}

@media (max-width: 767px) {
  .alk-rentree-builder__qty {
    grid-template-columns: auto 34px 64px 34px;
  }
}