.tallo-product-extras {
  margin: 24px 0 18px;
  color: #343a42;
}
.tallo-extra-group {
  margin: 0;
  padding: 22px 0 10px;
  border: 0;
  border-top: 1px solid #d8dde1;
}
.tallo-extra-group legend,
.tallo-extra-label,
.tallo-extra-field > label {
  display: block;
  margin: 0 0 9px;
  color: #5d5d5d;
  font: 700 17px/1.35 LouisGeorgeCafe, Montserrat, sans-serif;
}
.tallo-extra-group-description,
.tallo-extra-field small {
  display: block;
  margin: 5px 0 10px;
  color: #656d75;
  font-size: 13px;
  line-height: 1.5;
}
.tallo-extra-field {
  margin: 0 0 17px;
}
.tallo-extra-field input[type=text],
.tallo-extra-field textarea,
.tallo-extra-field select {
  width: 100%;
  min-height: 47px;
  padding: 11px 14px;
  border: 1px solid #c8d2dc;
  border-radius: 8px;
  background: #fff;
  font: 400 15px LouisGeorgeCafe, Montserrat, sans-serif;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.tallo-extra-field input[type=text]:focus,
.tallo-extra-field textarea:focus,
.tallo-extra-field select:focus {
  border-color: #0f437e;
  box-shadow: 0 0 0 3px rgba(15, 67, 126, .13);
}
.tallo-extra-field textarea {
  min-height: 92px;
  resize: vertical;
}
.tallo-extra-field select,
.tallo-store-body .commerce-content .form-row select {
  appearance: none;
  padding-right: 46px;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 20 20' fill='none' stroke='%230f437e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 7.5 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

select.tallo-native-select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.tallo-select {
  position: relative;
  width: 100%;
  font-family: LouisGeorgeCafe, Montserrat, sans-serif;
}

.tallo-select.is-open {
  z-index: 90;
}

.tallo-select-trigger {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 15px;
  border: 1px solid #c8d2dc;
  border-radius: 12px;
  background: #fff;
  color: #20252a;
  box-shadow: 0 2px 10px rgba(15, 67, 126, .04);
  font: 500 15px/1.35 LouisGeorgeCafe, Montserrat, sans-serif;
  text-align: left;
  cursor: pointer;
  transition: border-color .16s ease, box-shadow .16s ease, background-color .16s ease;
}

.tallo-select-trigger:hover {
  border-color: #91afca;
  background: #fbfdff;
}

.tallo-select-trigger:focus-visible,
.tallo-select.is-open .tallo-select-trigger {
  border-color: #0f437e;
  outline: none;
  box-shadow: 0 0 0 3px rgba(15, 67, 126, .14);
}

.tallo-select.is-invalid.was-invalid .tallo-select-trigger {
  border-color: #d94b55;
  box-shadow: 0 0 0 3px rgba(217, 75, 85, .12);
}

.tallo-select-value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tallo-select:not(.has-value) .tallo-select-value {
  color: #68727d;
}

.tallo-select-arrow {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: #0f437e;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  transition: transform .16s ease;
}

.tallo-select.is-open .tallo-select-arrow {
  transform: rotate(180deg);
}

.tallo-select-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 100;
  max-height: 286px;
  overflow-y: auto;
  padding: 7px;
  border: 1px solid #d5e0e8;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(22, 44, 69, .18);
  scrollbar-color: #b7c8d7 transparent;
  scrollbar-width: thin;
}

.tallo-select.opens-up .tallo-select-menu {
  top: auto;
  bottom: calc(100% + 8px);
}

.tallo-select-menu[hidden] {
  display: none;
}

.tallo-select-option {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #2f3740;
  font: 500 14px/1.35 LouisGeorgeCafe, Montserrat, sans-serif;
  text-align: left;
  cursor: pointer;
}

.tallo-select-option:hover,
.tallo-select-option:focus-visible {
  background: #f1f6fa;
  color: #0f437e;
  outline: none;
}

.tallo-select-option.is-selected {
  background: #eaf2f9;
  color: #0f437e;
  font-weight: 700;
}

.tallo-select-option.is-placeholder:not(.is-selected) {
  color: #7a838d;
}

.tallo-select-option:disabled {
  color: #a8afb6;
  cursor: not-allowed;
  opacity: .65;
}

.tallo-select-option-text {
  min-width: 0;
}

.tallo-select-check {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: #0f437e;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  opacity: 0;
}

.tallo-select-option.is-selected .tallo-select-check {
  opacity: 1;
}

.tallo-select.is-disabled {
  opacity: .62;
}

.tallo-select.is-disabled .tallo-select-trigger {
  cursor: not-allowed;
}

.tallo-store-body .commerce-content .form-row input.input-text,
.tallo-store-body .commerce-content .form-row textarea,
.tallo-store-body .commerce-content .form-row select {
  min-height: 52px;
  padding: 12px 15px;
  border: 1px solid #c8d2dc;
  border-radius: 8px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.tallo-store-body .commerce-content .form-row input.input-text:focus,
.tallo-store-body .commerce-content .form-row textarea:focus,
.tallo-store-body .commerce-content .form-row select:focus {
  border-color: #0f437e;
  box-shadow: 0 0 0 3px rgba(15, 67, 126, .13);
}
.tallo-store-body .commerce-content .select2-container .select2-selection--single {
  height: 52px;
  border: 1px solid #c8d2dc;
  border-radius: 8px;
  outline: none;
}
.tallo-store-body .commerce-content .select2-container--open .select2-selection--single {
  border-color: #0f437e;
  box-shadow: 0 0 0 3px rgba(15, 67, 126, .13);
}
.tallo-store-body .commerce-content .select2-container .select2-selection--single .select2-selection__rendered {
  padding-right: 46px;
  padding-left: 15px;
  line-height: 50px;
}
.tallo-store-body .commerce-content .select2-container .select2-selection--single .select2-selection__arrow {
  right: 10px;
  height: 50px;
}
.tallo-extra-choices {
  display: grid;
  gap: 8px;
}
.tallo-extra-choice {
  display: flex !important;
  gap: 11px;
  min-height: 46px;
  padding: 10px 12px;
  align-items: center;
  margin: 0 !important;
  border: 1px solid #d8e0e6;
  border-radius: 8px;
  background: #fff;
  font-weight: 500 !important;
  cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.tallo-extra-choice:hover {
  border-color: #91afca;
  background: #f8fbfd;
}
.tallo-extra-choice:has(input:checked) {
  border-color: #0f437e;
  background: #eef5fb;
  box-shadow: 0 0 0 1px #0f437e;
}
.tallo-extra-choice input[type=checkbox],
.tallo-store-body .commerce-content input[type=checkbox],
.tallo-store-body .commerce-content input[type=radio] {
  position: relative;
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  margin: 0;
  appearance: none;
  border: 1.5px solid #8da0b2;
  background: #fff;
  cursor: pointer;
  outline: none;
  transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}
.tallo-extra-choice input[type=checkbox],
.tallo-store-body .commerce-content input[type=checkbox] {
  border-radius: 6px;
}
.tallo-store-body .commerce-content input[type=radio] {
  border-radius: 50%;
}
.tallo-extra-choice input[type=checkbox]:focus-visible,
.tallo-store-body .commerce-content input[type=checkbox]:focus-visible,
.tallo-store-body .commerce-content input[type=radio]:focus-visible {
  box-shadow: 0 0 0 3px rgba(15, 67, 126, .16);
}
.tallo-extra-choice input[type=checkbox]:checked,
.tallo-store-body .commerce-content input[type=checkbox]:checked {
  border-color: #0f437e;
  background: #0f437e;
}
.tallo-extra-choice input[type=checkbox]:checked::after,
.tallo-store-body .commerce-content input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.tallo-store-body .commerce-content input[type=radio]:checked {
  border: 6px solid #0f437e;
}
.tallo-store-body .commerce-content #payment ul.payment_methods > li {
  margin: 0 0 12px;
  padding: 14px;
  border: 1px solid #d6e0e7;
  border-radius: 10px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.tallo-store-body .commerce-content #payment ul.payment_methods > li:has(input:checked) {
  border-color: #0f437e;
  box-shadow: 0 0 0 2px rgba(15, 67, 126, .1);
}
.tallo-store-body .commerce-content #payment ul.payment_methods > li > label {
  display: inline-flex;
  margin-left: 8px;
  align-items: center;
  color: #233b58;
  font-weight: 700;
}
.tallo-product-total {
  padding: 17px 0;
  border-top: 1px solid #0f437e;
  border-bottom: 1px solid #0f437e;
  color: #0f437e;
}
.tallo-product-total strong {
  float: right;
  font-size: 19px;
}

.tallo-checkout-section-note {
  margin: 0 0 22px;
  padding: 13px 15px;
  border-left: 4px solid #0f437e;
  border-radius: 0 9px 9px 0;
  color: #536273;
  background: #f1f6fa;
  font-size: 13px;
  line-height: 1.55;
}

.tallo-shipping-section-note {
  margin-top: 4px;
}

.tallo-delivery-zone-field[hidden] {
  display: none !important;
}

.tallo-store-body .commerce-content #ship-to-different-address {
  margin: 28px 0 18px;
  padding: 17px 18px;
  border: 1px solid #d7e1e8;
  border-radius: 12px;
  background: #f8fbfd;
}

