.gf-cart {
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
  font-family: Inter, Arial, sans-serif;
}

.gf-cart__section {
  padding: 0 !important;
}

.gf-cart__title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gf-cart,
.gf-cart * {
  box-sizing: border-box;
}

.gf-cart.is-open {
  pointer-events: auto;
}

.gf-cart__overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 36, 30, 0.36);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.gf-cart.is-open .gf-cart__overlay {
  opacity: 1;
  pointer-events: auto;
}

.gf-cart__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(440px, 100vw);
  height: 100%;
  background: #ffffff;
  box-shadow: -24px 0 50px rgba(19, 37, 30, 0.14);
  transform: translateX(100%);
  pointer-events: none;
  transition:
    transform 0.26s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.2s ease,
    opacity 0.2s ease;
  overscroll-behavior: contain;
  will-change: transform;
}

.gf-cart__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.68);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s ease;
  z-index: 20;
}

.gf-cart__panel::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 3px solid rgba(0, 134, 138, 0.18);
  border-top-color: #167d7f;
  border-right-color: rgba(0, 134, 138, 0.18);
  border-bottom-color: rgba(0, 134, 138, 0.18);
  border-left-color: rgba(0, 134, 138, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(0deg);
  transition: opacity 0.16s ease;
  animation: gf-cart-spin 0.72s linear infinite;
  z-index: 21;
}

.gf-cart.is-loading .gf-cart__panel::before,
.gf-cart.is-loading .gf-cart__panel::after {
  opacity: 1;
  pointer-events: auto;
}

.gf-cart.is-open .gf-cart__panel {
  transform: translateX(0);
  pointer-events: auto;
}

.gf-cart__header,
.gf-cart__footer {
  padding: 10px 24px;
}

.gf-cart__header {
  padding-bottom: 0;
}

.gf-cart__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}

.gf-cart__header::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: -1px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffb62f 0%, #1f4aa8 50%, #ffb62f 100%);
  background-size: 220px 100%;
  opacity: 0;
  transform: scaleX(0.2);
  transform-origin: left center;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.gf-cart__title {
  margin: 0;
  color: #000000;
  font-size: 25px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  font-family: Inter, Arial, sans-serif !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.gf-cart__count {
  margin: 0;
  color: #777777;
  font-size: 14px !important;
  line-height: 1 !important;
  font-family: Inter, Arial, sans-serif !important;
  font-weight: 600;
  letter-spacing: 0;
}
.gf-cart__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent !important;
  cursor: pointer;
  padding: 0;
  position: relative;
  width: 20px;
  height: 20px;
}

.gf-cart__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect y='2.79869' width='3.95795' height='23.088' transform='rotate(-45 0 2.79869)' fill='black'/%3E%3Crect x='16.3281' y='0' width='3.95795' height='23.088' transform='rotate(45 16.3281 0)' fill='black'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.gf-cart__body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 24px 10px;
  overscroll-behavior: contain;
  position: relative;
  -ms-overflow-style: none;
  scrollbar-width: none;
  margin-top: 15px;
}

.gf-cart__body::-webkit-scrollbar {
  display: none;
}

.gf-cart__recommendation-slot {
  margin: 24px 0 10px;
  padding: 0;
  background: transparent;
  position: relative;
}

.gf-cart__recommendation-slot:empty {
  display: none;
}

.gf-cart__empty {
  padding: 56px 8px;
  text-align: center;
}

.gf-cart__empty h3 {
  margin: 0 0 10px;
  color: #1f3153;
  font-size: 24px;
}

.gf-cart__empty p {
  margin: 0;
  color: #5a6979;
  font-size: 16px;
}

.gf-cart__empty-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 24px;
  padding: 0 28px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgb(0, 171, 159) 5.33%, rgb(132, 213, 177) 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.gf-cart__empty-home:hover,
.gf-cart__empty-home:focus {
  background: #0f6567;
  color: #fff;
  text-decoration: none;
}

.gf-cart .gf-cart__section {
  margin: 0 !important;
}

