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

.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(420px, 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.28s ease;
}

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

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

.gf-cart__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid #ebedf2;
}

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

.gf-cart__count {
  margin: 4px 0 0;
  color: #5f6577;
  font-size: 14px !important;
  font-family: Inter, Arial, sans-serif !important;
}

.gf-cart__close {
  border: 0;
  background: transparent;
  color: #2f4059;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.gf-cart__body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 24px 10px;
}

.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;
}

.gf-cart__item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #edf0f5;
}

.gf-cart__item-main {
  min-width: 0;
}

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

.gf-cart__item-badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 8px;
  padding: 4px 10px;
  border: 1px solid #e4e6ef;
  border-radius: 999px;
  color: #566184;
  font-size: 12px !important;
  line-height: 1.2;
  background: #ffffff;
  font-family: Inter, Arial, sans-serif !important;
  font-weight: 500 !important;
  width: fit-content;
  max-width: 100%;
}

.gf-cart__item-name {
  margin: 0 0 8px;
  color: #233b83;
  font-size: 20px !important;
  line-height: 1.15 !important;
  font-weight: 700 !important;
  font-family: Inter, Arial, sans-serif !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  word-break: break-word;
  overflow-wrap: anywhere;
  max-width: 100%;
}

.gf-cart__item-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.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: 6px;
  flex-wrap: wrap;
}

.gf-cart__item-regular-price {
  color: #7f889f;
  font-size: 13px !important;
  text-decoration: line-through;
  font-family: Inter, Arial, sans-serif !important;
}

.gf-cart__item-price,
.gf-cart__item-subtotal {
  color: #596785;
  font-size: 14px !important;
  font-family: Inter, Arial, sans-serif !important;
}

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

.gf-cart__item-price {
  color: #1f4aa8;
  font-weight: 700 !important;
}

.gf-cart__item-savings {
  display: inline-flex;
  width: fit-content;
  padding: 3px 8px;
  border-radius: 4px;
  background: #dff4bf;
  color: #4d8a1d;
  font-size: 12px !important;
  font-family: Inter, Arial, sans-serif !important;
  font-weight: 600 !important;
}

.gf-cart__item-subtotal {
  font-weight: 700;
  color: #233b83;
}

.gf-cart__item-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.gf-cart__qty {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 6px 12px;
  border: 1px solid #d8ddf1;
  border-radius: 999px;
}

.gf-cart__qty-btn {
  border: 0;
  padding: 0;
  background: transparent;
  color: #445483;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.gf-cart__qty-btn--delete {
  font-size: 0;
  width: 18px;
  height: 18px;
  position: relative;
}

.gf-cart__qty-btn--delete::before {
  content: "";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: center / 13px 13px 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-value {
  min-width: 12px;
  color: #24355c;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-align: center;
  font-family: Inter, Arial, sans-serif !important;
}

.gf-cart__footer {
  border-top: 1px solid #ebedf2;
  background: #fbf8f2;
}

.gf-cart__summary {
  padding: 4px 0 10px;
}

.gf-cart__summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: #2f7a3e;
  font-size: 12px !important;
  font-weight: 600 !important;
  font-family: Inter, Arial, sans-serif !important;
  line-height: 1.2 !important;
}

.gf-cart__summary-row strong {
  color: #233b83;
  font-size: 12px !important;
  font-weight: 700 !important;
  font-family: Inter, Arial, sans-serif !important;
  line-height: 1.2 !important;
}

.gf-cart__summary-row--muted {
  color: #233b83;
}

.gf-cart__summary-row--muted strong {
  font-size: 12px !important;
  color: #233b83;
}

.gf-cart__checkout {
  display: block;
  padding: 13px 18px;
  border-radius: 999px;
  background: #ffb62f;
  color: #1a2950;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-align: center;
  text-decoration: none;
  font-family: Inter, Arial, sans-serif !important;
}

.gf-cart.is-loading .gf-cart__panel {
  opacity: 0.72;
}

body.gf-cart-open {
  overflow: hidden;
}

.gf-cart-header-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-right: 14px;
  border: 0;
  background: transparent;
  color: #162a8c;
  cursor: pointer;
  flex: 0 0 auto;
}

.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: 2px;
  right: 1px;
  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;
}

@media (max-width: 767px) {
  .gf-cart__title {
    font-size: 24px !important;
  }

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

  .gf-cart__item {
    grid-template-columns: 72px 1fr;
  }

  .gf-cart__item-image {
    width: 72px;
    height: 72px;
    border-radius: 16px;
  }

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

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

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