.tallo-store-body .commerce-content #ship-to-different-address label {
  display: flex;
  gap: 12px;
  align-items: center;
  cursor: pointer;
}

.tallo-store-body .commerce-content #ship-to-different-address label span {
  color: #183b62;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.tallo-store-body .commerce-content .shipping_address {
  margin-top: 14px;
  padding: 22px;
  border: 1px solid #d7e1e8;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(22, 44, 69, .06);
}

.tallo-delivery-help {
  margin: 12px 0 0;
  color: #626b74;
  font-size: 13px;
  line-height: 1.55;
}
.tallo-delivery-date-field {
  margin-top: 24px !important;
  padding: 22px;
  border: 1px solid #d4e0e8;
  border-radius: 14px;
  background: #f8fbfd;
  box-shadow: 0 12px 32px rgba(15, 67, 126, .08);
}
.tallo-delivery-date-field > label {
  margin-bottom: 12px !important;
  color: #243f60 !important;
  font-size: 18px;
}
.tallo-date-control {
  position: relative;
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr) auto;
  min-height: 56px;
  overflow: hidden;
  border: 1px solid #adc1d3;
  border-radius: 10px;
  background: #fff;
}
.tallo-date-control:focus-within {
  border-color: #0f437e;
  box-shadow: 0 0 0 3px rgba(15, 67, 126, .13);
}
.tallo-date-control-icon {
  display: grid;
  place-items: center;
  color: #0f437e;
}
.tallo-date-control-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tallo-store-body .commerce-content .form-row .tallo-delivery-date-display {
  width: 100%;
  min-width: 0;
  min-height: 54px;
  padding: 0 10px 0 0;
  border: 0;
  border-radius: 0;
  color: #293a4d;
  background: #fff;
  box-shadow: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}