.gf-cart .gf-cart__section + .gf-cart__section {
  margin-top: 18px !important;
}

.gf-cart .gf-cart__section-title {
  display: block !important;
  width: 100% !important;
  margin: 18px 0 0 !important;
  padding: 0 0 15px !important;
  border-bottom: 0 !important;
  color: #167d7f !important;
  font-family: Inter, Arial, sans-serif !important;
  font-size: 15px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  text-align: left !important;
  text-transform: uppercase !important;
}

.gf-cart .gf-cart__section:first-child .gf-cart__section-title {
  margin-top: 0 !important;
}

.gf-cart__item {
  position: relative;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 15px 0;
  border-top: 1px solid #d9dde5;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    background-color 0.2s ease;
}

.gf-cart__item.is-updated {
  animation: gf-cart-item-flash 0.65s ease;
}

.gf-cart__item-main {
  min-width: 0;
  padding-right: 78px;
}

.gf-cart__item--subscription .gf-cart__item-main {
  padding-right: 78px;
}

.gf-cart__item-image {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  object-fit: cover;
  background: #f7f7f7;
}

.gf-cart__item-badge {
  display: block;
  align-items: initial;
  margin: 0 0 4px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #a2a2a2;
  font-size: 11px !important;
  line-height: 1.2;
  background: transparent;
  font-family: Inter, Arial, sans-serif !important;
  font-weight: 600 !important;
  width: auto;
  max-width: 100%;
}

.gf-cart__item--subscription .gf-cart__item-badge {
  font-size: 11px !important;
  font-weight: 400 !important;
  white-space: wrap !important;
  margin-bottom: 4px;
  color: #a2a2a2;
}

.gf-cart__item--subscription .gf-cart__item-name {
  max-width: 230px;
  margin-bottom: 0;
}

.gf-cart__item-name {
  margin: 0;
  color: #000000;
  font-size: 16px !important;
  line-height: 1.1 !important;
  font-weight: 700 !important;
  font-family: Inter, Arial, sans-serif !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  word-break: normal;
  overflow-wrap: break-word;
  max-width: 210px;
}

.gf-cart__included-badge {
  display: block;
  max-width: 230px;
  margin: 4px 0 2px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #087f5b;
  font-family: Inter, Arial, sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
}

.gf-cart__included-badge span {
  display: block;
}

.gf-cart__item-price-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  margin-bottom: 0;
  max-width: 230px;
}