.tallo-delivery-date-display::placeholder {
  color: #667586;
  opacity: 1;
  font-weight: 500;
}
.tallo-date-toggle {
  display: inline-flex;
  min-width: 156px;
  padding: 0 14px;
  gap: 8px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-left: 1px solid #d8e1e8;
  color: #0f437e;
  background: #f4f8fb;
  cursor: pointer;
  font: 700 12px/1.2 LouisGeorgeCafe, Montserrat, sans-serif;
}
.tallo-date-toggle:hover {
  background: #e8f1f8;
}
.tallo-date-toggle svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform .2s ease;
}
.tallo-calendar-collapsed .tallo-date-toggle svg {
  transform: rotate(180deg);
}
.tallo-delivery-calendar {
  margin-top: 14px;
}
.tallo-delivery-calendar[hidden] {
  display: none !important;
}
.ui-datepicker {
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid #d4e0e8;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 67, 126, .08);
  font-family: LouisGeorgeCafe, Montserrat, sans-serif;
}
.ui-datepicker-header {
  display: flex;
  min-height: 62px;
  padding: 12px 16px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e0e8ee;
  color: #0f437e;
  background: #f7fafc;
}
.ui-datepicker-title {
  order: 2;
  font-size: 17px;
  font-weight: 700;
}
.ui-datepicker-prev,
.ui-datepicker-next {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid #cfdae3;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}
.ui-datepicker-prev:hover,
.ui-datepicker-next:hover {
  border-color: #0f437e;
  background: #eef5fb;
}
.ui-datepicker-prev { order: 1; }
.ui-datepicker-next { order: 3; }
.ui-datepicker-prev span,
.ui-datepicker-next span {
  display: block;
  width: 12px;
  height: 12px;
  overflow: hidden;
  border-top: 2px solid #0f437e;
  border-right: 2px solid #0f437e;
  text-indent: 100px;
}
.ui-datepicker-prev span { transform: rotate(-135deg); }
.ui-datepicker-next span { transform: rotate(45deg); }
.ui-datepicker table {
  width: 100%;
  border-collapse: collapse;
}
.ui-datepicker th {
  padding: 12px 6px;
  color: #51657b;
  background: #edf3f7;
  font-size: 12px;
  text-transform: uppercase;
}
.ui-datepicker td {
  padding: 3px;
  text-align: center;
}
.ui-datepicker td a,
.ui-datepicker td span {
  display: grid;
  min-height: 38px;
  padding: 6px 4px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #34495e;
  text-decoration: none;
}
.ui-datepicker .tallo-date-available a {
  color: #0f437e;
  background: #e9f3f9;
}
.ui-datepicker .tallo-date-available a:hover {
  border-color: #0f437e;
  background: #dbeaf4;
}
.ui-datepicker .ui-datepicker-current-day a {
  border-color: #0f437e;
  color: #fff;
  background: #0f437e;
  box-shadow: 0 3px 9px rgba(15, 67, 126, .25);
}
.tallo-delivery-date-field:not(.tallo-has-date) .ui-datepicker .ui-datepicker-current-day a {
  border-color: transparent;
  color: #0f437e;
  background: #e9f3f9;
  box-shadow: none;
}
.ui-datepicker .ui-state-disabled span {
  color: #aab4be;
  background: #f3f5f6;
  opacity: .7;
}
.ui-datepicker .ui-datepicker-other-month span {
  background: transparent;
  opacity: .35;
}
.tallo-calendar-legend {
  display: flex;
  margin-top: 12px;
  gap: 16px;
  flex-wrap: wrap;
  color: #647384;
  font-size: 11px;
}
.tallo-calendar-legend span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
.tallo-calendar-legend i {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 1px solid #d0d8df;
  border-radius: 3px;
}
.tallo-calendar-legend .available {
  border-color: #b9d4e4;
  background: #e9f3f9;
}
.tallo-calendar-legend .selected {
  border-color: #0f437e;
  background: #0f437e;
}
.tallo-calendar-legend .unavailable {
  background: #f3f5f6;
}
.tallo-quantity-stepper {
  display: inline-grid;
  grid-template-columns: 42px 54px 42px;
  height: 48px;
  overflow: hidden;
  border: 1px solid #bdcad5;
  border-radius: 8px;
  background: #fff;
}
.tallo-quantity-stepper .qty,
.single-cart-form .tallo-quantity-stepper .qty,
.commerce-content .tallo-quantity-stepper .qty {
  width: 54px !important;
  min-height: 46px !important;
  padding: 6px !important;
  border: 0 !important;
  border-right: 1px solid #d9e1e7 !important;
  border-left: 1px solid #d9e1e7 !important;
  border-radius: 0 !important;
  background: #fff;
  box-shadow: none !important;
  text-align: center;
  appearance: textfield;
}
.tallo-quantity-stepper .qty::-webkit-inner-spin-button,
.tallo-quantity-stepper .qty::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}
.tallo-quantity-button {
  display: grid;
  padding: 0;
  place-items: center;
  border: 0;
  color: #0f437e;
  background: #f5f9fb;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}
.tallo-quantity-button:hover:not(:disabled) {
  background: #e6f0f7;
}
.tallo-quantity-button:disabled {
  color: #aeb8c1;
  background: #f7f8f9;
  cursor: not-allowed;
}
.tallo-search-open {
  overflow: hidden;
}
.tallo-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 999990;
  display: grid;
  padding: 22px;
  place-items: start center;
  background: rgba(15, 67, 126, .32);
}
.tallo-search-overlay[hidden] {
  display: none;
}
.tallo-search-dialog {
  position: relative;
  width: min(680px, 100%);
  max-height: calc(100vh - 50px);
  margin-top: 70px;
  padding: 34px;
  overflow: auto;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .2);
}
.tallo-search-dialog h2 {
  margin: 0 45px 20px 0;
  color: #0f437e;
  font: 600 32px AuroraEmbedded, Georgia, serif;
}
.tallo-search-close {
  position: absolute;
  top: 17px;
  right: 20px;
  border: 0;
  color: #0f437e;
  background: transparent;
  font-size: 32px;
  cursor: pointer;
}
#tallo-product-search {
  width: 100%;
  height: 52px;
  padding: 11px 15px;
  border: 1px solid #0f437e;
  font: 400 16px LouisGeorgeCafe, Montserrat, sans-serif;
}
.tallo-search-results {
  margin-top: 12px;
}
.tallo-search-result {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 14px;
  padding: 10px 0;
  align-items: center;
  border-bottom: 1px solid #e2e6e9;
  color: #0f437e;
}
.tallo-search-result img {
  width: 68px;
  height: 68px;
  object-fit: cover;
}
.tallo-search-result strong,
.tallo-search-result small {
  display: block;
}
.tallo-search-result small {
  margin-top: 5px;
  color: #656d75;
}
.tallo-search-hint {
  padding: 18px 0;
  color: #656d75;
}
.xoo-wsc-info-cont {
  display: none !important;
}
@media (max-width: 1100px) {
  .tallo-date-control {
    grid-template-columns: 42px minmax(0, 1fr) 48px;
  }
  .tallo-date-toggle {
    min-width: 48px;
    padding: 0;
  }
  .tallo-date-toggle span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }
}
@media (max-width: 600px) {
  .tallo-select-trigger {
    min-height: 50px;
    font-size: 14px;
  }

  .tallo-select-menu {
    max-height: 240px;
  }

  .tallo-select-option {
    min-height: 46px;
    font-size: 14px;
  }

  .tallo-delivery-date-field {
    padding: 16px;
  }
  .tallo-date-control {
    grid-template-columns: 42px minmax(0, 1fr) 48px;
  }
  .tallo-date-toggle {
    min-width: 48px;
    padding: 0;
  }
  .ui-datepicker-header {
    min-height: 56px;
  }
  .ui-datepicker td {
    padding: 2px;
  }
  .ui-datepicker td a,
  .ui-datepicker td span {
    min-height: 34px;
  }
  .tallo-calendar-legend {
    gap: 10px;
  }
  .tallo-search-dialog {
    margin-top: 18px;
    padding: 26px 20px;
  }
  .tallo-product-total strong {
    display: block;
    float: none;
    margin-top: 5px;
  }
}