.gf-cart__item-pricing {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.gf-cart__item-price-inline {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.gf-cart__item-regular-price {
  color: #7a8090;
  font-size: 16px !important;
  text-decoration: line-through;
  font-weight: 700 !important;
  font-family: Inter, Arial, sans-serif !important;
  white-space: nowrap;
}

.gf-cart .gf-cart__item-price,
.gf-cart .gf-cart__item-subtotal {
  color: #167d7f !important;
  font-size: 16px !important;
  font-family: Inter, Arial, sans-serif !important;
}

.gf-cart .gf-cart__item-price *,
.gf-cart .gf-cart__item-subtotal * {
  color: #167d7f !important;
}

.gf-cart__item-price-detail {
  color: #7f889f;
  font-size: 14px !important;
  line-height: 1.2;
  font-family: Inter, Arial, sans-serif !important;
  font-weight: 700 !important;
  white-space: nowrap;
}

.gf-cart__item-recurring {
  display: block;
  margin-top: 0;
  color: #777777;
  font-size: 11px !important;
  line-height: 1.25;
  font-family: Inter, Arial, sans-serif !important;
  font-weight: 400 !important;
  white-space: nowrap !important;
}

.gf-cart .gf-cart__item-price {
  color: #167d7f !important;
  font-weight: 700 !important;
  white-space: nowrap;
}

.gf-cart__item-savings {
  display: none;
}

.gf-cart__item-promo {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  border: 0;
  padding: 5px 9px;
  border-radius: 999px;
  background: #fff0c9;
  color: #8a5a00;
  cursor: pointer;
  font-size: 11px !important;
  line-height: 1.2;
  font-family: Inter, Arial, sans-serif !important;
  font-weight: 700 !important;
  transition:
    background-color 0.16s ease,
    transform 0.12s ease,
    opacity 0.16s ease;
}

.gf-cart__item-promo--increase {
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #167d7f;
  font-size: 12px !important;
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.gf-cart__item-promo--subscribe {
  background: #fff0c9;
  color: #8a5a00;
  text-decoration: none;
}

.gf-cart__item-promo--subscribe:hover {
  background: #ffe7a4;
  color: #8a5a00;
  transform: translateY(-1px);
}

.gf-cart__item-promo--increase:hover {
  background: transparent;
  color: #167d7f;
  text-decoration: underline;
  transform: none;
}

.gf-cart__item-promo:focus {
  color: #8a5a00;
}

.gf-cart__item-promo--increase:focus {
  color: #167d7f;
}

.gf-cart__item-promo:active {
  color: #8a5a00;
  transform: translateY(0);
}

.gf-cart__item-promo--increase:active {
  color: #167d7f;
  transform: none;
}

.gf-cart__item-promo:disabled {
  cursor: wait;
  opacity: 0.55;
}

.gf-cart__item-subtotal {
  font-weight: 700;
  color: #167d7f !important;
  padding-top: 0;
  white-space: nowrap;
}

.gf-cart__item-actions {
  position: absolute;
  right: 0;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  transform: translateY(-50%);
  margin-top: 0;
}

.gf-cart__qty {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 68px;
  height: 29px;
  justify-content: center;
  padding: 0 8px;
  border: 1px solid #d8ddf1;
  border-radius: 999px;
  background: #fff;
  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    transform 0.12s ease;
}

.gf-cart__qty-btn {
  border: 0;
  padding: 0;
  background: transparent;
  color: #445483;
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.12s ease,
    color 0.16s ease,
    opacity 0.16s ease;
}

.gf-cart__qty-btn:hover {
  color: #1f2d63;
  transform: scale(1.08);
  background-color: transparent;
}

.gf-cart__qty-btn:active {
  transform: scale(0.92);
}

.gf-cart__qty-btn:disabled {
  cursor: wait;
  opacity: 0.45;
}

.gf-cart__qty-btn--delete {
  font-size: 0;
  width: 14px;
  height: 14px;
  position: relative;
  border-radius: 50%;
  background: rgba(210, 58, 73, 0.08);
}

.gf-cart__qty-btn--delete::before {
  content: "";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: center / 10px 10px no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23626f94' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 6h18'/%3E%3Cpath d='M8 6V4h8v2'/%3E%3Cpath d='M19 6l-1 14H6L5 6'/%3E%3Cpath d='M10 11v6'/%3E%3Cpath d='M14 11v6'/%3E%3C/svg%3E");
}

.gf-cart__qty-btn--delete:hover {
  background: rgba(210, 58, 73, 0.12);
  transform: scale(1.04);
}

.gf-cart__qty-value {
  min-width: 12px;
  color: #24355c;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-align: center;
  font-family: Inter, Arial, sans-serif !important;
}

.gf-cart__footer {
  border-top: 0;
  background: #fbf8f2;
  position: relative;
  z-index: 5;
}

.gf-cart__summary {
  padding: 0;
  transition: opacity 0.18s ease;
}

.gf-cart__consultation {
  margin: 0;
  padding: 16px 18px 18px;
  border-radius: 10px;
  background: #edfff9;
}

.gf-cart__consultation-title {
  margin: 0 0 14px;
  color: #167d7f;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-transform: uppercase;
}

.gf-cart__consultation-row {
  position: relative;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-height: 80px;
}

.gf-cart__consultation-image {
  width: 80px;
  height: 80px;
  border-radius: 5px;
  object-fit: cover;
  background: #ececec;
}

.gf-cart__consultation-copy {
  min-width: 0;
  padding-right: 4px;
}

.gf-cart__consultation-name {
  margin: 0 0 8px;
  color: #000000;
  font-family: Inter, Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  white-space: wrap;
}

.gf-cart__consultation-description {
  max-width: 250px;
  margin: 0 0 8px;
  color: #777777;
  font-family: Inter, Arial, sans-serif !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.1 !important;
}

.gf-cart__consultation-price {
  display: block;
  color: #167d7f !important;
  font-family: Inter, Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

.gf-cart__consultation-add {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  height: 30px;
  padding: 0 10px;
  border: 1px solid #167d7f;
  border-radius: 30px;
  background: #ffffff;
  color: #167d7f;
  cursor: pointer;
  font-family: Inter, Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 2 !important;
  text-transform: uppercase;
}

.gf-cart__consultation-add:hover,
.gf-cart__consultation-add:focus {
  background: #f7fffc;
  color: #167d7f;
}

.gf-cart__consultation-add:disabled {
  cursor: wait;
  opacity: 0.6;
}

.gf-cart__summary.is-syncing {
  opacity: 0.72;
}

.gf-cart__summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  color: #167d7f;
  font-size: 14px !important;
  font-weight: 700 !important;
  font-family: Inter, Arial, sans-serif !important;
  line-height: 1 !important;
}

.gf-cart__summary-row strong {
  color: #167d7f !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  font-family: Inter, Arial, sans-serif !important;
  line-height: 1.53 !important;
}

.gf-cart__summary-row--subtotal {
  margin-bottom: 10px;
  color: #000000;
  font-size: 14px !important;
}

.gf-cart__summary-row--subtotal strong {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #000000 !important;
}

.gf-cart__summary-row:not(.gf-cart__summary-row--subtotal) strong {
  color: #167d7f !important;
}

.gf-cart__summary-divider {
  height: 1px;
  margin: 0 0 12px;
  background: #d7d2c8;
}

.gf-cart__summary-note {
  margin: 0 0 6px;
  color: #777777;
  font-size: 13px !important;
  line-height: 1.3;
  font-family: Inter, Arial, sans-serif !important;
  font-weight: 400 !important;
  text-align: center;
}

.gf-cart__checkout {
  display: block;
  padding: 16px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0ab2a5 0%, #74d6ae 100%);
  color: #ffffff;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-family: Inter, Arial, sans-serif !important;
  transition:
    transform 0.14s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
}

.gf-cart__checkout:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(10, 178, 165, 0.2);
}

.gf-cart__checkout:active {
  transform: translateY(0);
}

.gf-cart__checkout[aria-disabled="true"] {
  pointer-events: none;
  filter: saturate(0.85);
  opacity: 0.7;
}

.gf-cart__reviews {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-top: 12px;
  color: #777;
  font-size: 16px !important;
  line-height: 1.3;
  font-family: Inter, Arial, sans-serif !important;
  font-weight: 500 !important;
  white-space: nowrap;
}

.gf-cart__review-logo {
	display: block;
	width: auto;
	height: 40px;
	object-fit: cover;
	margin-bottom: -10px;
}

.gf-cart__review-summary {
  display: flex;
  align-items: center;
}

.gf-cart__reviews[hidden] {
  display: none;
}

.gf-cart__review-stars {
  position: relative;
  display: inline-block;
  font-size: 15px !important;
  line-height: 1;
  letter-spacing: 0;
  margin-right: 8px;
}

.gf-cart__review-stars-base {
  color: #d8d8d8;
}

.gf-cart__review-stars-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--gf-cart-review-fill, 0%);
  overflow: hidden;
  color: #ffb400;
  white-space: nowrap;
}

.gf-cart__review-text strong {
  font-weight: 400 !important;
}

.gf-cart.is-loading .gf-cart__header::after {
  opacity: 1;
  transform: scaleX(1);
  animation: gf-cart-progress 1s linear infinite;
}

.gf-cart.is-loading .gf-cart__panel {
  box-shadow: -26px 0 56px rgba(19, 37, 30, 0.18);
}

.gf-cart-header-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 0;
  border: 0;
  background: transparent;
  color: #162a8c;
  cursor: pointer;
  flex: 0 0 auto;
  transition:
    transform 0.14s ease,
    opacity 0.18s ease;
  padding: 0;
}

.gf-cart-header-trigger:hover {
  transform: scale(1.05);
}

.gf-cart-header-trigger__icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
}

.gf-cart-header-trigger__icon svg {
  width: 24px;
  height: 24px;
}

.gf-cart-header-trigger__count {
  position: absolute;
  top: -6px;
  right: -5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #162a8c;
  color: #fff;
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

[data-gf-loading="true"] {
  position: relative;
  pointer-events: none;
}

[data-gf-loading="true"] {
  overflow: hidden;
  isolation: isolate;
}

[data-gf-loading="true"]::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  backdrop-filter: blur(2px) saturate(1.02);
  -webkit-backdrop-filter: blur(2px) saturate(1.02);
  z-index: 1;
}

[data-gf-loading="true"]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  margin-top: -10px;
  border-radius: 50%;
  border: 2.5px solid currentColor;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-top-color: currentColor;
  animation: gf-cart-spin 0.72s linear infinite;
  z-index: 3;
}

[data-gf-loading="true"] {
  opacity: 1;
}

[data-gf-header-intent][data-gf-loading="true"] {
  cursor: wait !important;
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate;
}

[data-gf-header-intent][data-gf-loading="true"] > * {
  opacity: 0.71;
}

[data-gf-header-intent][data-gf-loading="true"]::before {
  background: rgba(255, 255, 255, 0.29);
}

[data-gf-header-intent][data-gf-loading="true"]::after {
  color: #167d7f;
}

@media (max-width: 1024px) {
  .uc-side-menu-items .gf-mobile-bundle-action,
  .uc-side-menu-wrapper .gf-mobile-bundle-action {
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: default;
  }

  .uc-side-menu-items .gf-mobile-bundle-card,
  .uc-side-menu-wrapper .gf-mobile-bundle-card {
    cursor: default !important;
  }

  .uc-side-menu-items .gf-mobile-bundle-card > div,
  .uc-side-menu-wrapper .gf-mobile-bundle-card > div {
    min-width: 0;
  }

  .uc-side-menu-items .gf-mobile-bundle-card a,
  .uc-side-menu-wrapper .gf-mobile-bundle-card a {
    pointer-events: none !important;
  }

  .uc-side-menu-items .gf-mobile-bundle-button,
  .uc-side-menu-wrapper .gf-mobile-bundle-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 190px);
    min-width: 112px;
    min-height: 42px;
    margin: 14px auto 0;
    padding: 10px 20px;
    border: 0;
    border-radius: 999px;
    background: #12a89f;
    color: #ffffff;
    cursor: pointer;
    font-family: Inter, Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 3px 9px rgba(18, 107, 109, 0.2);
    transition: background-color 0.16s ease, box-shadow 0.16s ease, transform 0.12s ease;
  }

  .uc-side-menu-items .gf-mobile-bundle-button:hover:not(:disabled),
  .uc-side-menu-items .gf-mobile-bundle-button:focus-visible:not(:disabled),
  .uc-side-menu-wrapper .gf-mobile-bundle-button:hover:not(:disabled),
  .uc-side-menu-wrapper .gf-mobile-bundle-button:focus-visible:not(:disabled) {
    background: #087f83;
    color: #ffffff;
    box-shadow: 0 5px 12px rgba(18, 107, 109, 0.28);
    transform: translateY(-1px);
  }

  .uc-side-menu-items .gf-mobile-bundle-button:focus-visible,
  .uc-side-menu-wrapper .gf-mobile-bundle-button:focus-visible {
    outline: 3px solid rgba(22, 125, 127, 0.28);
    outline-offset: 2px;
  }

  .uc-side-menu-items .gf-mobile-bundle-button:active:not(:disabled),
  .uc-side-menu-wrapper .gf-mobile-bundle-button:active:not(:disabled) {
    background: #0f6264;
    color: #ffffff;
    transform: translateY(1px);
  }

  .uc-side-menu-items .gf-mobile-bundle-button[data-gf-action-active="true"],
  .uc-side-menu-wrapper .gf-mobile-bundle-button[data-gf-action-active="true"] {
    background: #087f83;
    color: #ffffff;
    box-shadow: 0 5px 12px rgba(18, 107, 109, 0.28);
    opacity: 1;
  }

  .uc-side-menu-items .gf-mobile-bundle-button:disabled,
  .uc-side-menu-wrapper .gf-mobile-bundle-button:disabled {
    background: #12a89f;
    color: #ffffff;
    cursor: not-allowed;
    opacity: 0.58;
  }

  .uc-side-menu-items[data-gf-mobile-menu-loading="true"],
  .uc-side-menu-wrapper[data-gf-mobile-menu-loading="true"] {
    cursor: wait !important;
    pointer-events: none !important;
    isolation: isolate;
  }

  .uc-side-menu-items[data-gf-mobile-menu-loading="true"] > *,
  .uc-side-menu-wrapper[data-gf-mobile-menu-loading="true"] > * {
    opacity: 0.58;
    filter: blur(1.35px) saturate(0.92);
  }

  .uc-side-menu-items [data-gf-loading="true"]::before,
  .uc-side-menu-items [data-gf-loading="true"]::after,
  .uc-side-menu-wrapper [data-gf-loading="true"]::before,
  .uc-side-menu-wrapper [data-gf-loading="true"]::after {
    content: none !important;
    display: none !important;
    opacity: 0 !important;
  }

  .uc-side-menu-items [data-gf-loading="true"] .elementor-button-text,
  .uc-side-menu-items [data-gf-loading="true"] .elementor-button-icon,
  .uc-side-menu-wrapper [data-gf-loading="true"] .elementor-button-text,
  .uc-side-menu-wrapper [data-gf-loading="true"] .elementor-button-icon {
    opacity: 1 !important;
  }

  .uc-side-menu-items[data-gf-mobile-menu-loading="true"]::before,
  .uc-side-menu-wrapper[data-gf-mobile-menu-loading="true"]::before {
    content: "";
    position: fixed;
    inset: 0;
    width: 100vw;
    height: var(--gf-mobile-menu-vh, 100vh);
    background: rgba(255, 255, 255, 0.23);
    backdrop-filter: blur(2.4px) saturate(1.08);
    -webkit-backdrop-filter: blur(2.4px) saturate(1.08);
    z-index: 2147483000;
  }

  .uc-side-menu-items[data-gf-mobile-menu-loading="true"]::after,
  .uc-side-menu-wrapper[data-gf-mobile-menu-loading="true"]::after {
    content: "";
    position: fixed;
    top: calc(var(--gf-mobile-menu-vh, 100vh) / 2);
    left: 50vw;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 3px solid rgba(0, 134, 138, 0.2);
    border-top-color: #167d7f;
    animation: gf-cart-spin 0.72s linear infinite;
    z-index: 2147483001;
  }

  .uc-side-menu-items[data-gf-mobile-menu-loading="true"] [data-gf-loading="true"]::before,
  .uc-side-menu-items[data-gf-mobile-menu-loading="true"] [data-gf-loading="true"]::after,
  .uc-side-menu-wrapper[data-gf-mobile-menu-loading="true"] [data-gf-loading="true"]::before,
  .uc-side-menu-wrapper[data-gf-mobile-menu-loading="true"] [data-gf-loading="true"]::after,
  .uc-side-menu-items [data-gf-header-intent][data-gf-loading="true"]::before,
  .uc-side-menu-items [data-gf-header-intent][data-gf-loading="true"]::after {
    display: none !important;
  }

  .uc-side-menu-items button.gf-mobile-bundle-button[data-gf-loading="true"]::after,
  .uc-side-menu-wrapper button.gf-mobile-bundle-button[data-gf-loading="true"]::after {
    content: "" !important;
    display: block !important;
    opacity: 1 !important;
    width: 18px;
    height: 18px;
    border-width: 2px;
    top: 50% !important;
    left: 50% !important;
    margin: -9px 0 0 -9px !important;
    color: #ffffff;
    pointer-events: none;
  }

  body[data-gf-mobile-menu-loading="true"] .uc-close-side-menu,
  body[data-gf-mobile-menu-loading="true"] .open_side_menu {
    pointer-events: none !important;
  }
}

[data-gf-loading="true"] .elementor-button-text,
[data-gf-loading="true"] .elementor-button-icon {
  opacity: 0.32 !important;
  position: relative;
  z-index: 2;
}

button[data-gf-loading="true"] {
  overflow: hidden;
  font-size: 0 !important;
  line-height: 0 !important;
}

button.elementor-button[data-gf-loading="true"] {
  isolation: isolate;
  font-size: inherit !important;
  line-height: inherit !important;
}

[data-gf-gutclear-duo="1"][data-gf-loading="true"],
[data-gf-gutclear-url][data-gf-loading="true"] {
  cursor: wait !important;
}

footer [data-gf-loading="true"]::before,
footer [data-gf-loading="true"]::after,
.elementor-location-footer [data-gf-loading="true"]::before,
.elementor-location-footer [data-gf-loading="true"]::after {
  content: none !important;
  display: none !important;
}

footer [data-gf-loading="true"] .elementor-button-text,
footer [data-gf-loading="true"] .elementor-button-icon,
.elementor-location-footer [data-gf-loading="true"] .elementor-button-text,
.elementor-location-footer [data-gf-loading="true"] .elementor-button-icon {
  opacity: 1 !important;
}
/* 
a.elementor-button,
button.elementor-button,
.elementor a.elementor-button,
.elementor button.elementor-button {
  border: 0 !important;
  outline: none !important;
} */

@keyframes gf-cart-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes gf-cart-progress {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 220px 0;
  }
}

@keyframes gf-cart-item-flash {
  0% {
    background-color: rgba(255, 182, 47, 0);
  }

  35% {
    background-color: rgba(255, 182, 47, 0.16);
  }

  100% {
    background-color: rgba(255, 182, 47, 0);
  }
}

@media (max-width: 1366px) {
  .gf-cart__section {
    padding: 20px 0 !important;
  }
}
@media (max-width: 767px) {
  .gf-cart__title {
    font-size: 20px !important;
  }

  .gf-cart__header,
  .gf-cart__body,
  .gf-cart__footer {
    padding-left: 12px;
    padding-right: 12px;
  }

  .gf-cart__item {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 16px;
  }

  .gf-cart__item-image {
    width: 80px;
    height: 80px;
    border-radius: 4px;
  }

  .gf-cart__item-name {
    font-size: 14px !important;
    line-height: 1.08 !important;
  }

  .gf-cart__item-price,
  .gf-cart__item-subtotal {
    font-size: 18px !important;
  }

  .gf-cart__summary-row {
    font-size: 13px !important;
  }

  .gf-cart__consultation {
    padding: 16px 18px 18px;
  }

  .gf-cart__consultation-row {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 14px;
  }

  .gf-cart__consultation-name {
    font-size: 14px !important;
  }

  .gf-cart__consultation-description {
    max-width: 245px;
    font-size: 13px !important;
  }

  .gf-cart__checkout {
    font-size: 16px !important;
  }

  .gf-cart-header-trigger {
    width: 20px !important;
    height: auto;
  }

  .gf-cart-header-trigger__count {
  top: 0;
  right: -5px;
}
}

/*
 * Phone product-card layout.
 * Existing AJAX quantity controls and cart data stay unchanged; only the
 * presentation is rearranged to prevent copy, pricing, and controls colliding.
 */
@media (max-width: 600px) {
  .gf-cart__header,
  .gf-cart__body,
  .gf-cart__footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .gf-cart__body {
    margin-top: 10px;
  }

  .gf-cart .gf-cart__section + .gf-cart__section {
    margin-top: 12px !important;
  }

  .gf-cart .gf-cart__section-title {
    font-size: 14px !important;
    margin-top: 14px !important;
    padding-bottom: 10px !important;
  }

  .gf-cart__item,
  .gf-cart__item--subscription {
    align-items: start;
    gap: 4px 12px;
    grid-template-columns: 88px minmax(0, 1fr);
    grid-template-rows: auto auto auto auto auto;
    padding: 16px 0 18px;
  }

  .gf-cart__item-image {
    align-self: start;
    border-radius: 7px;
    grid-column: 1;
    grid-row: 1 / span 4;
    height: 88px;
    width: 88px;
  }

  .gf-cart__item-main,
  .gf-cart__item--subscription .gf-cart__item-main {
    display: contents;
    padding-right: 0;
  }

  .gf-cart__item-badge,
  .gf-cart__item--subscription .gf-cart__item-badge {
    grid-column: 2;
    grid-row: 1;
    margin: 0 0 1px;
    overflow-wrap: anywhere;
    white-space: normal !important;
  }

  .gf-cart__item-name,
  .gf-cart__item--subscription .gf-cart__item-name {
    font-size: 15px !important;
    grid-column: 2;
    grid-row: 2;
    line-height: 1.22 !important;
    margin: 0;
    max-width: none;
    overflow-wrap: anywhere;
  }

  .gf-cart__item-price-row {
    grid-column: 2;
    grid-row: 3;
    margin-top: 2px;
    max-width: 100%;
    min-width: 0;
  }

  .gf-cart__item-pricing {
    max-width: 100%;
  }

  .gf-cart__item-price-inline {
    flex-wrap: wrap;
    gap: 2px 7px;
    white-space: normal;
  }

  .gf-cart__item-regular-price,
  .gf-cart .gf-cart__item-price,
  .gf-cart .gf-cart__item-subtotal {
    font-size: 15px !important;
  }

  .gf-cart__item-price-detail {
    font-size: 12px !important;
    white-space: normal;
  }

  .gf-cart__item-recurring {
    line-height: 1.35;
    white-space: normal !important;
  }

  .gf-cart__included-badge {
    font-size: 12px !important;
    grid-column: 2;
    grid-row: 4;
    line-height: 1.35 !important;
    margin-top: 3px;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .gf-cart__included-badge span {
    white-space: normal;
  }

  .gf-cart__item-actions {
    align-self: start;
    grid-column: 1;
    grid-row: 5;
    justify-self: center;
    margin-top: 7px;
    position: static;
    right: auto;
    top: auto;
    transform: none;
  }

  .gf-cart__qty {
    height: 30px;
    min-width: 72px;
  }

  .gf-cart__qty-btn {
    min-height: 18px;
    min-width: 18px;
  }

  .gf-cart__footer {
    border-top: 1px solid #e2ded6;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    padding-top: 14px;
  }

  .gf-cart__section {
    padding: 10px 0 !important;
  }

  .gf-cart__recommendation-slot {
    margin: 10px 0 10px;
  }

  /* Keep translated recommendation labels from covering the copy on phones. */
  .gf-cart__consultation-row {
    min-height: 0;
  }

  .gf-cart__consultation-add {
    position: static;
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    margin-top: 2px;
    white-space: nowrap;
    font-size: 14px !important;
  }


}

@media screen and (orientation: landscape) and (max-width: 1024px) and (max-height: 600px) {
  /* Scroll products and checkout together instead of reserving footer height. */
  .gf-cart__panel {
    overflow-y: auto;
  }

  .gf-cart__header {
    position: sticky;
    top: 0;
    z-index: 6;
    flex: 0 0 auto;
    background: #ffffff;
    padding-bottom: 10px;
  }

  .gf-cart__body {
    flex: 1 0 auto;
    overflow: visible;
  }

  .gf-cart__footer {
    flex: 0 0 auto;
  }

  .gf-cart .gf-cart__section + .gf-cart__section{
    margin-top: 0 !important;
  }

  .gf-cart .gf-cart__section-title {
    margin-top: 0 !important;
  }

.gf-cart__section {
	padding: 15px 0 !important;
}

.gf-cart__body {
  margin-top: 0;
}
}
